Merge pull request #12776 from meteor/release-2.13.3

Release 2.13.3
This commit is contained in:
Frederico Maia
2023-09-11 12:41:21 -03:00
committed by GitHub
9 changed files with 89 additions and 6 deletions

View File

@@ -0,0 +1,41 @@
## v2.13.3, 2023-09-08
### Highlights
* Solves the issue [#12771: Version 2.13.1 suddenly requires a newer glibc version](https://github.com/meteor/meteor/issues/12771).
#### 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.3
```
#### Meteor Version Release
* `Command line`:
- The bundle version was changed to 14.21.4.3 to use another compiled version of the [ESM Node.js](https://guide.meteor.com/using-node-v14.21.4). The previous version was generated using a different unix distribution (Ubuntu) while we should use CentOS.
#### Special thanks to
- [@aquinoit](https://github.com/aquinoit).
- [@fredmaiaarantes](https://github.com/fredmaiaarantes).
- [@Grubba27](https://github.com/Grubba27).
For making this great framework even better!

View File

@@ -10,6 +10,47 @@
## v2.13.3, 2023-09-08
### Highlights
* Solves the issue [#12771: Version 2.13.1 suddenly requires a newer glibc version](https://github.com/meteor/meteor/issues/12771).
#### 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.3
```
#### Meteor Version Release
* `Command line`:
- The bundle version was changed to 14.21.4.3 to use another compiled version of the [ESM Node.js](https://guide.meteor.com/using-node-v14.21.4). The previous version was generated using a different unix distribution (Ubuntu) while we should use CentOS.
#### Special thanks to
- [@aquinoit](https://github.com/aquinoit).
- [@fredmaiaarantes](https://github.com/fredmaiaarantes).
- [@Grubba27](https://github.com/Grubba27).
For making this great framework even better!
## v2.13.1, 2023-09-04
### Highlights

2
meteor
View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
BUNDLE_VERSION=14.21.4.1
BUNDLE_VERSION=14.21.4.3
# OS Check. Put here because here is where we download the precompiled

View File

@@ -14,6 +14,7 @@ npm install -g meteor
| NPM Package | Meteor Official Release |
|-------------|-------------------------|
| 2.13.3 | 2.13.3 |
| 2.13.1 | 2.13.1 |
| 2.13.0 | 2.13.0 |
| 2.12.1 | 2.12.0 |

View File

@@ -1,7 +1,7 @@
const path = require('path');
const os = require('os');
const METEOR_LATEST_VERSION = '2.13.1';
const METEOR_LATEST_VERSION = '2.13.3';
const sudoUser = process.env.SUDO_USER || '';
function isRoot() {
return process.getuid && process.getuid() === 0;

View File

@@ -1,6 +1,6 @@
{
"name": "meteor",
"version": "2.13.1",
"version": "2.13.3",
"description": "Install Meteor",
"main": "install.js",
"scripts": {

View File

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

View File

@@ -1,6 +1,6 @@
{
"track": "METEOR",
"version": "2.13-rc.4",
"version": "2.13.3-rc.1",
"recommended": false,
"official": false,
"description": "Meteor experimental release"

View File

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