diff --git a/config/default.py b/config/default.py index f3ae4bc76..3f5f69459 100644 --- a/config/default.py +++ b/config/default.py @@ -3,7 +3,7 @@ from config.database_versions import DATABASE_VERSIONS -VERSION = '8.7.0' +VERSION = '8.6.1' DATABASE_VERSION = DATABASE_VERSIONS[0] DEMO_MODE = False # If activated some options are disabled, login is prefilled DEBUG = False @@ -47,6 +47,9 @@ SESSION_COOKIE_SAMESITE = 'Lax' # Proxies (e.g. for calls to remote APIs when behind an institution firewall) +# e.g. PROXIES = { +# 'http': 'http://someurl.org:8080', +# 'https': 'http://someurl.org:8080'} PROXIES = None # Table options diff --git a/install/upgrade/upgrade.md b/install/upgrade/upgrade.md index db8288cf3..419f7af9b 100644 --- a/install/upgrade/upgrade.md +++ b/install/upgrade/upgrade.md @@ -17,6 +17,9 @@ then run the database upgrade script, then restart Apache: sudo python3 install/upgrade/database_upgrade.py sudo service apache2 restart +### 8.6.0 to 8.6.1 +A code base update (e.g. with git pull) and a webserver restart is sufficient. + ### 8.5.0 to 8.6.0 8.6.0.sql is needed but will be taken care of by the database upgrade script. diff --git a/openatlas/views/changelog.py b/openatlas/views/changelog.py index 8e19ad20b..3b296f5c2 100644 --- a/openatlas/views/changelog.py +++ b/openatlas/views/changelog.py @@ -15,8 +15,10 @@ def index_changelog() -> str: versions = { - '8.7.0': ['TBA', { - 'feature': {}}], + '8.6.1': ['2024-08-14', { + 'feature': { + '2337': 'Configurable proxy server', + '2336': 'CA and ES translation corrected'}}], '8.6.0': ['2024-08-10', { 'feature': { '2320': 'Display external info',