Skip to content

Commit

Permalink
chore: update Node.js and MongoDB supported versions
Browse files Browse the repository at this point in the history
Node.JS:
  Drop v14, v16
  Add v20

MongoDB:
  Add v5.0, v6.0, v7.0

Signed-off-by: Rifa Achrinza <[email protected]>
  • Loading branch information
achrinza committed Sep 13, 2024
1 parent 21a25fe commit df55d72
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,12 @@ jobs:
timeout-minutes: 15
strategy:
matrix:
node-version: [14, 16, 18, 19]
mongodb-version: [4.4]
node-version: [18, 19, 20, 21]
mongodb-version:
- '4.4'
- '5.0'
- '6.0'
- '7.0'
fail-fast: false
steps:
- uses: actions/checkout@v3
Expand Down
10 changes: 1 addition & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "7.0.0-alpha.1",
"description": "The official MongoDB connector for the LoopBack framework.",
"engines": {
"node": "14 || 16 || 18"
"node": "18 || 20"
},
"author": "IBM Corp.",
"main": "index.js",
Expand Down Expand Up @@ -56,13 +56,5 @@
"semver": "^7.3.7",
"should": "^13.2.3",
"sinon": "^12.0.1"
},
"ci": {
"downstreamIgnoreList": [
"bluemix-metering",
"bluemix-service-broker",
"bluemix-security",
"plan-manager"
]
}
}

0 comments on commit df55d72

Please sign in to comment.