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

Apply Version Updates From Current Changes (#821)

Co-authored-by: lucasfernog <lucas@tauri.studio>
github-actions[bot] 5 лет назад
Родитель
Сommit
19af83c7e9

+ 0 - 5
.changes/appimage-container.md

@@ -1,5 +0,0 @@
----
-"tauri-bundler": patch
----
-
-Fixes the AppImage bundling on containers.

+ 0 - 5
.changes/bundler-output.md

@@ -1,5 +0,0 @@
----
-"tauri-bundler": minor
----
-
-Bundler output refactor: move Windows artifacts to the `bundle/wix` folder and use a standard output name `${bundleName}_${version}_${arch}.${extension}`.

+ 0 - 5
.changes/fix-fs-api.md

@@ -1,5 +0,0 @@
----
-"tauri.js": patch
----
-
-Fixes the `writeFile` and `writeBinaryFile` usage.

+ 0 - 7
.changes/js-prompt.md

@@ -1,7 +0,0 @@
----
-"tauri": patch
-"tauri-api": patch
----
-
-Use native dialog on `window.alert` and `window.confirm`.
-Since every communication with the webview is asynchronous, the `window.confirm` returns a Promise resolving to a boolean value.

+ 0 - 6
.changes/notificaiton-fix.md

@@ -1,6 +0,0 @@
----
-"tauri.js": patch
-"tauri": patch
----
-
-The notification's `body` is now optional, closes #793.

+ 0 - 6
.changes/notification-permission-regression.md

@@ -1,6 +0,0 @@
----
-"tauri": patch
----
-
-Fixes a regression on the storage of requestPermission response.

+ 0 - 5
.changes/plugin-system.md

@@ -1,5 +0,0 @@
----
-"tauri": minor
----
-
-Plugin system added. You can hook into the webview lifecycle (`created`, `ready`) and extend the API adding logic to the `invoke_handler` by implementing the `tauri::plugin::Plugin` trait.

+ 0 - 5
.changes/promisified-leak.md

@@ -1,5 +0,0 @@
----
-"tauri.js": patch
----
-
-Fixes a memory leak on the `promisified` helper usage.

+ 0 - 5
.changes/refactor-whitelist.md

@@ -1,5 +0,0 @@
----
-"tauri": minor
----
-
-Renaming `whitelist` to `allowlist` (see #645).

+ 0 - 5
.changes/tauri-cli-admin.md

@@ -1,5 +0,0 @@
----
-"tauri.js": patch
----
-
-Prevent running the `dev` pipeline when running with administrator privileges.

+ 0 - 5
.changes/tauri-info-outdated.md

@@ -1,5 +0,0 @@
----
-"tauri.js": patch
----
-
-Print outdated dependencies information on `tauri info`.

+ 0 - 5
.changes/tauri-init.md

@@ -1,5 +0,0 @@
----
-"tauri.js": patch
----
-
-Convert the `--app-name` value to kebab case.

+ 0 - 5
.changes/tauri-package-json.md

@@ -1,5 +0,0 @@
----
-"tauri.js": patch
----
-
-Do not require a `package.json` file on the app root.

+ 0 - 8
.changes/tauri-webview.md

@@ -1,8 +0,0 @@
----
-"tauri": minor
----
-
-Moving the webview implementation to [webview](https://github.com/webview/webview), with the [official Rust binding](https://github.com/webview/webview_rust).
-This is a breaking change.
-IE support has been dropped, so the `edge` object on `tauri.conf.json > tauri` no longer exists and you need to remove it.
-`webview.handle()` has been replaced with `webview.as_mut()`.

+ 0 - 6
.changes/tauri.js-dependency-manager.md

@@ -1,6 +0,0 @@
----
-"tauri.js": minor
----
-
-Adds a dependency manager command to the Node.js CLI (`tauri deps`). The manager is able to install and update Rust and the Tauri ecosystem dependencies (npm package, crates, cargo subcommands).
-Usage: `tauri deps install` and `tauri deps update`.

+ 0 - 5
.changes/tauri.js-install-on-init.md

@@ -1,5 +0,0 @@
----
-"tauri.js": patch
----
-
-Run the dependency manager's install script after `tauri init` succeeds.

+ 0 - 7
.changes/taurijs_move_api_types_into_api.md

@@ -1,7 +0,0 @@
----
-"tauri.js": minor
----
-
-Move types exported in the `tauri` js api into the modules that use them. For
-example, `Event` is now available from `tauri/api/event` instead of
-`tauri/api/types/event`.

+ 8 - 0
cli/tauri-bundler/CHANGELOG.md

@@ -1,5 +1,13 @@
 # Changelog
 
+## [0.9.0]
+
+-   Fixes the AppImage bundling on containers.
+    -   [53e8dc1](https://www.github.com/tauri-apps/tauri/commit/53e8dc1880b78994e17bf769d60e13f9e13dbf99) fix(bundler) support AppImage bundling on containers [#822](https://www.github.com/tauri-apps/tauri/pull/822) on 2020-07-13
+    -   [bd0118f](https://www.github.com/tauri-apps/tauri/commit/bd0118f160360e588180de3f3518ef47a4d86a46) fix(changes) covector status pass on 2020-07-14
+-   Bundler output refactor: move Windows artifacts to the `bundle/wix` folder and use a standard output name `${bundleName}_${version}_${arch}.${extension}`.
+    -   [9130f1b](https://www.github.com/tauri-apps/tauri/commit/9130f1b1a422121fa9f3afbeeb87e851568e995f) refactor(bundler) standard output names and path ([#823](https://www.github.com/tauri-apps/tauri/pull/823)) on 2020-07-13
+
 ## [0.8.5]
 
 -   Ignoring non UTF-8 characters on the loopback command output.

+ 1 - 1
cli/tauri-bundler/Cargo.toml

@@ -2,7 +2,7 @@ workspace = { }
 
 [package]
 name = "tauri-bundler"
-version = "0.8.5"
+version = "0.9.0"
 authors = [
   "George Burton <burtonageo@gmail.com>",
   "Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>",

+ 26 - 0
cli/tauri.js/CHANGELOG.md

@@ -1,5 +1,31 @@
 # Changelog
 
+## [0.10.0]
+
+-   Fixes the `writeFile` and `writeBinaryFile` usage.
+    -   [cbd14c3](https://www.github.com/tauri-apps/tauri/commit/cbd14c307753449d2d8a9cd4d4b29d30af6a7097) fix(tauri.js) `writeFile` and `writeBinaryFile` API ([#857](https://www.github.com/tauri-apps/tauri/pull/857)) on 2020-07-19
+-   The notification's `body` is now optional, closes #793.
+    -   [dac1db3](https://www.github.com/tauri-apps/tauri/commit/dac1db39831ecbcf23c630351d5753af01ccd500) fix(tauri) notification body optional, requestPermission() regression, closes [#793](https://www.github.com/tauri-apps/tauri/pull/793) ([#844](https://www.github.com/tauri-apps/tauri/pull/844)) on 2020-07-16
+-   Fixes a memory leak on the `promisified` helper usage.
+    -   [42a8bb0](https://www.github.com/tauri-apps/tauri/commit/42a8bb0e096548f2f9d6da2ba3699260e6cda18e) fix(api) `promisified` not cleaning up transformed callbacks, fixes [#852](https://www.github.com/tauri-apps/tauri/pull/852) ([#853](https://www.github.com/tauri-apps/tauri/pull/853)) on 2020-07-18
+-   Prevent running the `dev` pipeline when running with administrator privileges.
+    -   [1780057](https://www.github.com/tauri-apps/tauri/commit/17800571fe417b5250aa1bd7052340a1c93918a8) fix(tauri.js) exit dev when running as admin, fixes [#781](https://www.github.com/tauri-apps/tauri/pull/781) ([#839](https://www.github.com/tauri-apps/tauri/pull/839)) on 2020-07-15
+-   Print outdated dependencies information on `tauri info`.
+    -   [f0ce94f](https://www.github.com/tauri-apps/tauri/commit/f0ce94fc8e38642f2ba479311370dc1ca54799c7) feat(tauri.js) print outdated deps information on `tauri info` ([#841](https://www.github.com/tauri-apps/tauri/pull/841)) on 2020-07-15
+-   Convert the `--app-name` value to kebab case.
+    -   [da99f63](https://www.github.com/tauri-apps/tauri/commit/da99f632f0c8a6b3b7fc5dfecaffb04b74537f0f) fix(tauri.js) app name as kebab case ([#856](https://www.github.com/tauri-apps/tauri/pull/856)) on 2020-07-19
+-   Do not require a `package.json` file on the app root.
+    -   [45d3de6](https://www.github.com/tauri-apps/tauri/commit/45d3de6d97f060659e72e0cc0dc56d4f33f4a2f9) fix(tauri.js) do not require a package.json ([#855](https://www.github.com/tauri-apps/tauri/pull/855)) on 2020-07-19
+-   Adds a dependency manager command to the Node.js CLI (`tauri deps`). The manager is able to install and update Rust and the Tauri ecosystem dependencies (npm package, crates, cargo subcommands).
+    Usage: `tauri deps install` and `tauri deps update`.
+        - [77282c1](https://www.github.com/tauri-apps/tauri/commit/77282c1e513227fe379f916cd21249b44faa8756) feat(tauri.js) add dependency manager command ([#829](https://www.github.com/tauri-apps/tauri/pull/829)) on 2020-07-15
+-   Run the dependency manager's install script after `tauri init` succeeds.
+    -   [0591f1f](https://www.github.com/tauri-apps/tauri/commit/0591f1f945420ec4bc53919d05a8f8de014b3823) feat(tauri.js) run `deps install` after `tauri init` ([#842](https://www.github.com/tauri-apps/tauri/pull/842)) on 2020-07-15
+-   Move types exported in the `tauri` js api into the modules that use them. For
+    example, `Event` is now available from `tauri/api/event` instead of
+    `tauri/api/types/event`.
+        - [660a2d8](https://www.github.com/tauri-apps/tauri/commit/660a2d87d6acf0abf6be70c01e6402cb5aba96c7) feat(tauri.js) move exported api types into api modules (fix [#807](https://www.github.com/tauri-apps/tauri/pull/807)) ([#809](https://www.github.com/tauri-apps/tauri/pull/809)) on 2020-07-12
+
 ## [0.9.1]
 
 -   Fixes Edge blank screen on Windows when running tauri dev (Tauri crashing window due to Edge reloading app because of missing Content-Type header).

+ 1 - 1
cli/tauri.js/package.json

@@ -1,6 +1,6 @@
 {
   "name": "tauri",
-  "version": "0.9.1",
+  "version": "0.10.0",
   "description": "Multi-binding collection of libraries and templates for building Tauri apps",
   "bin": {
     "tauri": "./bin/tauri.js"

+ 7 - 0
tauri-api/CHANGELOG.md

@@ -1,5 +1,12 @@
 # Changelog
 
+## [0.7.3]
+
+-   Use native dialog on `window.alert` and `window.confirm`.
+    Since every communication with the webview is asynchronous, the `window.confirm` returns a Promise resolving to a boolean value.
+        - [0245833](https://www.github.com/tauri-apps/tauri/commit/0245833bb56d5462a4e1249eb1e2f9f5e477592d) feat(tauri) make `window.alert` and `window.confirm` available, fix [#848](https://www.github.com/tauri-apps/tauri/pull/848) ([#854](https://www.github.com/tauri-apps/tauri/pull/854)) on 2020-07-18
+        - [dac0ae9](https://www.github.com/tauri-apps/tauri/commit/dac0ae976ea1b419ed5af078d00106b1476dee04) chore(changes) add tauri-api to JS dialogs changefile on 2020-07-19
+
 ## [0.7.2]
 
 -   Fixes Edge blank screen on Windows when running tauri dev (Tauri crashing window due to Edge reloading app because of missing Content-Type header).

+ 1 - 1
tauri-api/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-api"
-version = "0.7.2"
+version = "0.7.3"
 authors = [
   "Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>",
   "Daniel Thompson-Yvetot <denjell@sfosc.org>",

+ 21 - 0
tauri/CHANGELOG.md

@@ -1,5 +1,26 @@
 # Changelog
 
+## [0.8.0]
+
+-   Use native dialog on `window.alert` and `window.confirm`.
+    Since every communication with the webview is asynchronous, the `window.confirm` returns a Promise resolving to a boolean value.
+        - [0245833](https://www.github.com/tauri-apps/tauri/commit/0245833bb56d5462a4e1249eb1e2f9f5e477592d) feat(tauri) make `window.alert` and `window.confirm` available, fix [#848](https://www.github.com/tauri-apps/tauri/pull/848) ([#854](https://www.github.com/tauri-apps/tauri/pull/854)) on 2020-07-18
+        - [dac0ae9](https://www.github.com/tauri-apps/tauri/commit/dac0ae976ea1b419ed5af078d00106b1476dee04) chore(changes) add tauri-api to JS dialogs changefile on 2020-07-19
+-   The notification's `body` is now optional, closes #793.
+    -   [dac1db3](https://www.github.com/tauri-apps/tauri/commit/dac1db39831ecbcf23c630351d5753af01ccd500) fix(tauri) notification body optional, requestPermission() regression, closes [#793](https://www.github.com/tauri-apps/tauri/pull/793) ([#844](https://www.github.com/tauri-apps/tauri/pull/844)) on 2020-07-16
+-   Fixes a regression on the storage of requestPermission response.
+    ß
+        - [dac1db3](https://www.github.com/tauri-apps/tauri/commit/dac1db39831ecbcf23c630351d5753af01ccd500) fix(tauri) notification body optional, requestPermission() regression, closes [#793](https://www.github.com/tauri-apps/tauri/pull/793) ([#844](https://www.github.com/tauri-apps/tauri/pull/844)) on 2020-07-16
+-   Plugin system added. You can hook into the webview lifecycle (`created`, `ready`) and extend the API adding logic to the `invoke_handler` by implementing the `tauri::plugin::Plugin` trait.
+    -   [78afee9](https://www.github.com/tauri-apps/tauri/commit/78afee9725e0e372f9de7edeaac523011a1c02a3) feat(tauri) add plugin system for rust ([#494](https://www.github.com/tauri-apps/tauri/pull/494)) on 2020-07-12
+-   Renaming `whitelist` to `allowlist` (see #645).
+    -   [a6bb3b5](https://www.github.com/tauri-apps/tauri/commit/a6bb3b59059e08a844d7bb2b43f3d1192954d890) refactor(tauri) rename `whitelist` to `allowlist`, ref [#645](https://www.github.com/tauri-apps/tauri/pull/645) ([#858](https://www.github.com/tauri-apps/tauri/pull/858)) on 2020-07-19
+-   Moving the webview implementation to [webview](https://github.com/webview/webview), with the [official Rust binding](https://github.com/webview/webview_rust).
+    This is a breaking change.
+    IE support has been dropped, so the `edge` object on `tauri.conf.json > tauri` no longer exists and you need to remove it.
+    `webview.handle()` has been replaced with `webview.as_mut()`.
+        - [cd5b401](https://www.github.com/tauri-apps/tauri/commit/cd5b401707d709bf8212b0a4c34623f902ae40f9) feature: import official webview rust binding ([#846](https://www.github.com/tauri-apps/tauri/pull/846)) on 2020-07-18
+
 ## [0.7.5]
 
 -   Fixes Edge blank screen on Windows when running tauri dev (Tauri crashing window due to Edge reloading app because of missing Content-Type header).

+ 1 - 1
tauri/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri"
-version = "0.7.5"
+version = "0.8.0"
 authors = [
   "Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>",
   "Daniel Thompson-Yvetot <denjell@sfosc.org>",