Releases: wagtail/django-modelcluster
Releases · wagtail/django-modelcluster
3.0
- Added support for many-to-many relations (Thejaswi Puthraya, Matt Westcott)
- Added compatibility with django-taggit 0.20 and dropped support for earlier versions
- Deprecated the Model._meta.child_relations property (get_all_child_relations should be used instead)
- Implemented the
set()
method on related managers (introduced in Django 1.9)
2.0
- Removed Django 1.7 and Python 3.2 support
- Added system check to disallow related_name='+' on ParentalKey
- Added support for TAGGIT_CASE_INSENSITIVE on ClusterTaggableManager
- Field values for serialization are now fetched via pre_save (which, in particular, ensures that file fields are committed to storage)
- Fix: System checks now correctly report a model name that cannot be resolved to a model
- Fix: prefetch_related on a ClusterTaggableManager no longer fails (but doesn't prefetch either)
- Fix: Adding invalid types as tags now correctly reports a ValueError
1.1
1.1b1
1.0
0.6.2
0.6.1
0.6
0.5
0.4
- Django 1.7 compatibility
- Fix: Datetimes are converted to UTC on serialisation and to local time on deserialisation, to match Django's behaviour when accessing the database
- Fix: ParentalKey relations to a model's superclass are now picked up correctly by that model
- Fix: Custom Media classes on ClusterForm now behave correctly