From c32245ea9a0506c0b98a606cb50ad2a4ebb47027 Mon Sep 17 00:00:00 2001 From: Gabriel Grubba <70247653+Grubba27@users.noreply.github.com> Date: Wed, 14 Sep 2022 15:38:34 -0300 Subject: [PATCH 1/5] Update roadmap.md relates to: #11727 There were changes in discussion name --- docs/source/roadmap.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/roadmap.md b/docs/source/roadmap.md index 86c1d6bb43..ed910b7f56 100644 --- a/docs/source/roadmap.md +++ b/docs/source/roadmap.md @@ -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; From 1e058ba799559dfafedb12f443377e31255163b1 Mon Sep 17 00:00:00 2001 From: Jan Dvorak Date: Mon, 26 Sep 2022 08:46:04 +0200 Subject: [PATCH 2/5] Bump to Node v14.20.1 --- docs/history.md | 1 + meteor | 2 +- scripts/build-dev-bundle-common.sh | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/history.md b/docs/history.md index a820c10a28..9bc5e89daa 100644 --- a/docs/history.md +++ b/docs/history.md @@ -3,6 +3,7 @@ #### Highlights * New MongoDB Package Async API. [PR](https://github.com/meteor/meteor/pull/12028) * Node update to [v14.20.0](https://nodejs.org/en/blog/release/v14.20.0/) as part of the [July 7th security release](https://nodejs.org/en/blog/vulnerability/july-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) #### Breaking Changes diff --git a/meteor b/meteor index ea3895e1cc..dff5d789b0 100755 --- a/meteor +++ b/meteor @@ -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. diff --git a/scripts/build-dev-bundle-common.sh b/scripts/build-dev-bundle-common.sh index f124d3c95c..d7b4cfaa10 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=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 From 5aa41747f7c8dc7234ed08fdb941f80893364488 Mon Sep 17 00:00:00 2001 From: Lorenzo Campanis Date: Thu, 29 Sep 2022 16:24:57 +0300 Subject: [PATCH 3/5] Update fetch.md `err` instead of `error` in catch statement --- docs/source/packages/fetch.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/packages/fetch.md b/docs/source/packages/fetch.md index 4f301a3d32..4f5176e374 100644 --- a/docs/source/packages/fetch.md +++ b/docs/source/packages/fetch.md @@ -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); } } From d0b8d2d2bab70068ab0d55aacab36d305e5030df Mon Sep 17 00:00:00 2001 From: David Beitey Date: Sat, 1 Oct 2022 01:45:38 +1000 Subject: [PATCH 4/5] Update Code of Conduct Attribution URLs The Contributor Covenant URL has been updated as it was previously redirecting to the Italian version of this document, and updates the Ubuntu URL for currency and from insecure http://. --- CODE_OF_CONDUCT.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 748f29a311..5f6acfdae1 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -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.* From 8e240e39553dcf404c80643dc838c4a480a6b4a7 Mon Sep 17 00:00:00 2001 From: Ayushi Vishwakarma Date: Sun, 2 Oct 2022 19:24:18 +0530 Subject: [PATCH 5/5] updated the doc with the dependency of --container-size on --plan flag --- docs/source/commandline.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/commandline.md b/docs/source/commandline.md index 54c22990a7..012dfe0086 100644 --- a/docs/source/commandline.md +++ b/docs/source/commandline.md @@ -258,7 +258,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.