Skip to content

Releases: soynatan/django-easy-audit

v1.2.1

02 Feb 15:18
Compare
Choose a tag to compare

Same as v1.2.1rc1

v1.2.1rc1

22 Jan 17:14
Compare
Choose a tag to compare
v1.2.1rc1 Pre-release
Pre-release

Fixes #119 , all clients use the same code path, but now split DB users will have the bug fixed, so long as they adjust the db setting that the project exposes.

v1.2

22 Jan 17:06
Compare
Choose a tag to compare

django 3.0 support same as v1.2rc1

#120 is what this release brings.

v1.2rc1

26 Dec 21:24
Compare
Choose a tag to compare
v1.2rc1 Pre-release
Pre-release

#121 django 3.0 initial support (and drops py27 and django 1.11). django 1.11 on py3 may still work, and py2 may work, but we are moving forward (which we basically did with the support of django 2.0, but the code changes weren't hard).

v1.1.2rc2

21 Dec 00:42
Compare
Choose a tag to compare
v1.1.2rc2 Pre-release
Pre-release

Includes a further commit which is a bugfix for admin field logic when using a split easyaudit database.

Fix for #122 ; thank you to @xiaobosheng for helping review & test.

v1.1.2rc1

12 Dec 00:23
Compare
Choose a tag to compare
v1.1.2rc1 Pre-release
Pre-release

This is a release for support for #109

Once we see a little bit of traction with its use we will release v1.1.2 proper.

@steverecio Thanks for adding in support for #109

v1.1.1 (bugfix)

24 Oct 01:09
Compare
Choose a tag to compare

This fixes a SQL (mostly MS SQL) issue from a previous PR. It is a migration fix to get projects through the issue.
It is the same as 1.1.1rc1.

v1.1.1rc1 (bugfix)

02 Oct 00:48
Compare
Choose a tag to compare
v1.1.1rc1 (bugfix) Pre-release
Pre-release

This is a bug fix for code released on RequestEvent which broke for MS SQL. The url is now a charfield with an index again.

v1.1 fixture ignore, object_repr as TextField

21 Feb 02:02
99de05a
Compare
Choose a tag to compare

New release comes with a mix of minor but important adjustments.

  • loaddata fixtures (those coming into the signal with raw=True) will now be ignored.

  • And CRUDEvent.object_repr field is now a TextField so it can be generally arbitrary long length.

Special thanks to the following people:

v1.0: Request logging

22 Oct 16:38
Compare
Choose a tag to compare

There's finally a new release after a while. These are the changes:

  • Added support for logging URL requests. There is a new RequestEvent model which stores this information and can be queried in the Django admin dashboard. (It can be turned off.)

  • Added support for logging changes on many to many relations. More info in #21.

  • Improved performance by removing unnecessary queries, adding indexes, and fixing bugs.

  • Added a suite of tests.

  • Added new settings to control the behaviour of the app.

  • We now have a GitHub hosted wiki.

As said before, this release adds a number of settings that will allow you to control the behaviour of each feature of the app, so I strongly recommend that you take a look at the settings documentation.

To install Django Easy Audit for the first time, read the instructions in our wiki.

If you have already installed Django Easy Audit with pip, you can update it by running pip install django-easy-audit -U. Make sure to run migrations in your project after updating, with python manage.py migrate easyaudit.

Thanks to everyone who collaborated with this release by writing code, reporting bugs, or suggesting features. Also, thanks to everyone who took a second to send a nice email, tweet or comment.

@soynatan