2021-10-07 17:09:00 by Nia Alarie | Files touched by this commit (1033) |
Log message:
www: Remove SHA1 hashes for distfiles
|
2021-02-05 08:56:47 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-django-reversion: updated to 3.0.9
3.0.9:
- Significant speedup to ``Version.objects.get_deleted(...)`` database query for \
PostgreSQL.
- Testing against Django 3.1.
- Django 4.0 compatibility improvements.
|
2020-10-02 21:23:35 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-django-reversion: updated to 3.0.8
3.0.8:
- Added ``use_natural_foreign_keys`` option to ``reversion.register()``.
- Documentation improvments and minor fixes.
- Dropped support for Django 1.11 LTS.
|
2020-06-03 17:27:45 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-django-reversion: updated to 3.0.7
3.0.7:
- Removing deprecated usages of `ugettest_lazy`
- Slovenian translation
3.0.6:
- Packaging improvements
- Removing deprecated usages of `force_text`
- Documentation fixes
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`
3.0.4:
- Remove `django.contrib.admin` dependency from django-reversion.
- README refactor
- Testing against Django 2.2
3.0.3:
- Improved performance of many reversion database queries using `EXISTS` subquery
- Added support for Django 2.1 `view` permission
3.0.2:
- Removed squashed migrations, as they subtly messed up the Django migrations \
framework
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
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
|
2020-05-31 22:45:17 by Joerg Sonnenberger | Files touched by this commit (1) |
Log message:
Doesn't support django3.
|
2020-04-16 00:37:54 by Joerg Sonnenberger | Files touched by this commit (1) |
Log message:
Needs py-six
|
2018-02-02 09:08:10 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-django-reversion: updated to 2.0.13
2.0.13:
Improve performance of get_deleted() for Oracle
Minor tweaks
|
2017-12-10 09:56:29 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-django-reversion: updated to 2.0.12
2.0.12:
Fixed MySQL error in get_deleted()
2.0.11:
Dramatically improved performance of get_deleted() over large datasets
Ukranian translation
Bugfixes
|
2017-08-21 13:39:46 by Adam Ciarcinski | Files touched by this commit (2) |
Log message:
2.0.10:
- Bugfix: Handling case of `None` user in request (@pawelad).
- Documentation corrections (@danielquinn).
- Bugfix: "invalid literal for int() with base 10: 'None'" for \
unversioned admin inline relations.
If, after updating, you still experience this issue, run the following in a \
Django shell:
.. code::
from reversion.models import Version
Version.objects.filter(object_id="None").delete()
**Important:** Ensure that none of your versioned models contain a string \
primary key where `"None"` is a valid value
before running this snippet!
|
2017-06-20 09:28:39 by Adam Ciarcinski | Files touched by this commit (2) |
Log message:
2.0.9:
Bugfix: Deleted inline admin instances no longer added to revision.
Bugfix: M2M relations correctly added to revision
Improved performance of 0003 migration
Documentation improvements
Django 1.11 support
Added atomic=True parameter to create_revision
|