Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 6 additions & 32 deletions .evergreen/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1468,28 +1468,7 @@ tasks:
- func: install dependencies
- func: bootstrap mongo-orchestration
- func: run-compression-tests
- name: test-zstd-1.x-compression
tags:
- latest
- zstd
commands:
- command: expansions.update
type: setup
params:
updates:
- {key: VERSION, value: latest}
- {key: TOPOLOGY, value: replica_set}
- {key: AUTH, value: auth}
- {key: COMPRESSOR, value: zstd}
- {key: CLIENT_ENCRYPTION, value: 'false'}
- {key: TEST_CSFLE, value: 'false'}
- func: install dependencies
- func: bootstrap mongo-orchestration
- func: install package
vars:
PACKAGE: '@mongodb-js/[email protected]'
- func: run-compression-tests
- name: test-zstd-2.x-compression
- name: test-zstd-compression
tags:
- latest
- zstd
Expand Down Expand Up @@ -2887,8 +2866,7 @@ buildvariants:
- test-socks5-csfle
- test-socks5-tls
- test-snappy-compression
- test-zstd-1.x-compression
- test-zstd-2.x-compression
- test-zstd-compression
- test-tls-support-latest
- test-tls-support-8.0
- test-tls-support-7.0
Expand Down Expand Up @@ -2942,8 +2920,7 @@ buildvariants:
- test-socks5-csfle
- test-socks5-tls
- test-snappy-compression
- test-zstd-1.x-compression
- test-zstd-2.x-compression
- test-zstd-compression
- test-tls-support-latest
- test-tls-support-8.0
- test-tls-support-7.0
Expand Down Expand Up @@ -2995,8 +2972,7 @@ buildvariants:
- test-socks5-csfle
- test-socks5-tls
- test-snappy-compression
- test-zstd-1.x-compression
- test-zstd-2.x-compression
- test-zstd-compression
- test-tls-support-latest
- test-tls-support-8.0
- test-tls-support-7.0
Expand Down Expand Up @@ -3040,8 +3016,7 @@ buildvariants:
- test-socks5
- test-socks5-tls
- test-snappy-compression
- test-zstd-1.x-compression
- test-zstd-2.x-compression
- test-zstd-compression
- test-tls-support-latest
- test-tls-support-8.0
- test-tls-support-7.0
Expand Down Expand Up @@ -3085,8 +3060,7 @@ buildvariants:
- test-socks5
- test-socks5-tls
- test-snappy-compression
- test-zstd-1.x-compression
- test-zstd-2.x-compression
- test-zstd-compression
- test-tls-support-latest
- test-tls-support-8.0
- test-tls-support-7.0
Expand Down
27 changes: 1 addition & 26 deletions .evergreen/generate_evergreen_tasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ TASKS.push({
});

TASKS.push({
name: `test-zstd-1.x-compression`,
name: `test-zstd-compression`,
tags: ['latest', 'zstd'],
commands: [
updateExpansions({
Expand All @@ -256,31 +256,6 @@ TASKS.push({
}),
{ func: 'install dependencies' },
{ func: 'bootstrap mongo-orchestration' },
{
func: 'install package',
vars: {
PACKAGE: '@mongodb-js/[email protected]'
}
},
{ func: 'run-compression-tests' }
]
});

TASKS.push({
name: `test-zstd-2.x-compression`,
tags: ['latest', 'zstd'],
commands: [
updateExpansions({
VERSION: 'latest',
TOPOLOGY: 'replica_set',
AUTH: 'auth',
COMPRESSOR: 'zstd',
CLIENT_ENCRYPTION: 'false',
TEST_CSFLE: 'false'
}),
{ func: 'install dependencies' },
{ func: 'bootstrap mongo-orchestration' },
// no need to manually install zstd - we specify 2.x as a dev dependency in package.json
{ func: 'run-compression-tests' }
]
});
Expand Down
12 changes: 9 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,19 @@ updates:
versions: [">=10.0.0"]
# we ignore TS as a part of quarterly dependency updates.
- dependency-name: "typescript"
# stay on the supported major version of gcp-metadata
- dependency-name: "gcp-metadata"
versions: [">=6.0.0"]
# NODE-3773: sinon 19+ breaks the srv polling unit tests
- dependency-name: "sinon"
versions: ["18.x"]

# ignore all peer dependencies
- dependency-name: "gcp-metadata"
- dependency-name: "@aws-sdk/credential-providers"
- dependency-name: "kerberos"
- dependency-name: "mongodb-client-encryption"
- dependency-name: "snappy"
- dependency-name: "gcp-metadata"
- dependency-name: "@mongodb-js/zstd"

versioning-strategy: increase

groups:
Expand Down
Loading
Loading