Apply Version Updates From Current Changes (#5710)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2022-12-08 11:57:21 -03:00 committed by GitHub
parent c14b1df372
commit 75a0c79dea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
22 changed files with 55 additions and 65 deletions

View File

@ -1,6 +0,0 @@
---
"cli.rs": patch
"cli.js": patch
---
Detect SvelteKit and Vite for the init and info commands.

View File

@ -1,6 +0,0 @@
---
"cli.rs": patch
"cli.js": patch
---
Detect SolidJS and SolidStart for the init and info commands.

View File

@ -1,5 +0,0 @@
---
"tauri": patch
---
Invoke event listener in windows safely to avoid causing uncaught errors in windows that have loaded external urls

View File

@ -1,5 +0,0 @@
---
"tauri-bundler": patch
---
Fixes blank taskbar icon on WiX updates.

View File

@ -1,6 +0,0 @@
---
'cli.rs': 'patch'
'cli.js': 'patch'
---
Use older icon types to work around a macOS bug resulting in corrupted 16x16px and 32x32px icons in bundled apps.

View File

@ -1,5 +0,0 @@
---
"cli.rs": "patch"
---
Add `--no-dev-server` flag to the cli to disable the dev server for static files in dev mode.

View File

@ -1,5 +0,0 @@
---
"tauri": "patch"
---
Cleanup sidecar and tray icons when calling `app.exit()` from JS.

View File

@ -1,6 +0,0 @@
---
'tauri': 'patch'
'tauri-runtime-wry': 'patch'
---
Fix compatibility with older Linux distributions.

View File

@ -1,5 +0,0 @@
---
"tauri": "patch"
---
Add `tauri::Builder::enable_macos_default_menu` to enable or disable the default menu creation on macOS.

View File

@ -1,5 +0,0 @@
---
"tauri-runtime-wry": patch
---
Update wry to 0.23.

View File

@ -1,5 +1,12 @@
# Changelog
## \[0.12.2]
- Fix compatibility with older Linux distributions.
- [b490308c](https://www.github.com/tauri-apps/tauri/commit/b490308c8897b893292951754607c2253abbc6e1) fix(core): compilation error on older Linux versions, fixes [#5684](https://www.github.com/tauri-apps/tauri/pull/5684) ([#5697](https://www.github.com/tauri-apps/tauri/pull/5697)) on 2022-11-28
- Update wry to 0.23.
- [fdcd7733](https://www.github.com/tauri-apps/tauri/commit/fdcd77338c1a3a7ef8a8ea1907351c5c350ea7ba) chore(deps): update wry to 0.23 on 2022-12-08
## \[0.12.1]
- Fix `allowlist > app > show/hide` always disabled when `allowlist > app > all: false`.

View File

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

View File

@ -1,5 +1,17 @@
# Changelog
## \[1.2.2]
- Invoke event listener in windows safely to avoid causing uncaught errors in windows that have loaded external urls
- [c14b1df3](https://www.github.com/tauri-apps/tauri/commit/c14b1df37284020b3edb32400eb4b9e32c945472) fix(core): Invoke event listener in windows safely to avoid causing uncaught errors in windows that have loaded external urls ([#5563](https://www.github.com/tauri-apps/tauri/pull/5563)) on 2022-12-08
- Cleanup sidecar and tray icons when calling `app.exit()` from JS.
- [0f269608](https://www.github.com/tauri-apps/tauri/commit/0f26960891228c5909e06d9f850c44ffaebf536c) fix(core/api): cleanup before exit ([#5765](https://www.github.com/tauri-apps/tauri/pull/5765)) on 2022-12-07
- Fix compatibility with older Linux distributions.
- [b490308c](https://www.github.com/tauri-apps/tauri/commit/b490308c8897b893292951754607c2253abbc6e1) fix(core): compilation error on older Linux versions, fixes [#5684](https://www.github.com/tauri-apps/tauri/pull/5684) ([#5697](https://www.github.com/tauri-apps/tauri/pull/5697)) on 2022-11-28
- Add `tauri::Builder::enable_macos_default_menu` to enable or disable the default menu creation on macOS.
- [8866ecac](https://www.github.com/tauri-apps/tauri/commit/8866ecac3cd1af8bf02e29569d605be5a1afe22c) feat(core): add `tauri::Builder::enable_macos_default_menu` ([#5756](https://www.github.com/tauri-apps/tauri/pull/5756)) on 2022-12-07
- [b293da35](https://www.github.com/tauri-apps/tauri/commit/b293da35dd5ae8c1569a3f3c994b4c1a4c227f4a) fix(changes): change `enable_macos_default_menu` bump to patch on 2022-12-08
## \[1.2.1]
- Fixes a double serialization on the IPC.

View File

@ -10,7 +10,7 @@ license = "Apache-2.0 OR MIT"
name = "tauri"
readme = "README.md"
repository = "https://github.com/tauri-apps/tauri"
version = "1.2.1"
version = "1.2.2"
[package.metadata.docs.rs]
no-default-features = true
@ -52,7 +52,7 @@ once_cell = "1"
tauri-runtime = { version = "0.12.1", path = "../tauri-runtime" }
tauri-macros = { version = "1.2.1", path = "../tauri-macros" }
tauri-utils = { version = "1.2.1", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "0.12.1", path = "../tauri-runtime-wry", optional = true }
tauri-runtime-wry = { version = "0.12.2", path = "../tauri-runtime-wry", optional = true }
rand = "0.8"
semver = { version = "1.0", features = [ "serde" ] }
serde_repr = "0.1"

View File

@ -1,5 +1,10 @@
# Changelog
## \[1.1.2]
- Fixes blank taskbar icon on WiX updates.
- [9093ef33](https://www.github.com/tauri-apps/tauri/commit/9093ef3314c27d2295b4266893fd2290c1bdfb6a) fix(bundler): blank taskbar icon on WiX update, closes [#5631](https://www.github.com/tauri-apps/tauri/pull/5631) ([#5779](https://www.github.com/tauri-apps/tauri/pull/5779)) on 2022-12-08
## \[1.1.1]
- Fix `allowlist > app > show/hide` always disabled when `allowlist > app > all: false`.

View File

@ -2,7 +2,7 @@ workspace = { }
[package]
name = "tauri-bundler"
version = "1.1.1"
version = "1.1.2"
authors = [
"George Burton <burtonageo@gmail.com>",
"Tauri Programme within The Commons Conservancy"

View File

@ -1,5 +1,16 @@
# Changelog
## \[1.2.2]
- Detect SvelteKit and Vite for the init and info commands.
- [9d872ab8](https://www.github.com/tauri-apps/tauri/commit/9d872ab8728b1b121909af434adcd5936e5afb7d) feat(cli): detect SvelteKit and Vite ([#5742](https://www.github.com/tauri-apps/tauri/pull/5742)) on 2022-12-02
- Detect SolidJS and SolidStart for the init and info commands.
- [9e7ce0a8](https://www.github.com/tauri-apps/tauri/commit/9e7ce0a8eef4bf3536645976e3e09162fbf772ab) feat(cli): detect SolidJS and SolidStart ([#5758](https://www.github.com/tauri-apps/tauri/pull/5758)) on 2022-12-08
- Use older icon types to work around a macOS bug resulting in corrupted 16x16px and 32x32px icons in bundled apps.
- [2d545eff](https://www.github.com/tauri-apps/tauri/commit/2d545eff58734ec70f23f11a429d35435cdf090e) fix(cli): corrupted icons in bundled macOS icons ([#5698](https://www.github.com/tauri-apps/tauri/pull/5698)) on 2022-11-28
- Add `--no-dev-server` flag to the cli to disable the dev server for static files in dev mode.
- [c0989848](https://www.github.com/tauri-apps/tauri/commit/c0989848b9421fb19070ae652a89a5d5675deab8) feat(cli/dev): add `--no-dev-server`, ref [#5708](https://www.github.com/tauri-apps/tauri/pull/5708) ([#5722](https://www.github.com/tauri-apps/tauri/pull/5722)) on 2022-11-30
## \[1.2.1]
- Fixes injection of Cargo features defined in the configuration file.

View File

@ -3084,7 +3084,7 @@ dependencies = [
[[package]]
name = "tauri-bundler"
version = "1.1.1"
version = "1.1.2"
dependencies = [
"anyhow",
"ar",
@ -3121,7 +3121,7 @@ dependencies = [
[[package]]
name = "tauri-cli"
version = "1.2.1"
version = "1.2.2"
dependencies = [
"anyhow",
"axum",

View File

@ -3,7 +3,7 @@ members = [ "node" ]
[package]
name = "tauri-cli"
version = "1.2.1"
version = "1.2.2"
authors = [ "Tauri Programme within The Commons Conservancy" ]
edition = "2021"
rust-version = "1.59"
@ -41,7 +41,7 @@ path = "src/main.rs"
[dependencies]
clap = { version = "4.0", features = [ "derive" ] }
anyhow = "1.0"
tauri-bundler = { version = "1.1.1", path = "../bundler" }
tauri-bundler = { version = "1.1.2", path = "../bundler" }
colored = "2.0"
once_cell = "1"
serde = { version = "1.0", features = [ "derive" ] }

View File

@ -1,8 +1,8 @@
{
"cli.js": {
"version": "1.2.1",
"version": "1.2.2",
"node": ">= 10.0.0"
},
"tauri": "1.2.1",
"tauri": "1.2.2",
"tauri-build": "1.2.1"
}

View File

@ -1,5 +1,14 @@
# Changelog
## \[1.2.2]
- Detect SvelteKit and Vite for the init and info commands.
- [9d872ab8](https://www.github.com/tauri-apps/tauri/commit/9d872ab8728b1b121909af434adcd5936e5afb7d) feat(cli): detect SvelteKit and Vite ([#5742](https://www.github.com/tauri-apps/tauri/pull/5742)) on 2022-12-02
- Detect SolidJS and SolidStart for the init and info commands.
- [9e7ce0a8](https://www.github.com/tauri-apps/tauri/commit/9e7ce0a8eef4bf3536645976e3e09162fbf772ab) feat(cli): detect SolidJS and SolidStart ([#5758](https://www.github.com/tauri-apps/tauri/pull/5758)) on 2022-12-08
- Use older icon types to work around a macOS bug resulting in corrupted 16x16px and 32x32px icons in bundled apps.
- [2d545eff](https://www.github.com/tauri-apps/tauri/commit/2d545eff58734ec70f23f11a429d35435cdf090e) fix(cli): corrupted icons in bundled macOS icons ([#5698](https://www.github.com/tauri-apps/tauri/pull/5698)) on 2022-11-28
## \[1.2.1]
- Fixes injection of Cargo features defined in the configuration file.

View File

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