diff --git a/docs/generators/changelog/versions/2.13.md b/docs/generators/changelog/versions/2.13.0.md similarity index 100% rename from docs/generators/changelog/versions/2.13.md rename to docs/generators/changelog/versions/2.13.0.md diff --git a/docs/generators/changelog/versions/2.13.1.md b/docs/generators/changelog/versions/2.13.1.md new file mode 100644 index 0000000000..cd0b3936f1 --- /dev/null +++ b/docs/generators/changelog/versions/2.13.1.md @@ -0,0 +1,40 @@ +## v2.13.1, 2023-09-04 + +### Highlights + +* Solved zlib issue with Meteor.js and ESM Node.js 14.21.4 [PR #12761] by (GH Grubba27). + +#### Breaking Changes + +N/A + +#### Internal API changes + +N/A + +#### Migration Steps + +Please run the following command to update your project: + +```bash + +meteor update --release 2.13.1 + +``` + + +#### Meteor Version Release + + +* `Command line`: + - The bundle version was changed to 14.21.4.1 to use another compiled version of the [ESM Node.js](https://guide.meteor.com/using-node-v14.21.4). + + +#### Special thanks to + +- [@Grubba27](https://github.com/Grubba27). + + +For making this great framework even better! + + diff --git a/docs/history.md b/docs/history.md index 1c66bb6498..3a0e9b6a75 100644 --- a/docs/history.md +++ b/docs/history.md @@ -10,6 +10,46 @@ +## v2.13.1, 2023-09-04 + +### Highlights + +* Solved zlib issue with Meteor.js and ESM Node.js 14.21.4 [PR](https://github.com/meteor/meteor/pull/12761) by (GH Grubba27). + +#### Breaking Changes + +N/A + +#### Internal API changes + +N/A + +#### Migration Steps + +Please run the following command to update your project: + +```bash + +meteor update --release 2.13.1 + +``` + + +#### Meteor Version Release + + +* `Command line`: + - The bundle version was changed to 14.21.4.1 to use another compiled version of the [ESM Node.js](https://guide.meteor.com/using-node-v14.21.4). + + +#### Special thanks to + +- [@Grubba27](https://github.com/Grubba27). + + +For making this great framework even better! + + ## v2.13.0, 2023-07-26 ### Highlights @@ -34,6 +74,11 @@ If you are running Meteor with docker you will need to update your docker file to use our [new docker image](https://hub.docker.com/r/meteor/node) that contains Nodejs v14.21.4. +#### Known issues + +Please, [check our known issues page](https://docs.meteor.com/known-issues) +for more information about the problems and issues you might find while migrating. + #### Internal changes * `ddp-server@2.6.2`: diff --git a/docs/source/known-issues.md b/docs/source/known-issues.md index 584464b279..657da34a65 100644 --- a/docs/source/known-issues.md +++ b/docs/source/known-issues.md @@ -33,7 +33,7 @@ running the following command in your terminal: ```shell -curl https://install.meteor.com/\?release\=2.12 | sh +curl https://install.meteor.com/\?release\=2.13.1 | sh ``` diff --git a/meteor b/meteor index bedeb03f1f..5f39756b8b 100755 --- a/meteor +++ b/meteor @@ -1,6 +1,6 @@ #!/usr/bin/env bash -BUNDLE_VERSION=14.21.4.0 +BUNDLE_VERSION=14.21.4.1 # OS Check. Put here because here is where we download the precompiled diff --git a/npm-packages/meteor-installer/README.md b/npm-packages/meteor-installer/README.md index a83364d492..9a3c7d4b15 100644 --- a/npm-packages/meteor-installer/README.md +++ b/npm-packages/meteor-installer/README.md @@ -14,6 +14,7 @@ npm install -g meteor | NPM Package | Meteor Official Release | |-------------|-------------------------| +| 2.13.1 | 2.13.1 | | 2.13.0 | 2.13.0 | | 2.12.1 | 2.12.0 | | 2.12.0 | 2.12.0 | diff --git a/npm-packages/meteor-installer/config.js b/npm-packages/meteor-installer/config.js index 9648480e92..4438ec973e 100644 --- a/npm-packages/meteor-installer/config.js +++ b/npm-packages/meteor-installer/config.js @@ -1,7 +1,7 @@ const path = require('path'); const os = require('os'); -const METEOR_LATEST_VERSION = '2.13'; +const METEOR_LATEST_VERSION = '2.13.1'; const sudoUser = process.env.SUDO_USER || ''; function isRoot() { return process.getuid && process.getuid() === 0; diff --git a/npm-packages/meteor-installer/package.json b/npm-packages/meteor-installer/package.json index f3e5669f1b..f422ceef29 100644 --- a/npm-packages/meteor-installer/package.json +++ b/npm-packages/meteor-installer/package.json @@ -1,6 +1,6 @@ { "name": "meteor", - "version": "2.13.0", + "version": "2.13.1", "description": "Install Meteor", "main": "install.js", "scripts": { diff --git a/packages/meteor-tool/package.js b/packages/meteor-tool/package.js index 3b939ba9b3..5509d79a00 100644 --- a/packages/meteor-tool/package.js +++ b/packages/meteor-tool/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'The Meteor command-line tool', - version: '2.13.0', + version: '2.13.1', }); Package.includeTool(); diff --git a/scripts/admin/meteor-release-experimental.json b/scripts/admin/meteor-release-experimental.json index 9ed485d9d8..d5284b9884 100644 --- a/scripts/admin/meteor-release-experimental.json +++ b/scripts/admin/meteor-release-experimental.json @@ -1,6 +1,6 @@ { "track": "METEOR", - "version": "2.13-rc.3", + "version": "2.13-rc.4", "recommended": false, "official": false, "description": "Meteor experimental release" diff --git a/scripts/admin/meteor-release-official.json b/scripts/admin/meteor-release-official.json index 65c2ce96a4..f7bdee0399 100644 --- a/scripts/admin/meteor-release-official.json +++ b/scripts/admin/meteor-release-official.json @@ -1,6 +1,6 @@ { "track": "METEOR", - "version": "2.13", + "version": "2.13.1", "recommended": false, "official": true, "description": "The Official Meteor Distribution"