From f122ee98c6954075891ac3cd530f5e29da117b39 Mon Sep 17 00:00:00 2001 From: FabianLars Date: Wed, 14 Jan 2026 20:48:59 +0100 Subject: [PATCH] Revert "temp: delete updater changefiles" This reverts commit 82c404635b9d42005e2b3eb1dddee8a1002f1085. --- .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