From 38b5d37b5447e19931b1048a3d88fdca44fe0a22 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Dec 2023 14:29:57 -0300 Subject: [PATCH] Publish New Versions (v2) (#843) Co-authored-by: lucasfernog --- .changes/pre.json | 2 ++ examples/api/CHANGELOG.md | 6 ++++++ examples/api/package.json | 4 ++-- examples/api/src-tauri/CHANGELOG.md | 6 ++++++ examples/api/src-tauri/Cargo.toml | 4 ++-- plugins/deep-link/CHANGELOG.md | 4 ++++ plugins/deep-link/Cargo.toml | 2 +- plugins/http/CHANGELOG.md | 6 +++++- plugins/http/Cargo.toml | 2 +- plugins/http/package.json | 2 +- pnpm-lock.yaml | 2 +- 11 files changed, 31 insertions(+), 9 deletions(-) diff --git a/.changes/pre.json b/.changes/pre.json index 29df35b66..8e88fcadd 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 65b16df5f..6be78dc71 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 018c06b2c..c394430a9 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 53f588409..ccf60c7e5 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 a81fda4e0..0b2b757d0 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 af2eecb7b..c208f0163 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 e5ca7ea70..678585855 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 a6c8af064..1fb52ad54 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 4a87b6c04..b4657eea4 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 559625dc7..2e5b456ab 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 1640f09f9..8dea8d356 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