Skip to content

Releases: snok/django-guid

3.6.1 - Re-release 3.6.0

Choose a tag to compare

@JonasKs JonasKs released this 05 May 04:49
91ab746

What's Changed

Full Changelog: 3.5.2...3.6.1

3.6.0 - Django 6 support

Choose a tag to compare

@JonasKs JonasKs released this 01 May 14:24
9b37cf5

What's Changed

Full Changelog: 3.5.2...3.6.0

3.5.2 - Sentry v2 support

Choose a tag to compare

@JonasKs JonasKs released this 22 Jul 19:17
32598be

What's Changed

  • chore(deps): Bump django from 4.2.17 to 4.2.18 by @dependabot[bot] in #136
  • feat: add support for sentry>2 Celery integration by @crccheck in #137
  • Add example of Django management command to docs by @andy-isoc in #143
  • Release version 3.5.2 by @Copilot in #147

New Contributors

Full Changelog: 3.5.1...3.5.2

3.5.1 - Fixes

Choose a tag to compare

@JonasKs JonasKs released this 07 Feb 14:57

What's Changed

New Contributors

Full Changelog: 3.5.0...3.5.1

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

Choose a tag to compare

@JonasKs JonasKs released this 25 Apr 15:48

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

Choose a tag to compare

@ingvaldlorentzen ingvaldlorentzen released this 03 Jan 14:12
9bf8c7f

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

Choose a tag to compare

@JonasKs JonasKs released this 16 Jun 08:37

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

Choose a tag to compare

@JonasKs JonasKs released this 06 May 13:06
6b535cb

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

Choose a tag to compare

@JonasKs JonasKs released this 07 Mar 16:29

Fixes

3.2.1

Choose a tag to compare

@sondrelg sondrelg released this 13 Dec 16:13
d506c30

Fixes:

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