Apply Version Updates From Current Changes #8775
Merged
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-apps/api
[2.0.0-beta.1]
New Features
16e550ec
(#8844) Add a newwebviewWindow
module that exportsWebviewWindow
class and related methods such asgetCurrent
andgetAll
.16e550ec
(#8844) AddWindow.onFileDropEvent
method.Breaking Changes
16e550ec
(#8844) Renamed the following enum variants ofTauriEvent
enum:TauriEvent.WEBVIEW_FILE_DROP
->TauriEvent.FILE_DROP
TauriEvent.WEBVIEW_FILE_DROP_HOVER
->TauriEvent.FILE_DROP_HOVER
TauriEvent.WEBVIEW_FILE_DROP_CANCELLED
->TauriEvent.FILE_DROP_CANCELLED
16e550ec
(#8844) MoveWebviewWindow
class fromwebview
module to a newwebviewWindow
module.tauri-utils
[2.0.0-beta.2]
Enhancements
0cb0a15c
(#8789) Addwebviews
array on the capability for usage on multiwebview contexts.83a68deb
(#8797) Added a new configuration optiontauri.conf.json > app > security > capabilities
to reference existing capabilities and inline new ones. If it is empty, all capabilities are still included preserving the current behavior.8d16a80d
(#8802) TheContext
struct now includes the runtime authority instead of the resolved ACL. This does not impact most applications.28fb036c
(#8852) Enhance resource directory resolution on development.dd7571a7
(#8815) Do not generate JSON schema and markdown reference file if the plugin does not define any permissions and delete those files if they exist.5618f6d2
(#8856) Relax requirements on plugin's identifiers to be alphanumeric and-
instead of only lower alpha and-
.8d16a80d
(#8802) Refactored the capability types and resolution algorithm.Bug Fixes
ae0fe47c
(#8774) Fix compile error whentauri.conf.json
hadbundle > license
set.Breaking Changes
f284f9c5
(#8898) Changed the capabilityremote
configuration to take a list ofurls
instead ofdomains
for more flexibility.tauri-bundler
[2.0.0-beta.2]
Dependencies
[email protected]
tauri-runtime
[2.0.0-beta.2]
What's Changed
16e550ec
(#8844) AddWebviewEvent
,RunEvent::WebviewEvent
andWebviewDispatch::on_webview_event
.Dependencies
[email protected]
Breaking Changes
2f55bfec
(#8795) Update raw-window-handle to 0.6.tauri-runtime-wry
[2.0.0-beta.2]
What's Changed
76ce9f61
(#3002) Enhance centering a newly created window, it will no longer jump to center after being visible.16e550ec
(#8844) AddWebviewEvent
,RunEvent::WebviewEvent
andWebviewDispatch::on_webview_event
.Dependencies
[email protected]
[email protected]
2f55bfec
(#8795) Updatewry
to 0.36.Breaking Changes
2f55bfec
(#8795) Update raw-window-handle to 0.6.tauri-codegen
[2.0.0-beta.2]
Enhancements
83a68deb
(#8797) Added a new configuration optiontauri.conf.json > app > security > capabilities
to reference existing capabilities and inline new ones. If it is empty, all capabilities are still included preserving the current behavior.8d16a80d
(#8802) Thegenerate_context
proc macro now accepts acapabilities
attribute where the value is an array of file paths that can be conditionally compiled. These capabilities are added to the application along the capabilities defined in the Tauri configuration file.Dependencies
[email protected]
tauri-macros
[2.0.0-beta.2]
Enhancements
8d16a80d
(#8802) Thegenerate_context
proc macro now accepts acapabilities
attribute where the value is an array of file paths that can be conditionally compiled. These capabilities are added to the application along the capabilities defined in the Tauri configuration file.Dependencies
[email protected]
[email protected]
tauri-plugin
[2.0.0-beta.2]
Enhancements
dd7571a7
(#8815) Do not generate JSON schema and markdown reference file if the plugin does not define any permissions and delete those files if they exist.Dependencies
[email protected]
tauri-build
[2.0.0-beta.2]
Enhancements
83a68deb
(#8797) Added a new configuration optiontauri.conf.json > app > security > capabilities
to reference existing capabilities and inline new ones. If it is empty, all capabilities are still included preserving the current behavior.edb11c13
(#8781) AddedAttributes::plugin()
to register a plugin that is inlined in the application crate.8d16a80d
(#8802) AddedCodegenContext::capability
to include a capability file dynamically.Bug Fixes
0e8e9cd0
(#8906) Fixes the capability schema not resolving inner definitions.19fb5f0b
(#8782) Fix generating invalid schema files.Dependencies
[email protected]
[email protected]
tauri
[2.0.0-beta.3]
New Features
16e550ec
(#8844) Add webview-specific events for multi-webview windows:WebviewEvent
enumRunEvent::WebviewEvent
variant.Builder::on_webview_event
andWebview::on_webview_event
methods.Enhancements
11a5816b
(#8864) A file-drop now allows sub-directories recursively when the path is a directory.0cb0a15c
(#8789) Addwebviews
array on the capability for usage on multiwebview contexts.258494bd
(#8806) AddedManager::add_capability
to add a capability file at runtime.5618f6d2
(#8856) Relax requirements on plugin's identifiers to be alphanumeric and-
instead of only lower alpha and-
.Bug Fixes
16e550ec
(#8844) Fix JS event listeners registered using JSlisten
api withEventTarget::Any
never fired.8751c329
(#8793) Fix invoking toggle devtools by hotkey.bd73ab0a
(#8766) When using the multiwebview mode, properly remove the webview from memory onWebview::close
.46b6598a
(#8826) Fix JSonCloseRequested
catching close event from other windows.2e6db908
(#8777) Fix regression intauri::Error
not beingSync
.What's Changed
76ce9f61
(#3002) Enhance centering a newly created window, it will no longer jump to center after being visible.Dependencies
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
Breaking Changes
258494bd
(#8806) Removed the lifetime parameter fromipc::GlobalScope
andipc::CommandScope
.f284f9c5
(#8898) Changed the capabilityremote
configuration to take a list ofurls
instead ofdomains
for more flexibility.2f55bfec
(#8795) Update raw-window-handle to 0.6.2e6db908
(#8777) RequireScopeObject::Error
to beSync
as well.@tauri-apps/cli
[2.0.0-beta.2]
Enhancements
83a68deb
(#8797) Update app template following capabilities configuration change.Bug Fixes
aa06a053
(#8810) Fixtauri plugin android init
printing invalid code that has a missing closing"
.3cee26a5
(#8865) On Windows, fixedtauri info
fails to detect the build tool when the system language is CJK.052e8b43
(#8838) Downgrade minisign dependency fixing updater signing key bug and prevent it from happening in the future.fb0d9971
(#8783) Fixes a regression on the--config
argument not accepting file paths.baca704d
(#8768) Do not migrate updater configuration if the active flag is set to false.Dependencies
[email protected]
tauri-cli
[2.0.0-beta.2]
Enhancements
83a68deb
(#8797) Update app template following capabilities configuration change.Bug Fixes
aa06a053
(#8810) Fixtauri plugin android init
printing invalid code that has a missing closing"
.3cee26a5
(#8865) On Windows, fixedtauri info
fails to detect the build tool when the system language is CJK.052e8b43
(#8838) Downgrade minisign dependency fixing updater signing key bug and prevent it from happening in the future.fb0d9971
(#8783) Fixes a regression on the--config
argument not accepting file paths.baca704d
(#8768) Do not migrate updater configuration if the active flag is set to false.Dependencies
[email protected]
[email protected]