diff --git a/.github/workflows/test-core.yml b/.github/workflows/test-core.yml index 8a34e1411..a995e5267 100644 --- a/.github/workflows/test-core.yml +++ b/.github/workflows/test-core.yml @@ -115,6 +115,9 @@ jobs: cargo update -p bstr --precise 1.6.2 cargo update -p backtrace --precise 0.3.68 cargo update -p blocking --precise 1.4.1 + cargo update -p ignore --precise 0.4.18 + cargo update -p regex --precise 1.9.6 + cargo update -p globset --precise 0.4.13 - name: test run: cargo test --target ${{ matrix.platform.target }} ${{ matrix.features.args }} diff --git a/core/tauri/src/plugin.rs b/core/tauri/src/plugin.rs index 0a53b4d84..a506d4136 100644 --- a/core/tauri/src/plugin.rs +++ b/core/tauri/src/plugin.rs @@ -664,7 +664,7 @@ impl PluginStore { } } -#[cfg_attr(feature = "tracing", tracing::instrument(name = "plugin::hooks::initialize", skip(plugin), fields(name = plugin.name())))] +#[cfg_attr(feature = "tracing", tracing::instrument(name = "plugin::hooks::initialize", skip(plugin, app), fields(name = plugin.name())))] fn initialize( plugin: &mut Box>, app: &AppHandle, diff --git a/core/tauri/src/window.rs b/core/tauri/src/window.rs index d9190d0fb..4307f1bb7 100644 --- a/core/tauri/src/window.rs +++ b/core/tauri/src/window.rs @@ -1804,7 +1804,7 @@ impl Window { #[cfg_attr(feature = "tracing", tracing::instrument( "window::emit::eval", - skip(emit_args), + skip(self, emit_args), fields( event = emit_args.event, source_window = emit_args.source_window_label,