Skip to content

Commit d7f8482

Browse files
committed
Merge remote-tracking branch 'upstream/v2' into v2
2 parents dd40828 + 73f6281 commit d7f8482

File tree

149 files changed

+1490
-955
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

149 files changed

+1490
-955
lines changed

.changes/browser-headers.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"http-js": "patch"
3+
---
4+
5+
Include headers created by browser if not declared by user, which fixes missing headers like `Content-Type` when using `FormData`.

.changes/clipboard-mobile.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"clipboard-manager": "patch"
3+
---
4+
5+
Fix reading and writing text on Android and iOS.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
authenticator: patch
3+
---
4+
5+
Pin winapi-utils to 0.1.6 to fix compilation error in dependencies.

.changes/fix-deep-link-linux.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
deep-link: patch
3+
---
4+
5+
Fixed an issue that caused the `deep-link` plugin to generate incorrect `.desktop` files on Linux.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"notification": patch
3+
---
4+
5+
Fix development mode function name check to set the app ID on macOS.

.changes/pre.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,18 @@
22
"tag": "beta",
33
"changes": [
44
".changes/beta.md",
5+
".changes/browser-headers.md",
56
".changes/clipboard-expose-struct.md",
67
".changes/clipboard-html.md",
78
".changes/clipboard-manager-image.md",
9+
".changes/clipboard-mobile.md",
810
".changes/clipboard-refactor.md",
911
".changes/clipboard-text-command-rename.md",
1012
".changes/deep-link-desktop.md",
1113
".changes/dialog-can-create-directories.md",
1214
".changes/dialog-linux-freeze.md",
1315
".changes/dialog-main-thread.md",
16+
".changes/dialog-metadata.md",
1417
".changes/dialog-path-return-mismatch.md",
1518
".changes/enhance-fs-scope-type.md",
1619
".changes/enhance-http-scope.md",
@@ -19,7 +22,9 @@
1922
".changes/feat-single-instance-semver.md",
2023
".changes/feat-websocket-tls-connector.md",
2124
".changes/file-autogen-fix.md",
25+
".changes/fix-authenticator-windows-compile.md",
2226
".changes/fix-autolaunch-macos.md",
27+
".changes/fix-deep-link-linux.md",
2328
".changes/fix-default-arg-value.md",
2429
".changes/fix-fs-scope-deadlock.md",
2530
".changes/fix-fs-watcher-basedir.md",
@@ -35,11 +40,15 @@
3540
".changes/global-api-script-refactor.md",
3641
".changes/global-hotkey-event.md",
3742
".changes/global-shortcut-refactor.md",
43+
".changes/http-cookies.md",
44+
".changes/http-origin.md",
45+
".changes/http-tauri-beta-19.md",
3846
".changes/http-unsafe-headers.md",
3947
".changes/http-user-agent.md",
4048
".changes/impl-ext-for-webview-windows.md",
4149
".changes/msrv-1.75.md",
4250
".changes/notification-fix-dev-check.md",
51+
".changes/notification-fix-dev-name.md",
4352
".changes/public-with-store.md",
4453
".changes/remove-unc-path-prefix.md",
4554
".changes/reqwest-0.12.md",
@@ -48,17 +57,25 @@
4857
".changes/shell-command-execute-extra-new-lines.md",
4958
".changes/shell-command-execute-speed.md",
5059
".changes/shell-command-lost-events.md",
60+
".changes/shell-execute-return.md",
61+
".changes/shell-execute.md",
5162
".changes/shell-fix-schema-command-property-name.md",
5263
".changes/shell-shellexcute.md",
5364
".changes/single-instance.macos.md",
65+
".changes/sql-column-order.md",
66+
".changes/target-sdk-34.md",
5467
".changes/tauri-beta-14-dependencies.md",
5568
".changes/tauri-beta-14.md",
5669
".changes/tauri-beta-15.md",
5770
".changes/tauri-beta-17.md",
71+
".changes/tauri-beta-20.md",
5872
".changes/tauri-beta-4.md",
5973
".changes/tauri-beta-8.md",
6074
".changes/tauri-beta-9.md",
75+
".changes/updater-download-install-js-binding.md",
6176
".changes/updater-non-zip.md",
77+
".changes/updater-nsis-shortcuts.md",
78+
".changes/updater-zip-no-default-features.md",
6279
".changes/upload-returnval.md",
6380
".changes/watcher-debouncer-rename.md",
6481
".changes/window-state-custom-filename.md",

.changes/shell-execute-return.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"shell": "patch"
3+
---
4+
5+
Fix a regression introduce in the last release where The JS API `Command.execute()` returned malformed response.

.changes/shell-execute.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"shell": "patch"
3+
---
4+
5+
Run `Command.execute()` JS api, asynchronously in the Rust side to avoid blocking main thread and causing the webview to freeze.

.changes/target-sdk-34.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
"barcode-scanner": patch
3+
"biometric": patch
4+
"clipboard-manager": patch
5+
"deep-link": patch
6+
"dialog": patch
7+
"nfc": patch
8+
"notification": patch
9+
"shell": patch
10+
"store": patch
11+
---
12+
13+
Updated Android target SDK to 34.

.changes/tauri-beta-20.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
---
2+
"authenticator": patch
3+
"autostart": patch
4+
"barcode-scanner": patch
5+
"biometric": patch
6+
"cli": patch
7+
"clipboard-manager": patch
8+
"deep-link": patch
9+
"dialog": patch
10+
"fs": patch
11+
"global-shortcut": patch
12+
"http": patch
13+
"localhost": patch
14+
"log-plugin": patch
15+
"nfc": patch
16+
"notification": patch
17+
"os": patch
18+
"persisted-scope": patch
19+
"positioner": patch
20+
"process": patch
21+
"shell": patch
22+
"single-instance": patch
23+
"sql": patch
24+
"store": patch
25+
"stronghold": patch
26+
"updater": patch
27+
"upload": patch
28+
"websocket": patch
29+
"window-state": patch
30+
"authenticator-js": patch
31+
"autostart-js": patch
32+
"barcode-scanner-js": patch
33+
"biometric-js": patch
34+
"cli-js": patch
35+
"clipboard-manager-js": patch
36+
"deep-link-js": patch
37+
"dialog-js": patch
38+
"fs-js": patch
39+
"global-shortcut-js": patch
40+
"http-js": patch
41+
"log-js": patch
42+
"nfc-js": patch
43+
"notification-js": patch
44+
"os-js": patch
45+
"positioner-js": patch
46+
"process-js": patch
47+
"shell-js": patch
48+
"sql-js": patch
49+
"store-js": patch
50+
"stronghold-js": patch
51+
"updater-js": patch
52+
"upload-js": patch
53+
"websocket-js": patch
54+
"window-state-js": patch
55+
---
56+
57+
Update to tauri beta.20.

0 commit comments

Comments
 (0)