mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Merge branch 'master' into devel
This commit is contained in:
22
History.md
22
History.md
@@ -1,3 +1,25 @@
|
||||
## v2.1.1, 2021-04-06
|
||||
|
||||
### Changes
|
||||
|
||||
#### Highlights
|
||||
|
||||
- Node.js security [update](https://nodejs.org/en/blog/vulnerability/april-2021-security-releases/) to 12.22.1
|
||||
|
||||
#### Meteor Version Release
|
||||
|
||||
* `meteor-tool@2.1.1`
|
||||
- Node.js security [update](https://nodejs.org/en/blog/vulnerability/april-2021-security-releases/) to 12.22.1
|
||||
- npm update to 6.14.12
|
||||
|
||||
### Breaking changes
|
||||
|
||||
* N/A
|
||||
|
||||
### Migration steps
|
||||
|
||||
* N/A
|
||||
|
||||
## v2.1, 2021-02-24
|
||||
|
||||
### Changes
|
||||
|
||||
2
meteor
2
meteor
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
BUNDLE_VERSION=12.21.0.0
|
||||
BUNDLE_VERSION=12.21.1.0
|
||||
|
||||
# OS Check. Put here because here is where we download the precompiled
|
||||
# bundles that are arch specific.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Package.describe({
|
||||
summary: "The Meteor command-line tool",
|
||||
version: '2.1.0'
|
||||
version: '2.1.1'
|
||||
});
|
||||
|
||||
Package.includeTool();
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"track": "METEOR",
|
||||
"version": "2.1",
|
||||
"version": "2.1.1",
|
||||
"recommended": false,
|
||||
"official": true,
|
||||
"description": "The Official Meteor Distribution"
|
||||
|
||||
@@ -5,10 +5,10 @@ set -u
|
||||
|
||||
UNAME=$(uname)
|
||||
ARCH=$(uname -m)
|
||||
NODE_VERSION=12.21.0
|
||||
NODE_VERSION=12.22.1
|
||||
MONGO_VERSION_64BIT=4.2.8
|
||||
MONGO_VERSION_32BIT=3.2.22
|
||||
NPM_VERSION=6.14.8
|
||||
NPM_VERSION=6.14.12
|
||||
|
||||
# If we built Node from source on Jenkins, this is the build number.
|
||||
NODE_BUILD_NUMBER=
|
||||
|
||||
@@ -10,7 +10,7 @@ var packageJson = {
|
||||
dependencies: {
|
||||
// Explicit dependency because we are replacing it with a bundled version
|
||||
// and we want to make sure there are no dependencies on a higher version
|
||||
npm: "6.14.8",
|
||||
npm: "6.14.12",
|
||||
pacote: "https://github.com/meteor/pacote/tarball/a81b0324686e85d22c7688c47629d4009000e8b8",
|
||||
"node-gyp": "6.0.1",
|
||||
"node-pre-gyp": "0.14.0",
|
||||
|
||||
Reference in New Issue
Block a user