| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| 1.1.6 source code.tar.gz | 2026-03-05 | 808.3 kB | |
| 1.1.6 source code.zip | 2026-03-05 | 1.0 MB | |
| README.md | 2026-03-05 | 1.0 kB | |
| Totals: 3 Items | 1.8 MB | 0 | |
Fixed
- Migration generator now correctly orders
AddIndex,RemoveIndex,AddConstraint,RemoveConstraintoperations when adding/removing a field to a model that is used in an index or constraint. (#2118) CreateModelmigrations now includeDEFAULTclauses for fields withdb_defaultset. Previously onlyAddFieldemitted defaults correctly. (#2129)AlterFieldmigrations now detectmax_lengthchanges (e.g.VARCHAR(32)→VARCHAR(64)) and emit the correctALTERstatements across all backends. (#2128)backward_relations=FalseinPydanticMetanow only excludes unannotated backward relations — fields explicitly annotated withReverseRelationin the model class body are preserved. (#2125)- MySQL session
time_zonenow uses the configured timezone instead of always defaulting to+0:00whenuse_tz=True. (#2127) - Plus sign (
+) in database URL passwords is no longer incorrectly decoded as a space. (#2123)