diff --git a/.changes/pre.json b/.changes/pre.json index 7ea7c20ec9..5b5d7f58bf 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -3,6 +3,7 @@ "changes": [ ".changes/beta.md", ".changes/browser-headers.md", + ".changes/clear-clipboard.md", ".changes/clipboard-expose-struct.md", ".changes/clipboard-html.md", ".changes/clipboard-manager-image.md", @@ -29,6 +30,7 @@ ".changes/fix-deep-link-is-registered-typo.md", ".changes/fix-deep-link-linux.md", ".changes/fix-default-arg-value.md", + ".changes/fix-fs-async-cmds.md", ".changes/fix-fs-scope-deadlock.md", ".changes/fix-fs-watcher-basedir.md", ".changes/fix-http-default-features.md", @@ -38,6 +40,7 @@ ".changes/fix-updater-default-features.md", ".changes/fix-updater-installer-args-deserialization.md", ".changes/fix-updater-installmode.md", + ".changes/fix-updater-msi-path.md", ".changes/fix-updater-powershell-flashing.md", ".changes/fix-zbus-import.md", ".changes/global-api-script-refactor.md", @@ -52,8 +55,10 @@ ".changes/http-user-agent.md", ".changes/impl-ext-for-webview-windows.md", ".changes/msrv-1.75.md", + ".changes/notifcation-permission-commands.md", ".changes/notification-fix-dev-check.md", ".changes/notification-fix-dev-name.md", + ".changes/os-sync-functions.md", ".changes/public-with-store.md", ".changes/remove-unc-path-prefix.md", ".changes/reqwest-0.12.md", @@ -79,6 +84,7 @@ ".changes/tauri-beta-4.md", ".changes/tauri-beta-8.md", ".changes/tauri-beta-9.md", + ".changes/updater-dirs.md", ".changes/updater-download-install-js-binding.md", ".changes/updater-msiexec.md", ".changes/updater-non-zip.md", @@ -89,6 +95,7 @@ ".changes/window-state-custom-filename.md", ".changes/window-state-default-filename.md", ".changes/window-state-js-binding.md", - ".changes/window-state-json.md" + ".changes/window-state-json.md", + ".changes/window-state-map-label.md" ] } diff --git a/examples/api/CHANGELOG.md b/examples/api/CHANGELOG.md index 5b7be7e67a..d6ded882d8 100644 --- a/examples/api/CHANGELOG.md +++ b/examples/api/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.10] + +### Dependencies + +- Upgraded to `os-js@2.0.0-beta.6` + ## \[2.0.0-beta.9] ### Dependencies diff --git a/examples/api/package.json b/examples/api/package.json index 09016b2064..f8d4ea9333 100644 --- a/examples/api/package.json +++ b/examples/api/package.json @@ -1,7 +1,7 @@ { "name": "svelte-app", "private": true, - "version": "2.0.0-beta.9", + "version": "2.0.0-beta.10", "type": "module", "scripts": { "dev": "vite --clearScreen false", @@ -20,7 +20,7 @@ "@tauri-apps/plugin-http": "2.0.0-beta.6", "@tauri-apps/plugin-nfc": "2.0.0-beta.5", "@tauri-apps/plugin-notification": "2.0.0-beta.5", - "@tauri-apps/plugin-os": "2.0.0-beta.5", + "@tauri-apps/plugin-os": "2.0.0-beta.6", "@tauri-apps/plugin-process": "2.0.0-beta.5", "@tauri-apps/plugin-shell": "2.0.0-beta.6", "@tauri-apps/plugin-updater": "2.0.0-beta.5", diff --git a/examples/api/src-tauri/CHANGELOG.md b/examples/api/src-tauri/CHANGELOG.md index 57b51475e9..9cd392535c 100644 --- a/examples/api/src-tauri/CHANGELOG.md +++ b/examples/api/src-tauri/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## \[2.0.0-beta.12] + +### Dependencies + +- Upgraded to `clipboard-manager@2.1.0-beta.5` +- Upgraded to `fs@2.0.0-beta.10` +- Upgraded to `updater@2.0.0-beta.9` +- Upgraded to `notification@2.0.0-beta.9` +- Upgraded to `os@2.0.0-beta.7` +- Upgraded to `dialog@2.0.0-beta.10` +- Upgraded to `http@2.0.0-beta.11` + ## \[2.0.0-beta.11] ### Dependencies diff --git a/examples/api/src-tauri/Cargo.toml b/examples/api/src-tauri/Cargo.toml index a58f313a5d..3b6f1060cc 100644 --- a/examples/api/src-tauri/Cargo.toml +++ b/examples/api/src-tauri/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "api" publish = false -version = "2.0.0-beta.11" +version = "2.0.0-beta.12" description = "An example Tauri Application showcasing the api" edition = "2021" rust-version = { workspace = true } @@ -20,12 +20,12 @@ serde = { workspace = true } tiny_http = "0.12" log = { workspace = true } tauri-plugin-log = { path = "../../../plugins/log", version = "2.0.0-beta.6" } -tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-beta.9", features = [ "watch" ] } -tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.1.0-beta.4" } -tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-beta.9" } -tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart" ], version = "2.0.0-beta.10" } -tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-beta.8", features = [ "windows7-compat" ] } -tauri-plugin-os = { path = "../../../plugins/os", version = "2.0.0-beta.6" } +tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-beta.10", features = [ "watch" ] } +tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.1.0-beta.5" } +tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-beta.10" } +tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart" ], version = "2.0.0-beta.11" } +tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-beta.9", features = [ "windows7-compat" ] } +tauri-plugin-os = { path = "../../../plugins/os", version = "2.0.0-beta.7" } tauri-plugin-process = { path = "../../../plugins/process", version = "2.0.0-beta.6" } tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.0.0-beta.7" } @@ -43,7 +43,7 @@ tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.0.0-beta.7" [target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies] tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.0.0-beta.6" } tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.0.0-beta.6" } -tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-beta.8" } +tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-beta.9" } [target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies] tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.0.0-beta.7" } diff --git a/plugins/clipboard-manager/CHANGELOG.md b/plugins/clipboard-manager/CHANGELOG.md index 020d6eb138..0d9708d972 100644 --- a/plugins/clipboard-manager/CHANGELOG.md +++ b/plugins/clipboard-manager/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.1.0-beta.5] + +- [`99d125d8`](https://github.com/tauri-apps/plugins-workspace/commit/99d125d86bf097a4c124cd91e15e71baba4dfe20) ([#1462](https://github.com/tauri-apps/plugins-workspace/pull/1462) by [@unbeauvoyage](https://github.com/tauri-apps/plugins-workspace/../../unbeauvoyage)) Add support for clearing clipboard text on iOS and Android. + ## \[2.1.0-beta.3] - [`9013854f`](https://github.com/tauri-apps/plugins-workspace/commit/9013854f42a49a230b9dbb9d02774765528a923f)([#1382](https://github.com/tauri-apps/plugins-workspace/pull/1382)) Update to tauri beta.22. @@ -91,5 +95,5 @@ - [`717ae67`](https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! 717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! -! + ! 717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! diff --git a/plugins/clipboard-manager/Cargo.toml b/plugins/clipboard-manager/Cargo.toml index 154ff905c3..d70dc7cf57 100644 --- a/plugins/clipboard-manager/Cargo.toml +++ b/plugins/clipboard-manager/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-clipboard-manager" -version = "2.1.0-beta.4" +version = "2.1.0-beta.5" description = "Read and write to the system clipboard." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/dialog/CHANGELOG.md b/plugins/dialog/CHANGELOG.md index 251dc08083..c3acb56251 100644 --- a/plugins/dialog/CHANGELOG.md +++ b/plugins/dialog/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.10] + +### Dependencies + +- Upgraded to `fs@2.0.0-beta.10` + ## \[2.0.0-beta.5] - [`9013854f`](https://github.com/tauri-apps/plugins-workspace/commit/9013854f42a49a230b9dbb9d02774765528a923f)([#1382](https://github.com/tauri-apps/plugins-workspace/pull/1382)) Update to tauri beta.22. @@ -153,5 +159,5 @@ pull/371)) First v2 alpha release! lpha release! pull/371)) First v2 alpha release! -lpha release! + lpha release! pull/371)) First v2 alpha release! diff --git a/plugins/dialog/Cargo.toml b/plugins/dialog/Cargo.toml index 73a415ed8f..48e4b76fe8 100644 --- a/plugins/dialog/Cargo.toml +++ b/plugins/dialog/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-dialog" -version = "2.0.0-beta.9" +version = "2.0.0-beta.10" description = "Native system dialogs for opening and saving files along with message dialogs on your Tauri application." edition = { workspace = true } authors = { workspace = true } @@ -24,7 +24,7 @@ tauri = { workspace = true } log = { workspace = true } thiserror = { workspace = true } dunce = { workspace = true } -tauri-plugin-fs = { path = "../fs", version = "2.0.0-beta.9" } +tauri-plugin-fs = { path = "../fs", version = "2.0.0-beta.10" } [target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies] rfd = { version = "0.14", default-features = false, features = [ "tokio", "gtk3", "common-controls-v6" ] } diff --git a/plugins/fs/CHANGELOG.md b/plugins/fs/CHANGELOG.md index a38b199a2d..a1a1f66a63 100644 --- a/plugins/fs/CHANGELOG.md +++ b/plugins/fs/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-beta.10] + +- [`1146f068`](https://github.com/tauri-apps/plugins-workspace/commit/1146f068e1a2ce4244982532c621270c022bcdff) ([#1477](https://github.com/tauri-apps/plugins-workspace/pull/1477) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Fixes an issue that caused the app to freeze when the `fs` plugin's read/write apis were used on large files. + ## \[2.0.0-beta.5] - [`9013854f`](https://github.com/tauri-apps/plugins-workspace/commit/9013854f42a49a230b9dbb9d02774765528a923f)([#1382](https://github.com/tauri-apps/plugins-workspace/pull/1382)) Update to tauri beta.22. diff --git a/plugins/fs/Cargo.toml b/plugins/fs/Cargo.toml index c0e19660d6..c6929a6321 100644 --- a/plugins/fs/Cargo.toml +++ b/plugins/fs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-fs" -version = "2.0.0-beta.9" +version = "2.0.0-beta.10" description = "Access the file system." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/http/CHANGELOG.md b/plugins/http/CHANGELOG.md index 889795dd7d..6f9720071a 100644 --- a/plugins/http/CHANGELOG.md +++ b/plugins/http/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.11] + +### Dependencies + +- Upgraded to `fs@2.0.0-beta.10` + ## \[2.0.0-beta.6] - [`0f739dbc`](https://github.com/tauri-apps/plugins-workspace/commit/0f739dbc483a1f091977cbe575c3862fd39f8cf1) ([#1392](https://github.com/tauri-apps/plugins-workspace/pull/1392) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) Allow setting `Origin` header when `unsafe-headers` feature flag is active. @@ -179,7 +185,7 @@ lpha release! ! 371\)) First v2 alpha release! -t v2 alpha release! + t v2 alpha release! ! 371\)) First v2 alpha release! ace/pull/371)) First v2 alpha release! diff --git a/plugins/http/Cargo.toml b/plugins/http/Cargo.toml index 11bb784b9e..362404e8d3 100644 --- a/plugins/http/Cargo.toml +++ b/plugins/http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-http" -version = "2.0.0-beta.10" +version = "2.0.0-beta.11" description = "Access an HTTP client written in Rust." edition = { workspace = true } authors = { workspace = true } @@ -26,7 +26,7 @@ serde = { workspace = true } serde_json = { workspace = true } tauri = { workspace = true } thiserror = { workspace = true } -tauri-plugin-fs = { path = "../fs", version = "2.0.0-beta.9" } +tauri-plugin-fs = { path = "../fs", version = "2.0.0-beta.10" } urlpattern = "0.2" regex = "1" http = "1" diff --git a/plugins/notification/CHANGELOG.md b/plugins/notification/CHANGELOG.md index ea756a4290..621f3827d3 100644 --- a/plugins/notification/CHANGELOG.md +++ b/plugins/notification/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-beta.9] + +- [`17c42fd4`](https://github.com/tauri-apps/plugins-workspace/commit/17c42fd42a93f9c9f29d7cb8f83570ba790120a6) ([#1459](https://github.com/tauri-apps/plugins-workspace/pull/1459) by [@naman-crabnebula](https://github.com/tauri-apps/plugins-workspace/../../naman-crabnebula)) Add `register_action_types` and `register_listener` permission command, so that new Action types can be registered and used on Android. + ## \[2.0.0-beta.8] - [`3779fb50`](https://github.com/tauri-apps/plugins-workspace/commit/3779fb50634fba4d7e7eb0bfecc2216349b9d64d) ([#1432](https://github.com/tauri-apps/plugins-workspace/pull/1432) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Use notify_rust from crates.io instead of local fork. diff --git a/plugins/notification/Cargo.toml b/plugins/notification/Cargo.toml index 952213fe94..e3b0c20b3c 100644 --- a/plugins/notification/Cargo.toml +++ b/plugins/notification/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-notification" -version = "2.0.0-beta.8" +version = "2.0.0-beta.9" description = "Send desktop and mobile notifications on your Tauri application." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/os/CHANGELOG.md b/plugins/os/CHANGELOG.md index 005f1cfce5..5c20be783c 100644 --- a/plugins/os/CHANGELOG.md +++ b/plugins/os/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-beta.6] + +- [`0959fe37`](https://github.com/tauri-apps/plugins-workspace/commit/0959fe3757250c6dea6247edb20e6ab468f20511) ([#1353](https://github.com/tauri-apps/plugins-workspace/pull/1353) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) **Breaking** Changed `platform`, `arch`, `type`, `family`, `version` and `exe_extension` functions to be sync. + ## \[2.0.0-beta.5] - [`9013854f`](https://github.com/tauri-apps/plugins-workspace/commit/9013854f42a49a230b9dbb9d02774765528a923f)([#1382](https://github.com/tauri-apps/plugins-workspace/pull/1382)) Update to tauri beta.22. diff --git a/plugins/os/Cargo.toml b/plugins/os/Cargo.toml index 974abdb505..4bacac1583 100644 --- a/plugins/os/Cargo.toml +++ b/plugins/os/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-os" -version = "2.0.0-beta.6" +version = "2.0.0-beta.7" description = "Read information about the operating system." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/os/package.json b/plugins/os/package.json index 5713d13576..9922050f6e 100644 --- a/plugins/os/package.json +++ b/plugins/os/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-os", - "version": "2.0.0-beta.5", + "version": "2.0.0-beta.6", "license": "MIT or APACHE-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/persisted-scope/CHANGELOG.md b/plugins/persisted-scope/CHANGELOG.md index fac0f94c51..64355af3a0 100644 --- a/plugins/persisted-scope/CHANGELOG.md +++ b/plugins/persisted-scope/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.10] + +### Dependencies + +- Upgraded to `fs@2.0.0-beta.10` + ## \[2.0.0-beta.9] - [`9013854f`](https://github.com/tauri-apps/plugins-workspace/commit/9013854f42a49a230b9dbb9d02774765528a923f)([#1382](https://github.com/tauri-apps/plugins-workspace/pull/1382)) Update to tauri beta.22. diff --git a/plugins/persisted-scope/Cargo.toml b/plugins/persisted-scope/Cargo.toml index dd77a0f9e1..8f3cbad46a 100644 --- a/plugins/persisted-scope/Cargo.toml +++ b/plugins/persisted-scope/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-persisted-scope" -version = "2.0.0-beta.9" +version = "2.0.0-beta.10" description = "Save filesystem and asset scopes and restore them when the app is reopened." authors = { workspace = true } license = { workspace = true } @@ -20,7 +20,7 @@ log = { workspace = true } thiserror = { workspace = true } aho-corasick = "1" bincode = "1" -tauri-plugin-fs = { path = "../fs", version = "2.0.0-beta.9" } +tauri-plugin-fs = { path = "../fs", version = "2.0.0-beta.10" } [features] protocol-asset = [ "tauri/protocol-asset" ] diff --git a/plugins/updater/CHANGELOG.md b/plugins/updater/CHANGELOG.md index 79f820d19e..979056e878 100644 --- a/plugins/updater/CHANGELOG.md +++ b/plugins/updater/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[2.0.0-beta.9] + +- [`29751ee9`](https://github.com/tauri-apps/plugins-workspace/commit/29751ee939fc8d26df07e4da3ad7f5c2aa0926ba) ([#1495](https://github.com/tauri-apps/plugins-workspace/pull/1495) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) On Windows, escape the path to the downloaded msi updater to fix an issue causing the update to fail when the `productName` contained spaces. +- [`acce342f`](https://github.com/tauri-apps/plugins-workspace/commit/acce342fcc4ee925060c4a270407c24c347a8f56) ([#1506](https://github.com/tauri-apps/plugins-workspace/pull/1506) by [@Legend-Master](https://github.com/tauri-apps/plugins-workspace/../../Legend-Master)) Switch from `dirs_next` to `dirs` as `dirs_next` is now unmaintained while `dirs` is + ## \[2.0.0-beta.8] - [`bf29a72b`](https://github.com/tauri-apps/plugins-workspace/commit/bf29a72baaff15214a21989df23081eee84e3b8b) ([#1454](https://github.com/tauri-apps/plugins-workspace/pull/1454) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) Fix regression in updater plugin failing to update using `.msi` installer. diff --git a/plugins/updater/Cargo.toml b/plugins/updater/Cargo.toml index 480545058a..a957d0049e 100644 --- a/plugins/updater/Cargo.toml +++ b/plugins/updater/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-updater" -version = "2.0.0-beta.8" +version = "2.0.0-beta.9" description = "In-app updates for Tauri applications." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/window-state/CHANGELOG.md b/plugins/window-state/CHANGELOG.md index 48e5c8d904..99a905f938 100644 --- a/plugins/window-state/CHANGELOG.md +++ b/plugins/window-state/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-beta.10] + +- [`f1372adc`](https://github.com/tauri-apps/plugins-workspace/commit/f1372adc9d4dc5c0ed16f7281da0d45e0d8765da) ([#1497](https://github.com/tauri-apps/plugins-workspace/pull/1497) by [@ferreira-tb](https://github.com/tauri-apps/plugins-workspace/../../ferreira-tb)) Add `Builder::map_label` option to transform the window label when saving the window state, this could be used to group different windows to use the same state. + ## \[2.0.0-beta.6] - [`9013854f`](https://github.com/tauri-apps/plugins-workspace/commit/9013854f42a49a230b9dbb9d02774765528a923f)([#1382](https://github.com/tauri-apps/plugins-workspace/pull/1382)) Update to tauri beta.22. diff --git a/plugins/window-state/Cargo.toml b/plugins/window-state/Cargo.toml index 31e93ff929..6e0cf5c941 100644 --- a/plugins/window-state/Cargo.toml +++ b/plugins/window-state/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-window-state" -version = "2.0.0-beta.9" +version = "2.0.0-beta.10" description = "Save window positions and sizes and restore them when the app is reopened." authors = { workspace = true } license = { workspace = true } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 197777e042..6a836a6c84 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -91,7 +91,7 @@ importers: specifier: 2.0.0-beta.5 version: link:../../plugins/notification '@tauri-apps/plugin-os': - specifier: 2.0.0-beta.5 + specifier: 2.0.0-beta.6 version: link:../../plugins/os '@tauri-apps/plugin-process': specifier: 2.0.0-beta.5 @@ -2665,9 +2665,9 @@ snapshots: - encoding - mocha - '@covector/assemble@0.11.0': + '@covector/assemble@0.11.0(mocha@10.5.2)': dependencies: - '@covector/command': 0.7.1 + '@covector/command': 0.7.1(mocha@10.5.2) '@covector/files': 0.7.2 effection: 2.0.8(mocha@10.5.2) js-yaml: 4.1.0 @@ -2678,9 +2678,10 @@ snapshots: unified: 9.2.2 transitivePeerDependencies: - encoding + - mocha - supports-color - '@covector/changelog@0.11.0': + '@covector/changelog@0.11.0(mocha@10.5.2)': dependencies: '@covector/files': 0.7.2 effection: 2.0.8(mocha@10.5.2) @@ -2690,14 +2691,16 @@ snapshots: unified: 9.2.2 transitivePeerDependencies: - encoding + - mocha - supports-color - '@covector/command@0.7.1': + '@covector/command@0.7.1(mocha@10.5.2)': dependencies: - '@effection/process': 2.1.4 + '@effection/process': 2.1.4(mocha@10.5.2) effection: 2.0.8(mocha@10.5.2) transitivePeerDependencies: - encoding + - mocha '@covector/files@0.7.2': dependencies: @@ -2744,10 +2747,8 @@ snapshots: dependencies: effection: 2.0.8(mocha@10.5.2) mocha: 10.5.2 - transitivePeerDependencies: - - encoding - '@effection/process@2.1.4': + '@effection/process@2.1.4(mocha@10.5.2)': dependencies: cross-spawn: 7.0.3 ctrlc-windows: 2.1.0 @@ -2755,6 +2756,7 @@ snapshots: shellwords: 0.1.1 transitivePeerDependencies: - encoding + - mocha '@effection/stream@2.0.6': dependencies: @@ -3529,9 +3531,9 @@ snapshots: covector@0.11.0(mocha@10.5.2): dependencies: '@covector/apply': 0.9.3(mocha@10.5.2) - '@covector/assemble': 0.11.0 - '@covector/changelog': 0.11.0 - '@covector/command': 0.7.1 + '@covector/assemble': 0.11.0(mocha@10.5.2) + '@covector/changelog': 0.11.0(mocha@10.5.2) + '@covector/command': 0.7.1(mocha@10.5.2) '@covector/files': 0.7.2 effection: 2.0.8(mocha@10.5.2) globby: 11.1.0