-
Notifications
You must be signed in to change notification settings - Fork 1.4k
[Fix] Unable to delete nested embedded models #1423
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
Conversation
@jenssegers any updates on this? |
Merge latest from jenssegers/laravel-mongodb:master
@jenssegers This should be at least available on v3.3.x and Laravel 5.5 (LTS). |
@jenssegers Could you please review the PR and provide any kind of feedback? The review should be prioritized since it contains a fix for the core functionality that is not working properly in the current implementation. |
Merged, but GitHub did something weird :) |
@jenssegers what version of the package will this be available on? Ref: #1423 (comment) |
@milanspv v3.4.1 |
@jenssegers v3.4.1 requires Laravel 5.6. Any chance to make this available to those of us who work with Laravel 5.5 LTS (v3.3.x release)? |
[Fix] Unable to delete nested embedded models
[Fix] Unable to delete nested embedded models
The PR fixes deletion of embedded nested objects.
The current implementation uses dot notation which in combination with
$set
update operator does not actually remove objects.@jenssegers ^