WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Releases: jazzband/django-auditlog

v3.4.0

04 Dec 15:20
v3.4.0
6612503

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3.3.0...v3.4.0

v3.3.0

02 Oct 17:07
v3.3.0
d87b929

Choose a tag to compare

What's Changed

  • Use canonical timezone name for Buenos Aires by @EdwardBetts in #736
  • added fixes for changes_display_dict when AUDITLOG_STORE_JSON_CHANGES is True by @The-Alchemist in #738
  • Add audit log history view to Django Admin by @2ykwang in #743
  • Extend CI and local test coverage to MySQL and SQLite by @2ykwang in #744
  • Bump actions/checkout from 4 to 5 in the github-actions group by @dependabot[bot] in #752
  • [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in #753
  • Bump actions/setup-python from 5 to 6 in the github-actions group by @dependabot[bot] in #754
  • Fix Expression test compatibility for Django 6.0+ by @2ykwang in #759
  • Add I18N Support by @2ykwang in #762
  • Fix None type mismatch in change detection by @2ykwang in #763
  • Prepare release 3.3.0 by @2ykwang in #756

New Contributors

Full Changelog: v3.2.1...v3.3.0

v3.2.1

15 Aug 11:29
ca5f0ae

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3.2.0...v3.2.1

v3.2.0

26 Jun 11:31
6184ec8

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3.1.2...v3.2.0

v3.1.2

26 Apr 11:05
df185e3

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3.0.0...v3.1.0

v3.0.0

12 Apr 09:55
ceae2f9

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.2.1...v3.0.0

3.0.0-beta.4

04 Jan 08:51
1ce39c0

Choose a tag to compare

3.0.0-beta.4 Pre-release
Pre-release

3.0.0-beta.4 (2024-01-02)

Improvements

  • feat: If any receiver returns False, no logging will be made. This can be useful if logging should be conditionally enabled / disabled (#590)
  • Django: Confirm Django 5.0 support (#598)
  • Django: Drop Django 4.1 support (#598)

3.0.0-beta.3

03 Jan 14:41
5072f5d

Choose a tag to compare

3.0.0-beta.3 Pre-release
Pre-release

3.0.0-beta.3 (2023-11-13)

Improvements

  • Python: Confirm Python 3.12 support (#572)
  • feat: thread.local replaced with ContextVar to improve context managers in Django 4.2+

Fixes

  • fix: Handle ObjectDoesNotExist in evaluation of object_repr (#592)

3.0.0-beta.2

03 Jan 14:40
e699e7d

Choose a tag to compare

3.0.0-beta.2 Pre-release
Pre-release

3.0.0-beta.2 (2023-10-05)

Breaking Changes

  • feat: stop deleting old log entries when a model with the same pk is created (i.e. the pk value is reused) (#559)

Fixes

  • fix: only fire the post_log signal when the log is created or when there is an error in the process (#561)
  • fix: don't set the correlation_id if the AUDITLOG_CID_GETTER is None (#565)

3.0.0-beta.1

29 Aug 12:28
9f1a09b

Choose a tag to compare

3.0.0-beta.1 Pre-release
Pre-release

3.0.0-beta.1

Breaking Changes

  • feat: Change LogEntry.change field type to JSONField rather than TextField. This change include a migration that may take time to run depending on the number of records on your LogEntry table (#407)(#495)
  • Python: Drop support for Python 3.7 (#546)
  • feat: Set AuditlogHistoryField.delete_related to False by default. This is different from the default configuration of Django's GenericRelation, but we should not erase the audit log of objects on deletion by default. (#557)

Improvements

  • Changes the view when it has changes in fields JSONField. The JSONField.encoder is assigned to json.dumps. (#489)
  • feat: Added support for Correlation ID. (#481)
  • feat: Added pre-log and post-log signals. (#483)
  • feat: Make timestamp in LogEntry overwritable. (#476)
  • feat: Support excluding field names globally when AUDITLOG_INCLUDE_ALL_MODELS is enabled. (#498)
  • feat: Improved auto model registration to include auto-created models and exclude non-managed models, and automatically register m2m fields for models. (#550)

Fixes

  • fix: Audit changes to FK fields when saved using *_id naming. (#525)
  • fix: Fix a bug in audit log admin page when USE_TZ=False. (#511)
  • fix: Make sure LogEntry.changes_dict() returns an empty dict instead of None when json.loads() returns None. (#472)
  • fix: Always set remote_addr even if the request has no authenticated user. (#484)
  • fix: Fix a bug in getting field's verbose_name when model is not accessible. (508)
  • fix: Fix a bug in serialized_data with F expressions. (508)
  • fix: Make log entries read-only in the admin. (#449, #556) (applied again after being reverted in 2.2.2)