Skip to content

Commit c1878e4

Browse files
feat: remove node 16 (#875)
<!-- Please use this template for your pull request. --> <!-- Please use the sections that you need and delete other sections --> ## This PR <!-- add the description of the PR here --> Removes Node 16 as it is deprecated. Signed-off-by: Lukas Reining <[email protected]> Co-authored-by: Todd Baert <[email protected]>
1 parent 9083df8 commit c1878e4

File tree

8 files changed

+9
-10
lines changed

8 files changed

+9
-10
lines changed

.github/workflows/audit-pending-releases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Setup Node
3030
uses: actions/setup-node@v4
3131
with:
32-
node-version: 16
32+
node-version: 18
3333
registry-url: "https://registry.npmjs.org"
3434
cache: 'npm'
3535

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/setup-node@v4
1717
with:
1818
registry-url: 'https://registry.npmjs.org'
19-
node-version: 16
19+
node-version: 18
2020
cache: 'npm'
2121

2222
- name: Install

.github/workflows/pr-checks.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ jobs:
1616
strategy:
1717
matrix:
1818
node-version:
19-
- 16.x
2019
- 18.x
2120
- 20.x
2221

@@ -47,7 +46,7 @@ jobs:
4746
- uses: actions/checkout@v4
4847
- uses: actions/setup-node@v4
4948
with:
50-
node-version: 16
49+
node-version: 18
5150
cache: 'npm'
5251

5352
- name: Install
@@ -80,4 +79,4 @@ jobs:
8079
run: npm run build
8180

8281
- name: SDK e2e tests
83-
run: npm run e2e
82+
run: npm run e2e

.github/workflows/release-please.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- name: Setup Node
6262
uses: actions/setup-node@v4
6363
with:
64-
node-version: 16
64+
node-version: 18
6565
registry-url: "https://registry.npmjs.org"
6666
cache: 'npm'
6767
- name: Build Packages

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
},
3434
"homepage": "https://github.com/open-feature/js-sdk#readme",
3535
"engines": {
36-
"node": ">=16"
36+
"node": ">=18"
3737
},
3838
"devDependencies": {
3939
"@rollup/plugin-typescript": "^11.1.6",

packages/nest/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Capabilities include:
5050

5151
### Requirements
5252

53-
- Node.js version 16+
53+
- Node.js version 18+
5454
- NestJS version 8+
5555

5656
### Install

packages/server/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
### Requirements
4646

47-
- Node.js version 16+
47+
- Node.js version 18+
4848

4949
### Install
5050

packages/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
},
4646
"homepage": "https://github.com/open-feature/js-sdk#readme",
4747
"engines": {
48-
"node": ">=16"
48+
"node": ">=18"
4949
},
5050
"peerDependencies": {
5151
"@openfeature/core": "1.1.0"

0 commit comments

Comments
 (0)