Releases: jazzband/django-configurations
2.5.1
What's Changed
- Fix #375 -- Add Django 5.0 classifier by @pauloxnet in #376
- Add support for Python 3.12 by @pauloxnet in #370
Full Changelog: 2.5...2.5.1
2.5
What's Changed
- Fix #368 -- Update Python and Django versions by @pauloxnet in #369
- Release v2.5 by @pauloxnet in #371
Full Changelog: 2.4.2...2.5
2.4.2
2.4.1
- Pin publish action in release workflow by @michael-k
- docs: Fix a few typos by @timgates42
- Fixed #344 - Run tests on python 3.11 by @pauloxnet
- Update github actions and fix pipeline by @pauloxnet
- Fix "STATICFILES_STORAGE/STORAGES are mutually exclusive" on Django>=4.2 by @bluetech
- Fix #351 Use 'furo' as Sphinx theme (#352) by @pauloxnet
- Fix #353 Improve code blocks in documentation by @pauloxnet
- Fix #355 - Update to Django 4.2 stable (#356) by @pauloxnet
Full Changelog: 2.4...2.4.1
2.4
What's Changed
- Fixed #336 -- Update Python and Django versions by @pauloxnet in #337
- add GitHub URL for PyPi by @andriyor in #331
- Prepare next release 2.4 by @pauloxnet in #338
New Contributors
Full Changelog: 2.3.2...2.4
2.3.2
2.3.1
2.3
-
BACKWARD INCOMPATIBLE Drop support for Python 2.7 and 3.5.
-
BACKWARD INCOMPATIBLE Drop support for Django < 2.2.
-
Add support for Django 3.1 and 3.2.
-
Add suppport for Python 3.9 and 3.10.
-
Deprecate
utils.import_by_path
in favor ofdjango.utils.module_loading.import_string
. -
Add ASGI support.
-
Added "python -m configurations" entry point.
-
Make package
install_requires
includedjango>=2.2
. -
Prevent an ImproperlyConfigured warning from
DEFAULT_HASHING_ALGORITHM
. -
Prevent warnings for settings deprecated in Django 2.2 (
DEFAULT_CONTENT_TYPE
andFILE_CHARSET
). -
Preserve Django warnings when
DEFAULT_AUTO_FIELD
is not set. -
Miscellaneous documentation fixes.
-
Miscellaneous internal improvements.
2.2
Support Django 2.1
-
BACKWARD INCOMPATIBLE Drop support of Python 3.3.
-
BACKWARD INCOMPATIBLE Drop support of Django 1.9.
-
Add support for Django 2.1.
-
Add
PositiveIntegerValue
configuration value. -
Fix
bool(BooleanValue)
to behave as one would expect (e.g.
bool(BooleanValue(False))
returnsFalse
). -
Miscellaneous documentation improvements and bug fixes.