Apply Version Updates From Current Changes (v1) (#8022)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
This commit is contained in:
github-actions[bot] 2023-10-17 12:29:33 -03:00 committed by GitHub
parent f259db3596
commit 550173aaf5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 825 additions and 979 deletions

View File

@ -1,5 +0,0 @@
---
"tauri-bundler": 'patch:bug'
---
Read `HTTP_PROXY` env var when downloading bundling resources on Windows.

View File

@ -1,5 +0,0 @@
---
'@tauri-apps/api': 'patch:feat'
---
Add `mockConvertFileSrc` in `mocks` module, to mock `convertFileSrc` function.

View File

@ -1,5 +0,0 @@
---
'tauri-bundler': 'patch:bug'
---
In Debian packages, set `root` the owner of control files and package files.

View File

@ -1,5 +1,11 @@
# Changelog
## \[1.5.1]
### New Features
- [`2b0212af`](https://www.github.com/tauri-apps/tauri/commit/2b0212af49c386e52bb2357381813d6d435ec4af)([#7961](https://www.github.com/tauri-apps/tauri/pull/7961)) Add `mockConvertFileSrc` in `mocks` module, to mock `convertFileSrc` function.
## \[1.5.0]
### New Features

View File

@ -1,6 +1,6 @@
{
"name": "@tauri-apps/api",
"version": "1.5.0",
"version": "1.5.1",
"description": "Tauri API definitions",
"type": "module",
"funding": {

View File

@ -1,5 +1,12 @@
# Changelog
## \[1.4.3]
### Bug Fixes
- [`d0ae6750`](https://www.github.com/tauri-apps/tauri/commit/d0ae67503cdb2aeaadcea27af67285eea1cf3756)([#8012](https://www.github.com/tauri-apps/tauri/pull/8012)) Read `HTTP_PROXY` env var when downloading bundling resources on Windows.
- [`113bcd7b`](https://www.github.com/tauri-apps/tauri/commit/113bcd7b684a72eb0f421c663c6aa874197252bb)([#7980](https://www.github.com/tauri-apps/tauri/pull/7980)) In Debian packages, set `root` the owner of control files and package files.
## \[1.4.2]
### Bug Fixes

View File

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

View File

@ -1,5 +1,11 @@
# Changelog
## \[1.5.4]
### Dependencies
- Upgraded to `tauri-bundler@1.4.3`
## \[1.5.3]
### Dependencies

View File

@ -3355,7 +3355,7 @@ dependencies = [
[[package]]
name = "tauri-bundler"
version = "1.4.2"
version = "1.4.3"
dependencies = [
"anyhow",
"ar",
@ -3395,7 +3395,7 @@ dependencies = [
[[package]]
name = "tauri-cli"
version = "1.5.3"
version = "1.5.4"
dependencies = [
"anyhow",
"axum",

View File

@ -3,7 +3,7 @@ members = [ "node" ]
[package]
name = "tauri-cli"
version = "1.5.3"
version = "1.5.4"
authors = [ "Tauri Programme within The Commons Conservancy" ]
edition = "2021"
rust-version = "1.60"
@ -42,7 +42,7 @@ path = "src/main.rs"
clap_complete = "4"
clap = { version = "4.0", features = [ "derive" ] }
anyhow = "1.0"
tauri-bundler = { version = "1.4.2", path = "../bundler", default-features = false }
tauri-bundler = { version = "1.4.3", path = "../bundler", default-features = false }
colored = "2.0"
once_cell = "1"
serde = { version = "1.0", features = [ "derive" ] }

View File

@ -1,6 +1,6 @@
{
"cli.js": {
"version": "1.5.3",
"version": "1.5.4",
"node": ">= 10.0.0"
},
"tauri": "1.5.2",

View File

@ -1,5 +1,11 @@
# Changelog
## \[1.5.4]
### Dependencies
- Upgraded to `tauri-cli@1.5.4`
## \[1.5.3]
### Dependencies

View File

@ -1,6 +1,6 @@
{
"name": "@tauri-apps/cli",
"version": "1.5.3",
"version": "1.5.4",
"description": "Command line interface for building Tauri apps",
"funding": {
"type": "opencollective",
@ -42,7 +42,7 @@
"cross-env": "7.0.3",
"cross-spawn": "7.0.3",
"fs-extra": "11.1.1",
"jest": "29.5.0",
"jest": "29.7.0",
"jest-transform-toml": "1.0.0",
"prettier": "2.8.8"
},

File diff suppressed because it is too large Load Diff