From 5a19147b06d03e7877ed2291e2bc6ff622aa939f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 23:53:48 -0300 Subject: [PATCH] Apply Version Updates From Current Changes (#8991) * apply version updates * update versions --------- Co-authored-by: lucasfernog Co-authored-by: Lucas Nogueira --- .changes/pre.json | 2 ++ core/tauri-build/CHANGELOG.md | 6 ++++++ core/tauri/CHANGELOG.md | 4 ++++ tooling/cli/CHANGELOG.md | 4 ++++ tooling/cli/metadata-v2.json | 6 +++--- tooling/cli/node/CHANGELOG.md | 4 ++++ 6 files changed, 23 insertions(+), 3 deletions(-) diff --git a/.changes/pre.json b/.changes/pre.json index 01bb18dda..3008512bf 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -48,6 +48,7 @@ ".changes/re-export-progress-bar-status.md", ".changes/refactor-capabilities-schema.md", ".changes/refactor-capability-remote-option.md", + ".changes/remove-app-custom-protocol-feature.md", ".changes/remove-unit-uri.md", ".changes/reparent.md", ".changes/rerun-if-permission-created.md", @@ -55,6 +56,7 @@ ".changes/rwh-06.md", ".changes/schema_str.md", ".changes/tauri-build-codegen-capabilities.md", + ".changes/tauri-build-dev-changes.md", ".changes/tauri-close-requested-target-specific.md", ".changes/tauri-error-sync.md", ".changes/tauri-plugin-identifier-alphanumeric.md", diff --git a/core/tauri-build/CHANGELOG.md b/core/tauri-build/CHANGELOG.md index 5f9464e79..1a96c8e81 100644 --- a/core/tauri-build/CHANGELOG.md +++ b/core/tauri-build/CHANGELOG.md @@ -2,6 +2,12 @@ ## \[2.0.0-beta.5] +### Breaking Changes + +- [`b9e6a018`](https://www.github.com/tauri-apps/tauri/commit/b9e6a01879d9233040f3d3fab11c59e70563da7e)([#8937](https://www.github.com/tauri-apps/tauri/pull/8937)) The `custom-protocol` Cargo feature is no longer required on your application and is now ignored. To check if running on production, use `#[cfg(not(dev))]` instead of `#[cfg(feature = "custom-protocol")]`. +- [`b9e6a018`](https://www.github.com/tauri-apps/tauri/commit/b9e6a01879d9233040f3d3fab11c59e70563da7e)([#8937](https://www.github.com/tauri-apps/tauri/pull/8937)) Removed `tauri_build::CodegenContext::dev()` and added `tauri_build::dev()`. + + ### Dependencies - Upgraded to `tauri-utils@2.0.0-beta.5` diff --git a/core/tauri/CHANGELOG.md b/core/tauri/CHANGELOG.md index 64cd913ad..f66db9c2a 100644 --- a/core/tauri/CHANGELOG.md +++ b/core/tauri/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +### Breaking Changes + +- [`b9e6a018`](https://www.github.com/tauri-apps/tauri/commit/b9e6a01879d9233040f3d3fab11c59e70563da7e)([#8937](https://www.github.com/tauri-apps/tauri/pull/8937)) The `custom-protocol` Cargo feature is no longer required on your application and is now ignored. To check if running on production, use `#[cfg(not(dev))]` instead of `#[cfg(feature = "custom-protocol")]`. + ## \[2.0.0-beta.7] ### Enhancements diff --git a/tooling/cli/CHANGELOG.md b/tooling/cli/CHANGELOG.md index ebbb9c21f..33e84b331 100644 --- a/tooling/cli/CHANGELOG.md +++ b/tooling/cli/CHANGELOG.md @@ -12,6 +12,10 @@ - `tauri permission ls` - `tauri capability new` +### Breaking Changes + +- [`b9e6a018`](https://www.github.com/tauri-apps/tauri/commit/b9e6a01879d9233040f3d3fab11c59e70563da7e)([#8937](https://www.github.com/tauri-apps/tauri/pull/8937)) The `custom-protocol` Cargo feature is no longer required on your application and is now ignored. To check if running on production, use `#[cfg(not(dev))]` instead of `#[cfg(feature = "custom-protocol")]`. + ### Enhancements - [`9be314f0`](https://www.github.com/tauri-apps/tauri/commit/9be314f07a4ca5d14433d41919492f3e91b5536a)([#8951](https://www.github.com/tauri-apps/tauri/pull/8951)) Add plugins to `Cargo.toml` when using `tauri migrate` diff --git a/tooling/cli/metadata-v2.json b/tooling/cli/metadata-v2.json index 60ae1b1fd..aabdc38da 100644 --- a/tooling/cli/metadata-v2.json +++ b/tooling/cli/metadata-v2.json @@ -1,9 +1,9 @@ { "cli.js": { - "version": "2.0.0-beta.5", + "version": "2.0.0-beta.6", "node": ">= 10.0.0" }, - "tauri": "2.0.0-beta.7", - "tauri-build": "2.0.0-beta.5", + "tauri": "2.0.0-beta.8", + "tauri-build": "2.0.0-beta.6", "tauri-plugin": "2.0.0-beta.5" } diff --git a/tooling/cli/node/CHANGELOG.md b/tooling/cli/node/CHANGELOG.md index c0da89889..94c0e8cdf 100644 --- a/tooling/cli/node/CHANGELOG.md +++ b/tooling/cli/node/CHANGELOG.md @@ -11,6 +11,10 @@ - `tauri permission rm` - `tauri permission ls` - `tauri capability new` + +### Breaking Changes + +- [`b9e6a018`](https://www.github.com/tauri-apps/tauri/commit/b9e6a01879d9233040f3d3fab11c59e70563da7e)([#8937](https://www.github.com/tauri-apps/tauri/pull/8937)) The `custom-protocol` Cargo feature is no longer required on your application and is now ignored. To check if running on production, use `#[cfg(not(dev))]` instead of `#[cfg(feature = "custom-protocol")]`. ### Enhancements