mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Update version of packages affected by createIndex
This commit is contained in:
15
History.md
15
History.md
@@ -31,6 +31,21 @@
|
||||
* `mongo@1.13.0`
|
||||
- Add `createIndex` as a collection function (in MongoDB since MongoDB v3). This is a new name for `_ensureIndex` which MongoDB has deprecated and removed in MongoDB 5.0. Use of `_ensureIndex` will show a deprecation warning on development.
|
||||
|
||||
* `accounts-base@2.1.0`
|
||||
- Migrated usage of `_ensureIndex` to `createIndex`
|
||||
|
||||
* `accounts-password@2.1.0`
|
||||
- Migrated usage of `_ensureIndex` to `createIndex`
|
||||
|
||||
* `oauth@2.1.0`
|
||||
- Migrated usage of `_ensureIndex` to `createIndex`
|
||||
|
||||
* `oauth1@1.5.0`
|
||||
- Migrated usage of `_ensureIndex` to `createIndex`
|
||||
|
||||
* `service-configuration@1.5.0`
|
||||
- Migrated usage of `_ensureIndex` to `createIndex`
|
||||
|
||||
#### Independent Releases
|
||||
|
||||
* `minifier-js@2.6.1`
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Package.describe({
|
||||
summary: "A user account system",
|
||||
version: "2.0.0",
|
||||
version: "2.1.0-beta240.2",
|
||||
});
|
||||
|
||||
Package.onUse(api => {
|
||||
|
||||
@@ -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: "2.0.0"
|
||||
version: "2.1.0-beta240.2"
|
||||
});
|
||||
|
||||
Npm.depends({
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Package.describe({
|
||||
summary: "Common code for OAuth-based services",
|
||||
version: "2.0.0"
|
||||
version: "2.1.0-beta240.2"
|
||||
});
|
||||
|
||||
Package.onUse(api => {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Package.describe({
|
||||
summary: "Common code for OAuth1-based login services",
|
||||
version: "1.4.0",
|
||||
version: "1.5.0-beta240.2",
|
||||
});
|
||||
|
||||
Package.onUse(api => {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Package.describe({
|
||||
summary: "Manage the configuration for third-party services",
|
||||
version: "1.1.0"
|
||||
version: "1.2.0-beta240.2"
|
||||
});
|
||||
|
||||
Package.onUse(function(api) {
|
||||
|
||||
Reference in New Issue
Block a user