Skip to content

Commit 9eec9da

Browse files
authored
feat(compass): use crypt_shared library 8.2.0-rcX COMPASS-9752 (#7270)
We'll want to do a release that supports QE text indices and therefore requires a 8.2.0 version of the crypt_shared library. Because the timelines don't quite match, we'll need to use a RC version temporarily until we can switch back to a full release once 8.2.0 is available.
1 parent 71c902e commit 9eec9da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/compass/scripts/download-csfle.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const CSFLE_DIRECTORY = path.resolve(PACKAGE_ROOT, 'src', 'deps', 'csfle');
3535
const downloadOptions = {
3636
enterprise: true,
3737
crypt_shared: true,
38-
version: 'continuous',
38+
version: '>= 8.2.0-rc4', // TODO(COMPASS-9782): switch back to `continuous`
3939
};
4040
if (process.platform === 'linux') {
4141
// The CSFLE shared library is built for different distros,
@@ -47,7 +47,7 @@ const CSFLE_DIRECTORY = path.resolve(PACKAGE_ROOT, 'src', 'deps', 'csfle');
4747

4848
const { downloadedBinDir, version } = await downloadMongoDbWithVersionInfo(
4949
CACHE_DIR,
50-
'continuous',
50+
'>= 8.2.0-rc4', // TODO(COMPASS-9782): switch back to `continuous`
5151
downloadOptions
5252
);
5353
await fs.mkdir(CSFLE_DIRECTORY, { recursive: true });

0 commit comments

Comments
 (0)