Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add change files for #8428 #8661

Merged
merged 1 commit into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 11 additions & 0 deletions .changes/acl.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
"tauri": patch:breaking
"tauri-plugin": major:feat
"tauri-build": patch:feat
"tauri-utils": patch:feat
"tauri-codegen": patch:feat
"tauri-macros": patch:feat
"@tauri-apps/api": patch:feat
---

Implement access control list for IPC usage.
7 changes: 7 additions & 0 deletions .changes/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,13 @@
"manager": "rust",
"dependencies": ["tauri-codegen", "tauri-utils"]
},
"tauri-plugin": {
"path": "./core/tauri-plugin",
"manager": "rust",
"dependencies": [
"tauri"
]
},
"tauri-build": {
"path": "./core/tauri-build",
"manager": "rust",
Expand Down
5 changes: 5 additions & 0 deletions .changes/refactor-codegen-build.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"tauri-build": patch:breaking
---

`CodegenContext::build` and `CodegenContext::try_build` have been removed, use `tauri_build::try_build(tauri_build::Attributes::new().codegen(codegen))` instead.
3 changes: 1 addition & 2 deletions core/tauri-plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-plugin"
version = "0.1.0"
version = "1.0.0"
authors = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
Expand All @@ -22,7 +22,6 @@ runtime = []
[dependencies]
serde = { version = "1", optional = true }
cargo_metadata = { version = "0.18", optional = true }
tauri-utils = { version = "2.0.0-alpha.12", default-features = false, path = "../tauri-utils" }
tauri = { version = "2.0.0-alpha.20", default-features = false, path = "../tauri" }
serde_json = { version = "1", optional = true }
glob = { version = "0.3", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion core/tauri-plugin/src/build/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use std::path::Path;

use cargo_metadata::{Metadata, MetadataCommand};
use tauri_utils::acl::{self, Error};
use tauri::utils::acl::{self, Error};

pub struct Builder<'a> {
commands: &'a [&'static str],
Expand Down
1 change: 0 additions & 1 deletion examples/api/src-tauri/Cargo.lock

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