``` MongoDB\Driver\Exception\BulkWriteException: Updating the path 'my_collection.updated_at' would create a conflict at 'my_collection' ``` This happens in my unit tests after i upgraded to `3.5`. This can be simply reproduced: ```php $model = MyCollectionModel::first(); $model->update($model->toArray()); ```