tauri/.changes
2022-10-04 17:02:54 -03:00
..
api-fs-exists-return-type.md fix(api): fs/exists return type previously set to void when it should be boolean (#5252) 2022-09-29 15:55:45 -03:00
api-monitor-class-initialization.md fix(api.js): fix Monitor initialization, closes #4672 (#5314) 2022-09-30 14:39:51 -03:00
api-node14.md refactor: simplify api.js bundling (#4277) 2022-10-04 16:56:35 -03:00
app-dirs-api.md feat(api): add app-specific directory APIs, closes #5263 (#5272) 2022-09-28 19:34:09 -03:00
asset-protocol-streaming-mime-type.md fix(core): set correct mimetype for asset protocol streams, closes #5203 (#5210) 2022-09-30 15:38:20 -03:00
bundler-japanese-lang.md fix(bundler): fix japanese lang code, closes #5342 (#5346) 2022-10-04 13:25:58 -03:00
cli-product-name-validation.md fix(cli): validate productName in config, closes #5233 (#5262) 2022-09-28 11:44:14 -03:00
cli-static-files-hot-reload.md feat(cli): hotreload support for frontend static files, closes #2173 (#5256) 2022-09-28 13:16:58 -03:00
cli-target-triple-env.md feat(cli): expose TAURI_TARGET_TRIPLE to before*Commands, closes #5091 (#5101) 2022-10-03 16:11:06 -03:00
cli.js-node-shim.md fix(cli.js): fix invoking cli from a node shim, closes #5343 (#5345) 2022-10-04 13:25:02 -03:00
config.json refactor: upload schema to tauri-build release instead of cli (#5197) 2022-09-15 11:27:38 -03:00
fix-cli-envs.md feat(cli): expose TAURI_TARGET_TRIPLE to before*Commands, closes #5091 (#5101) 2022-10-03 16:11:06 -03:00
fix-html-template.md fix(codegen): serialize template tags, closes #4410 (#5247) 2022-09-28 11:10:56 -03:00
fix-resource-scope.md fix(core): canonicalize resource dir to fix scope check, closes #5196 (#5218) 2022-09-29 16:33:48 -03:00
hidden-title-macos.md feat(macos): title_bar_style and hidden_title window options, closes #2663 (#3965) 2022-09-30 17:15:45 -03:00
mac-app-hide-allowlist.md feat(macOS): Add application show and hide methods (#3689) 2022-10-03 14:49:59 -03:00
mac-app-hide-api.md feat(macOS): Add application show and hide methods (#3689) 2022-10-03 14:49:59 -03:00
mac-app-hide-runtime.md feat(macOS): Add application show and hide methods (#3689) 2022-10-03 14:49:59 -03:00
mac-app-hide.md feat(macOS): Add application show and hide methods (#3689) 2022-10-03 14:49:59 -03:00
menu-deadlock.md fix(core): fix deadlock in on_menu_event, closes #5254 (#5257) 2022-09-28 11:36:58 -03:00
menu-on-left-click.md fix(macos): fix regression in with_menu_on_left_click, closes #5220 (#5235) 2022-09-30 13:16:33 -03:00
msrv-1.59.md feat: bump MSRV to 1.59 (#5296) 2022-09-28 14:33:35 -03:00
publisher-field.md feat(bundler): add publisher field, closes #5273 (#5283) 2022-09-28 13:42:26 -03:00
readme.md chore: add covector readme (#5255) 2022-10-04 17:02:30 -03:00
resource-dir-canonicalize.md fix(core): canonicalize resource dir to fix scope check, closes #5196 (#5218) 2022-09-29 16:33:48 -03:00
transparent-titlebar-macos.md feat(macos): title_bar_style and hidden_title window options, closes #2663 (#3965) 2022-09-30 17:15:45 -03:00
tray-cleanup.md fix(core): wait for tray cleanup before exiting app, closes #5244 (#5245) 2022-10-04 17:02:54 -03:00
tray-title-config.md feat: expose set_title for MacOS tray (#5182) 2022-09-30 14:08:11 -03:00
tray-title.md feat: expose set_title for MacOS tray (#5182) 2022-09-30 14:08:11 -03:00
user-agent-config.md feat(core): expose user_agent to window config (#5317) 2022-10-02 10:37:53 -03:00
user-agent.md feat(core): expose user_agent to window config (#5317) 2022-10-02 10:37:53 -03:00
utils-mimetype.md feat(cli): hotreload support for frontend static files, closes #2173 (#5256) 2022-09-28 13:16:58 -03:00
wix-clear-env.md fix(bundler): clear env before calling wix, closes #4791 (#4819) 2022-10-03 14:43:34 -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).