Skip to content

Commit f57c51b

Browse files
deps(NODE-6897): FY26Q2 dependency updates (not lint-related dependencies) (#4511)
Co-authored-by: bailey <[email protected]>
1 parent c673491 commit f57c51b

File tree

5 files changed

+7398
-1741
lines changed

5 files changed

+7398
-1741
lines changed

.evergreen/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2108,7 +2108,7 @@ tasks:
21082108
- func: install dependencies
21092109
- func: bootstrap mongo-orchestration
21102110
- func: check resource management feature integration
2111-
- name: check-types-typescript-next-node-types-22.13.0
2111+
- name: check-types-typescript-next-node-types-22.15.3
21122112
tags:
21132113
- check-types-typescript-next
21142114
- typescript-compilation
@@ -2120,10 +2120,10 @@ tasks:
21202120
- {key: NODE_LTS_VERSION, value: '16'}
21212121
- {key: NPM_VERSION, value: '9'}
21222122
- {key: TS_VERSION, value: next}
2123-
- {key: TYPES_VERSION, value: 22.13.0}
2123+
- {key: TYPES_VERSION, value: 22.15.3}
21242124
- func: install dependencies
21252125
- func: check types
2126-
- name: check-types-typescript-current-node-types-22.13.0
2126+
- name: check-types-typescript-current-node-types-22.15.3
21272127
tags:
21282128
- check-types-typescript-current
21292129
- typescript-compilation
@@ -2135,7 +2135,7 @@ tasks:
21352135
- {key: NODE_LTS_VERSION, value: '16'}
21362136
- {key: NPM_VERSION, value: '9'}
21372137
- {key: TS_VERSION, value: current}
2138-
- {key: TYPES_VERSION, value: 22.13.0}
2138+
- {key: TYPES_VERSION, value: 22.15.3}
21392139
- func: install dependencies
21402140
- func: check types
21412141
- name: check-types-typescript-next-node-types-16.x
@@ -2183,7 +2183,7 @@ tasks:
21832183
- {key: TYPES_VERSION, value: 18.11.9}
21842184
- func: install dependencies
21852185
- func: check types
2186-
- name: compile-driver-typescript-current-node-types-22.13.0
2186+
- name: compile-driver-typescript-current-node-types-22.15.3
21872187
tags:
21882188
- compile-driver-typescript-current
21892189
- typescript-compilation
@@ -2195,7 +2195,7 @@ tasks:
21952195
- {key: NODE_LTS_VERSION, value: '16'}
21962196
- {key: NPM_VERSION, value: '9'}
21972197
- {key: TS_VERSION, value: current}
2198-
- {key: TYPES_VERSION, value: 22.13.0}
2198+
- {key: TYPES_VERSION, value: 22.15.3}
21992199
- func: install dependencies
22002200
- func: compile driver
22012201
- name: download-and-merge-coverage

.github/dependabot.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,23 @@ updates:
2424
# sinon-chai 4.x+ supports chai 5.x+.
2525
- dependency-name: "sinon-chai"
2626
versions: [">=4.0.0"]
27+
# chai-subset requires @types/chai 4.x.
28+
- dependency-name: "@types/chai"
29+
versions: [">=4.0.0"]
2730
# nyc is Node18+ only starting on [email protected].
2831
- dependency-name: "nyc"
2932
versions: [">=16.0.0"]
33+
# mocha-plugin-eslint breaks our lint configuration
34+
- dependency-name: "mocha-plugin-eslint"
35+
versions: [">=10.0.0"]
3036
# we ignore TS as a part of quarterly dependency updates.
3137
- dependency-name: "typescript"
3238
# stay on the supported major version of gcp-metadata
3339
- dependency-name: "gcp-metadata"
3440
versions: [">=6.0.0"]
41+
# NODE-3773: sinon 19+ breaks the srv polling unit tests
42+
- dependency-name: "sinon"
43+
versions: ["18.x"]
3544

3645
versioning-strategy: increase
3746
allow:

etc/docs/preview.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ app.use((req, res, next) => {
1313
app.use(express.static('docs'));
1414
app.use('/node-mongodb-native', express.static('docs'));
1515

16-
app.get('*', (req, res) => res.redirect('404.html'));
16+
app.get('*path', (req, res) => res.redirect('404.html'));
1717

1818
app.listen(8080, () => {
1919
log('listening on port 8080');

0 commit comments

Comments
 (0)