You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -606,7 +611,7 @@ If your code relies on single entity flushing optimisations via
606
611
607
612
Said API was affected by multiple data integrity bugs due to the fact
608
613
that change tracking was being restricted upon a subset of the managed
609
-
entities. The ORM cannot support committing subsets of the managed
614
+
entities. The ORM cannot support committing subsets of the managed
610
615
entities while also guaranteeing data integrity, therefore this
611
616
utility was removed.
612
617
@@ -707,8 +712,8 @@ either:
707
712
- map those classes as `MappedSuperclass`
708
713
709
714
## Minor BC BREAK: ``EntityManagerInterface`` instead of ``EntityManager`` in type-hints
710
-
711
-
As of 2.5, classes requiring the ``EntityManager`` in any method signature will now require
715
+
716
+
As of 2.5, classes requiring the ``EntityManager`` in any method signature will now require
712
717
an ``EntityManagerInterface`` instead.
713
718
If you are extending any of the following classes, then you need to check following
714
719
signatures:
@@ -801,7 +806,7 @@ the `Doctrine\ORM\Repository\DefaultRepositoryFactory`.
801
806
When executing DQL queries with new object expressions, instead of returning DTOs numerically indexes, it will now respect user provided aliases. Consider the following query:
802
807
803
808
SELECT new UserDTO(u.id,u.name) as user,new AddressDTO(a.street,a.postalCode) as address, a.id as addressId FROM User u INNER JOIN u.addresses a WITH a.isPrimary = true
0 commit comments