diff --git a/.changes/pre.json b/.changes/pre.json index a0e39d52..7ea7c20e 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -9,6 +9,7 @@ ".changes/clipboard-mobile.md", ".changes/clipboard-refactor.md", ".changes/clipboard-text-command-rename.md", + ".changes/crate-notify-rust.md", ".changes/deep-link-desktop.md", ".changes/dialog-can-create-directories.md", ".changes/dialog-linux-freeze.md", @@ -25,6 +26,7 @@ ".changes/fix-android-warnings.md", ".changes/fix-authenticator-windows-compile.md", ".changes/fix-autolaunch-macos.md", + ".changes/fix-deep-link-is-registered-typo.md", ".changes/fix-deep-link-linux.md", ".changes/fix-default-arg-value.md", ".changes/fix-fs-scope-deadlock.md", @@ -42,6 +44,8 @@ ".changes/global-hotkey-event.md", ".changes/global-shortcut-refactor.md", ".changes/http-cookies.md", + ".changes/http-origin-duplicated.md", + ".changes/http-origin-unsafe.md", ".changes/http-origin.md", ".changes/http-tauri-beta-19.md", ".changes/http-unsafe-headers.md", @@ -64,6 +68,7 @@ ".changes/shell-shellexcute.md", ".changes/single-instance.macos.md", ".changes/sql-column-order.md", + ".changes/sql-public-db-instances.md", ".changes/target-sdk-34.md", ".changes/tauri-beta-14-dependencies.md", ".changes/tauri-beta-14.md", @@ -75,6 +80,7 @@ ".changes/tauri-beta-8.md", ".changes/tauri-beta-9.md", ".changes/updater-download-install-js-binding.md", + ".changes/updater-msiexec.md", ".changes/updater-non-zip.md", ".changes/updater-nsis-shortcuts.md", ".changes/updater-zip-no-default-features.md", diff --git a/examples/api/CHANGELOG.md b/examples/api/CHANGELOG.md index 74062d32..5b7be7e6 100644 --- a/examples/api/CHANGELOG.md +++ b/examples/api/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.9] + +### Dependencies + +- Upgraded to `http-js@2.0.0-beta.6` + ## \[2.0.0-beta.8] ### Dependencies diff --git a/examples/api/package.json b/examples/api/package.json index 8759978e..09016b20 100644 --- a/examples/api/package.json +++ b/examples/api/package.json @@ -1,7 +1,7 @@ { "name": "svelte-app", "private": true, - "version": "2.0.0-beta.8", + "version": "2.0.0-beta.9", "type": "module", "scripts": { "dev": "vite --clearScreen false", @@ -17,7 +17,7 @@ "@tauri-apps/plugin-dialog": "2.0.0-beta.5", "@tauri-apps/plugin-fs": "2.0.0-beta.5", "@tauri-apps/plugin-global-shortcut": "2.0.0-beta.5", - "@tauri-apps/plugin-http": "2.0.0-beta.5", + "@tauri-apps/plugin-http": "2.0.0-beta.6", "@tauri-apps/plugin-nfc": "2.0.0-beta.5", "@tauri-apps/plugin-notification": "2.0.0-beta.5", "@tauri-apps/plugin-os": "2.0.0-beta.5", diff --git a/examples/api/src-tauri/CHANGELOG.md b/examples/api/src-tauri/CHANGELOG.md index 5ca67f60..57b51475 100644 --- a/examples/api/src-tauri/CHANGELOG.md +++ b/examples/api/src-tauri/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## \[2.0.0-beta.11] + +### Dependencies + +- Upgraded to `notification@2.0.0-beta.8` +- Upgraded to `http@2.0.0-beta.10` +- Upgraded to `updater@2.0.0-beta.8` + ## \[2.0.0-beta.10] ### Dependencies diff --git a/examples/api/src-tauri/Cargo.toml b/examples/api/src-tauri/Cargo.toml index 85f24514..a58f313a 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.0-beta.10" +version = "2.0.0-beta.11" description = "An example Tauri Application showcasing the api" edition = "2021" rust-version = { workspace = true } @@ -23,8 +23,8 @@ tauri-plugin-log = { path = "../../../plugins/log", version = "2.0.0-beta.6" } tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-beta.9", features = [ "watch" ] } tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.1.0-beta.4" } tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-beta.9" } -tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart" ], version = "2.0.0-beta.9" } -tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-beta.7", features = [ "windows7-compat" ] } +tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart" ], version = "2.0.0-beta.10" } +tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-beta.8", features = [ "windows7-compat" ] } tauri-plugin-os = { path = "../../../plugins/os", version = "2.0.0-beta.6" } tauri-plugin-process = { path = "../../../plugins/process", version = "2.0.0-beta.6" } tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.0.0-beta.7" } @@ -43,7 +43,7 @@ tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.0.0-beta.7" [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.0.0-beta.6" } tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.0.0-beta.6" } -tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-beta.7" } +tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-beta.8" } [target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies] tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.0.0-beta.7" } diff --git a/plugins/deep-link/CHANGELOG.md b/plugins/deep-link/CHANGELOG.md index 70952f76..7c700073 100644 --- a/plugins/deep-link/CHANGELOG.md +++ b/plugins/deep-link/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-beta.7] + +- [`0b008882`](https://github.com/tauri-apps/plugins-workspace/commit/0b0088821e50e33825f7d573b1c826cfeb38dda0) ([#1404](https://github.com/tauri-apps/plugins-workspace/pull/1404) by [@simonhyll](https://github.com/tauri-apps/plugins-workspace/../../simonhyll)) Fixed a typo in the `deep-link` js bindings causing `isRegistered` to not work. + ## \[2.0.0-beta.6] - [`9013854f`](https://github.com/tauri-apps/plugins-workspace/commit/9013854f42a49a230b9dbb9d02774765528a923f)([#1382](https://github.com/tauri-apps/plugins-workspace/pull/1382)) Update to tauri beta.22. diff --git a/plugins/deep-link/examples/app/CHANGELOG.md b/plugins/deep-link/examples/app/CHANGELOG.md index ad1632ab..ef7bea85 100644 --- a/plugins/deep-link/examples/app/CHANGELOG.md +++ b/plugins/deep-link/examples/app/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.7] + +### Dependencies + +- Upgraded to `deep-link-js@2.0.0-beta.7` + ## \[2.0.0-beta.6] ### Dependencies diff --git a/plugins/deep-link/examples/app/package.json b/plugins/deep-link/examples/app/package.json index 9da11425..e4de3295 100644 --- a/plugins/deep-link/examples/app/package.json +++ b/plugins/deep-link/examples/app/package.json @@ -1,7 +1,7 @@ { "name": "deep-link-example", "private": true, - "version": "2.0.0-beta.6", + "version": "2.0.0-beta.7", "type": "module", "scripts": { "dev": "vite", @@ -11,7 +11,7 @@ }, "dependencies": { "@tauri-apps/api": "2.0.0-beta.13", - "@tauri-apps/plugin-deep-link": "2.0.0-beta.6" + "@tauri-apps/plugin-deep-link": "2.0.0-beta.7" }, "devDependencies": { "@tauri-apps/cli": "2.0.0-beta.20", diff --git a/plugins/deep-link/package.json b/plugins/deep-link/package.json index 65f35f24..7595d3a2 100644 --- a/plugins/deep-link/package.json +++ b/plugins/deep-link/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-deep-link", - "version": "2.0.0-beta.6", + "version": "2.0.0-beta.7", "description": "Set your Tauri application as the default handler for an URL", "license": "MIT or APACHE-2.0", "authors": [ diff --git a/plugins/http/CHANGELOG.md b/plugins/http/CHANGELOG.md index ea80f46d..889795dd 100644 --- a/plugins/http/CHANGELOG.md +++ b/plugins/http/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-beta.6] + +- [`0f739dbc`](https://github.com/tauri-apps/plugins-workspace/commit/0f739dbc483a1f091977cbe575c3862fd39f8cf1) ([#1392](https://github.com/tauri-apps/plugins-workspace/pull/1392) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) Allow setting `Origin` header when `unsafe-headers` feature flag is active. + ## \[2.0.0-beta.5] - [`9013854f`](https://github.com/tauri-apps/plugins-workspace/commit/9013854f42a49a230b9dbb9d02774765528a923f)([#1382](https://github.com/tauri-apps/plugins-workspace/pull/1382)) Update to tauri beta.22. @@ -172,6 +176,23 @@ lpha release! ! 371\)) First v2 alpha release! -lpha release! + lpha release! + ! + 371\)) First v2 alpha release! +t v2 alpha release! + ! + 371\)) First v2 alpha release! + ace/pull/371)) First v2 alpha release! + 371\)) First v2 alpha release! + ! + 371\)) First v2 alpha release! + ! + 371\)) First v2 alpha release! + ! + 371\)) First v2 alpha release! + lpha release! + ! + 371\)) First v2 alpha release! + lpha release! ! 371\)) First v2 alpha release! diff --git a/plugins/http/Cargo.toml b/plugins/http/Cargo.toml index a0a78550..11bb784b 100644 --- a/plugins/http/Cargo.toml +++ b/plugins/http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-http" -version = "2.0.0-beta.9" +version = "2.0.0-beta.10" description = "Access an HTTP client written in Rust." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/http/package.json b/plugins/http/package.json index 7aa4b8aa..7ea0cf26 100644 --- a/plugins/http/package.json +++ b/plugins/http/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-http", - "version": "2.0.0-beta.5", + "version": "2.0.0-beta.6", "license": "MIT or APACHE-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/notification/CHANGELOG.md b/plugins/notification/CHANGELOG.md index a80e4b97..ea756a42 100644 --- a/plugins/notification/CHANGELOG.md +++ b/plugins/notification/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-beta.8] + +- [`3779fb50`](https://github.com/tauri-apps/plugins-workspace/commit/3779fb50634fba4d7e7eb0bfecc2216349b9d64d) ([#1432](https://github.com/tauri-apps/plugins-workspace/pull/1432) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Use notify_rust from crates.io instead of local fork. + ## \[2.0.0-beta.5] - [`9013854f`](https://github.com/tauri-apps/plugins-workspace/commit/9013854f42a49a230b9dbb9d02774765528a923f)([#1382](https://github.com/tauri-apps/plugins-workspace/pull/1382)) Update to tauri beta.22. @@ -82,5 +86,5 @@ workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! ithub.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! 717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! -! + ! 717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! diff --git a/plugins/notification/Cargo.toml b/plugins/notification/Cargo.toml index 8cb8a77c..952213fe 100644 --- a/plugins/notification/Cargo.toml +++ b/plugins/notification/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-notification" -version = "2.0.0-beta.7" +version = "2.0.0-beta.8" description = "Send desktop and mobile notifications on your Tauri application." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/sql/CHANGELOG.md b/plugins/sql/CHANGELOG.md index 882b9edf..60337e70 100644 --- a/plugins/sql/CHANGELOG.md +++ b/plugins/sql/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-beta.7] + +- [`4216c051`](https://github.com/tauri-apps/plugins-workspace/commit/4216c0517fd1dcb29d0162dc2fc15291472a2b00) ([#1381](https://github.com/tauri-apps/plugins-workspace/pull/1381) by [@thewh1teagle](https://github.com/tauri-apps/plugins-workspace/../../thewh1teagle)) Made `DbInstances` public for managing database instances directly from `Rust`. + ## \[2.0.0-beta.5] - [`9013854f`](https://github.com/tauri-apps/plugins-workspace/commit/9013854f42a49a230b9dbb9d02774765528a923f)([#1382](https://github.com/tauri-apps/plugins-workspace/pull/1382)) Update to tauri beta.22. diff --git a/plugins/sql/Cargo.toml b/plugins/sql/Cargo.toml index 8600a3b0..2def4932 100644 --- a/plugins/sql/Cargo.toml +++ b/plugins/sql/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-sql" -version = "2.0.0-beta.6" +version = "2.0.0-beta.7" description = "Interface with SQL databases." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/updater/CHANGELOG.md b/plugins/updater/CHANGELOG.md index 92171d79..79f820d1 100644 --- a/plugins/updater/CHANGELOG.md +++ b/plugins/updater/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-beta.8] + +- [`bf29a72b`](https://github.com/tauri-apps/plugins-workspace/commit/bf29a72baaff15214a21989df23081eee84e3b8b) ([#1454](https://github.com/tauri-apps/plugins-workspace/pull/1454) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) Fix regression in updater plugin failing to update using `.msi` installer. + ## \[2.0.0-beta.5] - [`9013854f`](https://github.com/tauri-apps/plugins-workspace/commit/9013854f42a49a230b9dbb9d02774765528a923f)([#1382](https://github.com/tauri-apps/plugins-workspace/pull/1382)) Update to tauri beta.22. diff --git a/plugins/updater/Cargo.toml b/plugins/updater/Cargo.toml index c7deb8cf..0d684481 100644 --- a/plugins/updater/Cargo.toml +++ b/plugins/updater/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-updater" -version = "2.0.0-beta.7" +version = "2.0.0-beta.8" description = "In-app updates for Tauri applications." edition = { workspace = true } authors = { workspace = true } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a906a152..656ba56b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -82,7 +82,7 @@ importers: specifier: 2.0.0-beta.5 version: link:../../plugins/global-shortcut '@tauri-apps/plugin-http': - specifier: 2.0.0-beta.5 + specifier: 2.0.0-beta.6 version: link:../../plugins/http '@tauri-apps/plugin-nfc': specifier: 2.0.0-beta.5 @@ -182,7 +182,7 @@ importers: specifier: 2.0.0-beta.13 version: 2.0.0-beta.13 '@tauri-apps/plugin-deep-link': - specifier: 2.0.0-beta.6 + specifier: 2.0.0-beta.7 version: link:../.. devDependencies: '@tauri-apps/cli': @@ -2659,14 +2659,13 @@ snapshots: dependencies: event-target-shim: 5.0.1 - '@covector/apply@0.9.3(mocha@10.4.0)': + '@covector/apply@0.9.3': dependencies: '@covector/files': 0.7.2 effection: 2.0.8(mocha@10.4.0) semver: 7.6.2 transitivePeerDependencies: - encoding - - mocha '@covector/assemble@0.11.0': dependencies: @@ -2683,7 +2682,7 @@ snapshots: - encoding - supports-color - '@covector/changelog@0.11.0': + '@covector/changelog@0.11.0(mocha@10.4.0)': dependencies: '@covector/files': 0.7.2 effection: 2.0.8(mocha@10.4.0) @@ -2693,6 +2692,7 @@ snapshots: unified: 9.2.2 transitivePeerDependencies: - encoding + - mocha - supports-color '@covector/command@0.7.1': @@ -3543,9 +3543,9 @@ snapshots: covector@0.11.0(mocha@10.4.0): dependencies: - '@covector/apply': 0.9.3(mocha@10.4.0) + '@covector/apply': 0.9.3 '@covector/assemble': 0.11.0 - '@covector/changelog': 0.11.0 + '@covector/changelog': 0.11.0(mocha@10.4.0) '@covector/command': 0.7.1 '@covector/files': 0.7.2 effection: 2.0.8(mocha@10.4.0)