Releases: snok/django-guid
Releases · snok/django-guid
Release list
3.6.1 - Re-release 3.6.0
What's Changed
- chore: bump version to 3.6.1 by @JonasKs in #159
- chore: support for Django 6.0 by @hartungstenio in #158
Full Changelog: 3.5.2...3.6.1
3.6.0 - Django 6 support
What's Changed
- chore: support for Django 6.0 by @hartungstenio in #158
Full Changelog: 3.5.2...3.6.0
3.5.2 - Sentry v2 support
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
- @crccheck made their first contribution in #137
- @andy-isoc made their first contribution in #143
- @Copilot made their first contribution in #147
Full Changelog: 3.5.1...3.5.2
3.5.1 - Fixes
What's Changed
- chore: update dependencies by @JonasKs in #131
- fix: import guid context var from context module by @hartungstenio in #132
- [BUG] Sentry scope migration fo 2.x by @pedroserrudo in #129
- chore(deps-dev): Bump jinja2 from 3.1.4 to 3.1.5 by @dependabot in #134
- chore(deps): Bump django from 4.2.16 to 4.2.17 by @dependabot in #133
- chore(deps-dev): Bump virtualenv from 20.26.3 to 20.26.6 by @dependabot in #135
New Contributors
- @hartungstenio made their first contribution in #132
- @pedroserrudo made their first contribution in #129
Full Changelog: 3.5.0...3.5.1
3.5.0 - Pptionally override the record field name where the guid is stored
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
- @NiklasBeierl made their first contribution in #115
Full Changelog: 3.4.1...3.5.0
3.4.0 - Django 5 Support
Breaking Changes
- Dropped support for Python 3.7
- Dropped support for Django versions lower than 3.2
What's Changed
- Fix documentation for UUID_FORMAT setting by @nschlemm in #110
- Django 5 Support by @ingvaldlorentzen in #113
New Contributors
Full Changelog: 3.3.1...3.4.0
3.3.1 - Change ot MIT license
What's Changed
- Django-GUID is now under a MIT license
Other
- Update workflows by @sondrelg in #85
- Add Python 3.11 and Django 4.1 to supported versions by @sondrelg in #87
- tests: make tests pass in pipelines by @JonasKs in #93
- chore: Update license by @sondrelg in #89
- chore(deps): Bump certifi from 2022.9.24 to 2022.12.7 by @dependabot in #94
Full Changelog: 3.3.0...3.3.1
3.3.0 - Add UUID_FORMAT format config
3.2.2 - Fix deprecation warning
Fixes
- Conditionally use deprecated
default_app_config( #77 @dustinchilson )