mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Merge branch 'devel' into devel
This commit is contained in:
40
docs/generators/changelog/versions/2.13.1.md
Normal file
40
docs/generators/changelog/versions/2.13.1.md
Normal file
@@ -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!
|
||||
|
||||
|
||||
@@ -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`:
|
||||
|
||||
@@ -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
|
||||
|
||||
```
|
||||
|
||||
|
||||
2
meteor
2
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
|
||||
|
||||
@@ -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 |
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "meteor",
|
||||
"version": "2.13.0",
|
||||
"version": "2.13.1",
|
||||
"description": "Install Meteor",
|
||||
"main": "install.js",
|
||||
"scripts": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Package.describe({
|
||||
summary: 'The Meteor command-line tool',
|
||||
version: '2.13.0',
|
||||
version: '2.13.1',
|
||||
});
|
||||
|
||||
Package.includeTool();
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"track": "METEOR",
|
||||
"version": "2.13-rc.3",
|
||||
"version": "2.13-rc.4",
|
||||
"recommended": false,
|
||||
"official": false,
|
||||
"description": "Meteor experimental release"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"track": "METEOR",
|
||||
"version": "2.13",
|
||||
"version": "2.13.1",
|
||||
"recommended": false,
|
||||
"official": true,
|
||||
"description": "The Official Meteor Distribution"
|
||||
|
||||
Reference in New Issue
Block a user