Meteor version to 3.0.3 ☄️

This commit is contained in:
denihs
2024-09-11 13:19:36 -04:00
parent a07828bca8
commit d43c92b287
8 changed files with 27 additions and 11 deletions

View File

@@ -10,7 +10,7 @@
[![Travis CI Status](https://api.travis-ci.com/meteor/meteor.svg?branch=devel)](https://app.travis-ci.com/github/meteor/meteor)
[![CircleCI Status](https://circleci.com/gh/meteor/meteor.svg?style=svg)](https://app.circleci.com/pipelines/github/meteor/meteor?branch=devel)
[![built with Meteor](https://img.shields.io/badge/Meteor-3.0.2-green?logo=meteor&logoColor=white)](https://meteor.com)
[![built with Meteor](https://img.shields.io/badge/Meteor-3.0.3-green?logo=meteor&logoColor=white)](https://meteor.com)
![node-current](https://img.shields.io/node/v/meteor)
![Discord](https://img.shields.io/discord/1247973371040239676)
![Twitter Follow](https://img.shields.io/twitter/follow/meteorjs?style=social)

View File

@@ -1,6 +1,6 @@
Package.describe({
summary: "A user account system",
version: "3.0.2-rc303.0",
version: "3.0.2",
});
Package.onUse((api) => {

View File

@@ -5,7 +5,7 @@ Package.describe({
// 2.2.x in the future. The version was also bumped to 2.0.0 temporarily
// during the Meteor 1.5.1 release process, so versions 2.0.0-beta.2
// through -beta.5 and -rc.0 have already been published.
version: "3.0.2-rc303.0",
version: "3.0.2",
});
Npm.depends({

View File

@@ -1,6 +1,6 @@
Package.describe({
summary: "Send email messages",
version: "3.1.0-rc303.0",
version: "3.1.0",
});
Npm.depends({

View File

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

View File

@@ -9,7 +9,7 @@
Package.describe({
summary: "Adaptor for using MongoDB and Minimongo over DDP",
version: "2.0.2-rc303.0",
version: "2.0.2",
});
Npm.depends({

View File

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

View File

@@ -2,7 +2,15 @@
### Highlights
N/A
- Fixed `Meteor.userId` only being invoked with `bindEnvironment`.
- Updated to Node `20.17.x`.
- Fixed an issue where `meteor --open` opens the browser before the app is started.
- Investigated and addressed the error when installing the `jam:method` package.
- Improved the message for new available versions when running an app.
- Updated the documentation link inside `install.sh`.
- Resolved the issue where subscriptions stopped after a parameter change.
- Added MongoDB connection telemetry.
- Bumped the `email` package to prevent update errors.
#### Breaking Changes
@@ -10,7 +18,7 @@ N/A
#### Internal API changes
N/A
- Some internal changes to how async contexts are handled, ensuring better performance and garbage collection.
#### Migration Steps
@@ -25,10 +33,18 @@ meteor update --release 3.0.3
#### Meteor Version Release
N/A
* `Bumped packages`:
- accounts-base@3.0.2
- accounts-password@3.0.2
- email@3.1.0
- mongo@2.0.2
#### Special thanks to
N/A
- [@denihs](https://github.com/denihs).
- [@harryadel](https://github.com/harryadel).
- [@kbarr1212](https://github.com/kbarr1212).
- [@leonardoventurini](https://github.com/leonardoventurini).
- [@nachocodoner](https://github.com/nachocodoner).