ihatemoney/CHANGELOG.rst
0livd d9ae72f4f3 Update to a more flexible admin authentication
We do not rely on the ADMIN_PASSWORD being defined
or not to ask for admin permissions.
Instead we now have a flexible admin auth that can
be conditionnaly bypassed
2017-06-29 17:59:41 +02:00

49 lines
1.5 KiB
ReStructuredText

Changelog
=========
This document describes changes between each past release.
2.0 (unreleased)
----------------
### 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
- **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.
### Added
- Add a new setting to allow public project creation (ALLOW_PUBLIC_PROJECT_CREATION)
### Removed
- Remove unused option in the setup script
1.0 (2017-06-20)
----------------
### Added
- Apache WSGI Support (#191)
- Brush up the Makefile (#207, #201)
- Externalize the settings from source folder (#193)
- Makefile: Add new rule to compile translations (#207)
- Project creation can be restricted to admin (#210)
- More responsive layout (#213)
### Changed
- Some README enhancements
- Move tests to budget.tests (#205)
- The demo project can be disabled (#209)
### Fixed
- Fix sphinx integration (#208)
0.9 (2017-04-04)
----------------
- First release of the project.