Skip to content

Commit 44a159e

Browse files
authored
Merge pull request #981 from IQSS/sync-develop-v0.3.1
Sync develop v0.3.1
2 parents 2317a66 + 887ec60 commit 44a159e

4 files changed

Lines changed: 23 additions & 6 deletions

File tree

.github/workflows/generate-war.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# .github/workflows/generate-war.yml
12
name: generate-war
23

34
on:
@@ -11,6 +12,7 @@ on:
1112
- beta
1213
- qa
1314
- demo
15+
- production
1416
basepath:
1517
description: 'Server base path (without slashes) for serving the application (e.g., modern). If left blank, it will try to deploy to the root base path.'
1618
type: string
@@ -77,6 +79,17 @@ jobs:
7779
OIDC_STORAGE_KEY_PREFIX: ${{ secrets.DEMO_OIDC_STORAGE_KEY_PREFIX }}
7880
run: node ./scripts/write-runtime-config.mjs
7981

82+
- name: Override runtime config.js for PRODUCTION
83+
if: ${{ github.event.inputs.environment == 'production' }}
84+
env:
85+
DATAVERSE_BACKEND_URL: ${{ secrets.PROD_DATAVERSE_BACKEND_URL }}
86+
OIDC_CLIENT_ID: ${{ secrets.PROD_OIDC_CLIENT_ID }}
87+
OIDC_AUTHORIZATION_ENDPOINT: ${{ secrets.PROD_OIDC_AUTHORIZATION_ENDPOINT }}
88+
OIDC_TOKEN_ENDPOINT: ${{ secrets.PROD_OIDC_TOKEN_ENDPOINT }}
89+
OIDC_LOGOUT_ENDPOINT: ${{ secrets.PROD_OIDC_LOGOUT_ENDPOINT }}
90+
OIDC_STORAGE_KEY_PREFIX: ${{ secrets.PROD_OIDC_STORAGE_KEY_PREFIX }}
91+
run: node ./scripts/write-runtime-config.mjs
92+
8093
- uses: actions/upload-artifact@v4
8194
with:
8295
name: built-site
@@ -92,7 +105,7 @@ jobs:
92105

93106
- uses: actions/setup-java@v3
94107
with:
95-
distribution: 'zulu'
108+
distribution: zulu
96109
java-version: '11'
97110

98111
- uses: actions/download-artifact@v4

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,18 @@ This changelog follows the principles of [Keep a Changelog](https://keepachangel
1010

1111
### Changed
1212

13-
- Added pagination to the Versions tabs on Dataset and File pages so version summaries are loaded and displayed one page at a time.
14-
1513
### Fixed
1614

1715
### Removed
1816

1917
---
2018

19+
## [v0.3.1] -- 2026-04-30
20+
21+
- Added pagination to the Versions tabs on Dataset and File pages so version summaries are loaded and displayed one page at a time.
22+
23+
---
24+
2125
## [v0.3.0] -- 2026-04-24
2226

2327
### Added

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"node": ">=22 <23"
55
},
66
"name": "dataverse-frontend",
7-
"version": "0.3.0",
7+
"version": "0.3.1",
88
"type": "module",
99
"private": true,
1010
"workspaces": {

0 commit comments

Comments
 (0)