Changelog for
python3-django-reversion-3.0.7-lp152.1.2.noarch.rpm :
* Thu Feb 20 2020 Tomáš Chvátal
- Update to 3.0.7:
* Packaging improvements (AATTmichael-k).
* Removing deprecated usages of force_text (AATTTenzer).
* Documentation fixes (AATTchicheng).
* Removing deprecated usages of ugettext_lazy (AATTFrançois GUÉRIN).
* Slovenian translation (AATTBor Plestenjak).
* Fri Dec 06 2019 Tomáš Chvátal - Fix the requires on the Django as it really works with > 1.11 and does not support python 2 anymore
* Thu Dec 05 2019 Martin Herkt <9+suseAATTcirno.systems>- Update to 3.0.5:
* Improved performance of `get_deleted` for large datasets.
* Django 3.0 compatibility.
* Drops Django <= 1.11 compatibility.
* Fixed errors in manageement commands when `django.contrib.admin` is not in `INSTALLED_APPS`.
* Wed May 22 2019 Tomáš Chvátal - Update to 3.0.4:
* Various dependency fixes- Upstreamed 0000-Remove-django.contrib.admin-dependency.patch
* Sat May 04 2019 Martin Herkt <9+suseAATTcirno.systems>- Add 0000-Remove-django.contrib.admin-dependency.patch https://github.com/etianen/django-reversion/issues/744
* Wed Apr 24 2019 Tomáš Chvátal - Do not mess around with doc/lang subpackages, the docs are all online and the lang split actually breaks as the lang part is hard-required for the python to work in most cases
* Mon Mar 11 2019 Tomáš Chvátal - Fix typo python2->python3
* Thu Jan 24 2019 Martin Herkt <9+suseAATTcirno.systems>- Update to version 3.0.3:
* Improved performance of many reversion database queries using `EXISTS` subquery.
* Added support for Django 2.1 `view` permission.
* Tue Nov 06 2018 Martin Herkt <9+suseAATTcirno.systems>- Update to version 3.0.2:
* Removed squashed migrations, as they subtly messed up the Django migrations framework
* Mon Oct 29 2018 Martin Herkt <9+suseAATTcirno.systems>- Update to version 3.0.1:
* Added squashed migrations back in to allow older installations to upgrade
* Fixed TypeError exception when accessing m2m_data attribute from a field that points to Django’s User model
* Fri Jul 20 2018 9+suseAATTcirno.systems- Update to version 3.0.0:
* Breaking: \'Revision.commment\' now contains the raw JSON change message generated by django admin, rather than a string. Accesing \'Revision.comment\' directly is no longer recommended. Instead, use \'Revision.get_comment()\'.
* Breaking: django-reversion now uses \'_base_manager\' to calculate deleted models, not \'_default_manager\'. This change will only affect models that perform default filtering in their \'_default_manager\'
* Added \'request_creates_revision\' hook to \'RevisionMiddleware\' and \'views.create_revision\'.
* Added \'revision_request_creates_revision\' hook to \'views.RevisionMixinView\'.
* Added \'--meta\' flag to \'./manage.py createrevisions\'
* Fixed bug when reverting deleted nested inlines
* Added tests for django 2.1
* Mon May 28 2018 9+suseAATTcirno.systems- Rewrite spec file to current conventions
* Build documentation
* lang packages
* Not running tests as these require configuring MySQL and PostgreSQL- Update to version 2.0.13:
* Years worth of changes, including a breaking major version bump. See CHANGELOG.rst in the package documentation path for details.
* Wed Apr 22 2015 mciharAATTsuse.cz- Update to version 1.8.6: - Support for MySQL utf8mb4 (AATTalexhayes). - Fixing some Django deprecation warnings (Drew Hubl, AATTkhakulov, AATTadonm). - Versions passed through by reversion.post_revision_commit now contain a primary key (AATTjoelarson). - Added support for proxy models (AATTAgDude, AATTbourivouh). - Allowing registration of models with django-reversion using custom signals (AATTErwinJunge). - Fixing some Django deprecation warnings (AATTskipp, AATTnarrowfail). - Fixing including legacy south migrations in PyPi package (AATTGeyseR). - Provisional Django 1.7 support (AATTetianen). - Multi-db and multi-manager support to management commands (AATTmarekmalek). - Added index on reversion.date_created (AATTrkojedzinszky). - Minor bugfixes and documentation improvements (AATTcoagulant). - reversion.register() can now be used as a class decorator (AATTaquavitae). - Danish translation (AATTVandborg). - Improvements to Travis CI integration (AATTthedrow). - Simplified Chinese translation (AATTQuantumGhost). - Minor bugfixes and documentation improvements (AATTmarekmalek, AATTdhoffman34, AATTmauricioabreu, AATTmark0978). - Slovak translation (AATTjbub). - Deleting a user no longer deletes the associated revisions (AATTdaaray). - Improving handling of inline models in admin integration (AATTblueyed). - Improving error messages for proxy model registration (AATTblueyed). - Improvements to using migrations with custom user model (AATTaivins). - Removing sys.exit() in deleterevisions management command, allowing it to be used internally by Django projects (AATTtongwang). - Fixing some backwards-compatible admin deprecation warnings (Thomas Schreiber). - Fixing tests if RevisionMiddleware is used as a decorator in the parent project (AATTjmoldow). - Derived models, such as those generated by deferred querysets, now work.