2014-08-24 09:28:18 by Adam Ciarcinski | Files touched by this commit (3) |
Log message:
Changes 1.8.2:
- reversion.register() can now be used as a class decorator
- Danish translation
- Improvements to Travis CI integration
- Simplified Chinese translation
- Minor bugfixes and documentation improvement
|
2014-06-09 12:15:44 by Adam Ciarcinski | Files touched by this commit (3) |
Log message:
Changes 1.8.1:
- Slovak translation (@jbub).
- Deleting a user no longer deletes the associated revisions (@daaray).
- Improving handling of inline models in admin integration (@blueyed).
- Improving error messages for proxy model registration (@blueyed).
- Improvements to using migrations with custom user model (@aivins).
- Removing sys.exit() in deleterevisions management command, allowing it to be \
used internally by Django projects (@tongwang).
- Fixing some backwards-compatible admin deprecation warnings (Thomas Schreiber).
- Fixing tests if RevisionMiddleware is used as a decorator in the parent \
project (@jmoldow).
- Derived models, such as those generated by deferred querysets, now work.
- Removed deprecated low-level API methods.
|
2014-02-09 09:20:00 by Adam Ciarcinski | Files touched by this commit (3) |
Log message:
Changes 1.8.0:
- Django 1.6 compatibility
- Using bulk_create to speed up revision creation.
- Including docs in source distribution
- Spanish translation
- Fixing edge-case bugs in revision middleware
|
2013-08-09 09:35:03 by Adam Ciarcinski | Files touched by this commit (2) |
Log message:
Changes 1.7.1:
* Bugfixes when using a custom User model.
* Minor bugfixes.
|
2013-03-13 08:25:42 by Adam Ciarcinski | Files touched by this commit (3) |
Log message:
Changes 1.7:
* Django 1.5 compatibility.
* Experimantal Python 3.3 compatibility!
|
2012-11-25 09:46:23 by Adam Ciarcinski | Files touched by this commit (2) |
Log message:
Changes 1.6.4:
Bug fixes.
|
2012-10-28 07:31:10 by Aleksej Saushev | Files touched by this commit (600) |
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
|
2012-08-26 15:32:18 by Adam Ciarcinski | Files touched by this commit (4) |
Log message:
django-reversion is an extension to the Django web framework that provides
comprehensive version control facilities.
Features
* Roll back to any point in a model's history - an unlimited undo facility!
* Recover deleted models - never lose data again!
* Admin integration for maximum usability.
* Group related changes into revisions that can be rolled back in a single
transaction.
* Automatically save a new version whenever your model changes using Django's
flexible signalling framework.
* Automate your revision management with easy-to-use middleware.
django-reversion can be easily added to your existing Django project with
an absolute minimum of code changes.
|