You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.rst
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,12 @@ Changelog
13
13
14
14
Fixed
15
15
^^^^^
16
-
- Migration generator now correctly orders ``AddIndex``, ``RemoveIndex``, ``AddConstraint``, ``RemoveConstraint`` operatins when adding/removing a field to a model and is used in an index or constraint.
16
+
- Migration generator now correctly orders ``AddIndex``, ``RemoveIndex``, ``AddConstraint``, ``RemoveConstraint`` operations when adding/removing a field to a model that is used in an index or constraint. (#2118)
17
+
- ``CreateModel`` migrations now include ``DEFAULT`` clauses for fields with ``db_default`` set. Previously only ``AddField`` emitted defaults correctly. (#2129)
18
+
- ``AlterField`` migrations now detect ``max_length`` changes (e.g. ``VARCHAR(32)`` → ``VARCHAR(64)``) and emit the correct ``ALTER`` statements across all backends. (#2128)
19
+
- ``backward_relations=False`` in ``PydanticMeta`` now only excludes unannotated backward relations — fields explicitly annotated with ``ReverseRelation`` in the model class body are preserved. (#2125)
20
+
- MySQL session ``time_zone`` now uses the configured timezone instead of always defaulting to ``+0:00`` when ``use_tz=True``. (#2127)
21
+
- Plus sign (``+``) in database URL passwords is no longer incorrectly decoded as a space. (#2123)
0 commit comments