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