Skip to content

Commit 5425762

Browse files
committed
feat: remove support for node v14
On 30 April 2023, version 14 of Nodejs reaches its end of life BREAKING CHANGE: End of life of Node v14 Signed-off-by: Francisco Buceta <frbuceta@gmail.com>
1 parent d9e2210 commit 5425762

79 files changed

Lines changed: 93 additions & 96 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
os: [ubuntu-latest]
25-
node-version: [14, 16, 18, 19]
25+
node-version: [16, 18, 19]
2626
include:
2727
- os: macos-latest
2828
node-version: 18 # LTS
@@ -36,9 +36,6 @@ jobs:
3636
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
3737
with:
3838
node-version: ${{ matrix.node-version }}
39-
- name: Upgrade NPM
40-
if: matrix.node-version == 14
41-
run: npm i -g npm@latest-7
4239
- uses: Yuri6037/Action-FakeTTY@1abc69c7d530815855caedcd73842bae5687c1a6 # tag=v1.1
4340
- name: Bootstrap
4441
run: |
@@ -63,7 +60,7 @@ jobs:
6360
github-token: ${{ secrets.GITHUB_TOKEN }}
6461
parallel: true
6562

66-
posttest:
63+
post-test:
6764
name: Post-Test
6865
needs: test
6966
runs-on: ubuntu-latest

README.md

Lines changed: 3 additions & 3 deletions

acceptance/extension-logging-fluentd/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"directory": "acceptance/extension-logging-fluentd"
1515
},
1616
"engines": {
17-
"node": "14 || 16 || 18 || 19"
17+
"node": "16 || 18 || 19"
1818
},
1919
"scripts": {
2020
"build": "lb-tsc",

acceptance/repository-cloudant/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"directory": "acceptance/repository-cloudant"
1515
},
1616
"engines": {
17-
"node": "14 || 16 || 18 || 19"
17+
"node": "16 || 18 || 19"
1818
},
1919
"scripts": {
2020
"build": "lb-tsc",

acceptance/repository-mongodb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"directory": "acceptance/repository-mongodb"
1515
},
1616
"engines": {
17-
"node": "14 || 16 || 18 || 19"
17+
"node": "16 || 18 || 19"
1818
},
1919
"scripts": {
2020
"build": "lb-tsc",

acceptance/repository-mysql/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"directory": "acceptance/repository-mysql"
1515
},
1616
"engines": {
17-
"node": "14 || 16 || 18 || 19"
17+
"node": "16 || 18 || 19"
1818
},
1919
"scripts": {
2020
"build": "lb-tsc",

acceptance/repository-postgresql/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"directory": "acceptance/repository-postgresql"
1515
},
1616
"engines": {
17-
"node": "14 || 16 || 18 || 19"
17+
"node": "16 || 18 || 19"
1818
},
1919
"scripts": {
2020
"build": "lb-tsc",

benchmark/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"directory": "benchmark"
2020
},
2121
"engines": {
22-
"node": "14 || 16 || 18 || 19"
22+
"node": "16 || 18 || 19"
2323
},
2424
"scripts": {
2525
"build": "lb-tsc",

bodyparsers/rest-msgpack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"directory": "bodyparsers/rest-msgpack"
1414
},
1515
"engines": {
16-
"node": "14 || 16 || 18 || 19"
16+
"node": "16 || 18 || 19"
1717
},
1818
"scripts": {
1919
"build": "lb-tsc",

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"directory": "docs"
1717
},
1818
"engines": {
19-
"node": "14 || 16 || 18 || 19"
19+
"node": "16 || 18 || 19"
2020
},
2121
"scripts": {
2222
"version": "node ./bin/copy-readmes.js && node ./bin/copy-changelogs.js && cd .. && npm run tsdocs",

0 commit comments

Comments
 (0)