tauri/.changes
2021-04-22 11:05:03 -03:00
..
beta-rc.md chore: enable covector prerelease beta (#1518) 2021-04-16 19:55:00 -03:00
cli.rs-camelcase-rename.md fix(cli.rs/info): add missing camelCase rename (#1505) 2021-04-15 07:48:38 +02:00
clr.rs-fix-tauri-info.md fix(cli.rs): fix panic & use cmd to run yarn&npm on windows (#1511) 2021-04-16 19:52:20 -03:00
config.json chore: covector config tweaks, remove tauri -> api dep (#1541) 2021-04-19 14:04:44 -05:00
cta-remove-lodash.md chore(deps): remove lodash from create-tauri-app (#1532) 2021-04-18 21:30:06 +02:00
cta-remove-tauri-from-vanilla.md fix(cta): remove tauri dep from vanilla recipe (#1502) 2021-04-14 22:05:16 -03:00
cta-tauri-script.md chore: CTA version was decremented, fix and adjust changelog to compensate (#1530) 2021-04-18 10:44:15 -05:00
deps-rc-detection.md fix(cli.js): use cargo search on crate latest version detection (#1563) 2021-04-21 12:43:46 -03:00
event-once.md don't remove once listener on new thread (#1506) 2021-04-15 08:11:42 +02:00
expose-async-runtime.md feat(core): expose async_runtime module (#1576) 2021-04-21 22:09:24 -03:00
fix-cta-set-script.md fix(CTA): #1569, manually set tauri script for compatability with older npm (#1572) 2021-04-21 21:26:49 -03:00
fix-js-api-import.md fix: #1517 had the wrong package reference in the changefile (#1538) 2021-04-19 12:31:13 -05:00
fix-plugin-invoke.md fix(core): command name on plugin invoke handler (#1577) 2021-04-21 23:31:27 -03:00
invoke-context.md fix(core): make window.__TAURI__.invoke context free, fixes #1547 (#1565) 2021-04-21 15:42:52 -03:00
macos-custom-protocol-https.md Make sure custom protocol is handled as secure context on macOS (#1551) 2021-04-22 10:09:42 -03:00
macos-modifiers.md fix(core): macos shortcut modifiers, closes #1542 (#1560) 2021-04-21 09:12:18 -03:00
multi-custom-protocols.md feat(core): expose custom protocol handler APIs (#1553) 2021-04-21 15:43:11 -03:00
nested-events.md allow event listeners to be nested (#1513) 2021-04-15 21:22:47 -03:00
node-v12.md chore: update minimum nodejs version to 12.13.0 (#1562) 2021-04-21 11:50:24 -03:00
plugin-initialization-result.md refactor(core): plugin initialization return value (#1575) 2021-04-21 21:44:18 -03:00
pre.json Apply Version Updates From Current Changes (#1540) 2021-04-19 14:19:36 -05:00
readme.md refactor(repo): add /tooling folder (#1457) 2021-04-12 01:59:25 -03:00
sync-metadata.md chore: sync cli.rs metadata.json file versions (#1534) 2021-04-19 09:15:21 -05:00
user-data-path.md feat(core): use bundle identifier on user data path (#1580) 2021-04-22 11:05:03 -03:00
windows-user-data-path.md feat(core): use bundle identifier on user data path (#1580) 2021-04-22 11:05:03 -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 it represents the overall change for our sanity.

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:

---
"api": patch
"tauri-bundler": patch
"cli.rs": patch
"cli.js": patch
"tauri-utils": patch
"tauri-macros": patch
"tauri-build": patch
"tauri-codegen": patch
"tauri": 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).