This repository has been archived by the owner on Nov 11, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 190
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 #298 from alcaeus/fix-aggregation-expression-conve…
…rsion Fix BC break when converting expression objects
- Loading branch information
Showing
7 changed files
with
97 additions
and
14 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
CHANGELOG for 1.6.x | ||
=================== | ||
|
||
This changelog references the relevant changes (bug and security fixes) done | ||
in 1.6.x patch versions. | ||
|
||
1.6.0 (2017-08-09) | ||
------------------ | ||
|
||
* [#298](https://github.com/doctrine/mongodb/pull/298): Fix BC break when converting expression objects | ||
* [#301](https://github.com/doctrine/mongodb/pull/301): Test against PHP 7.2 |
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,21 @@ | ||
Upgrade from 1.5 to 1.6 | ||
======================= | ||
|
||
Aggregation builder | ||
------------------- | ||
|
||
* Fixes a BC break when converting expression objects in the | ||
`Doctrine\MongoDB\Aggregation\Expr` class. | ||
* Adds extension points to customize expression conversion in the following stages: | ||
* `$bucket` | ||
* `$bucketAuto` | ||
* `$graphLookup` | ||
* `$replaceRoot` | ||
|
||
Version support | ||
--------------- | ||
* Support for MongoDB server versions below 3.0 has been dropped. These are no | ||
longer supported by MongoDB. We recommend you upgrade to a recent version | ||
* The 1.5 version of the legacy driver is no longer supported. This library now | ||
requires at least version 1.6.7 of the legacy driver. | ||
* PHP 7.2 is also supported using [mongo-php-adapter](https://github.com/alcaeus/mongo-php-adapter) |
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 |
---|---|---|
|
@@ -34,7 +34,7 @@ | |
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "1.5.x-dev" | ||
"dev-master": "1.6.x-dev" | ||
} | ||
} | ||
} |
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