From 53a34a83bce765558da4723270124f7b6f8695c1 Mon Sep 17 00:00:00 2001 From: Lucas Nogueira Date: Wed, 3 May 2023 12:23:50 -0300 Subject: [PATCH] chore: trigger release --- .changes/remote-urls.md | 7 ------- core/tauri-runtime-wry/CHANGELOG.md | 5 +++++ core/tauri-runtime-wry/Cargo.toml | 4 ++-- core/tauri-runtime/CHANGELOG.md | 5 +++++ core/tauri-runtime/Cargo.toml | 2 +- core/tauri/CHANGELOG.md | 5 +++++ core/tauri/Cargo.toml | 6 +++--- tooling/cli/metadata.json | 2 +- 8 files changed, 22 insertions(+), 14 deletions(-) delete mode 100644 .changes/remote-urls.md diff --git a/.changes/remote-urls.md b/.changes/remote-urls.md deleted file mode 100644 index 71d094cd97ad..000000000000 --- a/.changes/remote-urls.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"tauri": patch -"tauri-runtime": patch -"tauri-runtime-wry": patch ---- - -Block remote URLs from accessing the IPC. diff --git a/core/tauri-runtime-wry/CHANGELOG.md b/core/tauri-runtime-wry/CHANGELOG.md index b67b9b265ec1..fe7b5723e9c6 100644 --- a/core/tauri-runtime-wry/CHANGELOG.md +++ b/core/tauri-runtime-wry/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[0.12.3] + +- Block remote URLs from accessing the IPC. + - [9c0593c33](https://www.github.com/tauri-apps/tauri/commit/9c0593c33af52cd9e00ec784d15f63efebdf039c) feat(core): block remote URLs from accessing the IPC on 2023-04-12 + ## \[0.12.2] - Fix compatibility with older Linux distributions. diff --git a/core/tauri-runtime-wry/Cargo.toml b/core/tauri-runtime-wry/Cargo.toml index 298ed3eef9eb..57cc41c0c016 100644 --- a/core/tauri-runtime-wry/Cargo.toml +++ b/core/tauri-runtime-wry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-runtime-wry" -version = "0.12.2" +version = "0.12.3" authors = [ "Tauri Programme within The Commons Conservancy" ] categories = [ "gui", "web-programming" ] license = "Apache-2.0 OR MIT" @@ -14,7 +14,7 @@ readme = "README.md" [dependencies] wry = { version = "0.23", default-features = false, features = [ "file-drop", "protocol" ] } -tauri-runtime = { version = "0.12.1", path = "../tauri-runtime" } +tauri-runtime = { version = "0.12.2", path = "../tauri-runtime" } tauri-utils = { version = "1.2.1", path = "../tauri-utils" } uuid = { version = "1", features = [ "v4" ] } rand = "0.8" diff --git a/core/tauri-runtime/CHANGELOG.md b/core/tauri-runtime/CHANGELOG.md index 084df72757b5..88bb7f6eb629 100644 --- a/core/tauri-runtime/CHANGELOG.md +++ b/core/tauri-runtime/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[0.12.2] + +- Block remote URLs from accessing the IPC. + - [9c0593c33](https://www.github.com/tauri-apps/tauri/commit/9c0593c33af52cd9e00ec784d15f63efebdf039c) feat(core): block remote URLs from accessing the IPC on 2023-04-12 + ## \[0.12.1] - Fix `allowlist > app > show/hide` always disabled when `allowlist > app > all: false`. diff --git a/core/tauri-runtime/Cargo.toml b/core/tauri-runtime/Cargo.toml index 949813a891d1..6c170d50bb79 100644 --- a/core/tauri-runtime/Cargo.toml +++ b/core/tauri-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-runtime" -version = "0.12.1" +version = "0.12.2" authors = [ "Tauri Programme within The Commons Conservancy" ] categories = [ "gui", "web-programming" ] license = "Apache-2.0 OR MIT" diff --git a/core/tauri/CHANGELOG.md b/core/tauri/CHANGELOG.md index 208b96bccbb1..17b48555ac74 100644 --- a/core/tauri/CHANGELOG.md +++ b/core/tauri/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[1.2.5] + +- Block remote URLs from accessing the IPC. + - [9c0593c33](https://www.github.com/tauri-apps/tauri/commit/9c0593c33af52cd9e00ec784d15f63efebdf039c) feat(core): block remote URLs from accessing the IPC on 2023-04-12 + ## \[1.2.4] - Pin `ignore` to `=0.4.18`. diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index f82c9d45a041..d64bab7621b5 100644 --- a/core/tauri/Cargo.toml +++ b/core/tauri/Cargo.toml @@ -10,7 +10,7 @@ license = "Apache-2.0 OR MIT" name = "tauri" readme = "README.md" repository = "https://github.com/tauri-apps/tauri" -version = "1.2.4" +version = "1.2.5" [package.metadata.docs.rs] no-default-features = true @@ -49,10 +49,10 @@ url = { version = "2.3" } anyhow = "1.0" thiserror = "1.0" once_cell = "1" -tauri-runtime = { version = "0.12.1", path = "../tauri-runtime" } +tauri-runtime = { version = "0.12.2", path = "../tauri-runtime" } tauri-macros = { version = "1.2.1", path = "../tauri-macros" } tauri-utils = { version = "1.2.1", features = [ "resources" ], path = "../tauri-utils" } -tauri-runtime-wry = { version = "0.12.2", path = "../tauri-runtime-wry", optional = true } +tauri-runtime-wry = { version = "0.12.3", path = "../tauri-runtime-wry", optional = true } rand = "0.8" semver = { version = "1.0", features = [ "serde" ] } serde_repr = "0.1" diff --git a/tooling/cli/metadata.json b/tooling/cli/metadata.json index 50acced34532..aaa65110a779 100644 --- a/tooling/cli/metadata.json +++ b/tooling/cli/metadata.json @@ -3,6 +3,6 @@ "version": "1.2.3", "node": ">= 10.0.0" }, - "tauri": "1.2.4", + "tauri": "1.2.5", "tauri-build": "1.2.1" }