diff --git a/.changes/pre.json b/.changes/pre.json index 24eef0aecdc8..7e8865ef4ed6 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -93,6 +93,8 @@ ".changes/fix-cli-signer-sign-cmd.md", ".changes/fix-cli.js-windows-freezing.md", ".changes/fix-close-requested-js-event.md", + ".changes/fix-csp-fallback-route.md", + ".changes/fix-csp-linux.md", ".changes/fix-deadlock-create-window-from-menu.md", ".changes/fix-deadlock-path-iter.md", ".changes/fix-default-freeze-prototype.md", diff --git a/core/tauri/CHANGELOG.md b/core/tauri/CHANGELOG.md index 3de08cc37f81..e1a6788dcd0f 100644 --- a/core/tauri/CHANGELOG.md +++ b/core/tauri/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[1.0.0-rc.5] + +- Properly apply the CSP when loading a route that fallbacks to index.html. + - [bcd43168](https://www.github.com/tauri-apps/tauri/commit/bcd43168a528dc4c54e28788430a93654c8fb452) fix(core): properly add CSP header to fallback routes ([#3641](https://www.github.com/tauri-apps/tauri/pull/3641)) on 2022-03-08 +- Fix CSP usage on Linux when changing it via the `on_web_resource_request` handler. + - [f5efc248](https://www.github.com/tauri-apps/tauri/commit/f5efc248da511e0924c9673b947d5de7ef69ac45) fix(core): runtime CSP changes on Linux on 2022-03-07 + ## \[1.0.0-rc.4] - Run `AppHandle` cleanup code before restarting the application on the `process > relaunch` API. diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index a5c3f87c4e3f..f408ed9c0418 100644 --- a/core/tauri/Cargo.toml +++ b/core/tauri/Cargo.toml @@ -16,7 +16,7 @@ license = "Apache-2.0 OR MIT" name = "tauri" readme = "README.md" repository = "https://github.com/tauri-apps/tauri" -version = "1.0.0-rc.4" +version = "1.0.0-rc.5" [package.metadata.docs.rs] no-default-features = true diff --git a/tooling/cli/metadata.json b/tooling/cli/metadata.json index ab4c81b1d777..170ec65cf4ec 100644 --- a/tooling/cli/metadata.json +++ b/tooling/cli/metadata.json @@ -3,6 +3,6 @@ "version": "1.0.0-rc.6", "node": ">= 12.13.0" }, - "tauri": "1.0.0-rc.4", + "tauri": "1.0.0-rc.5", "tauri-build": "1.0.0-rc.4" }