tauri/.changes
Lucas Fernandes Nogueira bcf000c0a8
fix(cli): ios command failing when running with deno, closes #13547 (#14110)
Deno doesn't set an environment variable to help us, so I had to use the exe path to determine whether we're running under deno or not
2025-08-28 18:02:46 -03:00
..
config.json fix: don't ship global api bundle if withGlobalTauri is false (#13033) 2025-03-20 12:37:31 -03:00
ensure-targets-mobile.md feat(cli): ensure mobile Rust targets are installed (#14093) 2025-08-27 18:05:24 -03:00
fix-cli-deno.md fix(cli): set package type for Deno (#14112) 2025-08-28 18:02:09 -03:00
fix-deno-cli-ios.md fix(cli): ios command failing when running with deno, closes #13547 (#14110) 2025-08-28 18:02:46 -03:00
improve-local-network-error-message.md feat(core): enhance error message for dev server request, closes #13816 (#14107) 2025-08-28 12:36:49 -03:00
map-export-method-deprecated.md fix(cli): export method on Xcode < 15.4, closes #13818 (#14106) 2025-08-28 12:37:26 -03:00
README.md chore: add back .changes/readme.md (#8905) 2024-02-19 14:39:27 -03:00
retain-rust-vars.md feat(cli): retain all RUST_* env vars on mobile commands (#14111) 2025-08-28 18:02:22 -03:00
skip-deployment-target-in-dev.md fix: don't set macos deployment target in dev (#14083) 2025-08-27 17:07:07 -03: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