Update version of packages affected by createIndex

This commit is contained in:
Jan Dvorak
2021-07-28 19:40:53 +02:00
parent 566126b481
commit db1fcb71b8
6 changed files with 20 additions and 5 deletions

View File

@@ -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`

View File

@@ -1,6 +1,6 @@
Package.describe({
summary: "A user account system",
version: "2.0.0",
version: "2.1.0-beta240.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: "2.0.0"
version: "2.1.0-beta240.2"
});
Npm.depends({

View File

@@ -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 => {

View File

@@ -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 => {

View File

@@ -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) {