@@ -5,10 +5,41 @@ All notable changes to this project will be documented in this file.
55The format is inspired by `Keep a Changelog <https://keepachangelog.com/en/1.0.0/ >`_
66and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0.html >`_.
77
8- `v0.10 .0 `_ - 2-March -2023
8+ `v0.11 .0 `_ - 30-August -2023
99-------------------------------
1010Added
1111+++++
12+ - Added support for Django 4.2
13+ `#456 <https://github.com/joke2k/django-environ/pull/456 >`_.
14+ - Added support for secure Elasticsearch connections
15+ `#463 <https://github.com/joke2k/django-environ/pull/463 >`_.
16+ - Added variable expansion
17+ `#468 <https://github.com/joke2k/django-environ/pull/468 >`_.
18+ - Added capability to handle comments after #, after quoted values,
19+ like ``KEY= 'part1 # part2' # comment ``
20+ `#475 <https://github.com/joke2k/django-environ/pull/475 >`_.
21+ - Added support for ``interpolate `` parameter
22+ `#415 <https://github.com/joke2k/django-environ/pull/415 >`_.
23+
24+ Changed
25+ +++++++
26+ - Used ``mssql-django `` as engine for SQL Server
27+ `#446 <https://github.com/joke2k/django-environ/pull/446 >`_.
28+ - Changed handling bool values, stripping whitespace around value
29+ `#475 <https://github.com/joke2k/django-environ/pull/475 >`_.
30+ - Use ``importlib.util.find_spec `` to ``replace pkgutil.find_loader ``
31+ `#482 <https://github.com/joke2k/django-environ/pull/482 >`_.
32+
33+
34+ Removed
35+ +++++++
36+ - Removed support of Python 3.5.
37+
38+
39+ `v0.10.0 `_ - 2-March-2023
40+ -------------------------
41+ Added
42+ +++++
1243- Use the core redis library by default if running Django >= 4.0
1344 `#356 <https://github.com/joke2k/django-environ/issues/356 >`_.
1445- Value of dict can now contain an equal sign
@@ -29,7 +60,7 @@ Deprecated
2960Changed
3061+++++++
3162- Used UTF-8 as a encoding when open ``.env `` file.
32- - Provided access to ``` DB_SCHEMES `` through ``cls `` rather than
63+ - Provided access to ``DB_SCHEMES `` through ``cls `` rather than
3364 ``Env `` in ``db_url_config ``
3465 `#414 <https://github.com/joke2k/django-environ/pull/414 >`_.
3566- Correct CI workflow to use supported Python versions/OS matrix
@@ -341,7 +372,8 @@ Added
341372- Initial release.
342373
343374
344- .. _v0.10.0 : https://github.com/joke2k/django-environ/compare/v0.9.0...develop
375+ .. _v0.11.0 : https://github.com/joke2k/django-environ/compare/v0.10.0...develop
376+ .. _v0.10.0 : https://github.com/joke2k/django-environ/compare/v0.9.0...v0.10.0
345377.. _v0.9.0 : https://github.com/joke2k/django-environ/compare/v0.8.1...v0.9.0
346378.. _v0.8.1 : https://github.com/joke2k/django-environ/compare/v0.8.0...v0.8.1
347379.. _v0.8.0 : https://github.com/joke2k/django-environ/compare/v0.7.0...v0.8.0
0 commit comments