apply version updates (#13751)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2025-07-21 00:09:52 +02:00
committed by GitHub
parent 6a4451bcd9
commit ab97f36b64
52 changed files with 191 additions and 173 deletions

View File

@@ -1,6 +0,0 @@
---
"@tauri-apps/cli": patch:bug
"tauri-cli": patch:bug
---
Fixes Android dev and build commands reading `tauri.ios.conf.json` instead of `tauri.android.conf.json` to merge platform-specific configuration.

View File

@@ -1,5 +0,0 @@
---
"@tauri-apps/api": patch:feat
---
Added `getBundleType` to the app module.

View File

@@ -1,5 +0,0 @@
---
'tauri-cli': 'patch:changes'
---
Enable edge to edge in `tauri android init` template

View File

@@ -1,5 +0,0 @@
---
'tauri-runtime-wry': 'patch:changes'
---
Makes some methods on `WindowIdStore`, `WindowsStore` and `WindowWrapper` public

View File

@@ -1,5 +0,0 @@
---
"@tauri-apps/api": "patch:bug"
---
Expose `unregisterCallback`, `runCallback`, `callbacks` in `mockIPC`

View File

@@ -1,5 +0,0 @@
---
'tauri-cli': 'patch:bug'
---
Fix type of CFBundleVersion generated by `tauri ios init` when `bundleVersion` is a single number (for example `1` instead of `1.0.0`).

View File

@@ -1,5 +0,0 @@
---
tauri-bundler: patch:bug
---
Fix NSIS per-machine installer not requesting elevation when run by non-admin users.

View File

@@ -1,5 +0,0 @@
---
tauri-bundler: patch:bug
---
Fix incorrect expected file path for `nsis_tauri_utils.dll` resulting in tauri-cli re-downloading the file on every build.

View File

@@ -1,6 +0,0 @@
---
"tauri-cli": patch:bug
"@tauri-apps/cli": patch:bug
---
Install iOS dependencies when needed.

View File

@@ -1,5 +0,0 @@
---
"tauri": patch:bug
---
Fix isolation pattern creates iframes within iframes on Windows

View File

@@ -1,7 +0,0 @@
---
tauri-bundler: "patch:bug"
tauri-cli: "patch:bug"
"@tauri-apps/cli": "patch:bug"
---
The AppImage bundler now pulls the AppRun binaries from our GitHub mirror, fixing 404 errors.

View File

@@ -1,6 +0,0 @@
---
"@tauri-apps/cli": patch:bug
"tauri-cli": patch:bug
---
Fail with an error when trying to migrate from v2 alpha

View File

@@ -1,5 +0,0 @@
---
"tauri": patch:bug
---
Fixes loading external URLs in mobile development mode.

View File

@@ -1,5 +0,0 @@
---
"@tauri-apps/api": "minor:enhance"
---
Allow events emitted with `emit` to be handled correctly by `listen` callbacks when in a mocked environment

View File

@@ -1,5 +0,0 @@
---
tauri-cli: patch:enhance
---
Binaries are patched before bundling to add the type of a bundle they will placed in. This information will be used during update process to select the correct target.

View File

@@ -1,5 +0,0 @@
---
"tauri-utils": patch:feat
---
Added `platform::bundle_type`.

View File

@@ -1,5 +0,0 @@
---
tauri: "minor:feat"
---
Added `tauri::plugin::Builder::js_init_script_on_all_frames` that allows plugins to add initialization scripts that runs on all frames

View File

@@ -1,5 +0,0 @@
---
tauri: "minor:enhance"
---
Add `AppHandle::plugin_boxed` and `Builder::plugin_boxed` methods to allow adding plugins in the form of boxed trait objects.

View File

@@ -1,5 +0,0 @@
---
tauri: "minor:enhance"
---
`tauri::plugin::Builder::js_init_script` now takes `impl Into<String>` instead of `String`

View File

@@ -1,5 +0,0 @@
---
"tauri": patch:bug
---
Forward request body on the mobile frontend proxy.

View File

@@ -1,6 +0,0 @@
---
'tauri-cli': 'minor:feat'
'tauri-utils': 'minor:feat'
---
Allow runner configuration to be an object with cmd, cwd, and args properties. The runner can now be configured as `{ "cmd": "my_runner", "cwd": "/path", "args": ["--quiet"] }` while maintaining backwards compatibility with the existing string format.

View File

@@ -1,5 +0,0 @@
---
"@tauri-apps/api": "patch:bug"
---
Add missing `trafficLightPosition` TypeScript type definition

View File

@@ -1,5 +0,0 @@
---
'tauri-cli': 'patch:changes'
---
Update compileSdk, targetSdk in android template to 36

View File

@@ -1,6 +0,0 @@
---
"@tauri-apps/cli": patch:bug
"tauri-cli": patch:bug
---
Use v2 stable instead of v2-rc when migrating from v2-beta

20
Cargo.lock generated
View File

@@ -8443,7 +8443,7 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
[[package]]
name = "tauri"
version = "2.6.2"
version = "2.7.0"
dependencies = [
"anyhow",
"bytes",
@@ -8503,7 +8503,7 @@ dependencies = [
[[package]]
name = "tauri-build"
version = "2.3.0"
version = "2.3.1"
dependencies = [
"anyhow",
"cargo_toml",
@@ -8525,7 +8525,7 @@ dependencies = [
[[package]]
name = "tauri-bundler"
version = "2.5.0"
version = "2.5.1"
dependencies = [
"anyhow",
"ar",
@@ -8571,7 +8571,7 @@ dependencies = [
[[package]]
name = "tauri-cli"
version = "2.6.2"
version = "2.7.0"
dependencies = [
"anyhow",
"ar",
@@ -8661,7 +8661,7 @@ dependencies = [
[[package]]
name = "tauri-codegen"
version = "2.3.0"
version = "2.3.1"
dependencies = [
"base64 0.22.1",
"brotli",
@@ -8747,7 +8747,7 @@ dependencies = [
[[package]]
name = "tauri-macros"
version = "2.3.1"
version = "2.3.2"
dependencies = [
"heck 0.5.0",
"proc-macro2",
@@ -8759,7 +8759,7 @@ dependencies = [
[[package]]
name = "tauri-plugin"
version = "2.3.0"
version = "2.3.1"
dependencies = [
"anyhow",
"glob",
@@ -8807,7 +8807,7 @@ dependencies = [
[[package]]
name = "tauri-runtime"
version = "2.7.0"
version = "2.7.1"
dependencies = [
"cookie",
"dpi",
@@ -8827,7 +8827,7 @@ dependencies = [
[[package]]
name = "tauri-runtime-wry"
version = "2.7.1"
version = "2.7.2"
dependencies = [
"gtk",
"http 1.3.1",
@@ -8878,7 +8878,7 @@ dependencies = [
[[package]]
name = "tauri-utils"
version = "2.5.0"
version = "2.6.0"
dependencies = [
"aes-gcm",
"anyhow",

View File

@@ -1,5 +1,12 @@
# Changelog
## \[2.3.1]
### Dependencies
- Upgraded to `tauri-utils@2.6.0`
- Upgraded to `tauri-codegen@2.3.1`
## \[2.2.1]
### Dependencies

View File

@@ -1,6 +1,6 @@
[package]
name = "tauri-build"
version = "2.3.0"
version = "2.3.1"
description = "build time code to pair with https://crates.io/crates/tauri"
exclude = ["CHANGELOG.md", "/target"]
readme = "README.md"
@@ -28,8 +28,8 @@ rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
anyhow = "1"
quote = { version = "1", optional = true }
tauri-codegen = { version = "2.3.0", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.5.0", path = "../tauri-utils", features = [
tauri-codegen = { version = "2.3.1", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.6.0", path = "../tauri-utils", features = [
"build",
"resources",
] }

View File

@@ -1,5 +1,17 @@
# Changelog
## \[2.5.1]
### Bug Fixes
- [`f94af9035`](https://www.github.com/tauri-apps/tauri/commit/f94af90359ec8b01138ae542391caa704ec18ca8) ([#13786](https://www.github.com/tauri-apps/tauri/pull/13786) by [@catalinsh](https://www.github.com/tauri-apps/tauri/../../catalinsh)) Fix NSIS per-machine installer not requesting elevation when run by non-admin users.
- [`f2dbe7309`](https://www.github.com/tauri-apps/tauri/commit/f2dbe730979d570be3ee3ecac9621204c4ceb788) ([#13772](https://www.github.com/tauri-apps/tauri/pull/13772) by [@catalinsh](https://www.github.com/tauri-apps/tauri/../../catalinsh)) Fix incorrect expected file path for `nsis_tauri_utils.dll` resulting in tauri-cli re-downloading the file on every build.
- [`7a6fd5b75`](https://www.github.com/tauri-apps/tauri/commit/7a6fd5b75d61071e2771f6277c0376ec206d302a) ([#13863](https://www.github.com/tauri-apps/tauri/pull/13863) by [@FabianLars](https://www.github.com/tauri-apps/tauri/../../FabianLars)) The AppImage bundler now pulls the AppRun binaries from our GitHub mirror, fixing 404 errors.
### Dependencies
- Upgraded to `tauri-utils@2.6.0`
## \[2.5.0]
### New Features

View File

@@ -1,6 +1,6 @@
[package]
name = "tauri-bundler"
version = "2.5.0"
version = "2.5.1"
authors = [
"George Burton <burtonageo@gmail.com>",
"Tauri Programme within The Commons Conservancy",
@@ -15,7 +15,7 @@ rust-version = "1.77.2"
exclude = ["CHANGELOG.md", "/target", "rustfmt.toml"]
[dependencies]
tauri-utils = { version = "2.5.0", path = "../tauri-utils", features = [
tauri-utils = { version = "2.6.0", path = "../tauri-utils", features = [
"resources",
] }
image = "0.25"

View File

@@ -1,5 +1,34 @@
# Changelog
## \[2.7.0]
### New Features
- [`33d079392`](https://www.github.com/tauri-apps/tauri/commit/33d079392ac4a5a153b7d8a6d82fefd6f54a2bdf) ([#13811](https://www.github.com/tauri-apps/tauri/pull/13811) by [@mhbagheri-99](https://www.github.com/tauri-apps/tauri/../../mhbagheri-99)) Allow runner configuration to be an object with cmd, cwd, and args properties. The runner can now be configured as `{ "cmd": "my_runner", "cwd": "/path", "args": ["--quiet"] }` while maintaining backwards compatibility with the existing string format.
### Enhancements
- [`232265c70`](https://www.github.com/tauri-apps/tauri/commit/232265c70e1c213bbb3f84b5541ddc07d330fce1) ([#13209](https://www.github.com/tauri-apps/tauri/pull/13209) by [@kandrelczyk](https://www.github.com/tauri-apps/tauri/../../kandrelczyk)) Binaries are patched before bundling to add the type of a bundle they will placed in. This information will be used during update process to select the correct target.
### Bug Fixes
- [`916aeaa48`](https://www.github.com/tauri-apps/tauri/commit/916aeaa48646a483a78e51cfe1633800ee62c37c) ([#13781](https://www.github.com/tauri-apps/tauri/pull/13781) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Fixes Android dev and build commands reading `tauri.ios.conf.json` instead of `tauri.android.conf.json` to merge platform-specific configuration.
- [`acd757428`](https://www.github.com/tauri-apps/tauri/commit/acd7574284056f9c00894cdce6c07f948fd80c87) ([#13743](https://www.github.com/tauri-apps/tauri/pull/13743) by [@owjs3901](https://www.github.com/tauri-apps/tauri/../../owjs3901)) Fix type of CFBundleVersion generated by `tauri ios init` when `bundleVersion` is a single number (for example `1` instead of `1.0.0`).
- [`0f248b111`](https://www.github.com/tauri-apps/tauri/commit/0f248b111ffb8af934eaf64bd8f4591e628da786) ([#13799](https://www.github.com/tauri-apps/tauri/pull/13799) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Install iOS dependencies when needed.
- [`7a6fd5b75`](https://www.github.com/tauri-apps/tauri/commit/7a6fd5b75d61071e2771f6277c0376ec206d302a) ([#13863](https://www.github.com/tauri-apps/tauri/pull/13863) by [@FabianLars](https://www.github.com/tauri-apps/tauri/../../FabianLars)) The AppImage bundler now pulls the AppRun binaries from our GitHub mirror, fixing 404 errors.
- [`bda830410`](https://www.github.com/tauri-apps/tauri/commit/bda8304107da7ca60caaba5674faa793491898c6) ([#13833](https://www.github.com/tauri-apps/tauri/pull/13833) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Fail with an error when trying to migrate from v2 alpha
- [`bda830410`](https://www.github.com/tauri-apps/tauri/commit/bda8304107da7ca60caaba5674faa793491898c6) ([#13833](https://www.github.com/tauri-apps/tauri/pull/13833) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Use v2 stable instead of v2-rc when migrating from v2-beta
### What's Changed
- [`cfc5bb819`](https://www.github.com/tauri-apps/tauri/commit/cfc5bb819637a97141cbda3285c5d772cfc0ebca) ([#13780](https://www.github.com/tauri-apps/tauri/pull/13780) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Enable edge to edge in `tauri android init` template
- [`12e359061`](https://www.github.com/tauri-apps/tauri/commit/12e3590613c7b4370aeddc16db7e29335e3a7684) ([#13759](https://www.github.com/tauri-apps/tauri/pull/13759) by [@owjs3901](https://www.github.com/tauri-apps/tauri/../../owjs3901)) Update compileSdk, targetSdk in android template to 36
### Dependencies
- Upgraded to `tauri-bundler@2.5.1`
- Upgraded to `tauri-utils@2.6.0`
## \[2.6.2]
### Bug Fixes

View File

@@ -1,6 +1,6 @@
[package]
name = "tauri-cli"
version = "2.6.2"
version = "2.7.0"
authors = ["Tauri Programme within The Commons Conservancy"]
edition = "2021"
rust-version = "1.77.2"
@@ -47,7 +47,7 @@ sublime_fuzzy = "0.7"
clap_complete = "4"
clap = { version = "4", features = ["derive", "env"] }
anyhow = "1"
tauri-bundler = { version = "2.5.0", default-features = false, path = "../tauri-bundler" }
tauri-bundler = { version = "2.5.1", default-features = false, path = "../tauri-bundler" }
colored = "2"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["preserve_order"] }
@@ -58,7 +58,7 @@ shared_child = "1"
duct = "1.0"
toml_edit = { version = "0.22", features = ["serde"] }
json-patch = "3"
tauri-utils = { version = "2.5.0", path = "../tauri-utils", features = [
tauri-utils = { version = "2.6.0", path = "../tauri-utils", features = [
"isolation",
"schema",
"config-json5",

View File

@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schema.tauri.app/config/2.6.2",
"$id": "https://schema.tauri.app/config/2.7.0",
"title": "Config",
"description": "The Tauri configuration object.\n It is read from a file where you can define your frontend assets,\n configure the bundler and define a tray icon.\n\n The configuration file is generated by the\n [`tauri init`](https://v2.tauri.app/reference/cli/#init) command that lives in\n your Tauri application source directory (src-tauri).\n\n Once generated, you may modify it at will to customize your Tauri application.\n\n ## File Formats\n\n By default, the configuration is defined as a JSON file named `tauri.conf.json`.\n\n Tauri also supports JSON5 and TOML files via the `config-json5` and `config-toml` Cargo features, respectively.\n The JSON5 file name must be either `tauri.conf.json` or `tauri.conf.json5`.\n The TOML file name is `Tauri.toml`.\n\n ## Platform-Specific Configuration\n\n In addition to the default configuration file, Tauri can\n read a platform-specific configuration from `tauri.linux.conf.json`,\n `tauri.windows.conf.json`, `tauri.macos.conf.json`, `tauri.android.conf.json` and `tauri.ios.conf.json`\n (or `Tauri.linux.toml`, `Tauri.windows.toml`, `Tauri.macos.toml`, `Tauri.android.toml` and `Tauri.ios.toml` if the `Tauri.toml` format is used),\n which gets merged with the main configuration object.\n\n ## Configuration Structure\n\n The configuration is composed of the following objects:\n\n - [`app`](#appconfig): The Tauri configuration\n - [`build`](#buildconfig): The build configuration\n - [`bundle`](#bundleconfig): The bundle configurations\n - [`plugins`](#pluginconfig): The plugins configuration\n\n Example tauri.config.json file:\n\n ```json\n {\n \"productName\": \"tauri-app\",\n \"version\": \"0.1.0\",\n \"build\": {\n \"beforeBuildCommand\": \"\",\n \"beforeDevCommand\": \"\",\n \"devUrl\": \"http://localhost:3000\",\n \"frontendDist\": \"../dist\"\n },\n \"app\": {\n \"security\": {\n \"csp\": null\n },\n \"windows\": [\n {\n \"fullscreen\": false,\n \"height\": 600,\n \"resizable\": true,\n \"title\": \"Tauri App\",\n \"width\": 800\n }\n ]\n },\n \"bundle\": {},\n \"plugins\": {}\n }\n ```",
"type": "object",

View File

@@ -1,9 +1,9 @@
{
"cli.js": {
"version": "2.6.2",
"version": "2.6.3",
"node": ">= 10.0.0"
},
"tauri": "2.6.2",
"tauri-build": "2.3.0",
"tauri-plugin": "2.3.0"
"tauri": "2.7.0",
"tauri-build": "2.3.1",
"tauri-plugin": "2.3.1"
}

View File

@@ -1,5 +1,11 @@
# Changelog
## \[2.3.1]
### Dependencies
- Upgraded to `tauri-utils@2.6.0`
## \[2.3.0]
### New Features

View File

@@ -1,6 +1,6 @@
[package]
name = "tauri-codegen"
version = "2.3.0"
version = "2.3.1"
description = "code generation meant to be consumed inside of `tauri` through `tauri-build` or `tauri-macros`"
exclude = ["CHANGELOG.md", "/target"]
readme = "README.md"
@@ -20,7 +20,7 @@ quote = "1"
syn = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tauri-utils = { version = "2.5.0", path = "../tauri-utils", features = [
tauri-utils = { version = "2.6.0", path = "../tauri-utils", features = [
"build",
] }
thiserror = "2"

View File

@@ -1,5 +1,12 @@
# Changelog
## \[2.3.2]
### Dependencies
- Upgraded to `tauri-utils@2.6.0`
- Upgraded to `tauri-codegen@2.3.1`
## \[2.3.1]
### Performance Improvements

View File

@@ -1,6 +1,6 @@
[package]
name = "tauri-macros"
version = "2.3.1"
version = "2.3.2"
description = "Macros for the tauri crate."
exclude = ["CHANGELOG.md", "/target"]
readme = "README.md"
@@ -20,8 +20,8 @@ proc-macro2 = { version = "1", features = ["span-locations"] }
quote = "1"
syn = { version = "2", features = ["full"] }
heck = "0.5"
tauri-codegen = { version = "2.3.0", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "2.5.0", path = "../tauri-utils" }
tauri-codegen = { version = "2.3.1", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "2.6.0", path = "../tauri-utils" }
[features]
custom-protocol = []

View File

@@ -1,5 +1,11 @@
# Changelog
## \[2.3.1]
### Dependencies
- Upgraded to `tauri-utils@2.6.0`
## \[2.2.1]
### Dependencies

View File

@@ -1,6 +1,6 @@
[package]
name = "tauri-plugin"
version = "2.3.0"
version = "2.3.1"
description = "Build script and runtime Tauri plugin definitions"
authors.workspace = true
homepage.workspace = true
@@ -30,7 +30,7 @@ runtime = []
[dependencies]
anyhow = { version = "1", optional = true }
serde = { version = "1", optional = true }
tauri-utils = { version = "2.5.0", default-features = false, features = [
tauri-utils = { version = "2.6.0", default-features = false, features = [
"build",
], path = "../tauri-utils" }
serde_json = { version = "1", optional = true }

View File

@@ -1,5 +1,16 @@
# Changelog
## \[2.7.2]
### What's Changed
- [`3025d9095`](https://www.github.com/tauri-apps/tauri/commit/3025d90951bfa152fc6f4255ac5a3fdd0f6353ca) ([#13822](https://www.github.com/tauri-apps/tauri/pull/13822) by [@clearlysid](https://www.github.com/tauri-apps/tauri/../../clearlysid)) Makes some methods on `WindowIdStore`, `WindowsStore` and `WindowWrapper` public
### Dependencies
- Upgraded to `tauri-utils@2.6.0`
- Upgraded to `tauri-runtime@2.7.1`
## \[2.7.1]
### Bug Fixes

View File

@@ -1,6 +1,6 @@
[package]
name = "tauri-runtime-wry"
version = "2.7.1"
version = "2.7.2"
description = "Wry bindings to the Tauri runtime"
exclude = ["CHANGELOG.md", "/target"]
readme = "README.md"
@@ -24,8 +24,8 @@ wry = { version = "0.52", default-features = false, features = [
"linux-body",
] }
tao = { version = "0.34", default-features = false, features = ["rwh_06"] }
tauri-runtime = { version = "2.7.0", path = "../tauri-runtime" }
tauri-utils = { version = "2.5.0", path = "../tauri-utils" }
tauri-runtime = { version = "2.7.1", path = "../tauri-runtime" }
tauri-utils = { version = "2.6.0", path = "../tauri-utils" }
raw-window-handle = "0.6"
http = "1"
url = "2"

View File

@@ -1,5 +1,11 @@
# Changelog
## \[2.7.1]
### Dependencies
- Upgraded to `tauri-utils@2.6.0`
## \[2.7.0]
### Dependencies

View File

@@ -1,6 +1,6 @@
[package]
name = "tauri-runtime"
version = "2.7.0"
version = "2.7.1"
description = "Runtime for Tauri applications"
exclude = ["CHANGELOG.md", "/target"]
readme = "README.md"
@@ -29,7 +29,7 @@ targets = [
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
tauri-utils = { version = "2.5.0", path = "../tauri-utils" }
tauri-utils = { version = "2.6.0", path = "../tauri-utils" }
http = "1"
raw-window-handle = "0.6"
url = { version = "2" }

View File

@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schema.tauri.app/config/2.6.2",
"$id": "https://schema.tauri.app/config/2.7.0",
"title": "Config",
"description": "The Tauri configuration object.\n It is read from a file where you can define your frontend assets,\n configure the bundler and define a tray icon.\n\n The configuration file is generated by the\n [`tauri init`](https://v2.tauri.app/reference/cli/#init) command that lives in\n your Tauri application source directory (src-tauri).\n\n Once generated, you may modify it at will to customize your Tauri application.\n\n ## File Formats\n\n By default, the configuration is defined as a JSON file named `tauri.conf.json`.\n\n Tauri also supports JSON5 and TOML files via the `config-json5` and `config-toml` Cargo features, respectively.\n The JSON5 file name must be either `tauri.conf.json` or `tauri.conf.json5`.\n The TOML file name is `Tauri.toml`.\n\n ## Platform-Specific Configuration\n\n In addition to the default configuration file, Tauri can\n read a platform-specific configuration from `tauri.linux.conf.json`,\n `tauri.windows.conf.json`, `tauri.macos.conf.json`, `tauri.android.conf.json` and `tauri.ios.conf.json`\n (or `Tauri.linux.toml`, `Tauri.windows.toml`, `Tauri.macos.toml`, `Tauri.android.toml` and `Tauri.ios.toml` if the `Tauri.toml` format is used),\n which gets merged with the main configuration object.\n\n ## Configuration Structure\n\n The configuration is composed of the following objects:\n\n - [`app`](#appconfig): The Tauri configuration\n - [`build`](#buildconfig): The build configuration\n - [`bundle`](#bundleconfig): The bundle configurations\n - [`plugins`](#pluginconfig): The plugins configuration\n\n Example tauri.config.json file:\n\n ```json\n {\n \"productName\": \"tauri-app\",\n \"version\": \"0.1.0\",\n \"build\": {\n \"beforeBuildCommand\": \"\",\n \"beforeDevCommand\": \"\",\n \"devUrl\": \"http://localhost:3000\",\n \"frontendDist\": \"../dist\"\n },\n \"app\": {\n \"security\": {\n \"csp\": null\n },\n \"windows\": [\n {\n \"fullscreen\": false,\n \"height\": 600,\n \"resizable\": true,\n \"title\": \"Tauri App\",\n \"width\": 800\n }\n ]\n },\n \"bundle\": {},\n \"plugins\": {}\n }\n ```",
"type": "object",

View File

@@ -1,5 +1,12 @@
# Changelog
## \[2.6.0]
### New Features
- [`232265c70`](https://www.github.com/tauri-apps/tauri/commit/232265c70e1c213bbb3f84b5541ddc07d330fce1) ([#13209](https://www.github.com/tauri-apps/tauri/pull/13209) by [@kandrelczyk](https://www.github.com/tauri-apps/tauri/../../kandrelczyk)) Added `platform::bundle_type`.
- [`33d079392`](https://www.github.com/tauri-apps/tauri/commit/33d079392ac4a5a153b7d8a6d82fefd6f54a2bdf) ([#13811](https://www.github.com/tauri-apps/tauri/pull/13811) by [@mhbagheri-99](https://www.github.com/tauri-apps/tauri/../../mhbagheri-99)) Allow runner configuration to be an object with cmd, cwd, and args properties. The runner can now be configured as `{ "cmd": "my_runner", "cwd": "/path", "args": ["--quiet"] }` while maintaining backwards compatibility with the existing string format.
## \[2.5.0]
### New Features

View File

@@ -1,6 +1,6 @@
[package]
name = "tauri-utils"
version = "2.5.0"
version = "2.6.0"
description = "Utilities for Tauri"
exclude = ["CHANGELOG.md", "/target"]
readme = "README.md"

View File

@@ -1,5 +1,30 @@
# Changelog
## \[2.7.0]
### New Features
- [`7bc77a038`](https://www.github.com/tauri-apps/tauri/commit/7bc77a038af062a02aabeaf9b228577447bad5e5) ([#13609](https://www.github.com/tauri-apps/tauri/pull/13609) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Added `tauri::plugin::Builder::js_init_script_on_all_frames` that allows plugins to add initialization scripts that runs on all frames
### Enhancements
- [`7f3c98911`](https://www.github.com/tauri-apps/tauri/commit/7f3c989111e007d7eeb5da118421214848e4bfcd) ([#13837](https://www.github.com/tauri-apps/tauri/pull/13837) by [@WSH032](https://www.github.com/tauri-apps/tauri/../../WSH032)) Add `AppHandle::plugin_boxed` and `Builder::plugin_boxed` methods to allow adding plugins in the form of boxed trait objects.
- [`7bc77a038`](https://www.github.com/tauri-apps/tauri/commit/7bc77a038af062a02aabeaf9b228577447bad5e5) ([#13609](https://www.github.com/tauri-apps/tauri/pull/13609) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) `tauri::plugin::Builder::js_init_script` now takes `impl Into<String>` instead of `String`
### Bug Fixes
- [`6a4451bcd`](https://www.github.com/tauri-apps/tauri/commit/6a4451bcd9cf5a2428857d2e47ea25e3d74712ae) ([#13849](https://www.github.com/tauri-apps/tauri/pull/13849) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Fix isolation pattern creates iframes within iframes on Windows
- [`4ba871c5d`](https://www.github.com/tauri-apps/tauri/commit/4ba871c5d2eb3fbb8db56c8d8f9916e65d3e34ac) ([#13782](https://www.github.com/tauri-apps/tauri/pull/13782) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Fixes loading external URLs in mobile development mode.
- [`1c5df96fe`](https://www.github.com/tauri-apps/tauri/commit/1c5df96fe8542e815cd887e66c29efb268add710) ([#13773](https://www.github.com/tauri-apps/tauri/pull/13773) by [@tasgon](https://www.github.com/tauri-apps/tauri/../../tasgon)) Forward request body on the mobile frontend proxy.
### Dependencies
- Upgraded to `tauri-runtime-wry@2.7.2`
- Upgraded to `tauri-utils@2.6.0`
- Upgraded to `tauri-runtime@2.7.1`
- Upgraded to `tauri-macros@2.3.2`
- Upgraded to `tauri-build@2.3.1`
## \[2.6.2]
### Dependencies

View File

@@ -1,6 +1,6 @@
[package]
name = "tauri"
version = "2.6.2"
version = "2.7.0"
description = "Make tiny, secure apps for all desktop platforms with Tauri"
exclude = ["/test", "/.scripts", "CHANGELOG.md", "/target"]
readme = "README.md"
@@ -56,12 +56,12 @@ uuid = { version = "1", features = ["v4"], optional = true }
url = "2"
anyhow = "1"
thiserror = "2"
tauri-runtime = { version = "2.7.0", path = "../tauri-runtime" }
tauri-macros = { version = "2.3.1", path = "../tauri-macros" }
tauri-utils = { version = "2.5.0", features = [
tauri-runtime = { version = "2.7.1", path = "../tauri-runtime" }
tauri-macros = { version = "2.3.2", path = "../tauri-macros" }
tauri-utils = { version = "2.6.0", features = [
"resources",
], path = "../tauri-utils" }
tauri-runtime-wry = { version = "2.7.1", path = "../tauri-runtime-wry", default-features = false, optional = true }
tauri-runtime-wry = { version = "2.7.2", path = "../tauri-runtime-wry", default-features = false, optional = true }
getrandom = "0.3"
serde_repr = "0.1"
http = "1"
@@ -157,8 +157,8 @@ objc2-ui-kit = { version = "0.3.0", default-features = false, features = [
[build-dependencies]
glob = "0.3"
heck = "0.5"
tauri-build = { path = "../tauri-build/", default-features = false, version = "2.3.0" }
tauri-utils = { path = "../tauri-utils/", version = "2.5.0", features = [
tauri-build = { path = "../tauri-build/", default-features = false, version = "2.3.1" }
tauri-utils = { path = "../tauri-utils/", version = "2.6.0", features = [
"build",
] }

View File

@@ -1,5 +1,20 @@
# Changelog
## \[2.7.0]
### New Features
- [`232265c70`](https://www.github.com/tauri-apps/tauri/commit/232265c70e1c213bbb3f84b5541ddc07d330fce1) ([#13209](https://www.github.com/tauri-apps/tauri/pull/13209) by [@kandrelczyk](https://www.github.com/tauri-apps/tauri/../../kandrelczyk)) Added `getBundleType` to the app module.
### Enhancements
- [`96391467e`](https://www.github.com/tauri-apps/tauri/commit/96391467e967c1e3c6475ce75166c58a326116a3) ([#13783](https://www.github.com/tauri-apps/tauri/pull/13783) by [@JosephBrooksbank](https://www.github.com/tauri-apps/tauri/../../JosephBrooksbank)) Allow events emitted with `emit` to be handled correctly by `listen` callbacks when in a mocked environment
### Bug Fixes
- [`152d971bc`](https://www.github.com/tauri-apps/tauri/commit/152d971bcd6c1fdc5716f7d5417dd4df5ce7479f) ([#13744](https://www.github.com/tauri-apps/tauri/pull/13744) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Expose `unregisterCallback`, `runCallback`, `callbacks` in `mockIPC`
- [`b821796ad`](https://www.github.com/tauri-apps/tauri/commit/b821796add33cca4de72f48882684af487936d02) ([#13810](https://www.github.com/tauri-apps/tauri/pull/13810) by [@asdolo](https://www.github.com/tauri-apps/tauri/../../asdolo)) Add missing `trafficLightPosition` TypeScript type definition
## \[2.6.0]
### New Features

View File

@@ -1,6 +1,6 @@
{
"name": "@tauri-apps/api",
"version": "2.6.0",
"version": "2.7.0",
"description": "Tauri API definitions",
"funding": {
"type": "opencollective",

View File

@@ -1,5 +1,19 @@
# Changelog
## \[2.6.3]
### Bug Fixes
- [`916aeaa48`](https://www.github.com/tauri-apps/tauri/commit/916aeaa48646a483a78e51cfe1633800ee62c37c) ([#13781](https://www.github.com/tauri-apps/tauri/pull/13781) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Fixes Android dev and build commands reading `tauri.ios.conf.json` instead of `tauri.android.conf.json` to merge platform-specific configuration.
- [`0f248b111`](https://www.github.com/tauri-apps/tauri/commit/0f248b111ffb8af934eaf64bd8f4591e628da786) ([#13799](https://www.github.com/tauri-apps/tauri/pull/13799) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Install iOS dependencies when needed.
- [`7a6fd5b75`](https://www.github.com/tauri-apps/tauri/commit/7a6fd5b75d61071e2771f6277c0376ec206d302a) ([#13863](https://www.github.com/tauri-apps/tauri/pull/13863) by [@FabianLars](https://www.github.com/tauri-apps/tauri/../../FabianLars)) The AppImage bundler now pulls the AppRun binaries from our GitHub mirror, fixing 404 errors.
- [`bda830410`](https://www.github.com/tauri-apps/tauri/commit/bda8304107da7ca60caaba5674faa793491898c6) ([#13833](https://www.github.com/tauri-apps/tauri/pull/13833) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Fail with an error when trying to migrate from v2 alpha
- [`bda830410`](https://www.github.com/tauri-apps/tauri/commit/bda8304107da7ca60caaba5674faa793491898c6) ([#13833](https://www.github.com/tauri-apps/tauri/pull/13833) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Use v2 stable instead of v2-rc when migrating from v2-beta
### Dependencies
- Upgraded to `tauri-cli@2.7.0`
## \[2.6.2]
### Bug Fixes

View File

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