Skip to content

Commit b376364

Browse files
committed
update node packages to 24 and supported docker images
1 parent ec39193 commit b376364

File tree

6 files changed

+28
-12
lines changed

6 files changed

+28
-12
lines changed

DevDockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) Microsoft Corporation and others. Licensed under the MIT license.
22
# SPDX-License-Identifier: MIT
33

4-
FROM docker.io/library/node:24-bullseye
4+
FROM docker.io/library/node:24-trixie
55
ENV APPDIR=/opt/service
66

77
## get SSH server running

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) Microsoft Corporation and others. Licensed under the MIT license.
22
# SPDX-License-Identifier: MIT
33

4-
FROM docker.io/library/node:24-bullseye
4+
FROM docker.io/library/node:24-trixie
55
ENV APPDIR=/opt/service
66

77
## get SSH server running

package-lock.json

Lines changed: 18 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"winston": "^3.17.0"
7979
},
8080
"devDependencies": {
81-
"@tsconfig/node20": "20.1.6",
81+
"@tsconfig/node24": "24.0.2",
8282
"@tsconfig/strictest": "2.0.5",
8383
"@types/base-64": "0.1.3",
8484
"@types/body-parser": "1.19.6",
@@ -125,4 +125,4 @@
125125
"testcontainers": "^11.2.1",
126126
"typescript": "5.8.3"
127127
}
128-
}
128+
}

test/providers/store/mongoDefinitionPagination.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,11 @@ const shouldPaginateSearchCorrectly = function () {
3333
})
3434

3535
after('cleanup database', async function () {
36-
await mongoStore.collection.drop()
37-
await mongoStore.close()
36+
if (mongoStore) {
37+
await mongoStore.collection.drop()
38+
await mongoStore.close()
39+
}
40+
3841
await mongoServer.stop()
3942
})
4043

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": ["@tsconfig/strictest/tsconfig.json", "@tsconfig/node20/tsconfig.json"],
2+
"extends": ["@tsconfig/strictest/tsconfig.json", "@tsconfig/node24/tsconfig.json"],
33
"compilerOptions": {
44
"allowJs": true,
55
"checkJs": true,

0 commit comments

Comments
 (0)