Skip to content

Latest commit

 

History

History
176 lines (111 loc) · 4 KB

CHANGELOG.rst

File metadata and controls

176 lines (111 loc) · 4 KB

django-reversion changelog

1.7.1 - 26/06/2013

  • Bugfixes when using a custom User model.
  • Minor bugfixes.

1.7 - 27/02/2013

  • Django 1.5 compatibility.
  • Experimantal Python 3.3 compatibility!

1.6.6 - 12/02/2013

  • Removing version checking code. It's more trouble than it's worth.
  • Dutch translation improvements.

1.6.5 - 12/12/2012

  • Support for Django 1.4.3.

1.6.4 - 28/10/2012

  • Support for Django 1.4.2.

1.6.3 - 05/09/2012

  • Fixing issue with reverting models with unique constraints in the admin.
  • Enforcing permissions in admin views.

1.6.2 - 31/07/2012

  • Batch saving option in createinitialrevisions.
  • Suppressing warning for Django 1.4.1.

1.6.1 - 20/06/2012

  • Swedish translation.
  • Fixing formating for PyPi readme and license.
  • Minor features and bugfixes.

1.6 - 27/03/2012

  • Django 1.4 compatibility.

1.5.2 - 27/03/2012

  • Multi-db support.
  • Brazillian Portuguese translation.
  • New manage_manually revision mode.

1.5.1 - 20/10/2011

  • Polish translation.
  • Minor bug fixes.

1.5 - 04/09/2011

  • Added in simplified low level API methods, and deprecated old low level API methods.
  • Added in support for multiple revision managers running in the same project.
  • Added in significant speedups for models with integer primary keys.
  • Added in cleanup improvements to patch generation helpers.
  • Minor bug fixes.

1.4 - 27/04/2011

  • Added in a version flag for add / change / delete annotations.
  • Added experimental deleterevisions management command.
  • Added a --comment option to createinitialrevisions management command.
  • Django 1.3 compatibility.

1.3.3 - 05/03/2011

  • Improved resilience of revert() to database integrity errors.
  • Added in Czech translation.
  • Added ability to only save revisions if there is no change.
  • Fixed long-running bug with file fields in inline related admin models.
  • Easier debugging for createinitialrevisions command.
  • Improved compatibility with Oracle database backend.
  • Fixed error in MySQL tests.
  • Greatly improved performance of get_deleted() Version manager method.
  • Fixed an edge-case UnicodeError.

1.3.2 - 22/10/2010

  • Added Polish translation.
  • Added French translation.
  • Improved resilience of unit tests.
  • Improved scaleability of Version.object.get_deleted() method.
  • Improved scaleability of createinitialrevisions command.
  • Removed post_syncdb hook.
  • Added new createinitialrevisions management command.
  • Fixed DoesNotExistError with OneToOneFields and follow.

1.3.1 - 31/05/2010

This release is compatible with Django 1.2.1.

  • Django 1.2.1 admin compatibility.

1.2.1 - 03/03/2010

This release is compatible with Django 1.1.1.

  • The django syncdb command will now automatically populate any version-controlled models with an initial revision. This ensures existing projects that integrate Reversion won't get caught out.
  • Reversion now works with SQLite for tables over 999 rows.
  • Added Hebrew translation.

1.2 - 12/10/2009

This release is compatible with Django 1.1.

  • Django 1.1 admin compatibility.

1.1.2 - 23/07/2009

This release is compatible with Django 1.0.4.

  • Doc tests.
  • German translation update.
  • Better compatibility with the Django trunk.
  • The ability to specify a serialization format used by the ReversionAdmin class when models are auto-registered.
  • Reduction in the number of database queries performed by the Reversion
  • admin interface.

1.1.1 - 25/03/2010

This release is compatible with Django 1.0.2.

  • German and Italian translations.
  • Helper functions for generating diffs.
  • Improved handling of one-to-many relationships in the admin.