From f21c2a1e361a86a3b8d3a36627f99ae58481b703 Mon Sep 17 00:00:00 2001 From: Chirag Madlani <12962843+chirag-madlani@users.noreply.github.com> Date: Thu, 4 Jan 2024 14:02:45 +0530 Subject: [PATCH] feat(ui): whats new update for 1.2.4 (#14573) * feat(ui): whats new update for 1.2.4 * update release date (cherry picked from commit 684c727e161900362268beb777c2bda309f3f51c) --- .../Modals/WhatsNewModal/whatsNewData.ts | 24 +++++++++++++++++-- .../ui/src/constants/docs.constants.ts | 3 +-- 2 files changed, 23 insertions(+), 4 deletions(-) diff --git a/openmetadata-ui/src/main/resources/ui/src/components/Modals/WhatsNewModal/whatsNewData.ts b/openmetadata-ui/src/main/resources/ui/src/components/Modals/WhatsNewModal/whatsNewData.ts index 7683ff1616a7..274b571659e9 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/Modals/WhatsNewModal/whatsNewData.ts +++ b/openmetadata-ui/src/main/resources/ui/src/components/Modals/WhatsNewModal/whatsNewData.ts @@ -19,9 +19,9 @@ import ingestionFramework from '../../../assets/img/IngestionFramework.png'; import tagCategoryImg from '../../../assets/img/TagCategory.png'; import collateIcon from '../../../assets/svg/ic-collate.svg'; -export const LATEST_VERSION_ID = 20; +export const LATEST_VERSION_ID = 21; -export const COOKIE_VERSION = 'VERSION_1_2_3'; // To be changed with each release. +export const COOKIE_VERSION = 'VERSION_1_2_4'; // To be changed with each release. // for youtube video make isImage = false and path = {video embed id} // embed:- youtube video => share => click on embed and take {url with id} from it @@ -1129,4 +1129,24 @@ export const WHATS_NEW = [ `, }, }, + { + id: 21, + version: 'v1.2.4', + description: 'Released on 5th Jan 2024.', + features: [], + changeLogs: { + Changes: `- To ensure a reliable Glossary Term Approval process, the Owner/Creator of the glossary term cannot be a Reviewer of that term. +- Long glossary term names are truncated. + `, + Improvements: `- Fixed a redirecting issue with the Glossary page. +- Fixed an issue with Tasks for the Dashboard charts. +- Fixed an issue with Profiler ingestion. +- Fixed an issue with the Version page. +- Fixed an issue with Connection details. +- Fixed an issue with loading the Custom Property page. +- Fixed an issue with Search Indexing. +- Security fixes have been made. + `, + }, + }, ]; diff --git a/openmetadata-ui/src/main/resources/ui/src/constants/docs.constants.ts b/openmetadata-ui/src/main/resources/ui/src/constants/docs.constants.ts index 9966e5f966b9..50e18886b38b 100644 --- a/openmetadata-ui/src/main/resources/ui/src/constants/docs.constants.ts +++ b/openmetadata-ui/src/main/resources/ui/src/constants/docs.constants.ts @@ -11,8 +11,7 @@ * limitations under the License. */ -export const OMD_REPOSITORY_LINK = - 'https://github.com/open-metadata/OpenMetadata?pk_campaign=om_start_us&pk_source=OpenMetadata&pk_medium=start_us'; +export const OMD_REPOSITORY_LINK = 'https://star-us.open-metadata.org/'; export const WORKFLOWS_PROFILER_DOCS = 'https://docs.open-metadata.org/connectors/ingestion/workflows/profiler';