Mention BC BREAK in PersistentCollection#matching() more prominently.
This commit is contained in:
parent
30f90a6f49
commit
dc674f809f
1 changed files with 14 additions and 14 deletions
28
UPGRADE.md
28
UPGRADE.md
|
@ -1,5 +1,19 @@
|
||||||
# Upgrade to 2.4
|
# Upgrade to 2.4
|
||||||
|
|
||||||
|
## BC BREAK: Compatibility Bugfix in PersistentCollection#matching()
|
||||||
|
|
||||||
|
In Doctrine 2.3 it was possible to use the new ``matching($criteria)``
|
||||||
|
functionality by adding constraints for assocations based on ID:
|
||||||
|
|
||||||
|
Criteria::expr()->eq('association', $assocation->getId());
|
||||||
|
|
||||||
|
This functionality does not work on InMemory collections however, because
|
||||||
|
in memory criteria compares object values based on reference.
|
||||||
|
As of 2.4 the above code will throw an exception. You need to change
|
||||||
|
offending code to pass the ``$assocation`` reference directly:
|
||||||
|
|
||||||
|
Criteria::expr()->eq('association', $assocation);
|
||||||
|
|
||||||
## Composer is now the default autoloader
|
## Composer is now the default autoloader
|
||||||
|
|
||||||
The test suite now runs with composer autoloading. Support for PEAR, and tarball autoloading is deprecated.
|
The test suite now runs with composer autoloading. Support for PEAR, and tarball autoloading is deprecated.
|
||||||
|
@ -28,20 +42,6 @@ Now parenthesis are considered, the previous DQL will generate:
|
||||||
|
|
||||||
SELECT 100 / (2 * 2) FROM my_entity
|
SELECT 100 / (2 * 2) FROM my_entity
|
||||||
|
|
||||||
## Compatibility Bugfix in PersistentCollection#matching() breaks BC
|
|
||||||
|
|
||||||
In Doctrine 2.3 it was possible to use the new ``matching($criteria)``
|
|
||||||
functionality by adding constraints for assocations based on ID:
|
|
||||||
|
|
||||||
Criteria::expr()->eq('association', $assocation->getId());
|
|
||||||
|
|
||||||
This functionality does not work on InMemory collections however, because
|
|
||||||
in memory criteria compares object values based on reference.
|
|
||||||
As of 2.4 the above code will throw an exception. You need to change
|
|
||||||
offending code to pass the ``$assocation`` reference directly:
|
|
||||||
|
|
||||||
Criteria::expr()->eq('association', $assocation);
|
|
||||||
|
|
||||||
# Upgrade to 2.3
|
# Upgrade to 2.3
|
||||||
|
|
||||||
## EntityManager#find() not calls EntityRepository#find() anymore
|
## EntityManager#find() not calls EntityRepository#find() anymore
|
||||||
|
|
Loading…
Add table
Reference in a new issue