Skip to content

Commit d2cd2ff

Browse files
authored
chore(build): pin crypt_shared to 8.0.12 MONGOSH-2505 (#2523)
8.0.13 crypt_shared is on stable seems to have broken our CI, leading to errors when running mongodb-crypt-library-version. This seems related to MONGOSH-2192 which is why we have not been using continuous as well. This temporarily pins it to 8.0.12 but we should follow-up to support stable or continuous for 8.2 support.
1 parent f99eab0 commit d2cd2ff

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,9 +34,9 @@ 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 = 'stable'; // TODO(MONGOSH-2192): Switch back to 'continuous' and deal with affected platform support.
37+
let versionSpec = '8.0.12'; // TODO(MONGOSH-2192): Switch back to 'continuous' and deal with affected platform support.
3838
if (/ppc64|s390x/.test(opts.arch || process.arch)) {
39-
versionSpec = 'stable';
39+
versionSpec = '8.0.12';
4040
}
4141
if ((opts.platform || process.platform) === 'darwin') {
4242
versionSpec = '8.0.5'; // TBD(MONGOSH-2192,SERVER-101020): Figure out at what point we use a later version.

0 commit comments

Comments
 (0)