tauri/.changes
Amr Bashir 4d545ab3ca
feat: background color APIs (#11486)
* feat: background color APIs

closes #10519
closes #1564

* clippy

* git branch

* bundle

* fix hex color schema pattern

* add missing `^`

* fix iOS

* revert test

* revert apple-codesign bump

* fmt

* add change files

---------

Co-authored-by: Lucas Nogueira <lucas@tauri.app>
2024-11-06 13:21:47 -03:00
..
add-headers-config-option.md feat: add HeaderConfig to SecurityConfig (#11485) 2024-11-06 16:16:46 +02:00
android-home-dir.md feat(core/path): add PathResolver::home_dir on Android (#11455) 2024-10-24 06:43:02 +03:00
api-dpi-toIPC.md feat(api): add SERIALIZE_TO_IPC_FN const and implement it for dpi types, add more constructors (#11191) 2024-11-05 23:30:17 +02:00
background-color-apis.md feat: background color APIs (#11486) 2024-11-06 13:21:47 -03:00
background-color.md feat: background color APIs (#11486) 2024-11-06 13:21:47 -03:00
bundler-fragment-handlebars.md feat(cli): process bundle > windows > wix > fragmentPaths with Handlebars (#11521) 2024-11-05 14:46:54 -03:00
bundler-linux-recommends.md feat(bundler): add recommends for deb and rpm (#11402) 2024-10-21 15:38:14 -03:00
cli-migrate-deno.md fix(cli): fix tauri migrate failing to install NPM deps when running from Deno (#11523) 2024-11-05 14:16:32 -03:00
cli-updater-errorr.md enhance(cli): add context to public/secret key decoding errors (#11405) 2024-10-21 15:37:28 -03:00
cli-yarn-berry.md fix(cli): fix yarn berry detection (#11529) 2024-11-05 14:15:48 -03:00
config-devtools.md feat: add WebviewWindow/Webview::devtools (#11451) 2024-11-05 16:00:48 -03:00
config.json fix: publish NPM packages with latest tag (#11199) 2024-10-02 10:37:42 -03:00
curosr-position-gtk.md fix(runtime-wry): run cursor_position getter on main thread (#11401) 2024-10-22 09:59:21 -03:00
enhance-async-commands-error.md enhance(core): use diagnostic::on_unimplemented on rustc 1.78 and newer for async commands with references (#11522) 2024-11-05 14:20:30 -03:00
enhance-resource-dir-linux.md enhance: always check parent directory (fix #8679) (#11429) 2024-11-06 10:41:13 -03:00
event-anylabel-fix.md fix(event): handle AnyLabel listeners in emit_to (#11581) 2024-11-04 14:31:18 +02:00
js-submenu-in-options.md fix(api/menu): fix submenus when created using an object in items field in the object passed to Menu/Submenu.new (#11441) 2024-10-23 10:47:32 -03:00
migrate-schema.md feat(cli) Make tauri migrate update $schema in tauri.conf.json (#11414) 2024-10-21 15:24:59 -03:00
permission-add-default-windows.md feat(cli): associate newly created capability with the main window (#11512) 2024-10-28 14:05:24 +03:00
README.md chore: add back .changes/readme.md (#8905) 2024-02-19 14:39:27 -03:00
resolve_command_scope.md feat(core): add WebviewWindow::resolve_command_scope (#11439) 2024-10-21 15:16:08 -03:00
rpm-compression-level.md feat(bundler): add option to configure RPM compression (#11584) 2024-11-05 14:08:08 +02:00
tauri-toIPC copy.md feat(api): add SERIALIZE_TO_IPC_FN const and implement it for dpi types, add more constructors (#11191) 2024-11-05 23:30:17 +02:00
tray-async-command.md fix(tray): build tray on main thread (#11583) 2024-11-05 17:42:08 +02:00
use_https_windows-and-android-config.md feat: add use_https_scheme for Windows and Android (#11477) 2024-11-05 09:48:59 -03:00
use_https_windows-and-android.md feat: add use_https_scheme for Windows and Android (#11477) 2024-11-05 09:48:59 -03:00
utils-acl-path-errors.md enhance: include the path in ACL I/O errors (#11575) 2024-11-04 14:30:43 +02:00
webview-builder-devtools.md feat: add WebviewWindow/Webview::devtools (#11451) 2024-11-05 16:00:48 -03:00
webview-focus-apis.md fix: fix webview not focused by default (#11569) 2024-11-04 13:58:47 +02:00
webview-window-focused.md fix: fix webview not focused by default (#11569) 2024-11-04 13:58:47 +02:00
window-class-name-config-api.md feat(core): add window_class name API on Windows (#11469) 2024-11-05 15:18:47 -03:00
window-class-name-config.md feat(core): add window_class name API on Windows (#11469) 2024-11-05 15:18:47 -03:00
window-class-name.md feat(core): add window_class name API on Windows (#11469) 2024-11-05 15:18:47 -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:enhance'
'package-b': 'patch:enhance'
---

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:enhance'
---

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