All notable changes to this project will be documented in this file. The format is inspired by Keep a Changelog and this project adheres to Semantic Versioning.
v0.8.0 - 00-Unreleased-2021
- Keep newline/tb escaped in quoted strings
v0.7.0 - 11-September-2021
- Added support for negative float strings #160.
- Added Elasticsearch5 to search scheme #297.
- Added Elasticsearch7 to search scheme #314.
- Added the ability to use
bytes
orstr
as a default value forEnv.bytes()
.
- Fixed links in the documentation.
- Use default option in
Env.bytes()
#206. - Safely evaluate a string containing an invalid Python literal #200.
- Added 'Funding' and 'Say Thanks!' project urls on pypi.
- Stop raising
UserWarning
if.env
file isn't found. Log a message withINFO
log level instead #243.
v0.6.0 - 4-September-2021
- Python 3.9, 3.10 and pypy 3.7 are now supported.
- Django 3.1 and 3.2 are now supported.
- Added missed classifiers to
setup.py
. - Accept Python 3.6 path-like objects for
read_env
#106, #286.
- Fixed various code linting errors.
- Fixed typos in the documentation.
- Added missed files to the package contents.
- Fixed
db_url_config
to work the same for all postgres-like schemes #264, #268.
- Refactor tests to use pytest and follow DRY.
- Moved CI to GitHub Actions.
- Restructuring of project documentation.
- Build and test package documentation as a part of CI pipeline.
- Build and test package distribution as a part of CI pipeline.
- Check
MANIFEST.in
in a source package for completeness as a part of CI pipeline. - Added
pytest
andcoverage[toml]
to setuptools'extras_require
.
v0.5.0 - 30-August-2021
- Support for Django 2.1 & 2.2.
- Added tox.ini targets.
- Added secure redis backend URLs via
rediss://
. - Add
cast=str
tostr()
method.
- Fixed misspelling in the documentation.
- Validate empty cache url and invalid cache schema.
- Set
long_description_content_type
in setup. - Improved Django 1.11 database configuration support.
v0.4.5 - 25-June-2018
- Support for Django 2.0.
- Support for smart casting.
- Support PostgreSQL unix domain socket paths.
- Tip: Multiple env files.
- Fix parsing option values
None
,True
andFalse
. - Order of importance of engine configuration in
db_url_config
.
- Remove
django
andsix
dependencies.
v0.4.4 - 21-August-2017
- Support for
django-redis
multiple locations (master/slave, shards). - Support for Elasticsearch2.
- Support for Mysql-connector.
- Support for
pyodbc
. - Add
__contains__
feature to Environ class.
- Fix Path subtracting.
v0.4.3 - 21-August-2017
- Rollback the default Environ to
os.environ
.
v0.4.2 - 13-April-2017
- Confirm support for Django 1.11.
- Support for Redshift database URL.
v0.4.1 - 13-November-2016
- Add support for Django 1.10.
- Fix for unsafe characters into URLs.
- Clarifying warning on missing or unreadable file. Thanks to @nickcatal.
- Fix support for Oracle urls.
- Fix support for
django-redis
.
v0.4 - 23-September-2015
- New email schemes -
smtp+ssl
andsmtp+tls
(smtps
would be deprecated). - Add tuple support. Thanks to @anonymouzz.
- Add LDAP url support for database. Thanks to django-ldapdb/django-ldapdb.
- Fix non-ascii values (broken in Python 2.x).
redis_cache
replaced bydjango_redis
.- Fix psql/pgsql url.
v0.3.1 - 19 Sep 2015
- Added
email
as alias foremail_url
. - Django 1.7 is now supported.
- Added LDAP scheme support for
db_url_config
.
- Fixed typos in the documentation.
- Fixed
environ.Path.__add__
to correctly handle plus operator. - Fixed
environ.Path.__contains__
to correctly work on Windows.
v0.3 - 03-June-2014
- Add cache url support.
- Add email url support.
- Add search url support.
- Rewriting README.rst.
Env.__call__
now usesEnv.get_value
instance method.
- Add advanced float parsing (comma and dot symbols to separate thousands and decimals).
- Fixed typos in the documentation.
- Initial release.