You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/deploy.yml
+4-58Lines changed: 4 additions & 58 deletions
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ on:
12
12
- qa
13
13
- demo
14
14
basepath:
15
-
description: 'Server base path (without slashes) for serving the application (e.g., spa). If left blank, it will try to deploy to the root base path.'
15
+
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.'
Copy file name to clipboardExpand all lines: .github/workflows/generate-war.yml
+4-58Lines changed: 4 additions & 58 deletions
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ on:
12
12
- qa
13
13
- demo
14
14
basepath:
15
-
description: 'Server base path (without slashes) for serving the application (e.g., spa). If left blank, it will try to deploy to the root base path.'
15
+
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.'
Copy file name to clipboardExpand all lines: CHANGELOG.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,18 @@ This changelog follows the principles of [Keep a Changelog](https://keepachangel
8
8
9
9
### Added
10
10
11
+
### Changed
12
+
13
+
### Fixed
14
+
15
+
### Removed
16
+
17
+
---
18
+
19
+
## [v0.3.0] -- 2026-04-24
20
+
21
+
### Added
22
+
11
23
- Added the value entered by the user in the error messages for metadata field validation errors in EMAIL and URL type fields. For example, instead of showing “Point of Contact E-mail is not a valid email address.“, we now show “Point of Contact E-mail foo is not a valid email address.”
12
24
- Contact Owner button in File Page.
13
25
- Share button in File Page.
@@ -19,6 +31,10 @@ This changelog follows the principles of [Keep a Changelog](https://keepachangel
19
31
- Added runtime configuration options for homepage branding and support link.
20
32
- Added an environment variable to docker-compose-dev.yml to hide the OIDC client used in the SPA from the JSF frontend: DATAVERSE_AUTH_OIDC_HIDDEN_JSF: 1
21
33
- Dataset Templates UI integration, including create/edit flows, previews, and skeleton states.
34
+
- Added a message note to the login page
35
+
- Download with terms of use and guestbook.
36
+
- Show terms modal before download when dataset has custom terms, a non-default license (not CC0 1.0), or a guestbook. Draft datasets and dataset editors bypass the modal.
37
+
- Layout: added a configurable homepage banner for announcements and important messages. (#787)
22
38
23
39
### Changed
24
40
@@ -31,6 +47,7 @@ This changelog follows the principles of [Keep a Changelog](https://keepachangel
31
47
- Added disclaimer text and custom popup text to Publish Dataset modal for better communication of the implications of publishing a dataset. The text can be configured through the runtime configuration.
32
48
- Dataset page Terms tab title now depends on permissions: users with dataset update permission see `Terms and Guestbook`, and read-only users see `Terms`.
33
49
- Avoided prop-drilling for collection repository, so used context to share epository instances.
50
+
- Added frontend version to the footer of the application, which is retrieved from the `version` field in `package.json` at build time.
34
51
35
52
### Fixed
36
53
@@ -63,6 +80,7 @@ This changelog follows the principles of [Keep a Changelog](https://keepachangel
63
80
- Upgrade Keycloak to 26.3.2; updated SPI and test realm JSON.
64
81
- Truncate long collection and dataset descriptions with expandable content. (#789)
@@ -139,21 +139,21 @@ All environments follow an “all-in-one” setup, where the frontend and backen
139
139
The **Beta** environment provides a remote space for testing the latest changes. GitHub Actions automatically deploy the current `develop` branches of both the frontend and backend.
140
140
141
141
-**Audience:** Development team, QA analysts, project managers, selected users for early feedback
The **Demo** environment showcases the latest officially released version of the SPA, compatible with the latest Dataverse backend release. Deployments target specific tagged releases (e.g., `0.1.0`) and are performed on demand.
147
147
148
148
-**Audience:** Project managers, curation team, early adoption testers
The **QA** environment is a dedicated, short-lived testing space. It is deployed on demand with feature branches (e.g., `feature/xxx`), frequently overwritten, and used for validating new features and bug fixes before merging into development.
0 commit comments