Skip to content

Commit df55d72

Browse files
committed
chore: update Node.js and MongoDB supported versions
Node.JS: Drop v14, v16 Add v20 MongoDB: Add v5.0, v6.0, v7.0 Signed-off-by: Rifa Achrinza <[email protected]>
1 parent 21a25fe commit df55d72

File tree

2 files changed

+7
-11
lines changed

2 files changed

+7
-11
lines changed

.github/workflows/continuous-integration.yaml

+6-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,12 @@ jobs:
2121
timeout-minutes: 15
2222
strategy:
2323
matrix:
24-
node-version: [14, 16, 18, 19]
25-
mongodb-version: [4.4]
24+
node-version: [18, 19, 20, 21]
25+
mongodb-version:
26+
- '4.4'
27+
- '5.0'
28+
- '6.0'
29+
- '7.0'
2630
fail-fast: false
2731
steps:
2832
- uses: actions/checkout@v3

package.json

+1-9
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "7.0.0-alpha.1",
44
"description": "The official MongoDB connector for the LoopBack framework.",
55
"engines": {
6-
"node": "14 || 16 || 18"
6+
"node": "18 || 20"
77
},
88
"author": "IBM Corp.",
99
"main": "index.js",
@@ -56,13 +56,5 @@
5656
"semver": "^7.3.7",
5757
"should": "^13.2.3",
5858
"sinon": "^12.0.1"
59-
},
60-
"ci": {
61-
"downstreamIgnoreList": [
62-
"bluemix-metering",
63-
"bluemix-service-broker",
64-
"bluemix-security",
65-
"plan-manager"
66-
]
6759
}
6860
}

0 commit comments

Comments
 (0)