Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[1.3] Optimize nested collection deletions #1948

Merged
7 changes: 7 additions & 0 deletions UPGRADE-1.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,13 @@ cause an exception in 2.0. It is possible to have multiple fields with the same
name in the database as long as all but one of them have the `notSaved` option
set.

## Persisters

* The `delete` and `update` methods in
`Doctrine\ODM\MongoDB\Persisters\CollectionPersister` are deprecated. Use
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"are" here should likely change but I'm leaving this for a future proofreading :)

`deleteAll` and `updateAll` instead. The method signatures will be adapted
to match those of `deleteAll` and `updateAll` in 2.0.

## Proxies

* The usage of proxies from Doctrine Common was deprecated and will be replaced
Expand Down
Loading