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
Just a minor missing deprecation annotation in 2.7 and 2.8. AbstractQuery::iterate is marked as deprecated but Query::iterate isn't.
It still triggers a message through its parent call.
The text was updated successfully, but these errors were encountered:
beberlei
added a commit
to beberlei/doctrine2
that referenced
this issue
Feb 8, 2021
* [GH-8410] Fix memory leak in new toIterable and state bug.
The new AbstractQuery::toIterable() had a memory leak that
AbstractQuery::iterable() did not have. This leak is now fixed.
After fixing the leak, one test failed where the identity map in
ObjectHydrator triggered and lead to a notice. Introduced a new
AbstractHydrator::cleanupAfterRowIteration() that the ObjectHydrator
uses to cleanup the state.
* [GH-8413] Bugfix: Iterating with multiple, mixed results
When multiple entity results are part of a row, the result handling
must be different. In addition mixed results with scalars are broken
and now throw an exception as illegal operation.
* Housekeeping: phpcs
* [GH-8413] Add assertions for entity alias iteration.
* [GH-8387] Missing @deprecated on Query::iterate
Just a minor missing deprecation annotation in 2.7 and 2.8.
AbstractQuery::iterate
is marked as deprecated butQuery::iterate
isn't.It still triggers a message through its parent call.
The text was updated successfully, but these errors were encountered: