Merge branch 'release-2.7.4' into creating-call-async

This commit is contained in:
Gabriel Grubba
2022-10-06 16:44:37 -03:00
committed by GitHub
7 changed files with 9 additions and 9 deletions

View File

@@ -61,9 +61,9 @@ If you believe someone is violating the code of conduct, please report it by ema
Sections of this Code of Conduct were inspired in by the following Codes from other open source projects and resources we admire:
- [The Contributor Covenant](http://contributor-covenant.org/version/1/4/)
- [The Contributor Covenant](https://www.contributor-covenant.org/version/1/4/code-of-conduct/)
- [Python](https://www.python.org/psf/codeofconduct/)
- [Ubuntu](http://www.ubuntu.com/about/about-ubuntu/conduct)
- [Ubuntu](https://ubuntu.com/community/code-of-conduct)
- [Django](https://www.djangoproject.com/conduct/)
*This Meteor Code of Conduct is licensed under the [Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/) license. This Code was last updated on August 28, 2017.*

View File

@@ -2,7 +2,7 @@
#### Highlights
* New MongoDB Package Async API. [PR](https://github.com/meteor/meteor/pull/12028)
* Node update to [v14.20.1](https://nodejs.org/en/blog/release/v14.20.0/) as part of the [September 22nd security release](https://nodejs.org/en/blog/vulnerability/september-2022-security-releases/)
* Node update to [v14.20.1](https://nodejs.org/en/blog/release/v14.20.1/) as part of the [September 22nd security release](https://nodejs.org/en/blog/vulnerability/september-2022-security-releases/)
* Update MongoDB driver to 4.9. [PR](https://github.com/meteor/meteor/pull/12097)
* Meteor.callAsync method. [PR] (https://github.com/meteor/meteor/pull/12196)

View File

@@ -266,7 +266,7 @@ Your project should be a git repository as the commit hash is going to be used t
The `cache-build` option is available since Meteor 1.11.
{% endpullquote %}
With the argument `--container-size` you can change your app's container size using the deploy command. The valid arguments are: `tiny`, `compact`, `standard`, `double`, `quad`, `octa`, and `dozen`. To see more about the difference and prices of each one you can check it [here](https://www.meteor.com/cloud#pricing-section).
With the argument `--container-size` you can change your app's container size using the deploy command. The valid arguments are: `tiny`, `compact`, `standard`, `double`, `quad`, `octa`, and `dozen`. One more thing to note here is that the `--container-size` flag can only be used when the `--plan` option is already specified, else the use of `--container-size` option will throw an error with the message : `Error deploying application: Internal error`. To see more about the difference and prices of each one you can check it [here](https://www.meteor.com/cloud#pricing-section).
{% pullquote warning %}
The `--container-size` option is available since Meteor 2.4.1.

View File

@@ -57,7 +57,7 @@ async function postData (url, data) {
const data = await response.json();
return response(null, data);
} catch (err) {
return response(error, null);
return response(err, null);
}
}

View File

@@ -5,7 +5,7 @@ description: Describes the high-level features and actions for the Meteor projec
## Introduction
Last update: August 31, 2022.
Last update: Setember 14, 2022.
This document describes the high-level features and actions for the Meteor project in the near-to-medium term future.
The description of many items include sentences and ideas from Meteor community members.
@@ -57,7 +57,7 @@ Contributors are encouraged to focus their efforts on work that aligns with the
### Future items
We plan to implement these items in the near future. Community help would be greatly appreciated.
- ES Modules Support; ([Discussion](https://github.com/meteor/meteor/discussions/11727))
- Support package.json exports fields; ([Discussion](https://github.com/meteor/meteor/discussions/11727))
- MongoDB 6.0 Support; ([Discussion](https://github.com/meteor/meteor/discussions/12092))
- Improve Meteor build time; ([Discussion](https://github.com/meteor/meteor/discussions/11587))
- HTTP/3 Support;

2
meteor
View File

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

View File

@@ -5,7 +5,7 @@ set -u
UNAME=$(uname)
ARCH=$(uname -m)
NODE_VERSION=14.20.0
NODE_VERSION=14.20.1
MONGO_VERSION_64BIT=5.0.5
MONGO_VERSION_32BIT=3.2.22
NPM_VERSION=6.14.17