tauri/.changes
sftse e3fdcb5002
refactor tauri-cli (#14836)
* refactor(tauri-cli): use OsString where possible

* refactor(tauri-cli): remove needless scoping blocks

* refactor(tauri-cli): make return type concrete

* refactor(tauri-cli): use ?

* refactor(tauri-cli): coerce later to trait object

* refactor(tauri-cli): remove clone

* refactor(tauri-cli): make better use of static OnceLock

* fix(tauri-cli): upgrade atomics to SeqCst

* Add change file

* Update .changes/change-pr-14836.md

Co-authored-by: Tony <68118705+Legend-Master@users.noreply.github.com>
2026-01-29 10:39:00 +08:00
..
android-external-files-fix.md fix(android): improve error handling for external storage file access (#14442) 2026-01-20 21:52:11 +01:00
change-pr-13253.md feat(cli): allow electron to start tauri (#13253) 2026-01-20 22:19:05 +01:00
change-pr-14632.md Cleanups (#14632) 2025-12-09 21:38:14 +08:00
change-pr-14766.md build(tauri-macos-sign): remove once-cell-regex (#14766) 2026-01-15 13:14:30 +01:00
change-pr-14812.md fix(specta): don't use #[specta(rename = ...)] with tauri::ipc::Channel (#14812) 2026-01-24 11:00:40 +01:00
change-pr-14824.md feat(nsis): add Norwegian language support for installer (#14824) 2026-01-25 16:30:50 +08:00
change-pr-14836.md refactor tauri-cli (#14836) 2026-01-29 10:39:00 +08:00
config.json ci: don't re-generate lockfile on prepublish 2025-11-09 12:08:57 +01:00
empty-vec-instead-of-none.md refactor(cli): simplify features: Option<Vec<String>> to Vec<String> (#14607) 2025-12-29 13:54:51 +08:00
fix-android-bundle-flag.md fix(cli): Android build --apk and --aab flags requiring a value (#14629) 2026-01-19 20:32:43 +01:00
fix-binary-patching.md fix(bundler): patch bundle type via string replacement (#14521) 2026-01-18 23:51:02 +01:00
fix-empty-entitlements.md fix(cli): possibly empty associated-domains entitlement (#14779) 2026-01-18 19:01:36 +01:00
fix-inspect-description.md fix(cli): inspect's description (#14789) 2026-01-17 19:23:12 +02:00
linux-webcontext.md fix(linux): reuse WebContext to prevent WebKitNetworkProcess leak (#14628) 2025-12-25 13:03:15 +01:00
nsis-run-as-user.md chore(deps): update nsis_tauri_utils to 0.5.3 (#14830) 2026-01-26 17:55:27 +08:00
only-watch-dependencies.md fix(cli): only watch dependent workspace members (#14747) 2026-01-20 17:52:34 +08:00
README.md chore: add back .changes/readme.md (#8905) 2024-02-19 14:39:27 -03:00
reduce-internal-statics.md Less statics (#14668) 2026-01-17 23:52:42 +08:00
runtime-bsd.md fix: BSD support in tauri-runtime (#14700) 2025-12-29 17:29:07 +01:00
signing-env-vars.md fix: fix leftover inconsistent env var in tauri signer sign command (#14759) 2026-01-11 20:37:52 +02:00
updater-signer-files-without-extension.md Fix: Updater signer failed signing file without extension (#14713) 2026-01-14 09:09:45 +08:00
webkitgtk202.md chore: change webkit2gtk bump to minor 2026-01-15 17:00:58 +01:00
webview-set-simple-fullscreen.md feat(webview-window): add set_simple_fullscreen to WebviewWindow (#14619) 2026-01-19 11:38:37 +08:00
window-config-focus-default-true.md fix: default WindowConfig::focus to false in Default::default (#14653) 2025-12-14 16:21:44 +08:00
wry-054.md chore(deps): update wry to 0.54 and webkit2gtk-rs to 2.0.2 (#14778) 2026-01-15 14:48:45 +01:00

Changes

via https://github.com/jbolda/covector

As you create PRs and make changes that require a version bump, please add a new markdown file in this folder. You do not note the version number, but rather the type of bump that you expect: major, minor, or patch. The filename is not important, as long as it is a .md, but we recommend that it represents the overall change for organizational purposes.

When you select the version bump required, you do not need to consider dependencies. Only note the package with the actual change, and any packages that depend on that package will be bumped automatically in the process.

Use the following format:

---
'package-a': 'patch:enhance'
'package-b': 'patch:enhance'
---

Change summary goes here

Summaries do not have a specific character limit, but are text only. These summaries are used within the (future implementation of) changelogs. They will give context to the change and also point back to the original PR if more details and context are needed.

Changes will be designated as a major, minor or patch as further described in semver.

Given a version number MAJOR.MINOR.PATCH, increment the:

  • MAJOR version when you make incompatible API changes,
  • MINOR version when you add functionality in a backwards compatible manner, and
  • PATCH version when you make backwards compatible bug fixes.

Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format, but will be discussed prior to usage (as extra steps will be necessary in consideration of merging and publishing).

Additionally you could specify a tag for the change file to group it with other changes by prefixing the bump with :<tag>, for example:

---
'package-a': 'patch:enhance'
---

Change summary goes here

which will group this change file with other changes that specify the bug tag.

For list of available tags, see the changeTags key in ./config.json