Skip to content

fix: stick to 8.0.x crypt_shared library for now MONGOSH-2177 MONGOSH-2178 MONGOSH-2179 MONGOSH-2180 #2444

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/build/src/packaging/download-crypt-library.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ 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 = 'continuous';
let versionSpec = 'stable'; // TODO(MONGOSH-2192): Switch back to 'continuous' and deal with affected platform support.
if (/ppc64|s390x/.test(opts.arch || process.arch)) {
versionSpec = 'stable';
}
if ((opts.platform || process.platform) === 'darwin') {
versionSpec = '8.0.5'; // TBD(SERVER-101020): Figure out at what point we use a later version.
versionSpec = '8.0.5'; // TBD(MONGOSH-2192,SERVER-101020): Figure out at what point we use a later version.
}
const { downloadedBinDir: libdir, version } =
await downloadMongoDbWithVersionInfo(cryptTmpTargetDir, versionSpec, opts);
Expand Down