Apply Version Updates From Current Changes#15409
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
15b1c05 to
28088b2
Compare
a15d383 to
08b314a
Compare
08b314a to
376662b
Compare
376662b to
cb1b761
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Version Updates
Merging this PR will release new versions of the following packages based on your change files.
tauri-utils
[2.9.3]
Enhancements
c2b8f47 (enhance: include permission identifier in ACL error messages #15373 by @MavenRain) Improve diagnostics for invalid plugin and permission identifiers.
The
Identifierdeserializer now wraps the inner error with the offending identifier string so the message readsinvalid plugin or permission identifier '<value>': ..., surfacing the bad entry without requiring a grep through the file.The previous parse failure (
failed to parse JSON: identifiers can only include lowercase ASCII, hyphens which are not leading or trailing, and a single colon if using a prefix at line 16 column 23) now readsfailed to parse JSON: invalid plugin or permission identifier 'sqlite_proxy:allow-foo': identifiers can only include lowercase ASCII, hyphens which are not leading or trailing, and a single colon if using a prefix at line 16 column 23.Bug Fixes
2783e60 (fix(acl): preserve Number::Int on serde_json round-trip #15481 by @thanhtoantnt) Fix
Number::Intbeing silently coerced toNumber::Floatonserde_jsonround-trip.From<serde_json::Value> for Valuewas checkingas_f64()first, which succeeds for every integer that fits in an f64, so integer JSON numbers were always deserialized asNumber::Float. The check order is nowas_i64()→as_u64()(cast toi64, wrapping for values abovei64::MAX) →as_f64(), matching serde_json's own visitor convention.tauri-bundler
[2.9.3]
Enhancements
Bug Fixes
NSISdl.dll,StartMenu.dll,System.dll,nsDialogs.dll) being embedded in the final installer as unsigned despite the signing step succeeding. The signed local copies under<output>/Plugins/x86-unicode/were not on makensis' plugin search path, so makensis fell back to the unsigned DLLs from the NSIS toolset directory. The fix adds!addplugindirfor the signed plugin directory before any plugin command is parsed in the script.Dependencies
tauri-utils@2.9.3tauri-runtime
[2.11.3]
Dependencies
tauri-utils@2.9.3tauri-runtime-wry
[2.11.3]
Dependencies
tauri-utils@2.9.3tauri-runtime@2.11.3tauri-codegen
[2.6.3]
Dependencies
tauri-utils@2.9.3tauri-macros
[2.6.3]
Dependencies
tauri-utils@2.9.3tauri-codegen@2.6.3tauri-plugin
[2.6.3]
Dependencies
tauri-utils@2.9.3tauri-build
[2.6.3]
Dependencies
tauri-utils@2.9.3tauri-codegen@2.6.3tauri
[2.11.3]
Bug Fixes
send_channel_data_handler,handle_android_plugin_response,send_channel_datato avoid deadlocksPerformance Improvements
tauri://protocol asynchronously #15220 by @DeTeam) Loadtauri://custom protocol handlers asynchronously to speed up load timeDependencies
tauri-utils@2.9.3tauri-runtime@2.11.3tauri-runtime-wry@2.11.3tauri-macros@2.6.3tauri-build@2.6.3tray-iconto 0.24@tauri-apps/cli
[2.11.3]
Bug Fixes
fca4a31 (Fix aliased plugin imports in v1 migration #15454 by @fallintoplace) Fix
tauri migrategenerating invalid namespace imports for aliased pluginified imports from@tauri-apps/api.Inputs like
import { cli as superCli } from "@tauri-apps/api"now migrate toimport * as superCli from "@tauri-apps/plugin-cli"instead of producing invalid ESM syntax. The migration tests also reparse migrated JS, Svelte, and Vue output so syntax regressions are caught directly.Dependencies
tauri-cli@2.11.3tauri-cli
[2.11.3]
Bug Fixes
fca4a31 (Fix aliased plugin imports in v1 migration #15454 by @fallintoplace) Fix
tauri migrategenerating invalid namespace imports for aliased pluginified imports from@tauri-apps/api.Inputs like
import { cli as superCli } from "@tauri-apps/api"now migrate toimport * as superCli from "@tauri-apps/plugin-cli"instead of producing invalid ESM syntax. The migration tests also reparse migrated JS, Svelte, and Vue output so syntax regressions are caught directly.Dependencies
tauri-utils@2.9.3tauri-bundler@2.9.3