Skip to content

Commit f30a3b0

Browse files
publish new versions (#1393)
Co-authored-by: FabianLars <[email protected]>
1 parent 7d332ef commit f30a3b0

File tree

19 files changed

+86
-23
lines changed

19 files changed

+86
-23
lines changed

.changes/pre.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
".changes/clipboard-mobile.md",
1010
".changes/clipboard-refactor.md",
1111
".changes/clipboard-text-command-rename.md",
12+
".changes/crate-notify-rust.md",
1213
".changes/deep-link-desktop.md",
1314
".changes/dialog-can-create-directories.md",
1415
".changes/dialog-linux-freeze.md",
@@ -25,6 +26,7 @@
2526
".changes/fix-android-warnings.md",
2627
".changes/fix-authenticator-windows-compile.md",
2728
".changes/fix-autolaunch-macos.md",
29+
".changes/fix-deep-link-is-registered-typo.md",
2830
".changes/fix-deep-link-linux.md",
2931
".changes/fix-default-arg-value.md",
3032
".changes/fix-fs-scope-deadlock.md",
@@ -42,6 +44,8 @@
4244
".changes/global-hotkey-event.md",
4345
".changes/global-shortcut-refactor.md",
4446
".changes/http-cookies.md",
47+
".changes/http-origin-duplicated.md",
48+
".changes/http-origin-unsafe.md",
4549
".changes/http-origin.md",
4650
".changes/http-tauri-beta-19.md",
4751
".changes/http-unsafe-headers.md",
@@ -64,6 +68,7 @@
6468
".changes/shell-shellexcute.md",
6569
".changes/single-instance.macos.md",
6670
".changes/sql-column-order.md",
71+
".changes/sql-public-db-instances.md",
6772
".changes/target-sdk-34.md",
6873
".changes/tauri-beta-14-dependencies.md",
6974
".changes/tauri-beta-14.md",
@@ -75,6 +80,7 @@
7580
".changes/tauri-beta-8.md",
7681
".changes/tauri-beta-9.md",
7782
".changes/updater-download-install-js-binding.md",
83+
".changes/updater-msiexec.md",
7884
".changes/updater-non-zip.md",
7985
".changes/updater-nsis-shortcuts.md",
8086
".changes/updater-zip-no-default-features.md",

examples/api/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## \[2.0.0-beta.9]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
39
## \[2.0.0-beta.8]
410

511
### Dependencies

examples/api/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "svelte-app",
33
"private": true,
4-
"version": "2.0.0-beta.8",
4+
"version": "2.0.0-beta.9",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --clearScreen false",
@@ -17,7 +17,7 @@
1717
"@tauri-apps/plugin-dialog": "2.0.0-beta.5",
1818
"@tauri-apps/plugin-fs": "2.0.0-beta.5",
1919
"@tauri-apps/plugin-global-shortcut": "2.0.0-beta.5",
20-
"@tauri-apps/plugin-http": "2.0.0-beta.5",
20+
"@tauri-apps/plugin-http": "2.0.0-beta.6",
2121
"@tauri-apps/plugin-nfc": "2.0.0-beta.5",
2222
"@tauri-apps/plugin-notification": "2.0.0-beta.5",
2323
"@tauri-apps/plugin-os": "2.0.0-beta.5",

examples/api/src-tauri/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## \[2.0.0-beta.11]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
- Upgraded to `[email protected]`
10+
311
## \[2.0.0-beta.10]
412

513
### Dependencies

examples/api/src-tauri/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "api"
33
publish = false
4-
version = "2.0.0-beta.10"
4+
version = "2.0.0-beta.11"
55
description = "An example Tauri Application showcasing the api"
66
edition = "2021"
77
rust-version = { workspace = true }
@@ -23,8 +23,8 @@ tauri-plugin-log = { path = "../../../plugins/log", version = "2.0.0-beta.6" }
2323
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-beta.9", features = [ "watch" ] }
2424
tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.1.0-beta.4" }
2525
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-beta.9" }
26-
tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart" ], version = "2.0.0-beta.9" }
27-
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-beta.7", features = [ "windows7-compat" ] }
26+
tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart" ], version = "2.0.0-beta.10" }
27+
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-beta.8", features = [ "windows7-compat" ] }
2828
tauri-plugin-os = { path = "../../../plugins/os", version = "2.0.0-beta.6" }
2929
tauri-plugin-process = { path = "../../../plugins/process", version = "2.0.0-beta.6" }
3030
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"
4343
[target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
4444
tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.0.0-beta.6" }
4545
tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.0.0-beta.6" }
46-
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-beta.7" }
46+
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-beta.8" }
4747

4848
[target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies]
4949
tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.0.0-beta.7" }

plugins/deep-link/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## \[2.0.0-beta.7]
4+
5+
- [`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.
6+
37
## \[2.0.0-beta.6]
48

59
- [`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.

plugins/deep-link/examples/app/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## \[2.0.0-beta.7]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
39
## \[2.0.0-beta.6]
410

511
### Dependencies

plugins/deep-link/examples/app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "deep-link-example",
33
"private": true,
4-
"version": "2.0.0-beta.6",
4+
"version": "2.0.0-beta.7",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -11,7 +11,7 @@
1111
},
1212
"dependencies": {
1313
"@tauri-apps/api": "2.0.0-beta.13",
14-
"@tauri-apps/plugin-deep-link": "2.0.0-beta.6"
14+
"@tauri-apps/plugin-deep-link": "2.0.0-beta.7"
1515
},
1616
"devDependencies": {
1717
"@tauri-apps/cli": "2.0.0-beta.20",

plugins/deep-link/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tauri-apps/plugin-deep-link",
3-
"version": "2.0.0-beta.6",
3+
"version": "2.0.0-beta.7",
44
"description": "Set your Tauri application as the default handler for an URL",
55
"license": "MIT or APACHE-2.0",
66
"authors": [

plugins/http/CHANGELOG.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## \[2.0.0-beta.6]
4+
5+
- [`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.
6+
37
## \[2.0.0-beta.5]
48

59
- [`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 @@
172176
lpha release!
173177
!
174178
371\)) First v2 alpha release!
175-
lpha release!
179+
lpha release!
180+
!
181+
371\)) First v2 alpha release!
182+
t v2 alpha release!
183+
!
184+
371\)) First v2 alpha release!
185+
ace/pull/371)) First v2 alpha release!
186+
371\)) First v2 alpha release!
187+
!
188+
371\)) First v2 alpha release!
189+
!
190+
371\)) First v2 alpha release!
191+
!
192+
371\)) First v2 alpha release!
193+
lpha release!
194+
!
195+
371\)) First v2 alpha release!
196+
lpha release!
176197
!
177198
371\)) First v2 alpha release!

0 commit comments

Comments
 (0)