From 58d76672794b7563471b51ba35e700ac2fd8d814 Mon Sep 17 00:00:00 2001 From: Rashmil Panchani <32737711+Rashmil-1999@users.noreply.github.com> Date: Thu, 24 Oct 2024 07:22:59 -0500 Subject: [PATCH] Release 1.13.1 (#230) * fix link and changelog (#221) * use /register * Typo in delete dfr3 mapping * create release --------- Co-authored-by: Chen Wang --- CHANGELOG.md | 6 ++++++ package-lock.json | 4 ++-- package.json | 2 +- src/app.config.js | 9 +++++---- src/components/DFR3Viewer.jsx | 2 +- src/components/Profile.jsx | 2 +- 6 files changed, 16 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 58b7ad9c..5090f97d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [1.13.1] - 2024-10-24 + +### Fixed +- Outdated registration and reset password link [#220](https://github.com/IN-CORE/incore-ui/issues/220) +- Typo in delete dfr3 mapping [#223](https://github.com/IN-CORE/incore-ui/issues/223) + ## [1.13.0] - 2024-08-21 ### Added diff --git a/package-lock.json b/package-lock.json index d9e24d7d..18c7e79b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "incore", - "version": "1.13.0", + "version": "1.13.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "incore", - "version": "1.13.0", + "version": "1.13.1", "hasInstallScript": true, "license": "MPL-2.0", "dependencies": { diff --git a/package.json b/package.json index 78f419cd..de5af4cc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "incore", - "version": "1.13.0", + "version": "1.13.1", "description": "The Interdependent Networked Community Resilience Modeling Environment (IN-CORE) has the capability of computing resiliency measures at the user-desired community level. The methodologies and algorithms have been developed by different research groups within the Center of Excellence.", "engines": { "npm": ">=3.10", diff --git a/src/app.config.js b/src/app.config.js index 230664b5..b350c181 100644 --- a/src/app.config.js +++ b/src/app.config.js @@ -12,7 +12,7 @@ config["incoreDocUrl"] = `${hostname}/doc/incore/introduction.html`; config["incoreTutorialUrl"] = `${hostname}/doc/incore/tutorials.html`; config["incoreFAQUrl"] = `${hostname}/doc/incore/faq.html`; config["swaggerUrl"] = `${hostname}/doc/api/`; -config["webVersion"] = "1.13.0"; +config["webVersion"] = "1.13.1"; config["spaceServiceBase"] = `${hostname}/space/api/`; config["spaceService"] = `${hostname}/space/api/spaces`; config["dfr3ServiceBase"] = `${hostname}/dfr3/api/`; @@ -27,8 +27,8 @@ config["geoServer"] = `${hostname}/geoserver/incore/wms`; config["plottingService"] = `${hostname}/plotting/api/samples`; config["testUserInfo"] = "incrtest"; -config["signUpURL"] = "https://identity.ncsa.illinois.edu/register/BSKC2UKQPU"; -config["resetPwURL"] = "https://identity.ncsa.illinois.edu/reset"; +config["signUpURL"] = "/register"; +config["resetPwURL"] = "/auth/realms/In-core/login-actions/reset-credentials?client_id=react-auth"; config["setGravatarURL"] = "https://en.gravatar.com/support/activating-your-account/"; config["tosURL"] = `${hostname}/doc/incore/termsofservice.html`; config["privacyURL"] = "https://www.vpaa.uillinois.edu/resources/web_privacy"; @@ -51,7 +51,8 @@ config["keycloakConfig"] = { clientId: config["client_id"] }; -config["resetPwWarningMessage"] = "NOTE: Changes were recently made to IN-CORE's user management system. If you were " + +config["resetPwWarningMessage"] = + "NOTE: Changes were recently made to IN-CORE's user management system. If you were " + "registered as an IN-CORE user before 08/21/2024 and are experiencing login issues, you need to reset your " + "password."; diff --git a/src/components/DFR3Viewer.jsx b/src/components/DFR3Viewer.jsx index 2d8c4f0f..7e646024 100644 --- a/src/components/DFR3Viewer.jsx +++ b/src/components/DFR3Viewer.jsx @@ -407,7 +407,7 @@ const DFR3Viewer = () => { }; const deleteMappingConfirmed = () => { - deleteItemById("mapping", selectedMapping.id)(dispatch); + deleteItemById("mappings", selectedMapping.id)(dispatch); setSelectedMapping(""); setConfirmOpen(false); }; diff --git a/src/components/Profile.jsx b/src/components/Profile.jsx index e63c9ea4..3912e591 100644 --- a/src/components/Profile.jsx +++ b/src/components/Profile.jsx @@ -293,7 +293,7 @@ export default function Profile(props) { ) : null} - Forgot password? + Reset Password