Răsfoiți Sursa

Apply Version Updates From Current Changes (#4095)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
github-actions[bot] 3 ani în urmă
părinte
comite
c8667f9ff7

+ 4 - 1
.changes/pre.json

@@ -312,6 +312,7 @@
     ".changes/tauri-event-api.md",
     ".changes/tauri-protocol-cors.md",
     ".changes/tauri-runtime-export.md",
+    ".changes/tauri-runtime-wry-plugin.md",
     ".changes/temp-base-directory.md",
     ".changes/temp-scope-variable.md",
     ".changes/template-csp-null.md",
@@ -324,6 +325,7 @@
     ".changes/unlisten-fix.md",
     ".changes/unlisten.md",
     ".changes/update-response-methods.md",
+    ".changes/update-wry-0.16.2.md",
     ".changes/update-wry.md",
     ".changes/updater-check-api.md",
     ".changes/updater-custom-version-checker.md",
@@ -366,6 +368,7 @@
     ".changes/wix-run-app.md",
     ".changes/wix-signing.md",
     ".changes/wry-13.md",
-    ".changes/wry-create-webview.md"
+    ".changes/wry-create-webview.md",
+    ".changes/wry-plugin.md"
   ]
 }

+ 7 - 0
core/tauri-runtime-wry/CHANGELOG.md

@@ -1,5 +1,12 @@
 # Changelog
 
+## \[0.5.1]
+
+- Added the `plugin` method to the `Wry` runtime, allowing extensions to the event loop.
+  - [c8e0e5b9](https://www.github.com/tauri-apps/tauri/commit/c8e0e5b97d542e549b37be08b545515c862af0e5) feat(tauri-runtime-wry): add plugin API ([#4094](https://www.github.com/tauri-apps/tauri/pull/4094)) on 2022-05-10
+- Update wry to 0.16.2 and webkit2gtk to 0.18.0.
+  - [71a553b7](https://www.github.com/tauri-apps/tauri/commit/71a553b715312e2bcceb963c83e42cffca7a63bc) chore(deps): update wry to 0.16.2, webkit2gtk to 0.18.0 ([#4099](https://www.github.com/tauri-apps/tauri/pull/4099)) on 2022-05-10
+
 ## \[0.5.0]
 
 - The file drop event payloads are now percent-decoded.

+ 1 - 1
core/tauri-runtime-wry/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-runtime-wry"
-version = "0.5.0"
+version = "0.5.1"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 categories = [ "gui", "web-programming" ]
 license = "Apache-2.0 OR MIT"

+ 7 - 0
core/tauri/CHANGELOG.md

@@ -1,5 +1,12 @@
 # Changelog
 
+## \[1.0.0-rc.10]
+
+- Update wry to 0.16.2 and webkit2gtk to 0.18.0.
+  - [71a553b7](https://www.github.com/tauri-apps/tauri/commit/71a553b715312e2bcceb963c83e42cffca7a63bc) chore(deps): update wry to 0.16.2, webkit2gtk to 0.18.0 ([#4099](https://www.github.com/tauri-apps/tauri/pull/4099)) on 2022-05-10
+- Adds the `App#wry_plugin` API to inject a plugin for the wry integration.
+  - [c8e0e5b9](https://www.github.com/tauri-apps/tauri/commit/c8e0e5b97d542e549b37be08b545515c862af0e5) feat(tauri-runtime-wry): add plugin API ([#4094](https://www.github.com/tauri-apps/tauri/pull/4094)) on 2022-05-10
+
 ## \[1.0.0-rc.9]
 
 - The `dangerous_allow_asset_csp_modification` configuration value has been changed to allow a list of CSP directives to disable.

+ 2 - 2
core/tauri/Cargo.toml

@@ -16,7 +16,7 @@ license = "Apache-2.0 OR MIT"
 name = "tauri"
 readme = "README.md"
 repository = "https://github.com/tauri-apps/tauri"
-version = "1.0.0-rc.9"
+version = "1.0.0-rc.10"
 
 [package.metadata.docs.rs]
 no-default-features = true
@@ -58,7 +58,7 @@ once_cell = "1.10"
 tauri-runtime = { version = "0.5.0", path = "../tauri-runtime" }
 tauri-macros = { version = "1.0.0-rc.6", path = "../tauri-macros" }
 tauri-utils = { version = "1.0.0-rc.6", path = "../tauri-utils" }
-tauri-runtime-wry = { version = "0.5.0", path = "../tauri-runtime-wry", optional = true }
+tauri-runtime-wry = { version = "0.5.1", path = "../tauri-runtime-wry", optional = true }
 rand = "0.8"
 semver = "1.0"
 serde_repr = "0.1"

+ 1 - 1
tooling/cli/metadata.json

@@ -3,6 +3,6 @@
     "version": "1.0.0-rc.10",
     "node": ">= 10.0.0"
   },
-  "tauri": "1.0.0-rc.9",
+  "tauri": "1.0.0-rc.10",
   "tauri-build": "1.0.0-rc.8"
 }