Django Auditlog Versions Save

A Django app that keeps a log of changes made to an object.

v0.4.1

7 years ago

Improvements

  • Improved Django Admin pages (thanks, @robguttman)

Fixes

  • Fixed multithreading issue where the wrong user was written to the log (thanks, @Isszul and @eugene-daragan-codex)

v0.4.0

7 years ago

Breaking changes

  • Dropped support for Django 1.7
  • Updated dependencies - please check whether your project works with these higher versions

New features

  • Management command for deleting all log entries
  • Added admin interface (thanks, @crackjack)

Improvements

  • Compatibility with Django 1.10
  • Updated dependencies

Fixes

  • Solved migration error for MySQL users

v0.3.3

8 years ago

Fixes

  • unregister method (thanks, @kbussell)
  • LogEntry.objects.get_for_objects works properly on PostgreSQL (thanks, @justinlittman)
  • Added index in 0.3.2 no longer breaks for users with MySQL databases

Important notes

  • The object_pk field is now limited to 255 chars

v0.3.2

8 years ago

New functionality

  • Compatibility with Django 1.9 (thanks to @grendel513 and others)
  • Tests passing with Django 1.9a1

Improvements

  • Enhanced performance for non-integer primary key lookups (thanks to @7wonders)

v0.3.1

8 years ago

Fixes

  • Auditlog data is now correctly stored in the thread. Thanks to @7wonders for noticing!

v0.3.0

8 years ago

Breaking changes

Support for out-of-date Django versions is dropped as of this release. At minimum Django version 1.7 is required. This also means that South is no longer supported.

New functionality

  • Workaround for many-to-many support
  • Additional data
  • Support for both Python 2.7 and 3.4 (tested)

Improvements

  • Better diffs
  • Remote address is logged through middleware
  • Better documentation
  • Compatibility with django-polymorphic

v0.2.1

9 years ago

New functionality:

  • South compatibility for AuditlogHistoryField

v0.2.0

9 years ago

Although this release contains mostly bugfixes, the improvements were significant enough to justify a higher version number. Also, less changes to the API are expected.

Improvements:

  • Signal disconnection fixed
  • Model diffs use unicode strings instead of regular strings
  • Tests on middleware

v0.1.1

10 years ago

New functionality:

  • Utility methods for using log entry data

Improvements:

  • Only save a new log entry if there are actual changes
  • Better way of loading the user model in the middleware

v0.1.0

10 years ago

First beta release of Auditlog.