diff --git a/.github/workflows/generate-war.yml b/.github/workflows/generate-war.yml index 98e66d00f..3adcf35bb 100644 --- a/.github/workflows/generate-war.yml +++ b/.github/workflows/generate-war.yml @@ -1,3 +1,4 @@ +# .github/workflows/generate-war.yml name: generate-war on: @@ -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 @@ -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 @@ -92,7 +105,7 @@ jobs: - uses: actions/setup-java@v3 with: - distribution: 'zulu' + distribution: zulu java-version: '11' - uses: actions/download-artifact@v4 diff --git a/CHANGELOG.md b/CHANGELOG.md index c668214a7..16a05b41c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/package-lock.json b/package-lock.json index 06d2b6657..c5b242488 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "dataverse-frontend", - "version": "0.3.0", + "version": "0.3.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "dataverse-frontend", - "version": "0.3.0", + "version": "0.3.1", "dependencies": { "@dnd-kit/core": "6.1.0", "@dnd-kit/modifiers": "7.0.0", diff --git a/package.json b/package.json index 277242f31..6d54dca10 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "node": ">=22 <23" }, "name": "dataverse-frontend", - "version": "0.3.0", + "version": "0.3.1", "type": "module", "private": true, "workspaces": {