From 161898b7e6c1d8a0208c907e363a95b75331d20d Mon Sep 17 00:00:00 2001 From: Yehonal Date: Thu, 3 Jul 2025 20:31:18 +0200 Subject: [PATCH] fix(installer/windows): update OpenSSL version to 3.5.1 to fix gh build errors (#22416) Chocolatey on windows cannot download openssl 3.4.1 since the source has been removed. 3.5.1 is available instead. However, this must be tested This https://community.chocolatey.org/packages/openssl/3.4.1 is pointing to this: https://slproweb.com/download/Win32OpenSSL-3_4_1.exe that doesn't exist anymore and has been replaced by the 3.4.2, but chocolatey doesn't have this version yet --- apps/installer/includes/os_configs/windows.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/installer/includes/os_configs/windows.sh b/apps/installer/includes/os_configs/windows.sh index 59c657899..d1064485b 100644 --- a/apps/installer/includes/os_configs/windows.sh +++ b/apps/installer/includes/os_configs/windows.sh @@ -24,7 +24,7 @@ fi choco install -y --skip-checksums $INSTALL_ARGS cmake.install -y --installargs 'ADD_CMAKE_TO_PATH=System' choco install -y --skip-checksums $INSTALL_ARGS visualstudio2022-workload-nativedesktop -choco install -y --skip-checksums $INSTALL_ARGS openssl --force --version=3.4.1 +choco install -y --skip-checksums $INSTALL_ARGS openssl --force --version=3.5.1 choco install -y --skip-checksums $INSTALL_ARGS boost-msvc-14.3 --force --version=1.87.0 choco install -y --skip-checksums $INSTALL_ARGS mysql --force --version=8.4.4