Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion .github/workflows/generate-war.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# .github/workflows/generate-war.yml
name: generate-war

on:
Expand All @@ -11,6 +12,7 @@ on:
- beta
- qa
- demo
- production
basepath:
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.'
type: string
Expand Down Expand Up @@ -77,6 +79,17 @@ jobs:
OIDC_STORAGE_KEY_PREFIX: ${{ secrets.DEMO_OIDC_STORAGE_KEY_PREFIX }}
run: node ./scripts/write-runtime-config.mjs

- name: Override runtime config.js for PRODUCTION
if: ${{ github.event.inputs.environment == 'production' }}
env:
DATAVERSE_BACKEND_URL: ${{ secrets.PROD_DATAVERSE_BACKEND_URL }}
OIDC_CLIENT_ID: ${{ secrets.PROD_OIDC_CLIENT_ID }}
OIDC_AUTHORIZATION_ENDPOINT: ${{ secrets.PROD_OIDC_AUTHORIZATION_ENDPOINT }}
OIDC_TOKEN_ENDPOINT: ${{ secrets.PROD_OIDC_TOKEN_ENDPOINT }}
OIDC_LOGOUT_ENDPOINT: ${{ secrets.PROD_OIDC_LOGOUT_ENDPOINT }}
OIDC_STORAGE_KEY_PREFIX: ${{ secrets.PROD_OIDC_STORAGE_KEY_PREFIX }}
run: node ./scripts/write-runtime-config.mjs

- uses: actions/upload-artifact@v4
with:
name: built-site
Expand All @@ -92,7 +105,7 @@ jobs:

- uses: actions/setup-java@v3
with:
distribution: 'zulu'
distribution: zulu
java-version: '11'

- uses: actions/download-artifact@v4
Expand Down
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,18 @@ This changelog follows the principles of [Keep a Changelog](https://keepachangel

### Changed

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

### Fixed

### Removed

---

## [v0.3.1] -- 2026-04-30

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

---

## [v0.3.0] -- 2026-04-24

### Added
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"node": ">=22 <23"
},
"name": "dataverse-frontend",
"version": "0.3.0",
"version": "0.3.1",
"type": "module",
"private": true,
"workspaces": {
Expand Down
Loading