Skip to content

Commit d04e485

Browse files
authored
Merge pull request #1582 from ScilifelabDataCentre/dev
New release: December 18th 2024
2 parents 84bf7a8 + a396807 commit d04e485

29 files changed

+340
-170
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ jobs:
5151

5252
steps:
5353
- name: Checkout repository
54-
uses: actions/checkout@v3
54+
uses: actions/checkout@v4
5555

5656
# Initializes the CodeQL tools for scanning.
5757
- name: Initialize CodeQL
58-
uses: github/codeql-action/init@v2
58+
uses: github/codeql-action/init@v3
5959
with:
6060
languages: ${{ matrix.language }}
6161
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -66,7 +66,7 @@ jobs:
6666
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
6767
# If this step fails, then you should remove it and run the build manually (see below)
6868
- name: Autobuild
69-
uses: github/codeql-action/autobuild@v2
69+
uses: github/codeql-action/autobuild@v3
7070

7171
# ℹ️ Command-line programs to run using the OS shell.
7272
# 📚 https://git.io/JvXDl
@@ -80,4 +80,4 @@ jobs:
8080
# make release
8181

8282
- name: Perform CodeQL Analysis
83-
uses: github/codeql-action/analyze@v2
83+
uses: github/codeql-action/analyze@v3

.github/workflows/docker-compose-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323

2424
- name: Run tests against database container
2525
run: docker compose -f docker-compose.yml -f tests/docker-compose-test.yml up --build --exit-code-from backend
@@ -31,7 +31,7 @@ jobs:
3131
## If no one connects after 5 minutes, shut down server.
3232
wait-timeout-minutes: 5
3333

34-
- uses: codecov/codecov-action@v3
34+
- uses: codecov/codecov-action@v4
3535
with:
3636
token: ${{ secrets.CODECOV_TOKEN }}
3737
files: ./coverage/report.xml

.github/workflows/lint-yaml.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
lint:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: yaml-lint
1818
uses: ibiqlik/action-yamllint@v3
1919
with:

.github/workflows/prettier.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
Prettier:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313

14-
- uses: actions/setup-node@v3
14+
- uses: actions/setup-node@v4
1515

1616
- name: Install Prettier
1717
run: npm install -g prettier

.github/workflows/python-black.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
lint:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- uses: psf/black@stable
2020
with:
2121
version: ${{ env.INPUT_VERSION }}

.github/workflows/snyk-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
command: code test
3131
args: --sarif-file-output=snyk.sarif
3232
- name: Upload result to GitHub Code Scanning
33-
uses: github/codeql-action/upload-sarif@v2
33+
uses: github/codeql-action/upload-sarif@v3
3434
with:
3535
sarif_file: snyk.sarif
3636
category: snyk

.github/workflows/trivy-scan-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout code
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323

2424
- name: Run Trivy vulnerability scanner
2525
uses: aquasecurity/trivy-action@master

.github/workflows/trivy-scheduled-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout code
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121

2222
- name: Ensure lowercase name
2323
run: echo REPOSITORY_OWNER=$(echo ${{ github.repository_owner }} | tr "[:upper:]" "[:lower:]") >> $GITHUB_ENV

.github/workflows/trivy-scheduled-master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout code
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121
with:
2222
ref: master
2323

CHANGELOG.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
Changelog
22
==========
33

4+
.. _2.9.0:
5+
6+
2.9.0 - 2024-12-18
7+
~~~~~~~~~~~~~~~~~~
8+
9+
- New features:
10+
- Delivery directory names now include 'Upload' or 'Download' for clarity.
11+
- Monitor usage now sends warnings to the affected unit and Data Centre when approaching the allocated quota.
12+
- Bugs fixed:
13+
- Improved error message for downloads after a password reset.
14+
- Fixed the dds ls --tree command.
15+
- Pinned mariadb-client version in backend Dockerfile for stability.
16+
- Resolved Node.js vulnerabilities with npm audit fix.
17+
- Logging:
18+
- Removed invalid token exceptions from logs.
19+
- Logged usernames for password resets.
20+
- Filtered out MaintenanceModeException from logs.
21+
422
.. _2.8.1:
523

624
2.8.1 - 2024-10-23

0 commit comments

Comments
 (0)