From addd93fe8e20d4f7175212254bc293d8e4698d81 Mon Sep 17 00:00:00 2001 From: Ivan Todorovic Date: Sun, 30 Mar 2025 19:32:12 +0200 Subject: [PATCH] fix(model): Removed manual dirty _id check --- src/Query/Builder.php | 7 ------- tests/Ticket/GH3326Test.php | 42 +++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+), 7 deletions(-) create mode 100644 tests/Ticket/GH3326Test.php diff --git a/src/Query/Builder.php b/src/Query/Builder.php index f613b6467..5c873380b 100644 --- a/src/Query/Builder.php +++ b/src/Query/Builder.php @@ -783,13 +783,6 @@ public function update(array $values, array $options = []) unset($values[$key]); } - // 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.'); - } - } - return $this->performUpdate($values, $options); } diff --git a/tests/Ticket/GH3326Test.php b/tests/Ticket/GH3326Test.php new file mode 100644 index 000000000..d3f339acc --- /dev/null +++ b/tests/Ticket/GH3326Test.php @@ -0,0 +1,42 @@ +foo = 'bar'; + $model->save(); + + $fresh = $model->fresh(); + + $this->assertEquals('bar', $fresh->foo); + $this->assertEquals('written-in-created', $fresh->extra); + } +} + +class GH3326Model extends Model +{ + protected $connection = 'mongodb'; + protected $collection = 'test_gh3326'; + protected $guarded = []; + + protected static function booted(): void + { + static::created(function ($model) { + $model->extra = 'written-in-created'; + $model->saveQuietly(); + }); + } +}