Add a breaking changes section in the CHANGELOG

This commit is contained in:
0livd 2017-07-03 23:23:29 +02:00
parent 87c32e6edc
commit 59c94fe07e

View file

@ -6,13 +6,15 @@ This document describes changes between each past release.
2.0 (unreleased) 2.0 (unreleased)
---------------- ----------------
### Breaking Changes
- Use a hashed ``ADMIN_PASSWORD`` instead of a clear text one, ``./budget/manage.py generate_password_hash`` can be used to generate a proper password HASH (#236)
- Turn the WSGI file into a python module, renamed from budget/ihatemoney.wsgi to budget/wsgi.py. Please update your Apache configuration!
- Admin privileges are required to access the dashboard
### Changed ### Changed
- **BREAKING CHANGE** Use a hashed ``ADMIN_PASSWORD`` instead of a clear text one, ``./budget/manage.py generate_password_hash`` can be used to generate a proper password HASH (#236)
- **BREAKING CHANGE** Turn the WSGI file into a python module, renamed from budget/ihatemoney.wsgi to budget/wsgi.py. Please update your Apache configuration!
- Changed the recommended gunicorn configuration to use the wsgi module as an entrypoint - Changed the recommended gunicorn configuration to use the wsgi module as an entrypoint
- **BREAKING CHANGE** The default value of ``ADMIN_PASSWORD`` has changed. If you have a custom settings file which set ``ADMIN_PASSWORD`` to an empty string (""), the application will use the default admin password until you update your settings.
- **BREAKING CHANGE** Admin privileges are required to access the dashboard
### Added ### Added