Skip to content

Commit 608191b

Browse files
authored
Merge branch 'main' into type-templates-auto-encryption
2 parents 890d311 + 8ab5d19 commit 608191b

File tree

3,346 files changed

+127443
-17028
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,346 files changed

+127443
-17028
lines changed

.dockerignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
node_modules
2+
lib
3+
.nyc_output
4+
docs
5+
*dylib
6+
*md

.eslintrc.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,10 @@
119119
{
120120
"selector": "BinaryExpression[operator=/[=!]==?/] Literal[value='undefined']",
121121
"message": "Do not strictly check typeof undefined (NOTE: currently this rule only detects the usage of 'undefined' string literal so this could be a misfire)"
122+
},
123+
{
124+
"selector": "CallExpression[callee.property.name='removeAllListeners'][arguments.length=0]",
125+
"message": "removeAllListeners can remove error listeners leading to uncaught errors"
122126
}
123127
],
124128
"@typescript-eslint/no-unused-vars": "error",

.evergreen/activate-kms-venv.sh

Lines changed: 0 additions & 11 deletions
This file was deleted.

.evergreen/ci_matrix_constants.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
const MONGODB_VERSIONS = ['latest', 'rapid', '8.0', '7.0', '6.0', '5.0', '4.4', '4.2', '4.0'];
1+
const MONGODB_VERSIONS = ['latest', 'rapid', '8.0', '7.0', '6.0', '5.0', '4.4', '4.2'];
22
const versions = [
33
{ codeName: 'gallium', versionNumber: 16, npmVersion: 9 },
4-
{ codeName: 'hydrogen', versionNumber: 18, npmVersion: 'latest' },
4+
{ codeName: 'hydrogen', versionNumber: 18, npmVersion: 10 },
55
{ codeName: 'iron', versionNumber: 20, npmVersion: 'latest' },
6-
{ codeName: 'jod', versionNumber: 22, npmVersion: 'latest' },
6+
{ codeName: 'jod', versionNumber: 22, npmVersion: 'latest' }
77
];
88
const NODE_VERSIONS = versions.map(({ versionNumber }) => versionNumber).sort();
99
const LOWEST_LTS = NODE_VERSIONS[0];
1010
const LATEST_LTS = NODE_VERSIONS[NODE_VERSIONS.length - 1];
1111

1212
const TOPOLOGIES = ['server', 'replica_set', 'sharded_cluster'];
13-
const AWS_AUTH_VERSIONS = ['latest', '8.0', '7.0', '6.0', '5.0', '4.4'];
13+
const AWS_AUTH_VERSIONS = ['latest'];
1414
const TLS_VERSIONS = ['latest', '8.0', '7.0', '6.0', '5.0', '4.4', '4.2'];
1515
const LB_VERSIONS = MONGODB_VERSIONS.slice(0, MONGODB_VERSIONS.indexOf('5.0') + 1);
1616
LB_VERSIONS.reverse();
1717

1818
const DEFAULT_OS = 'rhel80-large';
1919
const WINDOWS_OS = 'windows-vsCurrent-large';
20-
const MACOS_OS = 'macos-1100';
20+
const MACOS_OS = 'macos-14-arm64';
2121
const UBUNTU_OS = 'ubuntu1804-large';
2222
const UBUNTU_20_OS = 'ubuntu2004-small';
2323
const UBUNTU_22_OS = 'ubuntu2204-large';

0 commit comments

Comments
 (0)