tauri/.changes
2023-01-17 13:13:53 -03:00
..
build-android-env-vars.md feat(core): add mobile_entry_point macro (#4983) 2022-08-21 10:35:34 -03:00
cli-android-build.md feat(cli): add android build command (#4999) 2022-08-22 12:49:58 -03:00
cli-ios-build.md feat(cli): add ios build command (#5002) 2022-08-22 17:47:52 -03:00
cli-mobile-dev.md feat(cli): add android dev and ios dev commands (#4982) 2022-08-20 16:53:07 -03:00
codegen-mobile-devurl.md feat(cli): add android dev and ios dev commands (#4982) 2022-08-20 16:53:07 -03:00
config.json feat(ci): prepare 2.0.0-alpha.0 (#5786) 2022-12-08 16:28:12 -03:00
default-tls-features.md fix(core): Android compilation on Windows (#5658) 2022-11-20 09:49:23 -03:00
dev-proxy-response-cache.md feat(core): cache dev server proxy responses for 304 status code (#5818) 2022-12-12 23:00:03 -03:00
dev-proxy.md feat(cli): add android dev and ios dev commands (#4982) 2022-08-20 16:53:07 -03:00
fix-dev-server-proxy-path.md fix(core): use entire request URL on dev server proxy (#5819) 2022-12-12 22:59:39 -03:00
fix-ios-run-xcode14.md fix(cli): run on iOS device on Xcode 14 (#5807) 2022-12-12 10:36:47 -03:00
force-colored-logs.md feat(cli): force colored logs on mobile commands (#5934) 2022-12-28 17:58:14 -03:00
glob-match-require_literal_separator.md Merge pull request from GHSA-6mv3-wm7j-h4w5 2022-12-22 11:37:58 -03:00
improve-local-ip-detection.md feat(cli): improve local IP detection (#5817) 2022-12-12 22:59:51 -03:00
ios-keep-alive.md feat: keep CLI alive when iOS app exits, show logs, closes #5855 (#5902) 2022-12-27 18:12:01 -03:00
ios-logs.md feat: keep CLI alive when iOS app exits, show logs, closes #5855 (#5902) 2022-12-27 18:12:01 -03:00
mobile-config.md feat(core): detect android and ios platform configuration files (#4997) 2022-08-22 10:48:06 -03:00
mobile-entry-point-macro.md feat(core): add mobile_entry_point macro (#4983) 2022-08-21 10:35:34 -03:00
mobile-env-vars-rename.md feat: keep CLI alive when iOS app exits, show logs, closes #5855 (#5902) 2022-12-27 18:12:01 -03:00
mobile-init.md feat: add android init and ios init commands (#4942) 2022-08-15 12:43:50 -03:00
mobile-lib-name.md feat: improvements to support hyphens in crate name (#5989) 2023-01-06 14:31:48 -03:00
mobile-open.md feat: add android open and ios open commands (#4946) 2022-08-15 13:38:17 -03:00
mobile-webview-access.md feat(android): with_webview access for jni execution (#5148) 2022-09-08 10:57:10 -03:00
mobile.md feat(ci): prepare 2.0.0-alpha.0 (#5786) 2022-12-08 16:28:12 -03:00
package-info-crate-name.md refactor: remove mobile log initialization, ref #6049 (#6081) 2023-01-17 13:13:53 -03:00
pre.json (NEXT) Apply Version Updates From Current Changes (#5892) 2022-12-22 11:42:10 -03:00
readme.md chore: add covector readme (#5255) 2022-10-04 17:02:30 -03:00
refactor-setup.md refactor(app): run setup and window creation when event loop is ready (#4914) 2022-08-11 10:30:55 -03:00
remove-mobile-log.md refactor: remove mobile log initialization, ref #6049 (#6081) 2023-01-17 13:13:53 -03:00
target-dir-detection.md fix(cli): Cargo target dir detection on Android, closes #5865 (#5932) 2022-12-28 14:46:58 -03:00
tauri-mobile-entry-point.md feat(core): add mobile_entry_point macro (#4983) 2022-08-21 10:35: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).