Skip to content

Commit 8306749

Browse files
committed
chore: drop Node.js 14 and lower
BREAKING CHANGE: drop support for Node.js 14 version and lower Signed-off-by: dhmlau <[email protected]>
1 parent 518e3ca commit 8306749

File tree

3 files changed

+38
-98
lines changed

3 files changed

+38
-98
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
strategy:
1919
matrix:
2020
os: [ubuntu-latest]
21-
node-version: [10, 12, 14, 16, 17]
21+
node-version: [16, 18, 20]
2222
include:
2323
- os: macos-latest
24-
node-version: 14
24+
node-version: 16
2525
- os: windows-latest
26-
node-version: 14
26+
node-version: 16
2727
fail-fast: false
2828
runs-on: ${{ matrix.os }}
2929
steps:
@@ -73,10 +73,10 @@ jobs:
7373
- uses: actions/checkout@v3
7474
with:
7575
fetch-depth: 0
76-
- name: Use Node.js 14
76+
- name: Use Node.js 16
7777
uses: actions/setup-node@v3
7878
with:
79-
node-version: 14
79+
node-version: 16
8080
- name: Update NPM
8181
run: npm install --global npm
8282
- name: Bootstrap project
@@ -94,10 +94,10 @@ jobs:
9494
- uses: actions/checkout@v3
9595
with:
9696
fetch-depth: 0
97-
- name: Use Node.js 14
97+
- name: Use Node.js 16
9898
uses: actions/setup-node@v3
9999
with:
100-
node-version: 14
100+
node-version: 16
101101
- name: Update NPM
102102
run: npm install --global npm
103103
- name: Bootstrap project

package-lock.json

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

package.json

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
],
1717
"author": "IBM Corp.",
1818
"engines": {
19-
"node": ">=10"
19+
"node": ">=16"
2020
},
2121
"repository": {
2222
"type": "git",
23-
"url": "https://github.com/strongloop/loopback-datasource-juggler"
23+
"url": "https://github.com/loopbackio/loopback-datasource-juggler"
2424
},
2525
"main": "index.js",
2626
"types": "index.d.ts",
@@ -45,7 +45,7 @@
4545
"eslint-config-loopback": "^13.1.0",
4646
"eslint-plugin-mocha": "^10.1.0",
4747
"loopback-connector-throwing": "file:./test/fixtures/loopback-connector-throwing",
48-
"mocha": "^9.0.0",
48+
"mocha": "^10.2.0",
4949
"nyc": "^15.1.0",
5050
"should": "^13.2.3",
5151
"typescript": "^4.9.5"
@@ -57,22 +57,13 @@
5757
"depd": "^2.0.0",
5858
"inflection": "^1.13.4",
5959
"lodash": "^4.17.21",
60-
"loopback-connector": "^5.3.3",
60+
"loopback-connector": "^6.0.1",
6161
"minimatch": "^5.1.6",
6262
"nanoid": "^3.3.6",
6363
"qs": "^6.11.2",
6464
"strong-globalize": "^6.0.5",
6565
"traverse": "^0.6.7",
6666
"uuid": "^9.0.0"
6767
},
68-
"license": "MIT",
69-
"ci": {
70-
"downstreamIgnoreList": [
71-
"loopback-connector-db2z",
72-
"loopback-connector-ibmi",
73-
"loopback-connector-informix",
74-
"loopback-connector-mqlight",
75-
"loopback-connector-kv-extreme-scale"
76-
]
77-
}
68+
"license": "MIT"
7869
}

0 commit comments

Comments
 (0)