1
0
mirror of synced 2025-02-02 13:31:45 +03:00

Documented changes in UPGRADE.md

This commit is contained in:
Mathew Davies 2017-06-19 10:07:58 +01:00 committed by Luís Cobucci
parent 49e4b1004c
commit 05758f4564
No known key found for this signature in database
GPG Key ID: EC61C5F01750ED3C

View File

@ -1,3 +1,17 @@
# Upgrade to 2.6
## Minor BC BREAK: removed `Doctrine\ORM\Query\Parser#isInternalFunction`
Method `Doctrine\ORM\Query\Parser#isInternalFunction` was removed because
the distinction between internal function and user defined DQL was removed.
[#6500](https://github.com/doctrine/doctrine2/pull/6500)
## Minor BC BREAK: removed `Doctrine\ORM\ORMException#overwriteInternalDQLFunctionNotAllowed`
Method `Doctrine\ORM\Query\Parser#overwriteInternalDQLFunctionNotAllowed` was
removed because of the choice to allow users to overwrite internal functions, ie
`AVG`, `SUM`, `COUNT`, `MIN` and `MAX`. [#6500](https://github.com/doctrine/doctrine2/pull/6500)
# Upgrade to 2.5
## Minor BC BREAK: removed `Doctrine\ORM\Query\SqlWalker#walkCaseExpression()`