Skip to content

Commit

Permalink
Apply Version Updates From Current Changes (v1) (#10220)
Browse files Browse the repository at this point in the history
* apply version updates

* use audit-ci

* fmt

---------

Co-authored-by: lucasfernog <[email protected]>
Co-authored-by: Lucas Nogueira <[email protected]>
  • Loading branch information
3 people authored Aug 23, 2024
1 parent 9082a39 commit 1f45808
Show file tree
Hide file tree
Showing 41 changed files with 227 additions and 138 deletions.
6 changes: 0 additions & 6 deletions .changes/asset-resolver-dev-fallback.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/bundler-cli-msrv.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/cli-target-dir-cargo-cli-flag.md

This file was deleted.

46 changes: 33 additions & 13 deletions .changes/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,12 @@
"dryRunCommand": true
},
{
"command": "echo '<details>\n<summary><em><h4>Yarn Audit</h4></em></summary>\n\n```'",
"command": "echo '<details>\n<summary><em><h4>Audit</h4></em></summary>\n\n```'",
"dryRunCommand": true,
"pipe": true
},
{
"command": "yarn audit",
"command": "npx audit-ci --config ./audit-ci.jsonc",
"dryRunCommand": true,
"runFromRoot": true,
"pipe": true
Expand Down Expand Up @@ -148,12 +148,12 @@
"dryRunCommand": true
},
{
"command": "echo '<details>\n<summary><em><h4>Yarn Audit</h4></em></summary>\n\n```'",
"command": "echo '<details>\n<summary><em><h4>Audit</h4></em></summary>\n\n```'",
"dryRunCommand": true,
"pipe": true
},
{
"command": "yarn audit",
"command": "npx audit-ci --config ./audit-ci.jsonc",
"dryRunCommand": true,
"runFromRoot": true,
"pipe": true
Expand Down Expand Up @@ -193,32 +193,47 @@
"tauri-bundler": {
"path": "./tooling/bundler",
"manager": "rust",
"dependencies": ["tauri-utils"]
"dependencies": [
"tauri-utils"
]
},
"tauri-runtime": {
"path": "./core/tauri-runtime",
"manager": "rust",
"dependencies": ["tauri-utils"]
"dependencies": [
"tauri-utils"
]
},
"tauri-runtime-wry": {
"path": "./core/tauri-runtime-wry",
"manager": "rust",
"dependencies": ["tauri-utils", "tauri-runtime"]
"dependencies": [
"tauri-utils",
"tauri-runtime"
]
},
"tauri-codegen": {
"path": "./core/tauri-codegen",
"manager": "rust",
"dependencies": ["tauri-utils"]
"dependencies": [
"tauri-utils"
]
},
"tauri-macros": {
"path": "./core/tauri-macros",
"manager": "rust",
"dependencies": ["tauri-codegen", "tauri-utils"]
"dependencies": [
"tauri-codegen",
"tauri-utils"
]
},
"tauri-build": {
"path": "./core/tauri-build",
"manager": "rust",
"dependencies": ["tauri-codegen", "tauri-utils"],
"dependencies": [
"tauri-codegen",
"tauri-utils"
],
"postversion": [
"node ../../.scripts/covector/sync-cli-metadata.js ${ pkg.pkg } ${ release.type }",
"cargo build --manifest-path ../tauri-config-schema/Cargo.toml"
Expand All @@ -245,7 +260,9 @@
"path": "./tooling/cli/node",
"manager": "javascript",
"getPublishedVersion": "node ../../../.scripts/covector/package-latest-version.js npm ${ pkgFile.pkg.name } ${ pkgFile.pkg.version }",
"dependencies": ["tauri-cli"],
"dependencies": [
"tauri-cli"
],
"postversion": [
"node ../../../.scripts/covector/sync-cli-metadata.js ${ pkg.pkg } ${ release.type }",
"cargo build --manifest-path ../../../core/tauri-config-schema/Cargo.toml"
Expand All @@ -257,7 +274,10 @@
"tauri-cli": {
"path": "./tooling/cli",
"manager": "rust",
"dependencies": ["tauri-bundler", "tauri-utils"],
"dependencies": [
"tauri-bundler",
"tauri-utils"
],
"postversion": [
"cargo check",
"cargo build --manifest-path ../../core/tauri-config-schema/Cargo.toml"
Expand All @@ -275,4 +295,4 @@
"postversion": "cargo check"
}
}
}
}
5 changes: 0 additions & 5 deletions .changes/ensure-tray-created-ready.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/fix-init-script-iframe.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/fix-remove-tempdir-unc-prefix.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/fix-usage-without-compression.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changes/hardened-runtime-option.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/ipc-invoke-key-integration-tests.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/nsis-run-progrma-space.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changes/rustc-check-cfg.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/update-serialize-to-js.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/updater-nsis-shortcut.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/utils-nsis-args-ns.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/wry-arc.md

This file was deleted.

14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions core/tauri-build/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## \[1.5.4]

### What's Changed

- [`fbcbc5ef7`](https://www.github.com/tauri-apps/tauri/commit/fbcbc5ef7cb5e3a69e3c23d6af24c8d340ae5f6b) ([#10392](https://www.github.com/tauri-apps/tauri/pull/10392) by [@github-actions](https://www.github.com/tauri-apps/tauri/../../github-actions)) Emit `cargo:rustc-check-cfg` instruction so Cargo validates custom cfg attributes on Rust 1.80 (or nightly-2024-05-05).

### Dependencies

- Upgraded to `[email protected]`
- Upgraded to `[email protected]`

## \[1.5.3]

### Dependencies
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-build"
version = "1.5.3"
version = "1.5.4"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand All @@ -23,8 +23,8 @@ unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] }
[dependencies]
anyhow = "1"
quote = { version = "1", optional = true }
tauri-codegen = { version = "1.4.4", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "1.6.0", path = "../tauri-utils", features = [ "build", "resources" ] }
tauri-codegen = { version = "1.4.5", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "1.6.1", path = "../tauri-utils", features = [ "build", "resources" ] }
cargo_toml = "0.15"
serde = "1"
serde_json = "1"
Expand Down
14 changes: 14 additions & 0 deletions core/tauri-codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## \[1.4.5]

### Enhancements

- [`67b7ca6ef`](https://www.github.com/tauri-apps/tauri/commit/67b7ca6ef45b2b1eda97cd2a917fc98b24d90be1) ([#10356](https://www.github.com/tauri-apps/tauri/pull/10356) by [@github-actions](https://www.github.com/tauri-apps/tauri/../../github-actions)) Enhance `AssetResolver::get` in development mode by reading distDir directly as a fallback to the embedded assets.

### Bug Fixes

- [`a3946222b`](https://www.github.com/tauri-apps/tauri/commit/a3946222b3047247cc46c7336ea1026f78bec012) ([#10433](https://www.github.com/tauri-apps/tauri/pull/10433) by [@github-actions](https://www.github.com/tauri-apps/tauri/../../github-actions)) Fixes asset resolving when not using the `compression` feature.

### Dependencies

- Upgraded to `[email protected]`

## \[1.4.4]

### Dependencies
Expand Down
4 changes: 2 additions & 2 deletions core/tauri-codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-codegen"
version = "1.4.4"
version = "1.4.5"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand All @@ -19,7 +19,7 @@ proc-macro2 = "1"
quote = "1"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
tauri-utils = { version = "1.6.0", path = "../tauri-utils", features = [ "build" ] }
tauri-utils = { version = "1.6.1", path = "../tauri-utils", features = [ "build" ] }
thiserror = "1"
walkdir = "2"
brotli = { version = "6", optional = true }
Expand Down
7 changes: 7 additions & 0 deletions core/tauri-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## \[1.4.6]

### Dependencies

- Upgraded to `[email protected]`
- Upgraded to `[email protected]`

## \[1.4.5]

### Dependencies
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-macros"
version = "1.4.5"
version = "1.4.6"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "os", "filesystem", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand All @@ -20,8 +20,8 @@ proc-macro2 = { version = "1", features = [ "span-locations" ] }
quote = "1"
syn = { version = "1", features = [ "full" ] }
heck = "0.5"
tauri-codegen = { version = "1.4.4", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "1.6.0", path = "../tauri-utils" }
tauri-codegen = { version = "1.4.5", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "1.6.1", path = "../tauri-utils" }

[features]
custom-protocol = [ ]
Expand Down
Loading

0 comments on commit 1f45808

Please sign in to comment.