Skip to content

Commit ebd14e7

Browse files
committed
build: update minimum supported Node version from 16.13.0 -> 16.14.0 for CI and AIO (#49790)
This commit updates the minimum supported Node version for CI and AIO from 16.13.0 -> 16.14.0 to ensure compatibility with dependencies. PR Close #49790
1 parent d1c83cc commit ebd14e7

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ executors:
8989
type: string
9090
default: medium
9191
docker:
92-
- image: cimg/node:16.13.0
92+
- image: cimg/node:16.14.0
9393
resource_class: << parameters.resource_class >>
9494
working_directory: ~/ng
9595

@@ -99,7 +99,7 @@ executors:
9999
type: string
100100
default: medium
101101
docker:
102-
- image: cimg/node:16.13.0-browsers
102+
- image: cimg/node:16.14.0-browsers
103103
resource_class: << parameters.resource_class >>
104104
working_directory: ~/ng
105105

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.13.0
1+
16.14.0

WORKSPACE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ load("@rules_nodejs//nodejs:repositories.bzl", "nodejs_register_toolchains")
6262

6363
nodejs_register_toolchains(
6464
name = "nodejs",
65-
node_version = "16.13.0",
65+
node_version = "16.14.0",
6666
)
6767

6868
# Download npm dependencies.

aio/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
},
5656
"//engines-comment": "If applicable, also update /package.json and /aio/tools/examples/shared/package.json",
5757
"engines": {
58-
"node": ">=14.17.1",
58+
"node": ">=16.14.0",
5959
"yarn": ">=1.22.4 <2",
6060
"npm": "Please use yarn instead of NPM to install dependencies"
6161
},

aio/tools/examples/shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"//engines-comment": "Keep this in sync with /package.json and /aio/package.json",
1313
"engines": {
14-
"node": ">=14.0.0",
14+
"node": ">=16.14.0",
1515
"yarn": ">=1.21.1 <2",
1616
"npm": "Please use yarn instead of NPM to install dependencies"
1717
},

0 commit comments

Comments
 (0)