Changes between Initial Version and Version 1 of Ticket #36343, comment 1
- Timestamp:
- Apr 21, 2025, 9:40:09 AM (5 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36343, comment 1
initial v1 1 1 Thank you for your report, it is effectively intended. 2 2 3 Prior to Django 5.2 there was a bug that prevented the appropriate tracking of `through_fields` in migrations #36061 (b13b8684a04d0bc1081104c5973c62c27dc673b0) which could cause crashes or data corruptions if the involved models were used in data migrations (e.g. through `RunPython`). 3 Prior to Django 5.2 there was a bug that prevented the appropriate tracking of `through_fields` in migrations #36061 (b13b8684a04d0bc1081104c5973c62c27dc673b0) which could cause crashes or data corruptions if the involved models were used in data migrations (e.g. through `RunPython`). You'll notice that the migration defining `cads` will be lacking the `through_fields` you declared in your models. 4 4 5 5 We don't document bug fixes in release notes hence why you couldn't find it.