Skip to content

Releases: snok/django-guid

3.5.0 - Pptionally override the record field name where the guid is stored

25 Apr 15:48
Compare
Choose a tag to compare

What's Changed

  • Add the ability to customize the log record field name for correlation ids. by @NiklasBeierl in #115

Usage:

        'filters': {
            'correlation_id': {
                '()': 'django_guid.log_filters.CorrelationId',
                # You can optionally override the record field name where the guid is stored
                'correlation_id_field': 'my_custom_correlation_id'
            }
        }

New Contributors

Full Changelog: 3.4.1...3.5.0

3.4.0 - Django 5 Support

03 Jan 14:12
9bf8c7f
Compare
Choose a tag to compare

Breaking Changes

  • Dropped support for Python 3.7
  • Dropped support for Django versions lower than 3.2

What's Changed

New Contributors

Full Changelog: 3.3.1...3.4.0

3.3.1 - Change ot MIT license

16 Jun 08:37
Compare
Choose a tag to compare

What's Changed

  • Django-GUID is now under a MIT license

Other

Full Changelog: 3.3.0...3.3.1

3.3.0 - Add UUID_FORMAT format config

06 May 13:06
6b535cb
Compare
Choose a tag to compare

Features

  • Add UUID_FORMAT setting, allowing users to chose UUID/GUID format.
    • hex: 776336d4545e43e1bd3b017794af48e9 (default)
    • string: 776336d4-545e-43e1-bd3b-017794af48e9

PR #81 by @Mdslino 🥇

3.2.2 - Fix deprecation warning

07 Mar 16:29
Compare
Choose a tag to compare

Fixes

3.2.1

13 Dec 16:13
d506c30
Compare
Choose a tag to compare

Fixes:

  • Adjusted package requirements to allow Django >= v4
  • Added log input sanitation in the middleware
  • Added py.typed to enable type checking

(Backport) 2.2.1 - Fixes tar.gz package

24 Feb 11:22
1b3c460
Compare
Choose a tag to compare

Fixes

  • Fixes tar.gz package which didn't include all files for setup.py #56 #57

Thank you, @wibbit

3.2.0 - Celery integration can now set `transaction_id` in Sentry

03 Dec 21:10
21bf987
Compare
Choose a tag to compare

Features

  • Added a new setting, sentry_integration to the Celery integration, which sets transaction_id for Celery workers.

3.1.0 - Celery Integration

19 Nov 15:23
78f04ce
Compare
Choose a tag to compare

Features

  • Added a new setting, UUID_LENGTH, which lets you crop the UUIDs generated for log filters.
  • Added a new integration for tracing with Celery

3.1.0-rc1 - Celery Integration

18 Nov 21:56
Compare
Choose a tag to compare
Pre-release

Features

  • Added a new setting, UUID_LENGTH, which lets you crop the UUIDs generated for log filters.
  • Added a new integration for tracing with Celery