tauri/.changes
Noah Klayman 8e9752bb8b
feat(bundler/wix): install webview2 runtime (#1329)
* feat(bundler/wix): install webview2 runtime

* add changefile
2021-03-07 22:00:29 -03:00
..
api-refactor.md refactor(core): all API are now promise based (#1239) 2021-02-16 01:23:15 -03:00
appimage-path.md fix(bundler): appimage paths and filename (#1227) 2021-02-13 15:06:39 -03:00
bundle-decouple-cargo.md refactor(cli): decouple bundler from cargo (#1269) 2021-02-21 16:11:40 -03:00
cli-no-targets.md feat(cli/core): add support for building without targets (#1203) 2021-02-11 00:13:06 -03:00
cli-rust.md feat(cli) rewrite the core CLI in Rust (#851) 2021-01-30 12:15:47 -03:00
config-refactor.md refactor(tauri): support for building without environmental variables (#850) 2021-02-09 15:22:04 -03:00
config.json refactor(tauri): support for building without environmental variables (#850) 2021-02-09 15:22:04 -03:00
core-errors.md refactor(tauri): use explicit error types instead of anyhow (#1209) 2021-02-10 19:51:15 -03:00
css-inliner-octal.md fix(tauri/asset): escape octal sequences in css (#1166) 2021-01-30 15:46:18 -03:00
custom-protocol.md feat(core): Use Wry custom protocol instead of embedded server (#1296) 2021-02-25 17:07:30 -08:00
dialog-api.md refactor(core): use tinyfiledialogs-rs for message/confirmation dialogs (#1255) 2021-02-17 23:27:33 -03:00
event.md feat(core): add mult-window support (#1217) 2021-02-11 21:50:39 -03:00
file-dialog-refactor.md refactor(core): use nfd for file dialogs, closes #1251 (#1257) 2021-02-18 11:43:41 -03:00
http-api-refactor.md refactor(core): improve HTTP API, closes #1098 (#1237) 2021-02-15 22:28:35 -03:00
js-event-once.md refactor(api): move event's once to its own function (#1276) 2021-02-23 21:31:15 -03:00
multiwindow.md feat(core): add mult-window support (#1217) 2021-02-11 21:50:39 -03:00
plugin-config.md feat(tauri): add plugin initialize (with config) API, run in parallel (#1194) 2021-02-10 00:49:46 -03:00
plugin-initialization-script.md refactor(tauri): rename init_script to initialization_script (#1200) 2021-02-10 02:24:20 -03:00
plugin-mutable.md refactor(tauri): plugin trait with mutable references (#1197) 2021-02-10 01:07:00 -03:00
plugin-ready-hook.md fix(tauri): run plugin::ready without webview.dispatch (#1164) 2021-01-29 09:22:17 +01:00
readme.md fix(tauri.js): fix return type for readBinaryFile api method (#927) 2020-08-07 19:56:29 -05:00
refactor-allowlist.md refactor(core): split allowlist configuration per module (#1263) 2021-02-20 14:09:18 -03:00
refactor-tauri-entry.md refactor(tauri): inject script with webview init API (#1186) 2021-02-05 12:45:43 -03:00
remove-no-server.md refactor(core): remove no-server and its APIs (#1215) 2021-02-11 02:33:18 -03:00
separate-cmd-arg.md feat(api/invoke): separate cmd arg (#1321) 2021-03-04 21:18:25 -03:00
shortcut-api.md feat(core): globalShortcut API (#1232) 2021-02-14 17:34:23 -03:00
simple-command-matching.md feat(core): improved command matching with macros, fixes #1157 (#1301) 2021-02-28 10:55:48 -08:00
tauri-api.md feat(cli) rewrite the core CLI in Rust (#851) 2021-01-30 12:15:47 -03:00
tauri-async.md refactor(tauri): support for building without environmental variables (#850) 2021-02-09 15:22:04 -03:00
tauri-cli.md refactor(tauri): support for building without environmental variables (#850) 2021-02-09 15:22:04 -03:00
webview-traits.md refactor(tauri): Webview traits (#1183) 2021-02-05 00:44:58 -03:00
window-api.md feat(core): window creation at runtime (#1249) 2021-02-17 11:15:04 -03:00
wix-install-webview2.md feat(bundler/wix): install webview2 runtime (#1329) 2021-03-07 22:00:29 -03:00
workspace-detection.md fix(bundler): workspace detection, closes #1007 (#1235) 2021-02-14 17:57:59 -03:00
wry.md feat(tauri): use WRY as webview engine (#1190) 2021-02-08 11:19:22 -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:

---
"tauri.js": patch
"tauri": minor
---

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).