Browse Source

Apply Version Updates From Current Changes (#8991)

* apply version updates

* update versions

---------

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
Co-authored-by: Lucas Nogueira <lucas@tauri.app>
github-actions[bot] 1 year ago
parent
commit
5a19147b06

+ 2 - 0
.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",

+ 6 - 0
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`

+ 4 - 0
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

+ 4 - 0
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`

+ 3 - 3
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"
 }

+ 4 - 0
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