Skip to content

Commit c7f94db

Browse files
authored
chore: use continuous crypt_shared library again COMPASS-9782 (#7403)
1 parent 0b1a6b7 commit c7f94db

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/compass-e2e-tests/tests/in-use-encryption.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ describe('CSFLE / QE', function () {
642642
['prefixPreview', 'suffixPreview', 'substringPreview'].includes(
643643
mode as string
644644
) &&
645-
!serverSatisfies('>= 8.2.0-rc4', true)
645+
!serverSatisfies('>= 8.2.0', true)
646646
) {
647647
// QE Prefix/Suffix/Substring Support only available on 8.2+
648648
return this.skip();

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: '>= 8.2.0-rc4', // TODO(COMPASS-9782): switch back to `continuous`
38+
version: '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-
'>= 8.2.0-rc4', // TODO(COMPASS-9782): switch back to `continuous`
50+
'continuous',
5151
downloadOptions
5252
);
5353
await fs.mkdir(CSFLE_DIRECTORY, { recursive: true });

0 commit comments

Comments
 (0)