Skip to content

Commit

Permalink
Update changelog and upgrade notes
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderWatzinger committed Aug 14, 2024
1 parent 72be039 commit 2f5e085
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
5 changes: 4 additions & 1 deletion config/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions install/upgrade/upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
6 changes: 4 additions & 2 deletions openatlas/views/changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 2f5e085

Please sign in to comment.