Skip to content

Commit

Permalink
Update node to latest stable version (#12049) (#12155)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
arnav28 committed Jul 22, 2021
1 parent b75a972 commit 24c9176
Show file tree
Hide file tree
Showing 11 changed files with 1,719 additions and 1,716 deletions.
340 changes: 170 additions & 170 deletions .circleci/config.yml

Large diffs are not rendered by default.

334 changes: 167 additions & 167 deletions .circleci/config/@build-release.yml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .circleci/config/executors/@executors.yml
Expand Up @@ -10,7 +10,7 @@ go-machine:
working_directory: /go/src/github.com/hashicorp/vault
node:
docker:
- image: docker.mirror.hashicorp.services/node:10-buster
- image: docker.mirror.hashicorp.services/node:14-buster
shell: /usr/bin/env bash -euo pipefail -c
working_directory: /go/src/github.com/hashicorp/vault
python:
Expand Down
3 changes: 3 additions & 0 deletions changelog/12049.txt
@@ -0,0 +1,3 @@
```release-note:improvement
ui: Updated node to v14, latest stable build
```
610 changes: 305 additions & 305 deletions packages-oss.lock/layers/layers.mk

Large diffs are not rendered by default.

2,136 changes: 1,068 additions & 1,068 deletions packages-oss.lock/pkgs.yml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages-oss.yml
Expand Up @@ -224,7 +224,7 @@ layers:
WORKDIR $DIR
- name: install-yarn
dockerfile: |-
RUN curl -sL https://deb.nodesource.com/setup_10.x | bash -
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash -
RUN curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
RUN apt-get update -y && apt-get install -y -q nodejs yarn={{.YARN_VERSION}} \
Expand Down
2 changes: 1 addition & 1 deletion scripts/cross/Dockerfile
Expand Up @@ -12,7 +12,7 @@ RUN apt-get update -y && apt-get install --no-install-recommends -y -q \
libltdl-dev \
libltdl7

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

Expand Down
2 changes: 1 addition & 1 deletion scripts/docker/Dockerfile.ui
Expand Up @@ -20,7 +20,7 @@ RUN apt-get update -y && apt-get install --no-install-recommends -y -q \
libltdl-dev \
libltdl7

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

Expand Down
2 changes: 1 addition & 1 deletion ui/.nvmrc
@@ -1 +1 @@
v10
v14
2 changes: 1 addition & 1 deletion ui/package.json
Expand Up @@ -180,7 +180,7 @@
"yargs-parser": "^13.1.2"
},
"engines": {
"node": "10.* || >= 12"
"node": "14.*"
},
"ember": {
"edition": "octane"
Expand Down

0 comments on commit 24c9176

Please sign in to comment.