From dc8b2501fdb03ca3a66f8ba87f5a3b1e48a7f31d Mon Sep 17 00:00:00 2001 From: stevereis Date: Wed, 22 Dec 2021 13:07:11 +0100 Subject: [PATCH 1/4] update MIP version to 6.5 --- src/components/App/Container.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/App/Container.tsx b/src/components/App/Container.tsx index b5e09b679..44fba7bd7 100644 --- a/src/components/App/Container.tsx +++ b/src/components/App/Container.tsx @@ -55,8 +55,8 @@ class AppContainer extends React.Component { } } catch (e) { appConfig = { - instanceName: 'MIP 6.4 Development', - version: 'dev 6.4', + instanceName: 'MIP 6.5 Development', + version: 'dev 6.5', datacatalogueUrl: undefined }; From 579fd5ff13dfaefcabb080d8ae59075abb77e0bd Mon Sep 17 00:00:00 2001 From: stevereis Date: Wed, 22 Dec 2021 13:08:13 +0100 Subject: [PATCH 2/4] Hotfix change error management from portal-backend --- src/components/API/Experiment.tsx | 11 ++++++----- src/components/API/Mining.tsx | 4 +++- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/components/API/Experiment.tsx b/src/components/API/Experiment.tsx index 567221d03..7fd6585c0 100644 --- a/src/components/API/Experiment.tsx +++ b/src/components/API/Experiment.tsx @@ -200,11 +200,12 @@ class Experiment extends Container { ...experiment, status: 'error', result: [ - { - type: MIME_TYPES.ERROR, - data: 'An unknown error occured. Please retry in a moment' - }, - ...(experiment?.result || []) + ...(experiment?.result ?? [ + { + type: MIME_TYPES.ERROR, + data: 'An unknown error occured. Please retry in a moment' + } + ]) ] }; } diff --git a/src/components/API/Mining.tsx b/src/components/API/Mining.tsx index d0dedbc98..cb671a29f 100644 --- a/src/components/API/Mining.tsx +++ b/src/components/API/Mining.tsx @@ -231,7 +231,9 @@ class Mining extends Container { return this.setState({ histograms: { data: undefined, - error: response.data.message, + error: + response.data.message ?? + (mining.result ? mining.result[0].data : 'unknown error occured'), loading: false } }); From fbc1a45dd75772049a862cbea1875574a9d8c76e Mon Sep 17 00:00:00 2001 From: Manuel Spuhler Date: Wed, 22 Dec 2021 12:52:12 +0000 Subject: [PATCH 3/4] Updated doc link --- src/components/UI/LoginPage.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/UI/LoginPage.tsx b/src/components/UI/LoginPage.tsx index b3c855151..5e7ef68a1 100644 --- a/src/components/UI/LoginPage.tsx +++ b/src/components/UI/LoginPage.tsx @@ -64,9 +64,9 @@ export default (): JSX.Element => { user management system.

- For detailed information go to the MIP on the{' '} + For detailed information:{' '} @@ -79,7 +79,7 @@ export default (): JSX.Element => {

  • General introduction:{' '} @@ -99,7 +99,7 @@ export default (): JSX.Element => {
  • Available algorithms: Description of{' '} @@ -111,7 +111,7 @@ export default (): JSX.Element => {
  • From f1f1429f4d606bd4934b6a33c085945bde59a0b7 Mon Sep 17 00:00:00 2001 From: Manuel Spuhler Date: Wed, 22 Dec 2021 13:00:41 +0000 Subject: [PATCH 4/4] Changelog updated --- CHANGELOG.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6626d808a..183461551 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,18 @@ # Changelog -## 2021/10/08 +## 8.0.1 - 2021/12/22 + +- Updated Login Page links +- Integrated new portal backend experiment status logic +## 8.0.0 - 2021/12/21 + +- Formula UI + - Interaction and transformation operation on contiunous data + - Integrated for Descriptive Statistics and Logistic Regression +- GraphQL type definitions available for frontend - Added Storybook. -- Table and GroupTable visual components. + - Table and GroupTable visual components. - Integrated new Descriptive Statistics output -- Draft Formula UI - GraphQL implementation for Metadata - GraphQL implementation for Descriptive Statistics