Skip to content

Commit ca2ad70

Browse files
authored
Update node to latest stable version (#12049) (#12154)
* Update node to latest stable version - v10 has reached EOL so upgrading node to v14 which is the latest stable build * Added changelog * Resolve merge conflicts
1 parent 9f77f5a commit ca2ad70

File tree

11 files changed

+861
-858
lines changed

11 files changed

+861
-858
lines changed

.circleci/config.yml

+186-186
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.circleci/config/@build-release.yml

+183-183
Large diffs are not rendered by default.

.circleci/config/executors/@executors.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ go-machine:
99
working_directory: /go/src/github.com/hashicorp/vault
1010
node:
1111
docker:
12-
- image: docker.mirror.hashicorp.services/node:10-buster
12+
- image: docker.mirror.hashicorp.services/node:14-buster
1313
shell: /usr/bin/env bash -euo pipefail -c
1414
working_directory: /go/src/github.com/hashicorp/vault
1515
python:

changelog/12049.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:improvement
2+
ui: Updated node to v14, latest stable build
3+
```

packages-oss.lock/layers/layers.mk

+48-48
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages-oss.lock/pkgs.yml

+435-435
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages-oss.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ layers:
226226
WORKDIR $DIR
227227
- name: install-yarn
228228
dockerfile: |-
229-
RUN curl -sL https://deb.nodesource.com/setup_10.x | bash -
229+
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash -
230230
RUN curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
231231
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
232232
RUN apt-get update -y && apt-get install -y -q nodejs yarn={{.YARN_VERSION}} \

scripts/cross/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN apt-get update -y && apt-get install --no-install-recommends -y -q \
1212
libltdl-dev \
1313
libltdl7
1414

15-
RUN curl -sL https://deb.nodesource.com/setup_10.x | bash -
15+
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash -
1616
RUN curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
1717
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
1818

scripts/docker/Dockerfile.ui

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ RUN apt-get update -y && apt-get install --no-install-recommends -y -q \
2020
libltdl-dev \
2121
libltdl7
2222

23-
RUN curl -sL https://deb.nodesource.com/setup_10.x | bash -
23+
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash -
2424
RUN curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
2525
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
2626

ui/.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v10
1+
v14

ui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@
189189
"xmlhttprequest-ssl": "^1.6.2"
190190
},
191191
"engines": {
192-
"node": "10.* || >= 12"
192+
"node": "14.*"
193193
},
194194
"ember": {
195195
"edition": "octane"

0 commit comments

Comments
 (0)