diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 62c932f5c..05d9a5e5c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,23 @@ Changelog ========== +.. _2.9.0: + +2.9.0 - 2024-12-18 +~~~~~~~~~~~~~~~~~~~~~~~ +- New features: + - Delivery directory names now include 'Upload' or 'Download' for clarity. + - Monitor usage now sends warnings to the affected unit and Data Centre when approaching the allocated quota. +- Bugs fixed: + - Improved error message for downloads after a password reset. + - Fixed the dds ls --tree command. + - Pinned mariadb-client version in backend Dockerfile for stability. + - Resolved Node.js vulnerabilities with npm audit fix. +- Logging: + - Removed invalid token exceptions from logs. + - Logged usernames for password resets. + - Filtered out MaintenanceModeException from logs. + .. _2.8.1: 2.8.1 - 2024-10-23 diff --git a/SPRINTLOG.md b/SPRINTLOG.md index bbc4640ca..c0ab76c87 100644 --- a/SPRINTLOG.md +++ b/SPRINTLOG.md @@ -468,3 +468,7 @@ _Nothing merged during this sprint_ - Update documentation regarding 'Upload' or 'Download' added to end of delivery directory name depending on command ([#1580](https://github.com/ScilifelabDataCentre/dds_web/pull/1580)) - Modify the monitor usage command to send warning to the affected unit as well as Data Centre([#1562](https://github.com/ScilifelabDataCentre/dds_web/pull/1562)) - Run npm audit fix to solve node cve's ([#1577](https://github.com/ScilifelabDataCentre/dds_web/pull/1577) + +# 2024-12-16 - 2024-12-20 + +- New version: 2.9.0 ([#1583](https://github.com/ScilifelabDataCentre/dds_web/pull/1583)) diff --git a/dds_web/version.py b/dds_web/version.py index dcd4a7562..2f21ab781 100644 --- a/dds_web/version.py +++ b/dds_web/version.py @@ -1,3 +1,3 @@ # Do not do major version upgrade during 2024. # If mid or minor version reaches 9, continue with 10, 11 etc etc. -__version__ = "2.8.1" +__version__ = "2.9.0" diff --git a/tests/test_version.py b/tests/test_version.py index 2ef1533b8..dd0c9e26f 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert version.__version__ == "2.8.1" + assert version.__version__ == "2.9.0"