chore: tauri 3.0 alpha release

This commit is contained in:
Lucas Nogueira
2026-09-13 15:55:49 -03:00
parent e87544c67d
commit 6967afaef8
113 changed files with 1158 additions and 2422 deletions
+61
View File
@@ -0,0 +1,61 @@
---
"autostart": major
"barcode-scanner": major
"biometric": major
"cli": major
"clipboard-manager": major
"deep-link": major
"dialog": major
"fs": major
"global-shortcut": major
"http": major
"localhost": major
"log": major
"nfc": major
"notification": major
"opener": major
"os": major
"persisted-scope": major
"positioner": major
"process": major
"shell": major
"single-instance": major
"sql": major
"store": major
"stronghold": major
"updater": major
"upload": major
"websocket": major
"window-state": major
"autostart-js": major
"barcode-scanner-js": major
"biometric-js": major
"cli-js": major
"clipboard-manager-js": major
"deep-link-js": major
"dialog-js": major
"fs-js": major
"global-shortcut-js": major
"http-js": major
"log-js": major
"nfc-js": major
"notification-js": major
"opener-js": major
"os-js": major
"positioner-js": major
"process-js": major
"shell-js": major
"sql-js": major
"store-js": major
"stronghold-js": major
"updater-js": major
"upload-js": major
"websocket-js": major
"window-state-js": major
"haptics": major
"haptics-js": major
"geolocation": major
"geolocation-js": major
---
Update to tauri 3.0 alpha.
+4 -2
View File
@@ -20,7 +20,7 @@
"pipe": true
},
{
"command": "npm publish --provenance --access public",
"command": "npm publish --provenance --access public --tag next",
"dryRunCommand": "npm publish --provenance --access public --dry-run",
"pipe": true
},
@@ -81,8 +81,10 @@
"shell",
"store",
"updater",
"upload",
"geolocation",
"haptics"
"haptics",
"window-state"
]
},
"api-example-js": {
@@ -1,6 +0,0 @@
---
"http": patch
"http-js": patch
---
Fix unhandled promise rejections on every `fetch` teardown: the request/body cleanup commands were fired as floating promises, and releasing an already-released resource rejects with `The resource id N is invalid.`. `dropBody` is now idempotent and both cleanup calls handle their own rejection.
+6
View File
@@ -0,0 +1,6 @@
{
"tag": "alpha",
"changes": [
".changes/3.0-alpha.md"
]
}