Skip to content

Commit

Permalink
Update node to latest stable version (#12049)
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 e9f0413 commit e8bcb69
Show file tree
Hide file tree
Showing 11 changed files with 861 additions and 858 deletions.
372 changes: 186 additions & 186 deletions .circleci/config.yml

Large diffs are not rendered by default.

366 changes: 183 additions & 183 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 @@ -9,7 +9,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
```
96 changes: 48 additions & 48 deletions packages-oss.lock/layers/layers.mk

Large diffs are not rendered by default.

870 changes: 435 additions & 435 deletions packages-oss.lock/pkgs.yml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages-oss.yml
Expand Up @@ -226,7 +226,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 @@ -189,7 +189,7 @@
"xmlhttprequest-ssl": "^1.6.2"
},
"engines": {
"node": "10.* || >= 12"
"node": "14.*"
},
"ember": {
"edition": "octane"
Expand Down

0 comments on commit e8bcb69

Please sign in to comment.