Skip to content

Commit

Permalink
Merge branch 'dev' into migrations-readme
Browse files Browse the repository at this point in the history
  • Loading branch information
i-oden authored Dec 17, 2024
2 parents a0322b2 + a396807 commit 7700506
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 4 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/backend.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ USER $USERNAME
FROM node:18 as nodebuilder
COPY ./dds_web/static /build
WORKDIR /build
RUN npm install -g npm@latest --quiet
RUN npm install -g npm@10.9.2 --quiet
RUN npm install --quiet
RUN npm run css

Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/nodebuilder.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM node:18
RUN mkdir /build
WORKDIR /build
RUN npm install -g npm@latest --quiet
RUN npm install -g npm@10.9.2 --quiet
RUN echo "npm install --quiet && npm run watch" > /runner.sh
CMD ["sh", "/runner.sh"]
4 changes: 4 additions & 0 deletions SPRINTLOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -468,4 +468,8 @@ _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 ([#1584](https://github.com/ScilifelabDataCentre/dds_web/pull/1584))
- Instructions regarding database migrations moved to migrations directory, and Linkspector action added to scan for incorrect links in MD ([#1576](https://github.com/ScilifelabDataCentre/dds_web/pull/1576))
2 changes: 1 addition & 1 deletion dds_web/version.py
Original file line number Diff line number Diff line change
@@ -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"
2 changes: 1 addition & 1 deletion tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert version.__version__ == "2.8.1"
assert version.__version__ == "2.9.0"

0 comments on commit 7700506

Please sign in to comment.