Skip to content

Commit b40a02c

Browse files
publish new versions (#2477)
Co-authored-by: FabianLars <[email protected]>
1 parent a1b3fa2 commit b40a02c

36 files changed

+111
-91
lines changed

.changes/clipboard-manager-wayland-support.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/export-api-structs.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

.changes/http-stream-support.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/skip-logger.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/updater-add-on-before-request.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/updater-logs.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/api/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## \[2.0.16]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
- Upgraded to `[email protected]`
10+
- Upgraded to `[email protected]`
11+
- Upgraded to `[email protected]`
12+
- Upgraded to `[email protected]`
13+
314
## \[2.0.15]
415

516
### Dependencies

examples/api/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "api",
33
"private": true,
4-
"version": "2.0.15",
4+
"version": "2.0.16",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --clearScreen false",
@@ -14,21 +14,21 @@
1414
"@tauri-apps/plugin-barcode-scanner": "^2.2.0",
1515
"@tauri-apps/plugin-biometric": "^2.2.0",
1616
"@tauri-apps/plugin-cli": "^2.2.0",
17-
"@tauri-apps/plugin-clipboard-manager": "^2.2.1",
17+
"@tauri-apps/plugin-clipboard-manager": "^2.2.2",
1818
"@tauri-apps/plugin-dialog": "^2.2.0",
1919
"@tauri-apps/plugin-fs": "^2.2.0",
2020
"@tauri-apps/plugin-geolocation": "^2.2.0",
2121
"@tauri-apps/plugin-global-shortcut": "^2.2.0",
2222
"@tauri-apps/plugin-haptics": "^2.2.0",
23-
"@tauri-apps/plugin-http": "^2.3.0",
23+
"@tauri-apps/plugin-http": "^2.4.0",
2424
"@tauri-apps/plugin-nfc": "^2.2.0",
25-
"@tauri-apps/plugin-notification": "^2.2.1",
25+
"@tauri-apps/plugin-notification": "^2.2.2",
2626
"@tauri-apps/plugin-opener": "^2.2.6",
27-
"@tauri-apps/plugin-os": "^2.2.0",
27+
"@tauri-apps/plugin-os": "^2.2.1",
2828
"@tauri-apps/plugin-process": "^2.2.0",
2929
"@tauri-apps/plugin-shell": "^2.2.0",
3030
"@tauri-apps/plugin-store": "^2.2.0",
31-
"@tauri-apps/plugin-updater": "^2.5.1",
31+
"@tauri-apps/plugin-updater": "^2.6.0",
3232
"@zerodevx/svelte-json-view": "1.0.11"
3333
},
3434
"devDependencies": {

examples/api/src-tauri/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## \[2.0.20]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
- Upgraded to `[email protected]`
10+
- Upgraded to `[email protected]`
11+
- Upgraded to `[email protected]`
12+
- Upgraded to `[email protected]`
13+
- Upgraded to `[email protected]`
14+
- Upgraded to `[email protected]`
15+
316
## \[2.0.19]
417

518
### Dependencies

examples/api/src-tauri/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "api"
33
publish = false
4-
version = "2.0.19"
4+
version = "2.0.20"
55
description = "An example Tauri Application showcasing the api"
66
edition = "2021"
77
rust-version = { workspace = true }
@@ -19,19 +19,19 @@ serde_json = { workspace = true }
1919
serde = { workspace = true }
2020
tiny_http = "0.12"
2121
log = { workspace = true }
22-
tauri-plugin-log = { path = "../../../plugins/log", version = "2.2.3" }
22+
tauri-plugin-log = { path = "../../../plugins/log", version = "2.3.0" }
2323
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.2.0", features = [
2424
"watch",
2525
] }
26-
tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.2.1" }
26+
tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.2.2" }
2727
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.2.0" }
2828
tauri-plugin-http = { path = "../../../plugins/http", features = [
2929
"multipart",
30-
], version = "2.3.0" }
31-
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.2.1", features = [
30+
], version = "2.4.0" }
31+
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.2.2", features = [
3232
"windows7-compat",
3333
] }
34-
tauri-plugin-os = { path = "../../../plugins/os", version = "2.2.0" }
34+
tauri-plugin-os = { path = "../../../plugins/os", version = "2.2.1" }
3535
tauri-plugin-process = { path = "../../../plugins/process", version = "2.2.0" }
3636
tauri-plugin-opener = { path = "../../../plugins/opener", version = "2.2.6" }
3737
tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.2.0" }
@@ -53,15 +53,15 @@ features = [
5353
[target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
5454
tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.2.0" }
5555
tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.2.0" }
56-
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.5.1" }
56+
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.6.0" }
5757
tauri-plugin-window-state = { path = "../../../plugins/window-state", version = "2.2.0" }
5858

5959
[target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies]
6060
tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.2.0" }
6161
tauri-plugin-nfc = { path = "../../../plugins/nfc", version = "2.2.0" }
6262
tauri-plugin-biometric = { path = "../../../plugins/biometric/", version = "2.2.0" }
63-
tauri-plugin-geolocation = { path = "../../../plugins/geolocation/", version = "2.2.3" }
64-
tauri-plugin-haptics = { path = "../../../plugins/haptics/", version = "2.2.3" }
63+
tauri-plugin-geolocation = { path = "../../../plugins/geolocation/", version = "2.2.4" }
64+
tauri-plugin-haptics = { path = "../../../plugins/haptics/", version = "2.2.4" }
6565

6666
[features]
6767
prod = ["tauri/custom-protocol"]

plugins/clipboard-manager/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## \[2.2.2]
4+
5+
### bug
6+
7+
- [`d37bbdef`](https://github.com/tauri-apps/plugins-workspace/commit/d37bbdef8dc70e61e59f9fe0bb8b2a48999d0aa1) ([#2507](https://github.com/tauri-apps/plugins-workspace/pull/2507) by [@SquitchYT](https://github.com/tauri-apps/plugins-workspace/../../SquitchYT)) Fix clipboard-manager Wayland support.
8+
39
## \[2.2.1]
410

511
- [`ce11079f`](https://github.com/tauri-apps/plugins-workspace/commit/ce11079f19852fbefdecf0e4c7d947af3624fee0) ([#2280](https://github.com/tauri-apps/plugins-workspace/pull/2280) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Explicitly drop `arboard::Clipboard` on exit. Add recommendation to not use read methods on the mainthread.

plugins/clipboard-manager/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-plugin-clipboard-manager"
3-
version = "2.2.1"
3+
version = "2.2.2"
44
description = "Read and write to the system clipboard."
55
edition = { workspace = true }
66
authors = { workspace = true }

plugins/clipboard-manager/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tauri-apps/plugin-clipboard-manager",
3-
"version": "2.2.1",
3+
"version": "2.2.2",
44
"license": "MIT OR Apache-2.0",
55
"authors": [
66
"Tauri Programme within The Commons Conservancy"

plugins/geolocation/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## \[2.2.4]
4+
5+
- [`a1b3fa27`](https://github.com/tauri-apps/plugins-workspace/commit/a1b3fa27f11022c9b6622b4fab12d93239eb05de) ([#2515](https://github.com/tauri-apps/plugins-workspace/pull/2515) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Re-exported the `Geolocation`, `Haptics`, `Notification`, and `Os` structs so that they show up on docs.rs.
6+
37
## \[2.2.3]
48

59
- [`406e6f48`](https://github.com/tauri-apps/plugins-workspace/commit/406e6f484cdc13d35c50fb949f7489ca9eeccc44) ([#2323](https://github.com/tauri-apps/plugins-workspace/pull/2323) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Fixed an issue that caused build failures when the `haptics` or `geolocation` plugin was used without their `specta` feature flag enabled.

plugins/geolocation/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tauri-plugin-geolocation"
33
description = "Get and track the device's current position"
4-
version = "2.2.3"
4+
version = "2.2.4"
55
edition = { workspace = true }
66
authors = { workspace = true }
77
license = { workspace = true }

plugins/geolocation/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tauri-apps/plugin-geolocation",
3-
"version": "2.2.3",
3+
"version": "2.2.4",
44
"license": "MIT OR Apache-2.0",
55
"authors": [
66
"Tauri Programme within The Commons Conservancy"

plugins/haptics/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## \[2.2.4]
4+
5+
- [`a1b3fa27`](https://github.com/tauri-apps/plugins-workspace/commit/a1b3fa27f11022c9b6622b4fab12d93239eb05de) ([#2515](https://github.com/tauri-apps/plugins-workspace/pull/2515) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Re-exported the `Geolocation`, `Haptics`, `Notification`, and `Os` structs so that they show up on docs.rs.
6+
37
## \[2.2.3]
48

59
- [`406e6f48`](https://github.com/tauri-apps/plugins-workspace/commit/406e6f484cdc13d35c50fb949f7489ca9eeccc44) ([#2323](https://github.com/tauri-apps/plugins-workspace/pull/2323) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Fixed an issue that caused build failures when the `haptics` or `geolocation` plugin was used without their `specta` feature flag enabled.

plugins/haptics/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tauri-plugin-haptics"
33
description = "Haptic feedback and vibrations on Android and iOS"
4-
version = "2.2.3"
4+
version = "2.2.4"
55
edition = { workspace = true }
66
authors = { workspace = true }
77
license = { workspace = true }

plugins/haptics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tauri-apps/plugin-haptics",
3-
"version": "2.2.3",
3+
"version": "2.2.4",
44
"license": "MIT OR Apache-2.0",
55
"authors": [
66
"Tauri Programme within The Commons Conservancy"

plugins/http/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## \[2.4.0]
4+
5+
- [`cb38f54f`](https://github.com/tauri-apps/plugins-workspace/commit/cb38f54f4a4ef30995283cd82166c62da17bac44) ([#2479](https://github.com/tauri-apps/plugins-workspace/pull/2479) by [@adrieljss](https://github.com/tauri-apps/plugins-workspace/../../adrieljss)) Add stream support for HTTP stream responses.
6+
37
## \[2.3.0]
48

59
- [`10513649`](https://github.com/tauri-apps/plugins-workspace/commit/105136494c5a5bf4b1f1cc06cc71815412d17ec8) ([#2204](https://github.com/tauri-apps/plugins-workspace/pull/2204) by [@RickeyWard](https://github.com/tauri-apps/plugins-workspace/../../RickeyWard)) Add `dangerous-settings` feature flag and new JS `danger` option to disable tls hostname/certificate validation.

plugins/http/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-plugin-http"
3-
version = "2.3.0"
3+
version = "2.4.0"
44
description = "Access an HTTP client written in Rust."
55
edition = { workspace = true }
66
authors = { workspace = true }

plugins/http/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tauri-apps/plugin-http",
3-
"version": "2.3.0",
3+
"version": "2.4.0",
44
"license": "MIT OR Apache-2.0",
55
"authors": [
66
"Tauri Programme within The Commons Conservancy"

plugins/log/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## \[2.3.0]
4+
5+
### feat
6+
7+
- [`02481501`](https://github.com/tauri-apps/plugins-workspace/commit/024815018fbc63a37afc716796a454925aa7d25e) ([#2377](https://github.com/tauri-apps/plugins-workspace/pull/2377) by [@3lpsy](https://github.com/tauri-apps/plugins-workspace/../../3lpsy)) Add a `is_skip_logger` flag to the Log Plugin `Builder` struct, a `skip_logger()` method to the Builder, and logic to avoid acquiring (creating) a logger and attaching it to the global logger. Since acquire_logger is pub, a `LoggerNotInitialized` is added and returned if it's called when the `is_skip_looger` flag is set. Overall, this feature permits a user to avoid calling `attach_logger` which can only be called once in a program's lifetime and allows the user to control the logger returned from `logger()`. Additionally, it also will allow users to generate multiple Tauri Mock apps in test suites that run and parallel and have the `log` plugin attached (assuming they use `skip_logger()`).
8+
39
## \[2.2.3]
410

511
- [`1a984659`](https://github.com/tauri-apps/plugins-workspace/commit/1a9846599b6a71faf330845847a30f6bf9735898) ([#2469](https://github.com/tauri-apps/plugins-workspace/pull/2469) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Update `objc2` crate to 0.6. No user facing changes.

plugins/log/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-plugin-log"
3-
version = "2.2.3"
3+
version = "2.3.0"
44
description = "Configurable logging for your Tauri app."
55
authors = { workspace = true }
66
license = { workspace = true }

plugins/log/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tauri-apps/plugin-log",
3-
"version": "2.2.3",
3+
"version": "2.3.0",
44
"description": "Configurable logging for your Tauri app.",
55
"license": "MIT OR Apache-2.0",
66
"authors": [

0 commit comments

Comments
 (0)