Skip to content

Commit 20d1edf

Browse files
authored
RELEASE:2025-09-10 (#2013)
2 parents d555c5a + 5f3e37f commit 20d1edf

File tree

248 files changed

+12034
-8287
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

248 files changed

+12034
-8287
lines changed

.github/workflows/dependabot-auto-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
github-token: "${{ secrets.GITHUB_TOKEN }}"
2121

2222
- name: Checkout repository
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424

2525
## NOTE: This step is only required if the repository has been configured to Require approval
2626
## Checks if update-type is patch or minor, then approve if the PR status is not approved yet.

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717

1818
- name: Set up Docker Buildx
1919
uses: docker/setup-buildx-action@v3

.github/workflows/release-push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
packages: write
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121

2222
- name: Set up Node.js
23-
uses: actions/setup-node@v4
23+
uses: actions/setup-node@v5
2424
with:
2525
node-version: ${{ env.NODE_VERSION }}
2626

.github/workflows/test.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414

1515
steps:
1616
- name: Check out Git repository
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Set up Node.js
20-
uses: actions/setup-node@v4
20+
uses: actions/setup-node@v5
2121
with:
2222
node-version: 18.x
2323

@@ -39,10 +39,10 @@ jobs:
3939

4040
steps:
4141
- name: Check out Git repository
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v5
4343

4444
- name: Set up Node.js
45-
uses: actions/setup-node@v4
45+
uses: actions/setup-node@v5
4646
with:
4747
node-version: ${{ env.NODE_VERSION }}
4848

@@ -62,10 +62,10 @@ jobs:
6262
needs: [install-and-cache]
6363
steps:
6464
- name: Check out
65-
uses: actions/checkout@v4
65+
uses: actions/checkout@v5
6666

6767
- name: Set up Node.js
68-
uses: actions/setup-node@v4
68+
uses: actions/setup-node@v5
6969
with:
7070
node-version: ${{ env.NODE_VERSION }}
7171

@@ -99,10 +99,10 @@ jobs:
9999
runs-on: ubuntu-latest
100100
steps:
101101
- name: Checkout code
102-
uses: actions/checkout@v4
102+
uses: actions/checkout@v5
103103

104104
- name: Set up Node.js
105-
uses: actions/setup-node@v4
105+
uses: actions/setup-node@v5
106106
with:
107107
node-version: ${{ env.NODE_VERSION }}
108108

@@ -116,6 +116,9 @@ jobs:
116116
sudo sysctl -w vm.max_map_count=262144
117117
118118
- name: Run docker-compose
119+
env:
120+
DOI_USERNAME: ${{ secrets.DOI_TEST_USERNAME }}
121+
DOI_PASSWORD: ${{ secrets.DOI_TEST_PASSWORD }}
119122
run: |
120123
cp CI/e2e/docker-compose.e2e.yaml docker-compose.yaml
121124
docker compose pull
@@ -127,7 +130,6 @@ jobs:
127130
with:
128131
config-file: cypress.config.ts
129132
install-command: npm install --omit peer
130-
131133
- name: docker logs
132134
if: ${{ failure() }}
133135
run: |

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,8 @@ Thumbs.db
5656
.angular
5757

5858
# karma
59-
karma-junit.xml
59+
karma-junit.xml
60+
61+
# config files overrides
62+
config.override.json
63+
config.override.*.json

CI/e2e/.env.backend.e2e

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ RABBITMQ_ENABLED="no"
2121
RABBITMQ_HOSTNAME="localhost"
2222
RABBITMQ_USERNAME="rabbitmq"
2323
RABBITMQ_PASSWORD="rabbitmq"
24-
REGISTER_DOI_URI="https://mds.test.datacite.org/doi"
24+
REGISTER_DOI_URI="https://api.test.datacite.org/dois"
25+
REGISTER_DOI_URI_V3="https://mds.test.datacite.org/doi"
2526
REGISTER_METADATA_URI="https://mds.test.datacite.org/metadata"
2627
SITE="ESS"
2728
OAI_PROVIDER_ROUTER=

CI/e2e/docker-compose.e2e.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ services:
3131
- "./CI/e2e/functionalAccounts.e2e.json:/home/node/app/functionalAccounts.json"
3232
- "./CI/e2e/proposalTypes.e2e.json:/home/node/app/proposalTypes.json"
3333
- "./CI/e2e/frontend.config.e2e.json:/home/node/app/dist/config/frontend.config.json"
34+
- "./CI/e2e/publishedDataConfig.e2e.json:/home/node/app/publishedDataConfig.json"
35+
environment:
36+
- DOI_USERNAME=${DOI_USERNAME}
37+
- DOI_PASSWORD=${DOI_PASSWORD}
3438
depends_on:
3539
mongodb:
3640
condition: service_healthy
@@ -48,7 +52,7 @@ services:
4852
build:
4953
context: .
5054
ports:
51-
- 4200:80
55+
- 4200:8080
5256
volumes:
5357
- "./CI/e2e/frontend.config.e2e.json:/usr/share/nginx/html/assets/config.json"
5458
depends_on:

0 commit comments

Comments
 (0)