Merge branch 'master' into devel

This commit is contained in:
filipenevola
2020-02-19 07:19:43 -04:00
committed by Ben Newman
6 changed files with 23 additions and 8 deletions

View File

@@ -11,9 +11,6 @@ N/A
### Changes
* Node.js has been updated to version
[12.14.1](https://nodejs.org/en/blog/release/v12.14.1/).
* The version of MongoDB used by Meteor in development has been updated
from 4.0.6 to 4.2.1, and the `mongodb` driver package has been updated
from 3.2.7 to 3.4.0, thanks to [@klaussner](https://github.com/klaussner).
@@ -49,6 +46,24 @@ N/A
* The `typescript` npm package has been updated to version 3.7.4.
## v1.9.1, 2020-02-18
### Breaking changes
N/A
### Migration Steps
N/A
### Changes
* Node.js has been updated to version
12.16.0 from 12.14.0, which includes
security updates and small changes:
* [12.16.0](https://nodejs.org/en/blog/release/v12.16.0/)
* Updated V8 to [release v7.8](https://v8.dev/blog/v8-release-78) which includes improvements in performance, for example, object destructuring now is as fast as the equivalent variable assignment.
* [12.15.0](https://nodejs.org/en/blog/release/v12.15.0/)
## v1.9, 2020-01-09
### Breaking changes

2
meteor
View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
BUNDLE_VERSION=12.14.1.2
BUNDLE_VERSION=12.16.0.0
# OS Check. Put here because here is where we download the precompiled
# bundles that are arch specific.

View File

@@ -1,6 +1,6 @@
Package.describe({
summary: "The Meteor command-line tool",
version: '1.9.0'
version: '1.9.1'
});
Package.includeTool();

View File

@@ -1,6 +1,6 @@
{
"track": "METEOR",
"version": "1.9-rc.3",
"version": "1.9.1-rc.1",
"recommended": false,
"official": false,
"description": "Meteor"

View File

@@ -1,6 +1,6 @@
{
"track": "METEOR",
"version": "1.9",
"version": "1.9.1",
"recommended": false,
"official": true,
"description": "The Official Meteor Distribution"

View File

@@ -5,7 +5,7 @@ set -u
UNAME=$(uname)
ARCH=$(uname -m)
NODE_VERSION=12.14.1
NODE_VERSION=12.16.0
MONGO_VERSION_64BIT=4.2.1
MONGO_VERSION_32BIT=3.2.22
NPM_VERSION=6.13.6