diff --git a/.changes/add-cli-matches-from.md b/.changes/add-cli-matches-from.md deleted file mode 100644 index 4703a5ba..00000000 --- a/.changes/add-cli-matches-from.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"cli": minor -"cli-js": minor ---- - -Added `Cli.matches_from(args)`. This can be combined with the `args` passed to the callback of `tauri_plugin_single_instance::init` to parse the command line arguments passed to subsequent instances of the application. diff --git a/.changes/add-global-flag-cli.md b/.changes/add-global-flag-cli.md deleted file mode 100644 index 9fa5a39b..00000000 --- a/.changes/add-global-flag-cli.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"cli": minor -"cli-js": minor ---- - -Added a new `global` boolean flag to the `CliArg` struct to support global CLI arguments. This flag allows arguments like `--verbose` to be marked as global and automatically propagated to all subcommands, enabling consistent availability throughout the CLI. - -The new field is optional and defaults to false. diff --git a/.changes/fix-log-freeze.md b/.changes/fix-log-freeze.md deleted file mode 100644 index dee03ad3..00000000 --- a/.changes/fix-log-freeze.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"log": patch:bug -"log-js": patch:bug ---- - -Fixes iOS simulator still freezing sometimes due to early logging. diff --git a/.changes/in-app-browser.md b/.changes/in-app-browser.md deleted file mode 100644 index 69ea9167..00000000 --- a/.changes/in-app-browser.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"opener": patch:feat -"opener-js": patch:feat ---- - -Add `inAppBrowser` option to open URLs in an in-app browser on Android and iOS. diff --git a/Cargo.lock b/Cargo.lock index 4417ad27..04875b18 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -207,7 +207,7 @@ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" [[package]] name = "api" -version = "2.0.28" +version = "2.0.29" dependencies = [ "log", "serde", @@ -6522,7 +6522,7 @@ dependencies = [ [[package]] name = "tauri-plugin-cli" -version = "2.2.1" +version = "2.3.0" dependencies = [ "clap", "log", @@ -6679,7 +6679,7 @@ dependencies = [ [[package]] name = "tauri-plugin-log" -version = "2.5.0" +version = "2.5.1" dependencies = [ "android_logger", "byte-unit", @@ -6735,7 +6735,7 @@ dependencies = [ [[package]] name = "tauri-plugin-opener" -version = "2.3.0" +version = "2.3.1" dependencies = [ "dunce", "glob", diff --git a/examples/api/CHANGELOG.md b/examples/api/CHANGELOG.md index af0c3e2e..de2e78e8 100644 --- a/examples/api/CHANGELOG.md +++ b/examples/api/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## \[2.0.25] + +### Dependencies + +- Upgraded to `cli-js@2.3.0` +- Upgraded to `log-js@2.5.1` +- Upgraded to `opener-js@2.3.1` + ## \[2.0.24] ### Dependencies diff --git a/examples/api/package.json b/examples/api/package.json index d71c847d..631f29be 100644 --- a/examples/api/package.json +++ b/examples/api/package.json @@ -1,7 +1,7 @@ { "name": "api", "private": true, - "version": "2.0.24", + "version": "2.0.25", "type": "module", "scripts": { "dev": "vite --clearScreen false", @@ -13,7 +13,7 @@ "@tauri-apps/api": "2.5.0", "@tauri-apps/plugin-barcode-scanner": "^2.2.1", "@tauri-apps/plugin-biometric": "^2.2.2", - "@tauri-apps/plugin-cli": "^2.2.1", + "@tauri-apps/plugin-cli": "^2.3.0", "@tauri-apps/plugin-clipboard-manager": "^2.2.3", "@tauri-apps/plugin-dialog": "^2.2.2", "@tauri-apps/plugin-fs": "^2.3.0", @@ -23,7 +23,7 @@ "@tauri-apps/plugin-http": "^2.4.4", "@tauri-apps/plugin-nfc": "^2.2.1", "@tauri-apps/plugin-notification": "^2.2.3", - "@tauri-apps/plugin-opener": "^2.3.0", + "@tauri-apps/plugin-opener": "^2.3.1", "@tauri-apps/plugin-os": "^2.2.2", "@tauri-apps/plugin-process": "^2.2.2", "@tauri-apps/plugin-shell": "^2.2.2", diff --git a/examples/api/src-tauri/CHANGELOG.md b/examples/api/src-tauri/CHANGELOG.md index a4035ac9..362f1492 100644 --- a/examples/api/src-tauri/CHANGELOG.md +++ b/examples/api/src-tauri/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## \[2.0.29] + +### Dependencies + +- Upgraded to `cli@2.3.0` +- Upgraded to `log@2.5.1` +- Upgraded to `opener@2.3.1` + ## \[2.0.28] ### Dependencies diff --git a/examples/api/src-tauri/Cargo.toml b/examples/api/src-tauri/Cargo.toml index 8ae1c243..7e86babb 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.28" +version = "2.0.29" description = "An example Tauri Application showcasing the api" edition = "2021" rust-version = { workspace = true } @@ -20,7 +20,7 @@ serde = { workspace = true } tiny_http = "0.12" time = "0.3" log = { workspace = true } -tauri-plugin-log = { path = "../../../plugins/log", version = "2.5.0" } +tauri-plugin-log = { path = "../../../plugins/log", version = "2.5.1" } tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.3.0", features = [ "watch", ] } @@ -35,7 +35,7 @@ tauri-plugin-notification = { path = "../../../plugins/notification", version = ] } tauri-plugin-os = { path = "../../../plugins/os", version = "2.2.2" } tauri-plugin-process = { path = "../../../plugins/process", version = "2.2.2" } -tauri-plugin-opener = { path = "../../../plugins/opener", version = "2.3.0" } +tauri-plugin-opener = { path = "../../../plugins/opener", version = "2.3.1" } tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.2.2" } tauri-plugin-store = { path = "../../../plugins/store", version = "2.2.1" } @@ -53,7 +53,7 @@ features = [ ] [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.2.1" } +tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.3.0" } tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.2.1" } tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.8.1" } tauri-plugin-window-state = { path = "../../../plugins/window-state", version = "2.2.0" } diff --git a/plugins/cli/CHANGELOG.md b/plugins/cli/CHANGELOG.md index b76c8b32..9c29edec 100644 --- a/plugins/cli/CHANGELOG.md +++ b/plugins/cli/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[2.3.0] + +- [`f6e11282`](https://github.com/tauri-apps/plugins-workspace/commit/f6e11282a7f4036dd6d1dbb8f100e777e9e42f11) ([#2787](https://github.com/tauri-apps/plugins-workspace/pull/2787) by [@mikew](https://github.com/tauri-apps/plugins-workspace/../../mikew)) Added `Cli.matches_from(args)`. This can be combined with the `args` passed to the callback of `tauri_plugin_single_instance::init` to parse the command line arguments passed to subsequent instances of the application. +- [`37c2fb41`](https://github.com/tauri-apps/plugins-workspace/commit/37c2fb41201160e85c8dc3ad40f462cd4e17a304) ([#2772](https://github.com/tauri-apps/plugins-workspace/pull/2772) by [@floriskn](https://github.com/tauri-apps/plugins-workspace/../../floriskn)) Added a new `global` boolean flag to the `CliArg` struct to support global CLI arguments. This flag allows arguments like `--verbose` to be marked as global and automatically propagated to all subcommands, enabling consistent availability throughout the CLI. + + The new field is optional and defaults to false. + ## \[2.2.1] - [`f634e524`](https://github.com/tauri-apps/plugins-workspace/commit/f634e5248ebe428f8305a59f74c13fc15147fb8e) This is an "empty" release to update the plugins' source files on crates.io and docs.rs. This should fix docs.rs build failures for projects using tauri plugins as dependencies. diff --git a/plugins/cli/Cargo.toml b/plugins/cli/Cargo.toml index fc174dd3..ab7b6988 100644 --- a/plugins/cli/Cargo.toml +++ b/plugins/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-cli" -version = "2.2.1" +version = "2.3.0" description = "Parse arguments from your Tauri application's command line interface." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/cli/package.json b/plugins/cli/package.json index cf5182ef..cdd3ed5f 100644 --- a/plugins/cli/package.json +++ b/plugins/cli/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-cli", - "version": "2.2.1", + "version": "2.3.0", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/log/CHANGELOG.md b/plugins/log/CHANGELOG.md index d0652661..a4e1a459 100644 --- a/plugins/log/CHANGELOG.md +++ b/plugins/log/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.5.1] + +### bug + +- [`9799f0db`](https://github.com/tauri-apps/plugins-workspace/commit/9799f0dbabea0b572a9b9111954fbf9aca63da71) ([#2802](https://github.com/tauri-apps/plugins-workspace/pull/2802) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Fixes iOS simulator still freezing sometimes due to early logging. + ## \[2.5.0] - [`106e46ed`](https://github.com/tauri-apps/plugins-workspace/commit/106e46ed5125be33d0427cab9c5c066802f68791) ([#677](https://github.com/tauri-apps/plugins-workspace/pull/677)) Added the `KeepSome` rotation strategy. Like `KeepAll` it will rename files when the max file size is exceeded but will keep only the specified amount of files around. diff --git a/plugins/log/Cargo.toml b/plugins/log/Cargo.toml index ffbddc18..5574e091 100644 --- a/plugins/log/Cargo.toml +++ b/plugins/log/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-log" -version = "2.5.0" +version = "2.5.1" description = "Configurable logging for your Tauri app." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/log/package.json b/plugins/log/package.json index 79e630a2..75462e3c 100644 --- a/plugins/log/package.json +++ b/plugins/log/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-log", - "version": "2.5.0", + "version": "2.5.1", "description": "Configurable logging for your Tauri app.", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/plugins/opener/CHANGELOG.md b/plugins/opener/CHANGELOG.md index 4e95ff45..1dde5ed6 100644 --- a/plugins/opener/CHANGELOG.md +++ b/plugins/opener/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.3.1] + +### feat + +- [`2aec8ff4`](https://github.com/tauri-apps/plugins-workspace/commit/2aec8ff4c41d178ea9804f7b6eff343c726be015) ([#2803](https://github.com/tauri-apps/plugins-workspace/pull/2803) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Add `inAppBrowser` option to open URLs in an in-app browser on Android and iOS. + ## \[2.3.0] - [`ce9888a2`](https://github.com/tauri-apps/plugins-workspace/commit/ce9888a2d4c9b449bd2a306f0fa6c76507fd46d3) ([#2762](https://github.com/tauri-apps/plugins-workspace/pull/2762)) Similar to the `fs` plugin the `opener` plugin now supports a `requireLiteralLeadingDot` configuration in `tauri.conf.json`. diff --git a/plugins/opener/Cargo.toml b/plugins/opener/Cargo.toml index 519ed232..e44fa7c4 100644 --- a/plugins/opener/Cargo.toml +++ b/plugins/opener/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-opener" -version = "2.3.0" +version = "2.3.1" description = "Open files and URLs using their default application." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/opener/package.json b/plugins/opener/package.json index 205896e8..18a86b86 100644 --- a/plugins/opener/package.json +++ b/plugins/opener/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-opener", - "version": "2.3.0", + "version": "2.3.1", "description": "Open files and URLs using their default application.", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 832279d1..76c3421f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -63,7 +63,7 @@ importers: specifier: ^2.2.2 version: link:../../plugins/biometric '@tauri-apps/plugin-cli': - specifier: ^2.2.1 + specifier: ^2.3.0 version: link:../../plugins/cli '@tauri-apps/plugin-clipboard-manager': specifier: ^2.2.3 @@ -93,7 +93,7 @@ importers: specifier: ^2.2.3 version: link:../../plugins/notification '@tauri-apps/plugin-opener': - specifier: ^2.3.0 + specifier: ^2.3.1 version: link:../../plugins/opener '@tauri-apps/plugin-os': specifier: ^2.2.2