From ee651db34b5515a1e2bd89890b205ae8dd2984be Mon Sep 17 00:00:00 2001 From: firewave Date: Tue, 19 May 2026 10:12:22 +0200 Subject: [PATCH 1/3] release-windows.yml: changed solution extension to `slnx` for PCRE [skip ci] --- .github/workflows/release-windows.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-windows.yml b/.github/workflows/release-windows.yml index bacf32c8eaf..f59e77a2dca 100644 --- a/.github/workflows/release-windows.yml +++ b/.github/workflows/release-windows.yml @@ -56,7 +56,7 @@ jobs: cd pcre-%PCRE_VERSION% || exit /b !errorlevel! git apply --ignore-space-change ..\externals\pcre.patch || exit /b !errorlevel! cmake . -A x64 -DPCRE_BUILD_PCRECPP=OFF -DPCRE_BUILD_PCREGREP=OFF -DPCRE_BUILD_TESTS=OFF -DCMAKE_POLICY_VERSION_MINIMUM=3.5 -DCMAKE_COMPILE_WARNING_AS_ERROR=On || exit /b !errorlevel! - msbuild -m PCRE.sln -p:Configuration=Release -p:Platform=x64 || exit /b !errorlevel! + msbuild -m PCRE.slnx -p:Configuration=Release -p:Platform=x64 || exit /b !errorlevel! copy pcre.h ..\externals || exit /b !errorlevel! copy Release\pcre.lib ..\externals\pcre64.lib || exit /b !errorlevel! From 6a8efe79f408c4021ebce17780ad189203528a31 Mon Sep 17 00:00:00 2001 From: firewave Date: Tue, 19 May 2026 11:49:30 +0200 Subject: [PATCH 2/3] win_installer/config.wxi: updated MergeModule [skip ci] --- win_installer/config.wxi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win_installer/config.wxi b/win_installer/config.wxi index 7bc613d1669..ae7fc8329f3 100644 --- a/win_installer/config.wxi +++ b/win_installer/config.wxi @@ -9,6 +9,6 @@ - + From f0099e50d51e7ef7fdb0663a8e35f63cdbef6b6e Mon Sep 17 00:00:00 2001 From: firewave Date: Tue, 19 May 2026 11:51:03 +0200 Subject: [PATCH 3/3] releasenotes.txt: added note about updated compiler for official binary [skip ci] --- releasenotes.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/releasenotes.txt b/releasenotes.txt index 5d94da2ebc3..86aa9573ca4 100644 --- a/releasenotes.txt +++ b/releasenotes.txt @@ -26,4 +26,5 @@ Other: - Make it possible to specify the regular expression engine using the `engine` element in a rule XML. - Added CLI option `--exitcode-suppress` to specify an error ID which should not result in a non-zero exitcode. - Moved source code from https://github.com/danmar/cppcheck to https://github.com/cppcheck-opensource/cppcheck +- The official Windows binary is now built with Visual Studio 2026. -