docs: update changelog

fix_request_path_info
Diederik van der Boor 2017-09-30 18:44:25 +02:00
parent c795c18575
commit 7d506ed6af
1 changed files with 4 additions and 0 deletions

View File

@ -4,13 +4,17 @@ Changelog
Changes in git Changes in git
-------------- --------------
* **BACKWARDS INCOMPATIBILITY:** Dropped Django 1.8 support.
* Added ``PolymorphicTypeUndefined`` exception for incomplete imported models. * Added ``PolymorphicTypeUndefined`` exception for incomplete imported models.
When a data migration or import creates an polymorphic model, When a data migration or import creates an polymorphic model,
the ``polymorphic_ctype_id`` field should be filled in manually too. the ``polymorphic_ctype_id`` field should be filled in manually too.
The ``polymorphic.utils.reset_polymorphic_ctype`` function can be used for that. The ``polymorphic.utils.reset_polymorphic_ctype`` function can be used for that.
* Added ``PolymorphicTypeInvalid`` exception when database was incorrectly imported. * Added ``PolymorphicTypeInvalid`` exception when database was incorrectly imported.
* Added ``polymorphic.utils.get_base_polymorphic_model()`` to find the base model for types.
* Using ``base_model`` on the polymorphic admins is no longer required, as this can be autodetected.
* Fixed detection and handling of ``declared_fieldsets`` in the admin. * Fixed detection and handling of ``declared_fieldsets`` in the admin.
* Fixed manager errors for swappable models. * Fixed manager errors for swappable models.
* Fixed deleteText of ``|as_script_options`` template filter.
* Improved ``polymorphic.utils.reset_polymorphic_ctype()`` to accept models in random ordering. * Improved ``polymorphic.utils.reset_polymorphic_ctype()`` to accept models in random ordering.