diff --git a/.changes/pre.json b/.changes/pre.json index 29df35b669..8e88fcadd2 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -16,6 +16,7 @@ ".changes/dialog-export-fileresponse.md", ".changes/dialog-pin-rfd.md", ".changes/dialog-return-result.md", + ".changes/fix-deep-link-alpha-20.md", ".changes/fix-docs-build.md", ".changes/fix-emit-all-usage.md", ".changes/fix-invoke-usage.md", @@ -31,6 +32,7 @@ ".changes/global-shortcut-app-handle.md", ".changes/http-multipart-refactor.md", ".changes/http-plugin-refactor.md", + ".changes/http-proxy-config.md", ".changes/http-remove-cmd-property.md", ".changes/http-response.md", ".changes/msrv-1.70.md", diff --git a/examples/api/CHANGELOG.md b/examples/api/CHANGELOG.md index 65b16df5fa..6be78dc71b 100644 --- a/examples/api/CHANGELOG.md +++ b/examples/api/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-alpha.8] + +### Dependencies + +- Upgraded to `http-js@2.0.0-alpha.6` + ## \[2.0.0-alpha.7] ### Dependencies diff --git a/examples/api/package.json b/examples/api/package.json index 018c06b2c9..c394430a94 100644 --- a/examples/api/package.json +++ b/examples/api/package.json @@ -1,7 +1,7 @@ { "name": "svelte-app", "private": true, - "version": "2.0.0-alpha.7", + "version": "2.0.0-alpha.8", "type": "module", "scripts": { "dev": "vite --clearScreen false", @@ -17,7 +17,7 @@ "@tauri-apps/plugin-dialog": "2.0.0-alpha.5", "@tauri-apps/plugin-fs": "2.0.0-alpha.5", "@tauri-apps/plugin-global-shortcut": "2.0.0-alpha.5", - "@tauri-apps/plugin-http": "2.0.0-alpha.5", + "@tauri-apps/plugin-http": "2.0.0-alpha.6", "@tauri-apps/plugin-nfc": "2.0.0-alpha.0", "@tauri-apps/plugin-notification": "2.0.0-alpha.5", "@tauri-apps/plugin-os": "2.0.0-alpha.6", diff --git a/examples/api/src-tauri/CHANGELOG.md b/examples/api/src-tauri/CHANGELOG.md index 53f5884094..ccf60c7e52 100644 --- a/examples/api/src-tauri/CHANGELOG.md +++ b/examples/api/src-tauri/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-alpha.10] + +### Dependencies + +- Upgraded to `http@2.0.0-alpha.8` + ## \[2.0.0-alpha.9] ### Dependencies diff --git a/examples/api/src-tauri/Cargo.toml b/examples/api/src-tauri/Cargo.toml index a81fda4e0b..0b2b757d0a 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-alpha.9" +version = "2.0.0-alpha.10" description = "An example Tauri Application showcasing the api" edition = "2021" rust-version = { workspace = true } @@ -23,7 +23,7 @@ tauri-plugin-log = { path = "../../../plugins/log", version = "2.0.0-alpha.6" } tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-alpha.6" } tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.0.0-alpha.6" } tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-alpha.6" } -tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart" ], version = "2.0.0-alpha.7" } +tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart" ], version = "2.0.0-alpha.8" } tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-alpha.7", features = [ "windows7-compat" ] } tauri-plugin-os = { path = "../../../plugins/os", version = "2.0.0-alpha.6" } tauri-plugin-process = { path = "../../../plugins/process", version = "2.0.0-alpha.6" } diff --git a/plugins/deep-link/CHANGELOG.md b/plugins/deep-link/CHANGELOG.md index af2eecb7b6..c208f0163c 100644 --- a/plugins/deep-link/CHANGELOG.md +++ b/plugins/deep-link/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.5] + +- [`8b1d821`](https://github.com/tauri-apps/plugins-workspace/commit/8b1d821a375d66a61e06c78b7148e255855cfe1b)([#844](https://github.com/tauri-apps/plugins-workspace/pull/844)) Fixes issue with tauri alpha.20. + ## \[2.0.0-alpha.4] - [`387c2f9`](https://github.com/tauri-apps/plugins-workspace/commit/387c2f9e0ce4c75c07ffa3fd76391a25b58f5daf)([#802](https://github.com/tauri-apps/plugins-workspace/pull/802)) Update to @tauri-apps/api v2.0.0-alpha.13. diff --git a/plugins/deep-link/Cargo.toml b/plugins/deep-link/Cargo.toml index e5ca7ea703..6785858550 100644 --- a/plugins/deep-link/Cargo.toml +++ b/plugins/deep-link/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-deep-link" -version = "2.0.0-alpha.4" +version = "2.0.0-alpha.5" description = "Set your Tauri application as the default handler for an URL" authors = { workspace = true } license = { workspace = true } diff --git a/plugins/http/CHANGELOG.md b/plugins/http/CHANGELOG.md index a6c8af0643..1fb52ad54d 100644 --- a/plugins/http/CHANGELOG.md +++ b/plugins/http/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.6] + +- [`bfa87da`](https://github.com/tauri-apps/plugins-workspace/commit/bfa87da848f9f1da2abae3354eed632881eddf11)([#824](https://github.com/tauri-apps/plugins-workspace/pull/824)) Add `proxy` field to `fetch` options to configure proxy. + ## \[2.0.0-alpha.5] - [`387c2f9`](https://github.com/tauri-apps/plugins-workspace/commit/387c2f9e0ce4c75c07ffa3fd76391a25b58f5daf)([#802](https://github.com/tauri-apps/plugins-workspace/pull/802)) Update to @tauri-apps/api v2.0.0-alpha.13. @@ -43,5 +47,5 @@ 371\)) First v2 alpha release! ! 371\)) First v2 alpha release! -! + ! 371\)) First v2 alpha release! diff --git a/plugins/http/Cargo.toml b/plugins/http/Cargo.toml index 4a87b6c04d..b4657eea41 100644 --- a/plugins/http/Cargo.toml +++ b/plugins/http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-http" -version = "2.0.0-alpha.7" +version = "2.0.0-alpha.8" 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 559625dc78..2e5b456ab3 100644 --- a/plugins/http/package.json +++ b/plugins/http/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-http", - "version": "2.0.0-alpha.5", + "version": "2.0.0-alpha.6", "license": "MIT or APACHE-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1640f09f90..8dea8d3560 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -88,7 +88,7 @@ importers: specifier: 2.0.0-alpha.5 version: link:../../plugins/global-shortcut '@tauri-apps/plugin-http': - specifier: 2.0.0-alpha.5 + specifier: 2.0.0-alpha.6 version: link:../../plugins/http '@tauri-apps/plugin-nfc': specifier: 2.0.0-alpha.0