From c204f95b6e238bd219345c8e3ac745101ec97a18 Mon Sep 17 00:00:00 2001 From: gagik Date: Mon, 25 Aug 2025 16:00:09 +0200 Subject: [PATCH] chore: manual 8.0.12 crypt_shared --- packages/build/src/packaging/download-crypt-library.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/build/src/packaging/download-crypt-library.ts b/packages/build/src/packaging/download-crypt-library.ts index 01d1706207..64a2451f8a 100644 --- a/packages/build/src/packaging/download-crypt-library.ts +++ b/packages/build/src/packaging/download-crypt-library.ts @@ -34,9 +34,9 @@ export async function downloadCryptLibrary( ); // Download mongodb for latest server version, including rapid releases // (for the platforms that they exist for, i.e. for ppc64le/s390x only pick stable releases). - let versionSpec = 'stable'; // TODO(MONGOSH-2192): Switch back to 'continuous' and deal with affected platform support. + let versionSpec = '8.0.12'; // TODO(MONGOSH-2192): Switch back to 'continuous' and deal with affected platform support. if (/ppc64|s390x/.test(opts.arch || process.arch)) { - versionSpec = 'stable'; + versionSpec = '8.0.12'; } if ((opts.platform || process.platform) === 'darwin') { versionSpec = '8.0.5'; // TBD(MONGOSH-2192,SERVER-101020): Figure out at what point we use a later version.