From 230596096ab742b64ca8c162e5ebfabf7a787b01 Mon Sep 17 00:00:00 2001 From: Aaron Parker Date: Mon, 13 Jul 2026 20:32:55 +1000 Subject: [PATCH 1/2] Update WiX Toolset repo to wix from wix3 Points the GitHub API URI to the current `wixtoolset/wix` repository instead of the archived `wixtoolset/wix3` repo. --- Manifests/WixToolset.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Manifests/WixToolset.json b/Manifests/WixToolset.json index 353c509..8727fa9 100644 --- a/Manifests/WixToolset.json +++ b/Manifests/WixToolset.json @@ -2,7 +2,7 @@ "Name": "WiX Toolset", "Source": "https://wixtoolset.org/", "Get": { - "Uri": "https://api.github.com/repos/wixtoolset/wix3/releases/latest", + "Uri": "https://api.github.com/repos/wixtoolset/wix/releases/latest", "MatchVersion": "(\\d+(\\.\\d+){1,4}).*", "MatchFileTypes": "\\.exe$|\\.msi$", "VersionTag": "name" From dfa8454852a10d2b4ab449eed15cda9a1c4cbfc9 Mon Sep 17 00:00:00 2001 From: Aaron Parker Date: Mon, 13 Jul 2026 22:17:03 +1000 Subject: [PATCH 2/2] Allow packaged installers in manifests Expand the GitHub release file type filters for Automattic Simplenote, Rocket.Chat, and WinDirStat so Evergreen can detect newer packaged installers alongside existing .exe and .msi assets. --- Manifests/AutomatticSimplenote.json | 2 +- Manifests/RocketChat.json | 2 +- Manifests/WinDirStat.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Manifests/AutomatticSimplenote.json b/Manifests/AutomatticSimplenote.json index 71de65c..e527a0e 100644 --- a/Manifests/AutomatticSimplenote.json +++ b/Manifests/AutomatticSimplenote.json @@ -4,6 +4,6 @@ "Get": { "Uri": "https://api.github.com/repos/Automattic/simplenote-electron/releases/latest", "MatchVersion": "(\\d+(\\.\\d+){1,4}).*", - "MatchFileTypes": "\\.exe$|\\.msi$" + "MatchFileTypes": "\\.exe$|\\.msi$|\\.appx$" } } diff --git a/Manifests/RocketChat.json b/Manifests/RocketChat.json index 0f1226c..d835aba 100644 --- a/Manifests/RocketChat.json +++ b/Manifests/RocketChat.json @@ -4,6 +4,6 @@ "Get": { "Uri": "https://api.github.com/repos/RocketChat/Rocket.Chat.Electron/releases/latest", "MatchVersion": "(\\d+(\\.\\d+){1,4}).*", - "MatchFileTypes": "\\.exe$|\\.msi$" + "MatchFileTypes": "\\.exe$|\\.msi$|\\.appx$|\\.msix$|\\.msixbundle$" } } diff --git a/Manifests/WinDirStat.json b/Manifests/WinDirStat.json index 7ff137f..d4e9ba2 100644 --- a/Manifests/WinDirStat.json +++ b/Manifests/WinDirStat.json @@ -4,6 +4,6 @@ "Get": { "Uri": "https://api.github.com/repos/windirstat/windirstat/releases/latest", "MatchVersion": "(\\d+(\\.\\d+){1,4}).*", - "MatchFileTypes": "\\.exe$|\\.msi$" + "MatchFileTypes": "\\.exe$|\\.msi$|\\.msix$|\\.msixbundle$" } }