chore(ui): update what's new data content for 1.6.7 (#20475)

* chore(ui): update what's new data content

* update what's new

* fix collate logo wasn't rendering, update change log
This commit is contained in:
Chirag Madlani 2025-03-28 13:18:14 +05:30 committed by GitHub
parent fdec8c7b6b
commit 190c8abb3d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 31 additions and 4 deletions

View File

@ -14,7 +14,7 @@
/* eslint-disable max-len */
import React from 'react';
import RichTextEditorPreviewerV1 from '../../common/RichTextEditor/RichTextEditorPreviewerV1';
import RichTextEditorPreviewer from '../../common/RichTextEditor/RichTextEditorPreviewer';
type Props = {
data: { [name: string]: string };
@ -29,13 +29,13 @@ const ChangeLogs = ({ data }: Props) => {
<div className="mb-4" key={log}>
<div className="border-bottom mb-2.5 border-text">
<p className="text-base font-medium mb-2.5 log-title">
<RichTextEditorPreviewerV1
<RichTextEditorPreviewer
enableSeeMoreVariant={false}
markdown={log}
/>
</p>
</div>
<RichTextEditorPreviewerV1
<RichTextEditorPreviewer
enableSeeMoreVariant={false}
markdown={data[log]}
/>

View File

@ -17,7 +17,7 @@ import incidentManagerSampleData from '../../../assets/img/incidentManagerSample
import profilerConfigPage from '../../../assets/img/profilerConfigPage.png';
import collateIcon from '../../../assets/svg/ic-collate.svg';
export const COOKIE_VERSION = 'VERSION_1_6_6'; // To be changed with each release.
export const COOKIE_VERSION = 'VERSION_1_6_7'; // 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
@ -1687,4 +1687,31 @@ Since we are introducing the Auto Classification workflow, we are going to remov
- Fixed incremental lineage processing when processedLineage is null`,
},
},
{
id: 63,
version: 'v1.6.7',
description: 'Released on 28th March 2025.',
features: [],
changeLogs: {
Improvements: `- Lineage Improvements
- Added Tableau Custom SQL lineage support
- Added column count validation when creating table-type custom property
- Transformed Reserved keywords like quotes to OM compatible
- Added missing timestamp indexes for time series tables
- Enhancing FQN Handling: Support for Quoted Identifiers`,
Fixes: `- Fixed potential Okta login issues by clearing state to avoid login errors
- Fixed MariaDB profiling with Time datatype
- Fixed handling of Sample Data with non-utf8 characters
- Fixed test connection showing timeout after successful connection
- Fixed DBT logs and improved error handling
- Fixed Test Suite 'NoneType' object has no attribute 'id' handling
- Fixed delete entity relation live indexing
- Fixed Data Insights Data Stream deletion on OpenSearch
- Fixed soft delete and restore functionality
- Corrected childrenCount for Organizations in Teams
- Fixed custom dashboard issue with term type of data
- Lower training window for Collate Anomaly detection model ${CollateIconWithLinkMD}`,
},
},
];