From f3d75f7abb536ba70d1746801096af6d9be7f8b1 Mon Sep 17 00:00:00 2001 From: FabianLars Date: Thu, 8 Jan 2026 15:54:33 +0100 Subject: [PATCH] Revert "temp: remove updater changefiles" This reverts commit 9a2c98f4509f44195b14c58b6e00df44f3d47325. --- .changes/updater-allow-invalid-tls.md | 6 ++++++ .changes/updater-new-bundle-support.md | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100644 .changes/updater-allow-invalid-tls.md create mode 100644 .changes/updater-new-bundle-support.md diff --git a/.changes/updater-allow-invalid-tls.md b/.changes/updater-allow-invalid-tls.md new file mode 100644 index 000000000..7c8e275cf --- /dev/null +++ b/.changes/updater-allow-invalid-tls.md @@ -0,0 +1,6 @@ +--- +"updater": minor +"updater-js": minor +--- + +Allow configuring the updater client to accept invalid TLS certificates and hostnames for internal/self-signed update servers. These options are available via the plugin config (`dangerousAcceptInvalidCerts`, `dangerousAcceptInvalidHostnames`) and via the `UpdaterBuilder` (`dangerous_accept_invalid_certs`, `dangerous_accept_invalid_hostnames`). diff --git a/.changes/updater-new-bundle-support.md b/.changes/updater-new-bundle-support.md new file mode 100644 index 000000000..471da921c --- /dev/null +++ b/.changes/updater-new-bundle-support.md @@ -0,0 +1,6 @@ +--- +"updater": minor +"updater-js": minor +--- + +Updater plugin now supports all bundle types: Deb, Rpm and AppImage for Linux; NSiS, MSI for Windows. This was added in https://github.com/tauri-apps/plugins-workspace/pull/2624