File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
packages/build/src/packaging Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,8 @@ exports.MONGODB_VERSIONS = [
3737 { shortName : '70xe' , versionSpec : '7.0.x-enterprise' } ,
3838 { shortName : '80xc' , versionSpec : '8.0.x' } ,
3939 { shortName : '80xe' , versionSpec : '8.0.x-enterprise' } ,
40+ { shortName : '82xc' , versionSpec : '8.2.x' } ,
41+ { shortName : '82xe' , versionSpec : '8.2.x-enterprise' } ,
4042 { shortName : 'latest' , versionSpec : 'latest-alpha-enterprise' } ,
4143] ;
4244
Original file line number Diff line number Diff line change @@ -36,10 +36,10 @@ export async function downloadCryptLibrary(
3636 // (for the platforms that they exist for, i.e. for ppc64le/s390x only pick stable releases).
3737 let versionSpec = 'stable' ; // TODO(MONGOSH-2192): Switch back to 'continuous' and deal with affected platform support.
3838 if ( / p p c 6 4 | s 3 9 0 x / . test ( opts . arch || process . arch ) ) {
39- versionSpec = 'stable ' ;
39+ versionSpec = '8.2.0 ' ;
4040 }
4141 if ( ( opts . platform || process . platform ) === 'darwin' ) {
42- versionSpec = '8.0.5 ' ; // TBD(MONGOSH-2192,SERVER-101020): Figure out at what point we use a later version.
42+ versionSpec = '8.2.0 ' ; // 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 ) ;
You can’t perform that action at this time.
0 commit comments