From fc02e91ce151cefcc58cee6aa03cc363801a85ce Mon Sep 17 00:00:00 2001 From: FabianLars Date: Thu, 7 Dec 2023 12:43:17 +0000 Subject: [PATCH] publish new versions --- .changes/pre.json | 13 ++++ examples/api/CHANGELOG.md | 8 +++ examples/api/package.json | 8 +-- examples/api/src-tauri/CHANGELOG.md | 8 +++ examples/api/src-tauri/Cargo.toml | 8 +-- plugins/dialog/CHANGELOG.md | 13 +++- plugins/dialog/Cargo.toml | 2 +- plugins/dialog/package.json | 2 +- plugins/fs/CHANGELOG.md | 4 ++ plugins/fs/package.json | 2 +- plugins/os/CHANGELOG.md | 4 ++ plugins/os/Cargo.toml | 2 +- plugins/os/package.json | 2 +- plugins/positioner/CHANGELOG.md | 4 ++ plugins/positioner/Cargo.toml | 2 +- plugins/sql/CHANGELOG.md | 5 ++ plugins/sql/Cargo.toml | 10 +-- plugins/stronghold/CHANGELOG.md | 4 ++ plugins/stronghold/Cargo.toml | 10 ++- plugins/updater/CHANGELOG.md | 6 ++ plugins/updater/Cargo.toml | 2 +- plugins/upload/CHANGELOG.md | 4 ++ plugins/upload/Cargo.toml | 2 +- plugins/websocket/CHANGELOG.md | 4 ++ plugins/websocket/Cargo.toml | 2 +- plugins/websocket/package.json | 2 +- pnpm-lock.yaml | 94 ++++++++++++++++++++--------- 27 files changed, 169 insertions(+), 58 deletions(-) diff --git a/.changes/pre.json b/.changes/pre.json index 689065e629..217b2e38d4 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -7,12 +7,16 @@ ".changes/api-alpha.9.md", ".changes/deep-link-initial-release.md", ".changes/dialog-async-message-dialog.md", + ".changes/dialog-pin-rfd.md", + ".changes/dialog-return-result.md", ".changes/fix-docs-build.md", ".changes/fix-emit-all-usage.md", ".changes/fix-invoke-usage.md", + ".changes/fix-number-query-params.md", ".changes/fix-permission-notification.md", ".changes/fix-updater-macos.md", ".changes/fix-window-state-api.md", + ".changes/fs-exists-2nd-arg.md", ".changes/fs-wiret-binary-file.md", ".changes/global-shortcut-app-handle.md", ".changes/http-multipart-refactor.md", @@ -25,23 +29,32 @@ ".changes/notification-sound.md", ".changes/os-OsType.md", ".changes/os-plugin-refactor.md", + ".changes/os-reading-undefined.md", ".changes/persisted-scope-asset.md", ".changes/persisted-scope-glob.md", ".changes/positioner-tray-flag.md", ".changes/scanner-initial-release.md", ".changes/shell-command-apis.md", ".changes/shell-detached.md", + ".changes/sql-decode-floats.md", ".changes/stronghold-arg-name.md", + ".changes/stronghold-argon2.md", ".changes/stronghold-constructor.md", ".changes/tauri-alpha-15.md", ".changes/tauri-alpha.11.md", ".changes/tauri-alpha.12.md", + ".changes/tray-position.md", + ".changes/updater-appimage.md", + ".changes/updater-escaped-path.md", ".changes/updater-nsis-admin.md", ".changes/updater-nsis.md", ".changes/updater-plugin-refactor.md", + ".changes/updater-string-replace-round2.md", ".changes/updater-string-replace.md", + ".changes/upload-bufwriter.md", ".changes/v2-alpha.md", ".changes/websocket-fix-arg-name.md", + ".changes/websocket-headers.md", ".changes/window-state-decorated.md", ".changes/window-state-promise.md" ] diff --git a/examples/api/CHANGELOG.md b/examples/api/CHANGELOG.md index fe1eca3e4d..1c7d1efa2b 100644 --- a/examples/api/CHANGELOG.md +++ b/examples/api/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## \[2.0.0-alpha.6] + +### Dependencies + +- Upgraded to `dialog-js@2.0.0-alpha.4` +- Upgraded to `fs-js@2.0.0-alpha.4` +- Upgraded to `os-js@2.0.0-alpha.5` + ## \[2.0.0-alpha.5] ### Dependencies diff --git a/examples/api/package.json b/examples/api/package.json index c211d0dc92..5da44a1110 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.5", + "version": "2.0.0-alpha.6", "type": "module", "scripts": { "dev": "vite --clearScreen false", @@ -13,12 +13,12 @@ "@tauri-apps/plugin-barcode-scanner": "2.0.0-alpha.2", "@tauri-apps/plugin-cli": "2.0.0-alpha.3", "@tauri-apps/plugin-clipboard-manager": "2.0.0-alpha.3", - "@tauri-apps/plugin-dialog": "2.0.0-alpha.3", - "@tauri-apps/plugin-fs": "2.0.0-alpha.3", + "@tauri-apps/plugin-dialog": "2.0.0-alpha.4", + "@tauri-apps/plugin-fs": "2.0.0-alpha.4", "@tauri-apps/plugin-global-shortcut": "2.0.0-alpha.3", "@tauri-apps/plugin-http": "2.0.0-alpha.3", "@tauri-apps/plugin-notification": "2.0.0-alpha.3", - "@tauri-apps/plugin-os": "2.0.0-alpha.4", + "@tauri-apps/plugin-os": "2.0.0-alpha.5", "@tauri-apps/plugin-process": "2.0.0-alpha.3", "@tauri-apps/plugin-shell": "2.0.0-alpha.3", "@tauri-apps/plugin-updater": "2.0.0-alpha.3", diff --git a/examples/api/src-tauri/CHANGELOG.md b/examples/api/src-tauri/CHANGELOG.md index fb55961918..9ff3f85062 100644 --- a/examples/api/src-tauri/CHANGELOG.md +++ b/examples/api/src-tauri/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## \[2.0.0-alpha.8] + +### Dependencies + +- Upgraded to `dialog@2.0.0-alpha.5` +- Upgraded to `os@2.0.0-alpha.5` +- Upgraded to `updater@2.0.0-alpha.5` + ## \[2.0.0-alpha.7] ### Dependencies diff --git a/examples/api/src-tauri/Cargo.toml b/examples/api/src-tauri/Cargo.toml index f1345e8c54..b74df30983 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.7" +version = "2.0.0-alpha.8" description = "An example Tauri Application showcasing the api" edition = "2021" rust-version = { workspace = true } @@ -22,10 +22,10 @@ log = { workspace = true } tauri-plugin-log = { path = "../../../plugins/log", version = "2.0.0-alpha.4" } tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-alpha.4" } tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.0.0-alpha.4" } -tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-alpha.4" } +tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-alpha.5" } tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart" ], version = "2.0.0-alpha.5" } tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-alpha.5", features = [ "windows7-compat" ] } -tauri-plugin-os = { path = "../../../plugins/os", version = "2.0.0-alpha.4" } +tauri-plugin-os = { path = "../../../plugins/os", version = "2.0.0-alpha.5" } tauri-plugin-process = { path = "../../../plugins/process", version = "2.0.0-alpha.4" } tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.0.0-alpha.4" } @@ -43,7 +43,7 @@ tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.0.0-alpha.4 [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-alpha.4" } tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.0.0-alpha.4" } -tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-alpha.4" } +tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-alpha.5" } [target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies] tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.0.0-alpha.2" } diff --git a/plugins/dialog/CHANGELOG.md b/plugins/dialog/CHANGELOG.md index fa9b50cdf5..3bb76e578c 100644 --- a/plugins/dialog/CHANGELOG.md +++ b/plugins/dialog/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.4] + +- [`2e2c0a1`](https://github.com/tauri-apps/plugins-workspace/commit/2e2c0a1b958fcbc7de855ef1d305b11855f2eb8e)([#769](https://github.com/tauri-apps/plugins-workspace/pull/769)) Fix incorrect result for dialog messages. + ## \[2.0.0-alpha.3] - [`e438e0a`](https://github.com/tauri-apps/plugins-workspace/commit/e438e0a62d4b430a5159f05f13ecd397dd891a0d)([#676](https://github.com/tauri-apps/plugins-workspace/pull/676)) Update to @tauri-apps/api v2.0.0-alpha.11. @@ -38,4 +42,11 @@ ## \[2.0.0-alpha.0] - [`717ae67`](https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! -pull/371)) First v2 alpha release! + pull/371)) First v2 alpha release! +7ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! + \` + +## \[2.0.0-alpha.0] + +- [`717ae67`](https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! + pull/371)) First v2 alpha release! diff --git a/plugins/dialog/Cargo.toml b/plugins/dialog/Cargo.toml index 1afb88bb88..9ff2e7c23d 100644 --- a/plugins/dialog/Cargo.toml +++ b/plugins/dialog/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-dialog" -version = "2.0.0-alpha.4" +version = "2.0.0-alpha.5" description = "Native system dialogs for opening and saving files along with message dialogs on your Tauri application." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/dialog/package.json b/plugins/dialog/package.json index dd84aacc5f..6d1c10ac94 100644 --- a/plugins/dialog/package.json +++ b/plugins/dialog/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-dialog", - "version": "2.0.0-alpha.3", + "version": "2.0.0-alpha.4", "license": "MIT or APACHE-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/fs/CHANGELOG.md b/plugins/fs/CHANGELOG.md index 36b1eca922..29a46b9955 100644 --- a/plugins/fs/CHANGELOG.md +++ b/plugins/fs/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.4] + +- [`88d260d`](https://github.com/tauri-apps/plugins-workspace/commit/88d260d90130f9df4b9ce00c1ad1bf1e4b30b1c0)([#744](https://github.com/tauri-apps/plugins-workspace/pull/744)) Add second argument to `exists` function to specify base directory. + ## \[2.0.0-alpha.3] - [`e438e0a`](https://github.com/tauri-apps/plugins-workspace/commit/e438e0a62d4b430a5159f05f13ecd397dd891a0d)([#676](https://github.com/tauri-apps/plugins-workspace/pull/676)) Update to @tauri-apps/api v2.0.0-alpha.11. diff --git a/plugins/fs/package.json b/plugins/fs/package.json index b29578c47f..a1b0172ba9 100644 --- a/plugins/fs/package.json +++ b/plugins/fs/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-fs", - "version": "2.0.0-alpha.3", + "version": "2.0.0-alpha.4", "description": "Access the file system.", "license": "MIT or APACHE-2.0", "authors": [ diff --git a/plugins/os/CHANGELOG.md b/plugins/os/CHANGELOG.md index 0c28882901..8c944f7fa5 100644 --- a/plugins/os/CHANGELOG.md +++ b/plugins/os/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.5] + +- [`fc62ead`](https://github.com/tauri-apps/plugins-workspace/commit/fc62ead56515b64138b8342af1c5ec6071b715fc)([#721](https://github.com/tauri-apps/plugins-workspace/pull/721)) Fix `Uncaught TypeError: Cannot read properties of undefined (reading 'os')` + ## \[2.0.0-alpha.4] - [`e438e0a`](https://github.com/tauri-apps/plugins-workspace/commit/e438e0a62d4b430a5159f05f13ecd397dd891a0d)([#676](https://github.com/tauri-apps/plugins-workspace/pull/676)) Update to @tauri-apps/api v2.0.0-alpha.11. diff --git a/plugins/os/Cargo.toml b/plugins/os/Cargo.toml index 50d505ae0d..3f06bd5a3a 100644 --- a/plugins/os/Cargo.toml +++ b/plugins/os/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-os" -version = "2.0.0-alpha.4" +version = "2.0.0-alpha.5" description = "Read information about the operating system." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/os/package.json b/plugins/os/package.json index 494e05b60f..a89b719ba7 100644 --- a/plugins/os/package.json +++ b/plugins/os/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-os", - "version": "2.0.0-alpha.4", + "version": "2.0.0-alpha.5", "license": "MIT or APACHE-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/positioner/CHANGELOG.md b/plugins/positioner/CHANGELOG.md index 16e7846f2c..efe3e2fec4 100644 --- a/plugins/positioner/CHANGELOG.md +++ b/plugins/positioner/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.5] + +- [`251852c`](https://github.com/tauri-apps/plugins-workspace/commit/251852ccbc97abe5765fb9663aab27701f3d7c7c)([#702](https://github.com/tauri-apps/plugins-workspace/pull/702)) `TrayLeft`, `TrayRight` and `TrayCenter` will now position the window according to the tray position relative to the monitor dimensions to prevent windows being displayed partially off-screen. + ## \[2.0.0-alpha.3] - [`e438e0a`](https://github.com/tauri-apps/plugins-workspace/commit/e438e0a62d4b430a5159f05f13ecd397dd891a0d)([#676](https://github.com/tauri-apps/plugins-workspace/pull/676)) Update to @tauri-apps/api v2.0.0-alpha.11. diff --git a/plugins/positioner/Cargo.toml b/plugins/positioner/Cargo.toml index b23c6db2d5..76b898f9ba 100644 --- a/plugins/positioner/Cargo.toml +++ b/plugins/positioner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-positioner" -version = "2.0.0-alpha.4" +version = "2.0.0-alpha.5" description = "Position your windows at well-known locations." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/sql/CHANGELOG.md b/plugins/sql/CHANGELOG.md index 0952373a4c..f68e30e0ff 100644 --- a/plugins/sql/CHANGELOG.md +++ b/plugins/sql/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[2.0.0-alpha.5] + +- [`f4b2674`](https://github.com/tauri-apps/plugins-workspace/commit/f4b2674fd5ce9d845b7ef871ce232b27d0764880)([#797](https://github.com/tauri-apps/plugins-workspace/pull/797)) Encode JSON number query params as f64 to fix JSON_EXTRACT queries on SQLite +- [`251852c`](https://github.com/tauri-apps/plugins-workspace/commit/251852ccbc97abe5765fb9663aab27701f3d7c7c)([#702](https://github.com/tauri-apps/plugins-workspace/pull/702)) Fixed an issue where float-like values were decoded as `null`. + ## \[2.0.0-alpha.3] - [`e438e0a`](https://github.com/tauri-apps/plugins-workspace/commit/e438e0a62d4b430a5159f05f13ecd397dd891a0d)([#676](https://github.com/tauri-apps/plugins-workspace/pull/676)) Update to @tauri-apps/api v2.0.0-alpha.11. diff --git a/plugins/sql/Cargo.toml b/plugins/sql/Cargo.toml index c428e08609..0938e8a616 100644 --- a/plugins/sql/Cargo.toml +++ b/plugins/sql/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-sql" -version = "2.0.0-alpha.4" +version = "2.0.0-alpha.5" description = "Interface with SQL databases." authors = { workspace = true } license = { workspace = true } @@ -19,11 +19,11 @@ tauri = { workspace = true } log = { workspace = true } thiserror = { workspace = true } futures-core = "0.3" -sqlx = { version = "0.7", features = ["json", "time"] } +sqlx = { version = "0.7", features = [ "json", "time" ] } time = "0.3" tokio = { version = "1", features = [ "sync" ] } [features] -sqlite = ["sqlx/sqlite", "sqlx/runtime-tokio"] -mysql = ["sqlx/mysql", "sqlx/runtime-tokio-rustls"] -postgres = ["sqlx/postgres", "sqlx/runtime-tokio-rustls"] +sqlite = [ "sqlx/sqlite", "sqlx/runtime-tokio" ] +mysql = [ "sqlx/mysql", "sqlx/runtime-tokio-rustls" ] +postgres = [ "sqlx/postgres", "sqlx/runtime-tokio-rustls" ] diff --git a/plugins/stronghold/CHANGELOG.md b/plugins/stronghold/CHANGELOG.md index fc03706218..13c603adb7 100644 --- a/plugins/stronghold/CHANGELOG.md +++ b/plugins/stronghold/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.5] + +- [`251852c`](https://github.com/tauri-apps/plugins-workspace/commit/251852ccbc97abe5765fb9663aab27701f3d7c7c)([#702](https://github.com/tauri-apps/plugins-workspace/pull/702)) Added `Builder::with_argon2`. + ## \[2.0.0-alpha.4] - [`e438e0a`](https://github.com/tauri-apps/plugins-workspace/commit/e438e0a62d4b430a5159f05f13ecd397dd891a0d)([#676](https://github.com/tauri-apps/plugins-workspace/pull/676)) Update to @tauri-apps/api v2.0.0-alpha.11. diff --git a/plugins/stronghold/Cargo.toml b/plugins/stronghold/Cargo.toml index 2b3f36349b..6891a26d25 100644 --- a/plugins/stronghold/Cargo.toml +++ b/plugins/stronghold/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-stronghold" -version = "2.0.0-alpha.4" +version = "2.0.0-alpha.5" description = "Store secrets and keys using the IOTA Stronghold encrypted database." authors = { workspace = true } license = { workspace = true } @@ -21,16 +21,14 @@ iota_stronghold = "1" iota-crypto = "0.23" hex = "0.4" zeroize = { version = "1", features = [ "zeroize_derive" ] } - -# kdf dependencies rust-argon2 = { version = "1", optional = true } rand_chacha = { version = "0.3.1", optional = true } -rand_core = { version = "0.6.4", features = ["getrandom"], optional = true } +rand_core = { version = "0.6.4", features = [ "getrandom" ], optional = true } [dev-dependencies] rand = "0.8" rusty-fork = "0.3" [features] -default = ["kdf"] -kdf = ["dep:rust-argon2", "dep:rand_chacha", "dep:rand_core"] +default = [ "kdf" ] +kdf = [ "dep:rust-argon2", "dep:rand_chacha", "dep:rand_core" ] diff --git a/plugins/updater/CHANGELOG.md b/plugins/updater/CHANGELOG.md index 1d972ee51f..15303abb76 100644 --- a/plugins/updater/CHANGELOG.md +++ b/plugins/updater/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-alpha.5] + +- [`e7c72c9`](https://github.com/tauri-apps/plugins-workspace/commit/e7c72c9816d14a218e702dd233a6cfec957c2ee6)([#784](https://github.com/tauri-apps/plugins-workspace/pull/784)) Fix updater failing to extract the AppImage resulting in failing to update and also deleting the current version. +- [`9db40a6`](https://github.com/tauri-apps/plugins-workspace/commit/9db40a6dc4f0811d8f80c6b6476b6b965d91ac6e)([#727](https://github.com/tauri-apps/plugins-workspace/pull/727)) Use escaped installer path to start the nsis/msi updater to prevent crashes if app name contained spaces. +- [`0864c54`](https://github.com/tauri-apps/plugins-workspace/commit/0864c541474222c04eea309c404695503327f452)([#756](https://github.com/tauri-apps/plugins-workspace/pull/756)) The plugin now correctly replaces `arch`, `current_version` and `target` in query params again. + ## \[2.0.0-alpha.3] - [`e438e0a`](https://github.com/tauri-apps/plugins-workspace/commit/e438e0a62d4b430a5159f05f13ecd397dd891a0d)([#676](https://github.com/tauri-apps/plugins-workspace/pull/676)) Update to @tauri-apps/api v2.0.0-alpha.11. diff --git a/plugins/updater/Cargo.toml b/plugins/updater/Cargo.toml index fa3235be6e..9a08af379a 100644 --- a/plugins/updater/Cargo.toml +++ b/plugins/updater/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-updater" -version = "2.0.0-alpha.4" +version = "2.0.0-alpha.5" description = "In-app updates for Tauri applications." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/upload/CHANGELOG.md b/plugins/upload/CHANGELOG.md index 0952373a4c..2fde92f4ad 100644 --- a/plugins/upload/CHANGELOG.md +++ b/plugins/upload/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.5] + +- [`251852c`](https://github.com/tauri-apps/plugins-workspace/commit/251852ccbc97abe5765fb9663aab27701f3d7c7c)([#702](https://github.com/tauri-apps/plugins-workspace/pull/702)) Use `BufWriter` to reduce IO calls. + ## \[2.0.0-alpha.3] - [`e438e0a`](https://github.com/tauri-apps/plugins-workspace/commit/e438e0a62d4b430a5159f05f13ecd397dd891a0d)([#676](https://github.com/tauri-apps/plugins-workspace/pull/676)) Update to @tauri-apps/api v2.0.0-alpha.11. diff --git a/plugins/upload/Cargo.toml b/plugins/upload/Cargo.toml index cef131fbed..74d725eff5 100644 --- a/plugins/upload/Cargo.toml +++ b/plugins/upload/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-upload" -version = "2.0.0-alpha.4" +version = "2.0.0-alpha.5" description = "Upload files from disk to a remote server over HTTP." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/websocket/CHANGELOG.md b/plugins/websocket/CHANGELOG.md index ee554849d6..c6cdfc511d 100644 --- a/plugins/websocket/CHANGELOG.md +++ b/plugins/websocket/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.4] + +- [`251852c`](https://github.com/tauri-apps/plugins-workspace/commit/251852ccbc97abe5765fb9663aab27701f3d7c7c)([#702](https://github.com/tauri-apps/plugins-workspace/pull/702)) Add support for custom request headers. + ## \[2.0.0-alpha.3] - [`e438e0a`](https://github.com/tauri-apps/plugins-workspace/commit/e438e0a62d4b430a5159f05f13ecd397dd891a0d)([#676](https://github.com/tauri-apps/plugins-workspace/pull/676)) Update to @tauri-apps/api v2.0.0-alpha.11. diff --git a/plugins/websocket/Cargo.toml b/plugins/websocket/Cargo.toml index 3e90ca36fe..53ce655b92 100644 --- a/plugins/websocket/Cargo.toml +++ b/plugins/websocket/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-websocket" -version = "2.0.0-alpha.4" +version = "2.0.0-alpha.5" description = "Expose a WebSocket server to your Tauri frontend." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/websocket/package.json b/plugins/websocket/package.json index ea6652d16e..5942140282 100644 --- a/plugins/websocket/package.json +++ b/plugins/websocket/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-websocket", - "version": "2.0.0-alpha.3", + "version": "2.0.0-alpha.4", "license": "MIT or APACHE-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9fe24b4eb3..da0bcac743 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -76,10 +76,10 @@ importers: specifier: 2.0.0-alpha.3 version: link:../../plugins/clipboard-manager '@tauri-apps/plugin-dialog': - specifier: 2.0.0-alpha.3 + specifier: 2.0.0-alpha.4 version: link:../../plugins/dialog '@tauri-apps/plugin-fs': - specifier: 2.0.0-alpha.3 + specifier: 2.0.0-alpha.4 version: link:../../plugins/fs '@tauri-apps/plugin-global-shortcut': specifier: 2.0.0-alpha.3 @@ -91,7 +91,7 @@ importers: specifier: 2.0.0-alpha.3 version: link:../../plugins/notification '@tauri-apps/plugin-os': - specifier: 2.0.0-alpha.4 + specifier: 2.0.0-alpha.5 version: link:../../plugins/os '@tauri-apps/plugin-process': specifier: 2.0.0-alpha.3 @@ -129,7 +129,7 @@ importers: version: 4.2.7 unocss: specifier: ^0.56.5 - version: 0.56.5(postcss@8.4.31)(rollup@4.5.1)(vite@4.5.0) + version: 0.56.5(postcss@8.4.31)(vite@4.5.0) vite: specifier: ^4.5.0 version: 4.5.0 @@ -472,7 +472,7 @@ packages: peerDependencies: mocha: ^10.0.0 dependencies: - effection: 2.0.8(mocha@10.2.0) + effection: 2.0.8 mocha: 10.2.0 dev: true @@ -917,7 +917,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 espree: 9.6.1 globals: 13.23.0 ignore: 5.2.4 @@ -944,7 +944,7 @@ packages: engines: {node: '>=10.10.0'} dependencies: '@humanwhocodes/object-schema': 2.0.1 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -985,7 +985,7 @@ packages: '@antfu/install-pkg': 0.1.1 '@antfu/utils': 0.7.6 '@iconify/types': 2.0.0 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 kolorist: 1.8.0 local-pkg: 0.4.3 transitivePeerDependencies: @@ -1101,6 +1101,20 @@ packages: typescript: 5.3.2 dev: true + /@rollup/pluginutils@5.0.5: + resolution: {integrity: sha512-6aEYR910NyP73oHiJglti74iRyOwgFU4x3meH/H8OJx6Ry0j6cOVZ5X/wTvub7G7Ao6qaHBEaNsV3GLJkSsF+Q==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + '@types/estree': 1.0.4 + estree-walker: 2.0.2 + picomatch: 2.3.1 + dev: true + /@rollup/pluginutils@5.0.5(rollup@4.5.1): resolution: {integrity: sha512-6aEYR910NyP73oHiJglti74iRyOwgFU4x3meH/H8OJx6Ry0j6cOVZ5X/wTvub7G7Ao6qaHBEaNsV3GLJkSsF+Q==} engines: {node: '>=14.0.0'} @@ -1258,7 +1272,7 @@ packages: vite: ^4.0.0 dependencies: '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@4.2.7)(vite@4.5.0) - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 svelte: 4.2.7 vite: 4.5.0 transitivePeerDependencies: @@ -1274,7 +1288,7 @@ packages: vite: ^4.0.0 dependencies: '@sveltejs/vite-plugin-svelte': 2.5.3(svelte@4.2.7)(vite@5.0.2) - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 svelte: 4.2.7 vite: 5.0.2 transitivePeerDependencies: @@ -1289,7 +1303,7 @@ packages: vite: ^4.0.0 dependencies: '@sveltejs/vite-plugin-svelte-inspector': 1.0.4(@sveltejs/vite-plugin-svelte@2.5.3)(svelte@4.2.7)(vite@4.5.0) - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 deepmerge: 4.3.1 kleur: 4.1.5 magic-string: 0.30.5 @@ -1309,7 +1323,7 @@ packages: vite: ^4.0.0 dependencies: '@sveltejs/vite-plugin-svelte-inspector': 1.0.4(@sveltejs/vite-plugin-svelte@2.5.3)(svelte@4.2.7)(vite@5.0.2) - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 deepmerge: 4.3.1 kleur: 4.1.5 magic-string: 0.30.5 @@ -1491,7 +1505,7 @@ packages: '@typescript-eslint/type-utils': 6.12.0(eslint@8.54.0)(typescript@5.3.2) '@typescript-eslint/utils': 6.12.0(eslint@8.54.0)(typescript@5.3.2) '@typescript-eslint/visitor-keys': 6.12.0 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 eslint: 8.54.0 graphemer: 1.4.0 ignore: 5.2.4 @@ -1517,7 +1531,7 @@ packages: '@typescript-eslint/types': 6.12.0 '@typescript-eslint/typescript-estree': 6.12.0(typescript@5.3.2) '@typescript-eslint/visitor-keys': 6.12.0 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 eslint: 8.54.0 typescript: 5.3.2 transitivePeerDependencies: @@ -1544,7 +1558,7 @@ packages: dependencies: '@typescript-eslint/typescript-estree': 6.12.0(typescript@5.3.2) '@typescript-eslint/utils': 6.12.0(eslint@8.54.0)(typescript@5.3.2) - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 eslint: 8.54.0 ts-api-utils: 1.0.3(typescript@5.3.2) typescript: 5.3.2 @@ -1568,7 +1582,7 @@ packages: dependencies: '@typescript-eslint/types': 6.12.0 '@typescript-eslint/visitor-keys': 6.12.0 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 semver: 7.5.4 @@ -1609,7 +1623,7 @@ packages: resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} dev: true - /@unocss/astro@0.56.5(rollup@4.5.1)(vite@4.5.0): + /@unocss/astro@0.56.5(vite@4.5.0): resolution: {integrity: sha512-nkxyGV9mA7DZ5LEr4Gap/SggM60MFNUfn56ngpxCqjQHJOMRJrAcR99hCVn+78vZ9xuZl9HxdIwgZLzn41thMw==} peerDependencies: vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 @@ -1619,19 +1633,19 @@ packages: dependencies: '@unocss/core': 0.56.5 '@unocss/reset': 0.56.5 - '@unocss/vite': 0.56.5(rollup@4.5.1)(vite@4.5.0) + '@unocss/vite': 0.56.5(vite@4.5.0) vite: 4.5.0 transitivePeerDependencies: - rollup dev: true - /@unocss/cli@0.56.5(rollup@4.5.1): + /@unocss/cli@0.56.5: resolution: {integrity: sha512-VYaqu7Dr1n9ebFFdQM+9Jyg/o9BVKRShlV8bQsBS58gkXiWsA/uAl1Uy2vzpLSrT0F6uGyDmYUF6p4DaUnUO+w==} engines: {node: '>=14'} hasBin: true dependencies: '@ampproject/remapping': 2.2.1 - '@rollup/pluginutils': 5.0.5(rollup@4.5.1) + '@rollup/pluginutils': 5.0.5 '@unocss/config': 0.56.5 '@unocss/core': 0.56.5 '@unocss/preset-uno': 0.56.5 @@ -1800,13 +1814,13 @@ packages: '@unocss/core': 0.56.5 dev: true - /@unocss/vite@0.56.5(rollup@4.5.1)(vite@4.5.0): + /@unocss/vite@0.56.5(vite@4.5.0): resolution: {integrity: sha512-X4nvIukXTH//d+Oc97nJogK04sVGw4fc5LhVV1DjHQVmAOAmhTJCG6SxWGoSeqqUMx5X3gI9fVILK+5O8yl5EA==} peerDependencies: vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 dependencies: '@ampproject/remapping': 2.2.1 - '@rollup/pluginutils': 5.0.5(rollup@4.5.1) + '@rollup/pluginutils': 5.0.5 '@unocss/config': 0.56.5 '@unocss/core': 0.56.5 '@unocss/inspector': 0.56.5 @@ -2273,6 +2287,18 @@ packages: ms: 2.1.3 dev: true + /debug@4.3.4: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + dev: true + /debug@4.3.4(supports-color@8.1.1): resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} engines: {node: '>=6.0'} @@ -2382,6 +2408,18 @@ packages: resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} dev: true + /effection@2.0.8: + resolution: {integrity: sha512-/v7cbPIXGGylInQgHHjJutzqUn6VIfcP13hh2X0hXf04wwAlSI+lVjUBKpr5TX3+v9dXV/JLHO/pqQ9Cp1QAnQ==} + dependencies: + '@effection/channel': 2.0.6 + '@effection/core': 2.2.3 + '@effection/events': 2.0.6 + '@effection/fetch': 2.0.7(mocha@10.2.0) + '@effection/main': 2.1.2 + '@effection/stream': 2.0.6 + '@effection/subscription': 2.0.6 + dev: true + /effection@2.0.8(mocha@10.2.0): resolution: {integrity: sha512-/v7cbPIXGGylInQgHHjJutzqUn6VIfcP13hh2X0hXf04wwAlSI+lVjUBKpr5TX3+v9dXV/JLHO/pqQ9Cp1QAnQ==} dependencies: @@ -2743,7 +2781,7 @@ packages: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.2.2 @@ -3648,7 +3686,7 @@ packages: /micromark@2.11.4: resolution: {integrity: sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==} dependencies: - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 parse-entities: 2.0.0 transitivePeerDependencies: - supports-color @@ -4780,7 +4818,7 @@ packages: '@types/unist': 2.0.9 dev: true - /unocss@0.56.5(postcss@8.4.31)(rollup@4.5.1)(vite@4.5.0): + /unocss@0.56.5(postcss@8.4.31)(vite@4.5.0): resolution: {integrity: sha512-tO+9St4CntSjHpLXZqBo0/etS06MtvFF1NEny/qFJCL9sCopWwmDKuzW6/LIb4wfqZLdMpVFoEACMNv8nP849A==} engines: {node: '>=14'} peerDependencies: @@ -4792,8 +4830,8 @@ packages: vite: optional: true dependencies: - '@unocss/astro': 0.56.5(rollup@4.5.1)(vite@4.5.0) - '@unocss/cli': 0.56.5(rollup@4.5.1) + '@unocss/astro': 0.56.5(vite@4.5.0) + '@unocss/cli': 0.56.5 '@unocss/core': 0.56.5 '@unocss/extractor-arbitrary-variants': 0.56.5 '@unocss/postcss': 0.56.5(postcss@8.4.31) @@ -4811,7 +4849,7 @@ packages: '@unocss/transformer-compile-class': 0.56.5 '@unocss/transformer-directives': 0.56.5 '@unocss/transformer-variant-group': 0.56.5 - '@unocss/vite': 0.56.5(rollup@4.5.1)(vite@4.5.0) + '@unocss/vite': 0.56.5(vite@4.5.0) vite: 4.5.0 transitivePeerDependencies: - postcss