Skip to content

Commit

Permalink
Fixed directory installation problem (#2184)
Browse files Browse the repository at this point in the history
  • Loading branch information
BernhardKoschicek committed Mar 4, 2024
1 parent fffe219 commit 47fe706
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 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.2.0'
VERSION = '8.2.1'
DATABASE_VERSION = DATABASE_VERSIONS[0]
DEMO_MODE = False # If activated some options are disabled, login is prefilled
DEBUG = False
Expand Down
Empty file.
6 changes: 6 additions & 0 deletions install/upgrade/upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ then run the database upgrade script, then restart Apache:
sudo python3 install/upgrade/database_upgrade.py
sudo service apache2 restart

### 8.2.0 to 8.2.1

This is a fix for installation, no need to update an existing instance.
In case you want to update it anyway, a git pull and apache restart would be
sufficient.

### 8.1.x to 8.2.0

There is no database update for this release but new node packages are needed:
Expand Down
3 changes: 3 additions & 0 deletions openatlas/views/changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ def index_changelog() -> str:


versions = {
'8.2.1': ['2024-03-04', {
'fix': {
'2184': 'Directory for processed files not writable'}}],
'8.2.0': ['2024-03-02', {
'feature': {
'2186': 'Move file item from admin area to menu',
Expand Down

0 comments on commit 47fe706

Please sign in to comment.