Skip to content

Commit

Permalink
chore(deps): update packages/tauri digest to 8702931
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jul 30, 2024
1 parent cd6b211 commit 34c8374
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/tauri
Submodule tauri updated 96 files
+6 −0 .changes/cli-desktop-port-exposure.md
+9 −0 .changes/core-plugin-namespace.md
+7 −0 .changes/fix-conf-parsing-error-filepath.md
+6 −0 .changes/linux-option-gtk-app-id.md
+5 −0 .changes/plugin-builder-failable.md
+9 −0 .changes/pre.json
+8 −0 .changes/remove-unsecure-configs.md
+5 −0 .changes/specta-derive-feature.md
+5 −5 ARCHITECTURE.md
+46 −48 Cargo.lock
+1 −1 README.md
+2 −2 core/tauri-acl-schema/capability-schema.json
+1 −1 core/tauri-build/CHANGELOG.md
+7 −4 core/tauri-build/src/acl.rs
+1 −1 core/tauri-build/src/static_vcruntime.rs
+8 −2 core/tauri-config-schema/schema.json
+1 −1 core/tauri-macros/CHANGELOG.md
+5 −0 core/tauri-plugin/src/build/mod.rs
+11 −0 core/tauri-runtime-wry/CHANGELOG.md
+2 −2 core/tauri-runtime-wry/Cargo.toml
+6 −0 core/tauri-runtime/CHANGELOG.md
+1 −1 core/tauri-runtime/Cargo.toml
+1 −1 core/tauri-runtime/src/webview.rs
+1 −1 core/tauri-runtime/src/window.rs
+2 −9 core/tauri-utils/src/acl/capability.rs
+9 −5 core/tauri-utils/src/acl/identifier.rs
+32 −2 core/tauri-utils/src/acl/resolved.rs
+16 −10 core/tauri-utils/src/config.rs
+10 −10 core/tauri-utils/src/config/parse.rs
+1 −1 core/tauri-utils/src/html.rs
+1 −1 core/tauri-utils/src/lib.rs
+1 −1 core/tauri-utils/src/mime_type.rs
+1 −1 core/tauri-utils/src/tokens.rs
+24 −0 core/tauri/CHANGELOG.md
+4 −4 core/tauri/Cargo.toml
+16 −12 core/tauri/build.rs
+12 −12 core/tauri/permissions/app/autogenerated/reference.md
+8 −8 core/tauri/permissions/event/autogenerated/reference.md
+10 −10 core/tauri/permissions/image/autogenerated/reference.md
+44 −44 core/tauri/permissions/menu/autogenerated/reference.md
+16 −16 core/tauri/permissions/path/autogenerated/reference.md
+2 −2 core/tauri/permissions/resources/autogenerated/reference.md
+22 −22 core/tauri/permissions/tray/autogenerated/reference.md
+24 −24 core/tauri/permissions/webview/autogenerated/reference.md
+130 −130 core/tauri/permissions/window/autogenerated/reference.md
+7 −1 core/tauri/src/app.rs
+5 −1 core/tauri/src/ipc/authority.rs
+1 −1 core/tauri/src/lib.rs
+1 −1 core/tauri/src/manager/mod.rs
+2 −2 core/tauri/src/menu/builders/check.rs
+2 −2 core/tauri/src/menu/builders/icon.rs
+2 −2 core/tauri/src/menu/builders/normal.rs
+2 −2 core/tauri/src/menu/builders/submenu.rs
+2 −2 core/tauri/src/menu/check.rs
+2 −2 core/tauri/src/menu/icon.rs
+2 −2 core/tauri/src/menu/normal.rs
+2 −2 core/tauri/src/path/plugin.rs
+29 −4 core/tauri/src/plugin.rs
+2 −7 core/tauri/src/protocol/tauri.rs
+2 −2 core/tauri/src/scope/fs.rs
+1 −0 core/tauri/src/test/mod.rs
+12 −12 core/tauri/src/tray/mod.rs
+7 −7 core/tauri/src/webview/mod.rs
+11 −11 core/tauri/src/webview/webview_window.rs
+4 −4 core/tauri/src/window/mod.rs
+3 −0 core/tests/restart/Cargo.toml
+1 −1 core/tests/restart/tests/restart.rs
+8 −8 examples/api/src-tauri/Cargo.lock
+41 −48 examples/api/src-tauri/capabilities/run-app.json
+2 −2 examples/api/vite.config.js
+8 −3 examples/resources/src-tauri/capabilities/app.json
+14 −0 tooling/api/CHANGELOG.md
+1 −1 tooling/api/package.json
+1 −1 tooling/api/src/window.ts
+10 −0 tooling/bundler/CHANGELOG.md
+1 −1 tooling/bundler/Cargo.toml
+1 −1 tooling/bundler/src/bundle/category.rs
+1 −1 tooling/bundler/src/bundle/common.rs
+1 −1 tooling/bundler/src/bundle/linux/debian.rs
+10 −10 tooling/bundler/src/bundle/settings.rs
+6 −0 tooling/cli/CHANGELOG.md
+6 −6 tooling/cli/Cargo.lock
+2 −2 tooling/cli/Cargo.toml
+2 −2 tooling/cli/metadata-v2.json
+6 −0 tooling/cli/node/CHANGELOG.md
+1 −1 tooling/cli/node/package.json
+8 −2 tooling/cli/schema.json
+1 −1 tooling/cli/src/acl/permission/add.rs
+2 −2 tooling/cli/src/dev.rs
+39 −47 tooling/cli/src/migrate/config.rs
+1 −4 tooling/cli/src/mobile/android/build.rs
+1 −16 tooling/cli/src/mobile/android/dev.rs
+4 −10 tooling/cli/templates/app/src-tauri/capabilities/default.json
+4 −10 tooling/cli/templates/plugin/__example-api/tauri-app/src-tauri/capabilities/default.json
+5 −11 tooling/cli/templates/plugin/__example-basic/vanilla/src-tauri/capabilities/default.json
+1 −1 tooling/macos-sign/src/keychain.rs

0 comments on commit 34c8374

Please sign in to comment.