diff --git a/History.md b/History.md index 49b4d31461..4f67d12174 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,25 @@ +## v2.1, 2021-02-23 + +### Changes + +#### Highlights + +- Node.js security [update](https://nodejs.org/en/blog/vulnerability/february-2021-security-releases/) to 12.21.0 + +#### Meteor Version Release + +* `meteor-tool@2.1` + - Node.js security [update](https://nodejs.org/en/blog/vulnerability/february-2021-security-releases/) to 12.21.0 + - `meteor create my-app --plan professional` new flag `plan` to enable you to choose a plan from the deploy command. + +### Breaking changes + +* N/A + +### Migration steps + +* N/A + ## v2.0, 2021-01-20 ### Changes diff --git a/meteor b/meteor index ba5f1afea3..0a1b5ad62e 100755 --- a/meteor +++ b/meteor @@ -1,6 +1,6 @@ #!/usr/bin/env bash -BUNDLE_VERSION=12.20.1.3 +BUNDLE_VERSION=12.21.0.0 # OS Check. Put here because here is where we download the precompiled # bundles that are arch specific. diff --git a/scripts/build-dev-bundle-common.sh b/scripts/build-dev-bundle-common.sh index 9b1ed26ae6..8fad863eec 100644 --- a/scripts/build-dev-bundle-common.sh +++ b/scripts/build-dev-bundle-common.sh @@ -5,7 +5,7 @@ set -u UNAME=$(uname) ARCH=$(uname -m) -NODE_VERSION=12.20.1 +NODE_VERSION=12.21.0 MONGO_VERSION_64BIT=4.2.8 MONGO_VERSION_32BIT=3.2.22 NPM_VERSION=6.14.8