Skip to content

Commit f1301ea

Browse files
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 (cherry picked from commit 190c8ab)
1 parent a658e94 commit f1301ea

File tree

2 files changed

+31
-4
lines changed

2 files changed

+31
-4
lines changed

openmetadata-ui/src/main/resources/ui/src/components/Modals/WhatsNewModal/ChangeLogs.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
/* eslint-disable max-len */
1515

1616
import React from 'react';
17-
import RichTextEditorPreviewerV1 from '../../common/RichTextEditor/RichTextEditorPreviewerV1';
17+
import RichTextEditorPreviewer from '../../common/RichTextEditor/RichTextEditorPreviewer';
1818

1919
type Props = {
2020
data: { [name: string]: string };
@@ -29,13 +29,13 @@ const ChangeLogs = ({ data }: Props) => {
2929
<div className="mb-4" key={log}>
3030
<div className="border-bottom mb-2.5 border-text">
3131
<p className="text-base font-medium mb-2.5 log-title">
32-
<RichTextEditorPreviewerV1
32+
<RichTextEditorPreviewer
3333
enableSeeMoreVariant={false}
3434
markdown={log}
3535
/>
3636
</p>
3737
</div>
38-
<RichTextEditorPreviewerV1
38+
<RichTextEditorPreviewer
3939
enableSeeMoreVariant={false}
4040
markdown={data[log]}
4141
/>

openmetadata-ui/src/main/resources/ui/src/components/Modals/WhatsNewModal/whatsNewData.ts

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import incidentManagerSampleData from '../../../assets/img/incidentManagerSample
1717
import profilerConfigPage from '../../../assets/img/profilerConfigPage.png';
1818
import collateIcon from '../../../assets/svg/ic-collate.svg';
1919

20-
export const COOKIE_VERSION = 'VERSION_1_6_6'; // To be changed with each release.
20+
export const COOKIE_VERSION = 'VERSION_1_6_7'; // To be changed with each release.
2121

2222
// for youtube video make isImage = false and path = {video embed id}
2323
// embed:- youtube video => share => click on embed and take {url with id} from it
@@ -1674,4 +1674,31 @@ Since we are introducing the Auto Classification workflow, we are going to remov
16741674
- Fixed incremental lineage processing when processedLineage is null`,
16751675
},
16761676
},
1677+
{
1678+
id: 63,
1679+
version: 'v1.6.7',
1680+
description: 'Released on 28th March 2025.',
1681+
features: [],
1682+
changeLogs: {
1683+
Improvements: `- Lineage Improvements
1684+
- Added Tableau Custom SQL lineage support
1685+
- Added column count validation when creating table-type custom property
1686+
- Transformed Reserved keywords like quotes to OM compatible
1687+
- Added missing timestamp indexes for time series tables
1688+
- Enhancing FQN Handling: Support for Quoted Identifiers`,
1689+
1690+
Fixes: `- Fixed potential Okta login issues by clearing state to avoid login errors
1691+
- Fixed MariaDB profiling with Time datatype
1692+
- Fixed handling of Sample Data with non-utf8 characters
1693+
- Fixed test connection showing timeout after successful connection
1694+
- Fixed DBT logs and improved error handling
1695+
- Fixed Test Suite 'NoneType' object has no attribute 'id' handling
1696+
- Fixed delete entity relation live indexing
1697+
- Fixed Data Insights Data Stream deletion on OpenSearch
1698+
- Fixed soft delete and restore functionality
1699+
- Corrected childrenCount for Organizations in Teams
1700+
- Fixed custom dashboard issue with term type of data
1701+
- Lower training window for Collate Anomaly detection model ${CollateIconWithLinkMD}`,
1702+
},
1703+
},
16771704
];

0 commit comments

Comments
 (0)