chore: add change tags for existing change files (#7041)

This commit is contained in:
Amr Bashir 2023-05-23 18:56:47 +03:00 committed by GitHub
parent 4c39e46a3b
commit 8b9f6cf868
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
22 changed files with 34 additions and 36 deletions

View File

@ -1,5 +1,5 @@
---
'tauri': 'patch'
'tauri': minor:feat
---
Added `tauri::VERSION` const to get Tauri's version from Rust.

View File

@ -1,5 +1,5 @@
---
'tauri': 'minor'
'tauri': minor:feat
---
Added `tauri::webview_version` , to get webview version.
Added `tauri::webview_version` , to get webview version.

View File

@ -1,5 +1,5 @@
---
'tauri-bundler': 'patch'
'tauri-bundler': patch:bug
---
- Updated the AppImage bundler to follow symlinks for `/usr/lib*`.

View File

@ -1,6 +1,6 @@
---
'tauri-cli': 'patch'
'@tauri-apps/cli': 'patch'
'tauri-cli': patch:bug
'@tauri-apps/cli': patch:bug
---
Fix built-in devserver adding hot-reload code to non-html files.

View File

@ -1,5 +1,5 @@
---
'tauri-cli': 'patch'
'tauri-cli': patch:bug
---
Fix building with a custom cargo profile

View File

@ -1,5 +1,5 @@
---
'@tauri-apps/cli': patch
'@tauri-apps/cli': patch:bug
---
Fix nodejs binary regex when `0` is in the version name, for example `node-20`

View File

@ -1,5 +1,5 @@
---
'tauri-utils': 'patch'
'tauri-utils': 'minor'
---
Add option to configure `require_literal_leading_dot` on `fs` and `asset` protcol scopes.

View File

@ -1,5 +1,5 @@
---
'tauri-utils': 'patch'
'tauri': 'patch:bug'
---
Fix parsing `allowlist > http > scope` urls that added a trailing slash which broke matching the incoming requests url.

View File

@ -1,5 +1,5 @@
---
'tauri': 'patch'
'tauri': 'patch:bug'
---
Fix IPC failing after a failed navigation to an external URL.

View File

@ -1,5 +1,5 @@
---
'tauri': 'patch'
'tauri': 'patch:bug'
---
Fix `WindowBuilder::on_navigation` handler not registered properly.

View File

@ -1,5 +1,5 @@
---
'tauri': 'patch'
'tauri': 'patch:bug'
---
Emit `UPTODATE` update status to javascript when the updater server returns status code `204`

View File

@ -1,5 +1,5 @@
---
'tauri-runtime': 'patch'
'tauri-runtime': 'patch:bug'
---
Fixes typo in `CursorIcon` deserialization of the `ZoomIn` variant.

View File

@ -1,6 +1,6 @@
---
'tauri-cli': 'patch'
'@tauri-apps/cli': 'patch'
'tauri-cli': 'patch:bug'
'@tauri-apps/cli': 'patch:bug'
---
Fixes Cargo.toml feature rewriting.

View File

@ -1,7 +1,7 @@
---
'tauri-bundler': 'minor'
'tauri-bundler': 'minor:feat'
'tauri-utils': 'minor'
'tauri-cli': 'minor'
'tauri-cli': 'minor:feat'
---
Allow specifying custom language files of Tauri's custom messages for the NSIS installer

View File

@ -1,8 +1,8 @@
---
'tauri-utils': 'minor'
'tauri-bundler': 'minor'
'tauri-cli': 'minor'
'@tauri-apps/cli': 'minor'
'tauri-bundler': 'minor:feat'
'tauri-cli': 'minor:feat'
'@tauri-apps/cli': 'minor:feat'
---
Add `nsis > template` option to specify custom NSIS installer template.

View File

@ -1,5 +1,5 @@
---
'tauri-bundler': 'patch'
'tauri-bundler': 'patch:enhance'
---
Added Persian language support to the NSIS bundler.
Added Persian language support to the NSIS bundler.

View File

@ -1,6 +1,5 @@
---
'tauri-bundler': 'patch'
'tauri-bundler': 'patch:bug'
---
- Fix NSIS installer not using the old installation path as a default when using `perMachine` or `currentUser` install modes.
- NSIS will now respect the `/D` flag which used to set the installation directory from command line.
Fix NSIS installer not using the old installation path as a default when using `perMachine` or `currentUser` install modes. Also fixes NSIS not respecting the `/D` flag which used to set the installation directory from command line.

View File

@ -1,6 +1,5 @@
---
'tauri': 'minor'
'tauri-cli': 'minor'
'tauri': 'minor:enhance'
---
Restart the app after the NSIS updater is finished.

View File

@ -1,5 +1,5 @@
---
'tauri-build': 'patch'
'tauri-build': 'patch:enhance'
---
On Windows, set `LegalCopyright` and `FileDescription` file properties on the executable from `tauri.bundle.copyright` and `tauri.bundle.shortDescription`,

View File

@ -1,5 +1,5 @@
---
'tauri-cli': 'patch'
'tauri-cli': 'patch:enhance'
---
Improve Visual Studio installation detection in `tauri info` command to check for the necessary components instead of whole workloads. This also fixes the detection of minimal installations and auto-installations done by `rustup`.

View File

@ -1,5 +1,5 @@
---
'tauri': minor
'tauri': minor:feat
---
Add `MenuHandle::try_get_item` and `SystemTrayHandle::try_get_item` which returns a `Option` instead of panicking.

View File

@ -1,9 +1,9 @@
---
'tauri': patch
'tauri-build': patch
'tauri-codegen': patch
'tauri-runtime': patch
'tauri-runtime-wry': patch
'tauri': patch:enhance
'tauri-build': patch:enhance
'tauri-codegen': patch:enhance
'tauri-runtime': patch:enhance
'tauri-runtime-wry': patch:enhance
---
Unpin `time`, `ignore`, `winnow`, and `ignore` crate versions. Developers now have to pin crates if needed themselves. A list of crates that need pinning to adhere to Tauri's MSRV will be visible in Tauri's GitHub workflow: https://github.com/tauri-apps/tauri/blob/dev/.github/workflows/test-core.yml#L85.