Changes between Initial Version and Version 1 of Ticket #31324, comment 4
- Timestamp:
- Mar 1, 2020, 10:34:14 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #31324, comment 4
initial v1 1 1 I think that could be a 2.1 regression caused by fixing #25718 (c979c0a2b8abca325a549961fd7a17bdc36bcb1f). 2 2 3 It looks like it could qualify for a data loss bug because `Model.objects.filter(json_field=None).update(field=value)` would be a noop starting for `Model.json_field = None` instances.3 It looks like it could qualify for a data loss bug because `Model.objects.filter(json_field=None).update(field=value)` would be a noop for `Model.json_field = None` instances since this commit landed while it wasn't the case before.