parent
dce0f02bc5
commit
5f02c14026
@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
persisted-scope: patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Recursively unescape saved patterns before allowing/forbidding them. This effectively prevents `.persisted-scope` files from blowing up, which caused Out-Of-Memory issues, while automatically fixing existing broken files seamlessly.
|
|
@ -0,0 +1,6 @@
|
|||||||
|
# Changelog
|
||||||
|
|
||||||
|
## \[0.1.1]
|
||||||
|
|
||||||
|
- Recursively unescape saved patterns before allowing/forbidding them. This effectively prevents `.persisted-scope` files from blowing up, which caused Out-Of-Memory issues, while automatically fixing existing broken files seamlessly.
|
||||||
|
- [ebb2eb2](https://github.com/tauri-apps/plugins-workspace/commit/ebb2eb2fe2ebfbb70530d16a983d396aa5829aa1) fix(persisted-scope): Prevent out-of-memory issues, fixes [#274](https://github.com/tauri-apps/plugins-workspace/pull/274) ([#328](https://github.com/tauri-apps/plugins-workspace/pull/328)) on 2023-04-26
|
@ -1,22 +1,38 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "tauri-plugin-persisted-scope"
|
name = "tauri-plugin-persisted-scope"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
description = "Save filesystem and asset scopes and restore them when the app is reopened."
|
description = "Save filesystem and asset scopes and restore them when the app is reopened."
|
||||||
authors.workspace = true
|
|
||||||
license.workspace = true
|
|
||||||
edition.workspace = true
|
|
||||||
rust-version.workspace = true
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
[package.authors]
|
||||||
|
workspace = true
|
||||||
|
|
||||||
|
[package.license]
|
||||||
|
workspace = true
|
||||||
|
|
||||||
|
[package.edition]
|
||||||
|
workspace = true
|
||||||
|
|
||||||
|
[package.rust-version]
|
||||||
|
workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serde.workspace = true
|
|
||||||
serde_json.workspace = true
|
|
||||||
tauri.workspace = true
|
|
||||||
log.workspace = true
|
|
||||||
thiserror.workspace = true
|
|
||||||
aho-corasick = "1.0"
|
aho-corasick = "1.0"
|
||||||
bincode = "1"
|
bincode = "1"
|
||||||
|
|
||||||
|
[dependencies.serde]
|
||||||
|
workspace = true
|
||||||
|
|
||||||
|
[dependencies.serde_json]
|
||||||
|
workspace = true
|
||||||
|
|
||||||
|
[dependencies.tauri]
|
||||||
|
workspace = true
|
||||||
|
|
||||||
|
[dependencies.log]
|
||||||
|
workspace = true
|
||||||
|
|
||||||
|
[dependencies.thiserror]
|
||||||
|
workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
protocol-asset = [ "tauri/protocol-asset" ]
|
protocol-asset = [ "tauri/protocol-asset" ]
|
||||||
|
Loading…
Reference in new issue