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

Remove manual dirty _id check when updating a model #3329

Merged
merged 1 commit into from
Apr 1, 2025

Conversation

itodor
Copy link
Contributor

@itodor itodor commented Mar 30, 2025

Fixes an issue where calling save() or saveQuietly() inside a model's created event throws:

InvalidArgumentException: Cannot update "id" field

Related Issue

Closes #3326

Background

After inserting the model, Laravel's internal state still sees _id as dirty — so save() tries to update it again, which MongoDB doesn't allow.

Fix

The explicit check for dirty _id has been removed, and the behavior now relies on MongoDB itself to throw an error if _id is mutated.

Checklist

  • Tests added

@itodor itodor requested a review from a team as a code owner March 30, 2025 17:39
@itodor itodor requested a review from jmikola March 30, 2025 17:39
Copy link
Member

@GromNaN GromNaN left a comment

Choose a reason for hiding this comment

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

As a simpler fix, we can remove the exception in the Query\Builder::update method, and let the MongoDB server throw an exception itself when someone tries to update the _id field.

// Since "id" is an alias for "_id", we prevent updating it
foreach ($values as $fields) {
if (array_key_exists('id', $fields)) {
throw new InvalidArgumentException('Cannot update "id" field.');
}
}

@GromNaN GromNaN changed the base branch from 5.x to 5.2 March 31, 2025 17:37
@GromNaN GromNaN force-pushed the fix/created-event-dirty-save branch from d3778f0 to addd93f Compare March 31, 2025 17:40
Copy link
Member

@GromNaN GromNaN left a comment

Choose a reason for hiding this comment

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

SGTM. Thanks for the very descriptive issue report, the test case and the fix.

@GromNaN GromNaN changed the title Fix: prevent _id from being marked dirty in created() event Removed manual dirty _id check when updating a model Apr 1, 2025
@GromNaN GromNaN changed the title Removed manual dirty _id check when updating a model Remove manual dirty _id check when updating a model Apr 1, 2025
@GromNaN GromNaN merged commit 5832007 into mongodb:5.2 Apr 1, 2025
70 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

saveQuietly() fails inside created event listener
2 participants