publish new versions (#2780)

Co-authored-by: lucasfernog <20051258+lucasfernog@users.noreply.github.com>
pull/2805/head cli-js-v2.3.0
github-actions[bot] 3 weeks ago committed by GitHub
parent 2aec8ff4c4
commit 5779099688
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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.

@ -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.

@ -1,6 +0,0 @@
---
"log": patch:bug
"log-js": patch:bug
---
Fixes iOS simulator still freezing sometimes due to early logging.

@ -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.

8
Cargo.lock generated

@ -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",

@ -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

@ -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",

@ -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

@ -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" }

@ -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.

@ -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 }

@ -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"

@ -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.

@ -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 }

@ -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": [

@ -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`.

@ -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 }

@ -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": [

@ -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

Loading…
Cancel
Save