From 3d4697b34acd056d19112ffd3ec3b3f6a4156c1e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 30 Jun 2023 00:15:29 +0200 Subject: [PATCH] publish new versions (#417) Co-authored-by: FabianLars --- .changes/persisted-scope-fix-handle-glob-directories.md | 7 ------- plugins/persisted-scope/CHANGELOG.md | 5 +++++ plugins/persisted-scope/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 8 deletions(-) delete mode 100644 .changes/persisted-scope-fix-handle-glob-directories.md diff --git a/.changes/persisted-scope-fix-handle-glob-directories.md b/.changes/persisted-scope-fix-handle-glob-directories.md deleted file mode 100644 index 7badc1850..000000000 --- a/.changes/persisted-scope-fix-handle-glob-directories.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"persisted-scope": patch ---- - -Fix usage of directory patterns by removing glob asterisks at the end before allowing/forbidding them. - -This was causing them to be escaped, and so undesirable paths were allowed/forbidden while polluting the `.persisted_scope` file. diff --git a/plugins/persisted-scope/CHANGELOG.md b/plugins/persisted-scope/CHANGELOG.md index d1991b01e..91e6b20e8 100644 --- a/plugins/persisted-scope/CHANGELOG.md +++ b/plugins/persisted-scope/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[0.1.2] + +- Fix usage of directory patterns by removing glob asterisks at the end before allowing/forbidding them. This was causing them to be escaped, and so undesirable paths were allowed/forbidden while polluting the `.persisted_scope` file. + - [9174b80](https://github.com/tauri-apps/plugins-workspace/commit/9174b808dc37154999c119fcc3f31258a9c5a3fb) \[persisted scope] fix: handle recursive directory correctly ([#455](https://github.com/tauri-apps/plugins-workspace/pull/455)) on 2023-06-29 + ## \[0.1.1] - The MSRV was raised to 1.64! diff --git a/plugins/persisted-scope/Cargo.toml b/plugins/persisted-scope/Cargo.toml index 5e25f1786..eafad0bd0 100644 --- a/plugins/persisted-scope/Cargo.toml +++ b/plugins/persisted-scope/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-persisted-scope" -version = "0.1.1" +version = "0.1.2" description = "Save filesystem and asset scopes and restore them when the app is reopened." authors.workspace = true license.workspace = true