Просмотр исходного кода

(NEXT) Apply Version Updates From Current Changes (#6593)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
github-actions[bot] 2 лет назад
Родитель
Сommit
afc3237d0c

+ 6 - 0
.changes/pre.json

@@ -27,12 +27,14 @@
     ".changes/fix-ios-template.md",
     ".changes/fix-mobile-env-vars.md",
     ".changes/fix-orientation-crash.md",
+    ".changes/fix-proguard-rules.md",
     ".changes/fix-tauri-binary-windows.md",
     ".changes/force-colored-logs.md",
     ".changes/gtk16.md",
     ".changes/improve-local-ip-detection.md",
     ".changes/inject-proguard.md",
     ".changes/invoke-return-bool.md",
+    ".changes/ios-deployment-target.md",
     ".changes/ios-icon-color.md",
     ".changes/ios-keep-alive.md",
     ".changes/ios-logs.md",
@@ -58,10 +60,12 @@
     ".changes/plugin-init-refactor.md",
     ".changes/plugin-setup-refactor.md",
     ".changes/pnpm-android.md",
+    ".changes/raw-encoding.md",
     ".changes/refactor-macros.md",
     ".changes/refactor-setup.md",
     ".changes/remove-attohttpc.md",
     ".changes/remove-mobile-log.md",
+    ".changes/remove-shell-constructor.md",
     ".changes/rfd101.md",
     ".changes/run-mobile-plugin.md",
     ".changes/shadow-api.md",
@@ -70,6 +74,8 @@
     ".changes/target-dir-detection.md",
     ".changes/tauri-build-mobile.md",
     ".changes/tauri-mobile-entry-point.md",
+    ".changes/tls-features-automatically-enabled.md",
+    ".changes/tls-features-refactor.md",
     ".changes/with-webview.md",
     ".changes/wry26.md"
   ]

+ 5 - 0
core/tauri-build/CHANGELOG.md

@@ -1,5 +1,10 @@
 # Changelog
 
+## \[2.0.0-alpha.3]
+
+- Read the `IPHONEOS_DEPLOYMENT_TARGET` environment variable to set the Swift iOS target version, defaults to 13.
+  - [4c3b9ecf](https://www.github.com/tauri-apps/tauri/commit/4c3b9ecfdcd1a4489b1e466727f11045ef34d67a) fix(build): iOS deployment target env var is IPHONEOS_DEPLOYMENT_TARGET ([#6602](https://www.github.com/tauri-apps/tauri/pull/6602)) on 2023-03-31
+
 ## \[2.0.0-alpha.2]
 
 - Add `mobile::PluginBuilder` for running build tasks related to Tauri plugins.

+ 1 - 1
core/tauri-build/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-build"
-version = "2.0.0-alpha.2"
+version = "2.0.0-alpha.3"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 categories = [ "gui", "web-programming" ]
 license = "Apache-2.0 OR MIT"

+ 9 - 0
core/tauri/CHANGELOG.md

@@ -1,5 +1,14 @@
 # Changelog
 
+## \[2.0.0-alpha.5]
+
+- Fixes ProGuard rules.
+  - [adf4627b](https://www.github.com/tauri-apps/tauri/commit/adf4627b73bd7098772b7f3020b4aca7228bf239) fix(core): adjust ProGuard rules ([#6588](https://www.github.com/tauri-apps/tauri/pull/6588)) on 2023-03-31
+- Added `raw` encoding option to read stdout and stderr raw bytes.
+  - [f992e7f5](https://www.github.com/tauri-apps/tauri/commit/f992e7f58bf975c654a3daf36780b31a32bac064) chore(changes): readd change file on 2023-04-03
+- Renamed the `default-tls` feature to `native-tls` and added `rustls-tls` feature.
+  - [cfdee00f](https://www.github.com/tauri-apps/tauri/commit/cfdee00f2b1455a9719bc44823fdaeabbe4c1cb2) refactor(core): fix tls features, use rustls on mobile ([#6591](https://www.github.com/tauri-apps/tauri/pull/6591)) on 2023-03-30
+
 ## \[2.0.0-alpha.4]
 
 - Allow a wry plugin to be registered at runtime.

+ 1 - 1
core/tauri/Cargo.toml

@@ -10,7 +10,7 @@ license = "Apache-2.0 OR MIT"
 name = "tauri"
 readme = "README.md"
 repository = "https://github.com/tauri-apps/tauri"
-version = "2.0.0-alpha.4"
+version = "2.0.0-alpha.5"
 links = "Tauri"
 
 [package.metadata.docs.rs]

+ 7 - 0
tooling/api/CHANGELOG.md

@@ -1,5 +1,12 @@
 # Changelog
 
+## \[2.0.0-alpha.2]
+
+- Added `raw` encoding option to read stdout and stderr raw bytes.
+  - [f992e7f5](https://www.github.com/tauri-apps/tauri/commit/f992e7f58bf975c654a3daf36780b31a32bac064) chore(changes): readd change file on 2023-04-03
+- Removed shell's `Command` constructor and added the `Command.create` static function instead.
+  - [509d4678](https://www.github.com/tauri-apps/tauri/commit/509d4678b12816c1dd08a9a5efa71ba556d91c27) Support sending raw byte data to the "data" event for child command's stdout and stderr ([#5789](https://www.github.com/tauri-apps/tauri/pull/5789)) on 2023-03-31
+
 ## \[2.0.0-alpha.1]
 
 - Added the `shadow` option when creating a window and `setShadow` function.

+ 1 - 1
tooling/api/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@tauri-apps/api",
-  "version": "2.0.0-alpha.1",
+  "version": "2.0.0-alpha.2",
   "description": "Tauri API definitions",
   "type": "module",
   "funding": {

+ 5 - 0
tooling/cli/CHANGELOG.md

@@ -1,5 +1,10 @@
 # Changelog
 
+## \[2.0.0-alpha.6]
+
+- Automatically enable the `rustls-tls` tauri feature on mobile and `native-tls` on desktop if `rustls-tls` is not enabled.
+  - [cfdee00f](https://www.github.com/tauri-apps/tauri/commit/cfdee00f2b1455a9719bc44823fdaeabbe4c1cb2) refactor(core): fix tls features, use rustls on mobile ([#6591](https://www.github.com/tauri-apps/tauri/pull/6591)) on 2023-03-30
+
 ## \[2.0.0-alpha.5]
 
 - Fixes the iOS project script to build the Rust library.

+ 1 - 1
tooling/cli/Cargo.lock

@@ -3689,7 +3689,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-cli"
-version = "2.0.0-alpha.5"
+version = "2.0.0-alpha.6"
 dependencies = [
  "anyhow",
  "axum",

+ 1 - 1
tooling/cli/Cargo.toml

@@ -3,7 +3,7 @@ members = [ "node" ]
 
 [package]
 name = "tauri-cli"
-version = "2.0.0-alpha.5"
+version = "2.0.0-alpha.6"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 edition = "2021"
 rust-version = "1.64"

+ 3 - 3
tooling/cli/metadata.json

@@ -1,8 +1,8 @@
 {
   "cli.js": {
-    "version": "2.0.0-alpha.5",
+    "version": "2.0.0-alpha.6",
     "node": ">= 10.0.0"
   },
-  "tauri": "2.0.0-alpha.4",
-  "tauri-build": "2.0.0-alpha.2"
+  "tauri": "2.0.0-alpha.5",
+  "tauri-build": "2.0.0-alpha.3"
 }

+ 5 - 0
tooling/cli/node/CHANGELOG.md

@@ -1,5 +1,10 @@
 # Changelog
 
+## \[2.0.0-alpha.6]
+
+- Automatically enable the `rustls-tls` tauri feature on mobile and `native-tls` on desktop if `rustls-tls` is not enabled.
+  - [cfdee00f](https://www.github.com/tauri-apps/tauri/commit/cfdee00f2b1455a9719bc44823fdaeabbe4c1cb2) refactor(core): fix tls features, use rustls on mobile ([#6591](https://www.github.com/tauri-apps/tauri/pull/6591)) on 2023-03-30
+
 ## \[2.0.0-alpha.5]
 
 - Fixes the iOS project script to build the Rust library.

+ 1 - 1
tooling/cli/node/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@tauri-apps/cli",
-  "version": "2.0.0-alpha.5",
+  "version": "2.0.0-alpha.6",
   "description": "Command line interface for building Tauri apps",
   "funding": {
     "type": "opencollective",