Skip to content

Commit 931420d

Browse files
committed
Updated version number to 1.3.0 and added changelog file for 1.3.0, to be updated as needed.
1 parent ee28ed0 commit 931420d

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "frontend",
3-
"version": "1.2.1",
3+
"version": "1.3.0",
44
"private": true,
55
"scripts": {
66
"build:local": "env-cmd -f .envs/.react react-scripts build",

frontend/public/changelog/v1.3.0.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
## Summary
2+
3+
1. Updates to the deployment of Metagrid
4+
- Configuration for frontend is pulled from backend
5+
2. Footer can now be customized and modified to satisfy requirements for different deployment sites
6+
2. Minor bugfixes.

frontend/public/messages/metagrid_messages.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1-
# Welcome to the Metagrid Release v1.2.0
1+
# Welcome to the Metagrid Release v1.3.0
22

33
To view the latest documentation and FAQ, please visit this page:
44
[https://esgf.github.io/esgf-user-support/metagrid.html](https://esgf.github.io/esgf-user-support/metagrid.html)
55

6+
## Deployment Process Updated
7+
8+
This update includes numerous changes to how the Metagrid application is deployed, with enhancements to security, improvements to the configuration process and consolidation of configuration files.
9+
610
## Globus Transfers enhanced
711

812
This version of Metagrid enhances the user of Globus to transfer ESGF datasets to your institutional or personal endpoint. The feature can be accessed at the bottom of the Data Cart page. At present only data published at DOE sites: ANL, ORNL, or LLNL are available for Globus Transfer via Metagrid. The enhancement allows users to save frequently used Globus Collections and destination pathnames.

frontend/src/components/Messaging/messageDisplayData.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ export const rightDrawerMessages: MarkdownMessage[] = [
55
];
66

77
export const rightDrawerChanges: MarkdownMessage[] = [
8+
{ title: 'V1.3.0', fileName: 'changelog/v1.3.0.md' },
89
{ title: 'V1.2.1', fileName: 'changelog/v1.2.1.md' },
910
{ title: 'V1.2.0', fileName: 'changelog/v1.2.0.md' },
1011
{ title: 'V1.1.3-pre', fileName: 'changelog/v1.1.3-pre.md' },
@@ -17,9 +18,18 @@ export const rightDrawerChanges: MarkdownMessage[] = [
1718
];
1819

1920
const startupMessages: StartPopupData = {
20-
messageToShow: 'v1.2.1', // This is the version number that appears in the footer
21+
messageToShow: 'v1.3.0', // This is the version number that appears in the footer
2122
defaultMessageId: 'welcome',
2223
messageData: [
24+
{
25+
messageId: 'v1.3.0',
26+
template: MessageTemplates.ChangeLog,
27+
style: { minWidth: '700px' },
28+
data: {
29+
changesFile: 'changelog/v1.3.0.md',
30+
version: '1.3.0',
31+
},
32+
},
2333
{
2434
messageId: 'v1.2.1',
2535
template: MessageTemplates.ChangeLog,

0 commit comments

Comments
 (0)