tauri/.changes
2024-02-10 02:35:55 +02:00
..
add-section-priority-changelog.md feat: Add Section, Priority and Changelog options (#8620) 2024-01-17 04:21:46 +02:00
bundler-socks-proxy.md feat: enable socks-proxy for bundler download (#8596) (#8611) 2024-01-16 15:42:53 +02:00
cli-dev-profile.md fix(cli): map --profile dev to debug folder when finding executable (#8776) 2024-02-05 16:12:08 +02:00
cli-devserver-queryparam.md fix(cli): Ignore query parameter in dev server (#8697) 2024-01-29 14:58:23 +02:00
cli-js-kill-dev-fn.md fix change files 2023-09-10 01:58:17 +03:00
cli-rs-kill-dev-fn.md fix change files 2023-09-10 01:58:17 +03:00
cli-watch-ws-members.md fix(cli): Watch workspace members if tauri dir is workspace root (#8520) 2024-01-04 01:37:05 +02:00
config.json fix(ci): update tauri-driver's Cargo.lock file on version bump (#7915) 2023-09-28 15:29:53 -03:00
export-url.md feat: re-export Url (#8474) 2023-12-27 12:59:26 -03:00
fix-command-spawn-deadlock.md fix(core): Command::output suspend while wait for response (#8539) 2024-02-01 08:06:05 -03:00
fix-formbody-order.md fix(core): Retain order of map keys in ipc, fixes #7922 (#8577) 2024-01-10 21:03:25 +02:00
fix-non-standard-permission-bug.md fix(bundler/deb): use lintian-compliant permissions , closes #7992 (#8585) 2024-01-15 18:08:07 +02:00
libflate-to-flate2.md deps: Libflate to flate2 (#8618) 2024-01-16 15:52:19 +02:00
mac-bundler-nested-code-sign.md feat(bundler): codesign nested code on macos (#8259) 2023-12-28 13:58:24 -03:00
readme.md chore: explain covector tags (#6923) 2023-05-09 21:59:01 +03:00
runtime-wry-wayland.md chore(core): Add missing changefile for #8546 (#8822) 2024-02-08 16:27:19 +02:00
tauri-bundler-nsis-args.md feat: retain cli args when relaunching after update, closes #7402 (#7718) 2024-01-31 16:02:48 -03:00
tauri-data-drag-region-macos-maximize.md fix(core): allow canceling data-tauri-drag-region maximization on macOS, closes #8306 (#8312) 2023-12-28 09:13:48 -03:00
tauri-updater-retain-args.md feat: retain cli args when relaunching after update, closes #7402 (#7718) 2024-01-31 16:02:48 -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
'package-b': patch
---

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:bug
---

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