Skip to content

Commit ad17266

Browse files
Publish New Versions (v2) (tauri-apps#2348)
Co-authored-by: FabianLars <[email protected]>
1 parent 78acfa4 commit ad17266

26 files changed

+77
-71
lines changed

.changes/cleanup-fn-websocket.md

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

.changes/clipboard-drop.md

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

.changes/http-dangerous-settings.md

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

.changes/objc2-log.md

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

.changes/updater-unknown-fields.md

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

Cargo.lock

Lines changed: 6 additions & 6 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: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## \[2.0.12]
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+
312
## \[2.0.11]
413

514
### Dependencies

examples/api/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "api",
33
"private": true,
4-
"version": "2.0.11",
4+
"version": "2.0.12",
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.0",
17+
"@tauri-apps/plugin-clipboard-manager": "^2.2.1",
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-opener": "^2.2.5",
2323
"@tauri-apps/plugin-haptics": "^2.2.0",
24-
"@tauri-apps/plugin-http": "^2.2.0",
24+
"@tauri-apps/plugin-http": "^2.3.0",
2525
"@tauri-apps/plugin-nfc": "^2.2.0",
2626
"@tauri-apps/plugin-notification": "^2.2.1",
2727
"@tauri-apps/plugin-os": "^2.2.0",
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.2.0",
31+
"@tauri-apps/plugin-updater": "^2.4.0",
3232
"@zerodevx/svelte-json-view": "1.0.11"
3333
},
3434
"devDependencies": {

examples/api/src-tauri/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
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+
312
## \[2.0.15]
413

514
### Dependencies

examples/api/src-tauri/Cargo.toml

Lines changed: 5 additions & 5 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.15"
4+
version = "2.0.16"
55
description = "An example Tauri Application showcasing the api"
66
edition = "2021"
77
rust-version = { workspace = true }
@@ -19,15 +19,15 @@ 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.0" }
22+
tauri-plugin-log = { path = "../../../plugins/log", version = "2.2.1" }
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.0" }
26+
tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.2.1" }
2727
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.2.0" }
2828
tauri-plugin-http = { path = "../../../plugins/http", features = [
2929
"multipart",
30-
], version = "2.2.0" }
30+
], version = "2.3.0" }
3131
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.2.1", features = [
3232
"windows7-compat",
3333
] }
@@ -53,7 +53,7 @@ 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.3.1" }
56+
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.4.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]

plugins/clipboard-manager/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.1]
4+
5+
- [`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.
6+
37
## \[2.2.0]
48

59
- [`3a79266b`](https://github.com/tauri-apps/plugins-workspace/commit/3a79266b8cf96a55b1ae6339d725567d45a44b1d) ([#2173](https://github.com/tauri-apps/plugins-workspace/pull/2173) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Bumped all plugins to `v2.2.0`. From now, the versions for the Rust and JavaScript packages of each plugin will be in sync with each other.

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.0"
3+
version = "2.2.1"
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.0",
3+
"version": "2.2.1",
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.3.0]
4+
5+
- [`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.
6+
37
## \[2.2.0]
48

59
- [`3a79266b`](https://github.com/tauri-apps/plugins-workspace/commit/3a79266b8cf96a55b1ae6339d725567d45a44b1d) ([#2173](https://github.com/tauri-apps/plugins-workspace/pull/2173) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Bumped all plugins to `v2.2.0`. From now, the versions for the Rust and JavaScript packages of each plugin will be in sync with each other.

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.2.0"
3+
version = "2.3.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.2.0",
3+
"version": "2.3.0",
44
"license": "MIT OR Apache-2.0",
55
"authors": [
66
"Tauri Programme within The Commons Conservancy"

plugins/log/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.1]
4+
5+
- [`784a54a3`](https://github.com/tauri-apps/plugins-workspace/commit/784a54a39094dfbaaa8dd123eb083c04dc6c3bb2) ([#2344](https://github.com/tauri-apps/plugins-workspace/pull/2344) by [@madsmtm](https://github.com/tauri-apps/plugins-workspace/../../madsmtm)) Use `objc2` instead of `objc`.
6+
37
## \[2.2.0]
48

59
- [`3a79266b`](https://github.com/tauri-apps/plugins-workspace/commit/3a79266b8cf96a55b1ae6339d725567d45a44b1d) ([#2173](https://github.com/tauri-apps/plugins-workspace/pull/2173) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Bumped all plugins to `v2.2.0`. From now, the versions for the Rust and JavaScript packages of each plugin will be in sync with each other.

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.0"
3+
version = "2.2.1"
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.0",
3+
"version": "2.2.1",
44
"description": "Configurable logging for your Tauri app.",
55
"license": "MIT OR Apache-2.0",
66
"authors": [

plugins/updater/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+
- [`0afc9b6b`](https://github.com/tauri-apps/plugins-workspace/commit/0afc9b6be07bee1077f05a86285d977e57810ed9) ([#2325](https://github.com/tauri-apps/plugins-workspace/pull/2325) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) The `Update` struct/object will now contain a `raw_json`/`rawJson` property to be able to read parts of server's json response that are not handled by the plugin.
6+
37
## \[2.3.1]
48

59
- [`57efb47c`](https://github.com/tauri-apps/plugins-workspace/commit/57efb47c116f880477f72f02a8e4239e88007d44) ([#2235](https://github.com/tauri-apps/plugins-workspace/pull/2235) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) Add `Builder::header` and `Builder::headers` method to configure default headers for updater.

plugins/updater/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-updater"
3-
version = "2.3.1"
3+
version = "2.4.0"
44
description = "In-app updates for Tauri applications."
55
edition = { workspace = true }
66
authors = { workspace = true }

plugins/updater/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-updater",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"license": "MIT OR Apache-2.0",
55
"authors": [
66
"Tauri Programme within The Commons Conservancy"

plugins/websocket/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.3.0]
4+
5+
- [`78acfa45`](https://github.com/tauri-apps/plugins-workspace/commit/78acfa456f343c0af5fbf35660802d14ff7a5eca) ([#2027](https://github.com/tauri-apps/plugins-workspace/pull/2027) by [@twlite](https://github.com/tauri-apps/plugins-workspace/../../twlite)) `addListener` now returns a cleanup function instead of `void` to remove the listener.
6+
37
## \[2.2.1]
48

59
- [`05cca602`](https://github.com/tauri-apps/plugins-workspace/commit/05cca602d927c30014d3892438ca28d99bc4e1d3) ([#2210](https://github.com/tauri-apps/plugins-workspace/pull/2210) by [@renovate](https://github.com/tauri-apps/plugins-workspace/../../renovate)) **Breaking change:** Updated tokio_tungstenite to `0.26`. This may be a breaking change if you use the `tls_connector` Builder method in Rust.

plugins/websocket/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-websocket"
3-
version = "2.2.1"
3+
version = "2.3.0"
44
description = "Expose a WebSocket server to your Tauri frontend."
55
authors = { workspace = true }
66
license = { workspace = true }

plugins/websocket/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-websocket",
3-
"version": "2.2.1",
3+
"version": "2.3.0",
44
"license": "MIT OR Apache-2.0",
55
"authors": [
66
"Tauri Programme within The Commons Conservancy"

0 commit comments

Comments
 (0)