Skip to content

Commit 5fa4c42

Browse files
authored
fix: stick to 8.0.x crypt_shared library for now MONGOSH-2177 MONGOSH-2178 MONGOSH-2179 MONGOSH-2180 (#2444)
Our Amazon Linux 2 package smoke tests have been failing because 8.1.x raised the effective minimum platform requirements, so we avoid breakage by sticking to 8.0.x for now, just like we do for macOS already. See MONGOSH-2192 for details.
1 parent 6cf06c5 commit 5fa4c42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/build/src/packaging/download-crypt-library.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ export async function downloadCryptLibrary(
3434
);
3535
// Download mongodb for latest server version, including rapid releases
3636
// (for the platforms that they exist for, i.e. for ppc64le/s390x only pick stable releases).
37-
let versionSpec = 'continuous';
37+
let versionSpec = 'stable'; // TODO(MONGOSH-2192): Switch back to 'continuous' and deal with affected platform support.
3838
if (/ppc64|s390x/.test(opts.arch || process.arch)) {
3939
versionSpec = 'stable';
4040
}
4141
if ((opts.platform || process.platform) === 'darwin') {
42-
versionSpec = '8.0.5'; // TBD(SERVER-101020): Figure out at what point we use a later version.
42+
versionSpec = '8.0.5'; // TBD(MONGOSH-2192,SERVER-101020): Figure out at what point we use a later version.
4343
}
4444
const { downloadedBinDir: libdir, version } =
4545
await downloadMongoDbWithVersionInfo(cryptTmpTargetDir, versionSpec, opts);

0 commit comments

Comments
 (0)