2010-01-07 04:48:44 +00:00
|
|
|
CHANGES
|
|
|
|
|
=======
|
|
|
|
|
|
2011-02-18 22:20:11 +00:00
|
|
|
tip (unreleased)
|
|
|
|
|
----------------
|
|
|
|
|
|
2012-01-03 22:40:17 +00:00
|
|
|
- Dropped support for Python 2.5 and Django 1.1. Both are no longer supported
|
|
|
|
|
even for security fixes, and should not be used.
|
|
|
|
|
|
2011-12-06 16:39:57 +00:00
|
|
|
- Added ``PassThroughManager.for_queryset_class()``, which fixes use of
|
2011-12-06 00:09:18 +00:00
|
|
|
``PassThroughManager`` with related fields. Thanks Ryan Kaskel for report and
|
|
|
|
|
fix.
|
|
|
|
|
|
2011-10-26 17:12:14 +00:00
|
|
|
- Added ``InheritanceManager.get_subclass()``. Thanks smacker.
|
|
|
|
|
|
2011-06-16 21:22:56 +00:00
|
|
|
1.0.0 (2011.06.16)
|
|
|
|
|
------------------
|
|
|
|
|
|
2011-04-29 01:59:52 +00:00
|
|
|
- Fixed using SplitField on an abstract base model.
|
|
|
|
|
|
2011-06-16 21:22:56 +00:00
|
|
|
- Fixed issue #8, adding ``use_for_related_fields = True`` to
|
|
|
|
|
``InheritanceManager``.
|
|
|
|
|
|
|
|
|
|
- Added ``PassThroughManager``. Thanks Paul McLanahan.
|
|
|
|
|
|
2011-04-16 19:51:14 +00:00
|
|
|
- Added pending-deprecation warnings for ``InheritanceCastModel``,
|
|
|
|
|
``manager_from``, and Django 1.1 support. Removed documentation for the
|
|
|
|
|
deprecated utilities. Bumped ``ChoiceEnum`` from pending-deprecation to
|
|
|
|
|
deprecation.
|
|
|
|
|
|
2011-03-29 16:47:25 +00:00
|
|
|
- Fixed issue #6, bug with InheritanceManager and descriptor fields (e.g.
|
|
|
|
|
FileField). Thanks zyegfryed for the fix and sayane for tests.
|
|
|
|
|
|
2011-06-16 21:22:56 +00:00
|
|
|
0.6.0 (2011.02.18)
|
|
|
|
|
------------------
|
|
|
|
|
|
2011-02-18 21:47:52 +00:00
|
|
|
- updated SplitField to define get_prep_value rather than get_db_prep_value.
|
|
|
|
|
This avoids deprecation warnings on Django trunk/1.3, but makes SplitField
|
|
|
|
|
incompatible with Django versions prior to 1.2.
|
2010-01-07 04:48:44 +00:00
|
|
|
|
2010-11-23 17:48:23 +00:00
|
|
|
- added InheritanceManager, a better approach to selecting subclass instances
|
|
|
|
|
for Django 1.2+. Thanks Jeff Elmore.
|
|
|
|
|
|
2010-10-05 12:59:25 +00:00
|
|
|
- added InheritanceCastManager and InheritanceCastQuerySet, to allow bulk
|
|
|
|
|
casting of a queryset to child types. Thanks Gregor Müllegger.
|
|
|
|
|
|
2010-09-24 14:33:09 +00:00
|
|
|
0.5.0 (2010.09.24)
|
|
|
|
|
------------------
|
|
|
|
|
|
2010-07-31 02:09:46 +00:00
|
|
|
- added manager_from (thanks George Sakkis)
|
2010-04-16 04:37:12 +00:00
|
|
|
- added StatusField, MonitorField, TimeFramedModel, and StatusModel
|
|
|
|
|
(thanks Jannis Leidel)
|
|
|
|
|
- deprecated ChoiceEnum and replaced with Choices
|
|
|
|
|
|
2010-03-16 21:55:56 +00:00
|
|
|
0.4.0 (2010.03.16)
|
|
|
|
|
------------------
|
|
|
|
|
|
2010-01-15 22:26:59 +00:00
|
|
|
- added SplitField
|
2010-01-14 00:25:16 +00:00
|
|
|
- added ChoiceEnum
|
2010-01-07 04:48:44 +00:00
|
|
|
- added South support for custom model fields
|
|
|
|
|
|
|
|
|
|
0.3.0
|
|
|
|
|
-----
|
|
|
|
|
|
|
|
|
|
* Added ``QueryManager``
|
|
|
|
|
|