From 0bef4aea0272504b00fe05a3dec2b2619e415489 Mon Sep 17 00:00:00 2001 From: Sachin Chaurasiya Date: Fri, 1 Mar 2024 00:11:51 +0530 Subject: [PATCH] doc: add whats new for 1.3.1 (#15407) * doc: add whats new for 1.3.1 * Fix typos and improve Slack notifications format * Add support for enum type in custom properties --- .../Modals/WhatsNewModal/whatsNewData.ts | 40 ++++++++++++++++++- 1 file changed, 38 insertions(+), 2 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 25249740644..e1f167a3212 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 = 22; +export const LATEST_VERSION_ID = 23; -export const COOKIE_VERSION = 'VERSION_1_3_0'; // To be changed with each release. +export const COOKIE_VERSION = 'VERSION_1_3_1'; // 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 @@ -1274,4 +1274,40 @@ export const WHATS_NEW = [ - We now support a test email button on the Email SMTP page.`, }, }, + { + id: 23, + version: 'v1.3.1', + description: 'Released on 29th Feb 2024.', + features: [], + changeLogs: { + [`Knowledge Center ${CollateIconWithLinkMD}`]: `- Supports drag and drop for the hierarchy of knowledge articles. +- Enhanced the layout and loading experience of the knowledge page. + `, + Lineage: `- When adding a new node in Lineage, the Display Name is supported in search. +- Fixed the issues with displaying lineage from Metabase. + `, + Glossary: `- Improved the automation of performance tests for Glossary. +- Performance improvements to display a large Glossary.`, + 'Data Insights': `- Data Insights report has been improved. +- The cost Analysis report has been optimized.`, + Notifications: `- The format for Slack notifications has been improved.`, + 'Custom Properties': `- Added enum type support for custom properties.`, + Connectors: `- Now BigQuery connector supports Primary, Foreign, and Unique Constraints. It fetches the column description for views. +- Captures the SQL query that powers a Tableau DataModel. +- Azure Key Vault is supported as a Secrets Manager. +- Fixed an issue with ingestion from Sagemaker, Oracle, LDAP, DB2, dbt, Kafka, Metabase, and Databricks. +- Fixed Looker projects and optional project filter patterns. +- Fixed issues with ingestion pipelines. +- Fixed an issue with the service display name after ingestion.`, + 'Other Changes': `- The functionality for mutually exclusive tags has been disabled. +- PodGC set up for Argo workflows to delete the pods from the Kubernetes environment on a successful run of the pods. +- Fixed the issue with the display of the personal access token. +- Fixed the mentions in comments for Announcements. +- Fixed the issue with setting a Group as a Domain Owner. +- Fixed the issue with the tooltip in the data quality graph. +- Fixed an issue about notifying the Reviewer of a Glossary Term. +- Fixed the issues with testing the email settings. +- Fixed an issue with adding tags.`, + }, + }, ];