forked from meteor/meteor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request meteor#12983 from meteor/release-2.14.1
Release 2.15.0
- Loading branch information
Showing
29 changed files
with
309 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
[submodule "packages/non-core/blaze"] | ||
path = packages/non-core/blaze | ||
url = https://github.com/meteor/blaze.git | ||
url = https://github.com/meteor/blaze.git | ||
[submodule "npm-packages/cordova-plugin-meteor-webapp/src/ios/GCDWebServer"] | ||
path = npm-packages/cordova-plugin-meteor-webapp/src/ios/GCDWebServer | ||
url = https://github.com/meteor/GCDWebServer.git | ||
branch = master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
## v2.15.0, 2024-02-05 | ||
|
||
### Highlights | ||
|
||
* Bumps embedded MongoDB to 7.0.5. | ||
|
||
#### Breaking Changes | ||
|
||
N/A | ||
|
||
#### Internal API changes | ||
|
||
N/A | ||
|
||
#### Migration Steps | ||
|
||
In development, if you're using Linux, you might get an error like `version GLIBCXX_3.4.26 not found` or something related to g++. | ||
|
||
This is related to your g++ version. With MongoDB 7, you need to have g++ 11 or higher. So make sure to have this updated. | ||
|
||
This will happen only if you are trying to run your Meteor application with a MongoDB 7 version. If you run your app with a MONGO_URL pointing to a different MongoDB version, you won't have this issue. | ||
|
||
```bash | ||
|
||
meteor update --release 2.15 | ||
|
||
``` | ||
|
||
|
||
#### Meteor Version Release | ||
|
||
|
||
* `Command line`: | ||
- The bundle version was changed to include embedded MongoDB to 7.0.5. | ||
- Fix cordova launch screen warnings on 2.15 [PR #12971] | ||
* `underscore@get-version`: | ||
- A test related to [PR #12798] to see if the tests can manage the first update step. [PR #12912] | ||
* `service-configuration@get-version`: | ||
- added new types* [PR #12922] | ||
* `meteor@get-version`: | ||
- added new types [PR #12922] | ||
* `accounts-base@get-version`: | ||
- Added missing type for createUserVerifyingEmail [PR #12919] | ||
|
||
#### Special thanks to | ||
|
||
- [@Grubba27](https://github.com/Grubba27). | ||
- [@denihs](https://github.com/denihs). | ||
- [@mcorbelli](https://github.com/mcorbelli). | ||
- [@matheusccastroo](https://github.com/matheusccastroo). | ||
- [@StorytellerCZ](https://github.com/StorytellerCZ). | ||
- [@ebroder](https://github.com/ebroder). | ||
- [@nachocodoner](https://github.com/nachocodoner). | ||
|
||
For making this great framework even better! | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule GCDWebServer
added at
38e9bf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package.describe({ | ||
summary: 'The Meteor command-line tool', | ||
version: '2.14.0', | ||
version: '2.15.0', | ||
}); | ||
|
||
Package.includeTool(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.