Skip to content

Commit 74a2a60

Browse files
authored
chore: add change files for #8428 (#8661)
1 parent 3c2f79f commit 74a2a60

File tree

6 files changed

+25
-4
lines changed

6 files changed

+25
-4
lines changed

.changes/acl.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
"tauri": patch:breaking
3+
"tauri-plugin": major:feat
4+
"tauri-build": patch:feat
5+
"tauri-utils": patch:feat
6+
"tauri-codegen": patch:feat
7+
"tauri-macros": patch:feat
8+
"@tauri-apps/api": patch:feat
9+
---
10+
11+
Implement access control list for IPC usage.

.changes/config.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,13 @@
213213
"manager": "rust",
214214
"dependencies": ["tauri-codegen", "tauri-utils"]
215215
},
216+
"tauri-plugin": {
217+
"path": "./core/tauri-plugin",
218+
"manager": "rust",
219+
"dependencies": [
220+
"tauri"
221+
]
222+
},
216223
"tauri-build": {
217224
"path": "./core/tauri-build",
218225
"manager": "rust",

.changes/refactor-codegen-build.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"tauri-build": patch:breaking
3+
---
4+
5+
`CodegenContext::build` and `CodegenContext::try_build` have been removed, use `tauri_build::try_build(tauri_build::Attributes::new().codegen(codegen))` instead.

core/tauri-plugin/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-plugin"
3-
version = "0.1.0"
3+
version = "1.0.0"
44
authors = { workspace = true }
55
homepage = { workspace = true }
66
repository = { workspace = true }
@@ -22,7 +22,6 @@ runtime = []
2222
[dependencies]
2323
serde = { version = "1", optional = true }
2424
cargo_metadata = { version = "0.18", optional = true }
25-
tauri-utils = { version = "2.0.0-alpha.12", default-features = false, path = "../tauri-utils" }
2625
tauri = { version = "2.0.0-alpha.20", default-features = false, path = "../tauri" }
2726
serde_json = { version = "1", optional = true }
2827
glob = { version = "0.3", optional = true }

core/tauri-plugin/src/build/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use std::path::Path;
66

77
use cargo_metadata::{Metadata, MetadataCommand};
8-
use tauri_utils::acl::{self, Error};
8+
use tauri::utils::acl::{self, Error};
99

1010
pub struct Builder<'a> {
1111
commands: &'a [&'static str],

examples/api/src-tauri/Cargo.lock

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)