mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-25 06:28:22 +00:00
Co-authored-by: darth-coder00 <86726556+darth-coder00@users.noreply.github.com>
This commit is contained in:
parent
c36ae72ccd
commit
8db5281f30
@ -13,11 +13,9 @@
|
||||
|
||||
/* eslint-disable max-len */
|
||||
|
||||
export const LATEST_VERSION_ID = 3;
|
||||
export const LATEST_VERSION_ID = 4;
|
||||
|
||||
export const COOKIE_VERSION = 'VERSION_0_7_0'; // To be changed with each release.
|
||||
|
||||
export const dummyImg = 'https://via.placeholder.com/725x278';
|
||||
export const COOKIE_VERSION = 'VERSION_0_8_0'; // 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
|
||||
@ -193,4 +191,63 @@ export const WHATS_NEW = [
|
||||
'Other Features': `- Admins can now access the user listing page, filter users by team, and manage admin privileges\n- Updated the Redoc version to support search in the API, as well as to add query parameter fields fixes.\n- 'Entity Name' character size has been increased to 256.`,
|
||||
},
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
version: 'v0.8.0',
|
||||
description: 'Released on 26 Jan 2022.',
|
||||
features: [
|
||||
{
|
||||
title: 'Role Based Access Control',
|
||||
description:
|
||||
'In the 0.8 release, Role Based Access Control (RBAC) policy for metadata operations has been designed. New entities ‘Role’ and ‘Policy’ have been added to support access control. A User has a ‘Role’. Further, the Role is associated with a ‘Policy’. The ‘Policy’ has a set of ‘Rules’. Rules are used to provide access to metadata operations such as Update Description, Update Tags and Update Owners.',
|
||||
isImage: false,
|
||||
path: 'https://www.youtube.com/embed/m5_tIcNCxiM',
|
||||
},
|
||||
{
|
||||
title: 'Manually Edit Lineage Metadata ',
|
||||
description:
|
||||
'The manual lineage feature aims at the curation of lineage to make it richer by allowing users to edit the lineage and connect the entities with a no-code editor. A drag and drop UI has been designed to allow users to add lineage information manually. Entities like table, pipeline, and dashboard can be dragged and dropped to the lineage graph to create a node. The required entity can be searched and clicked to insert into the graph. Users can add a new edge as well as delete an existing edge. The lineage data updates in realtime. The nodes load incrementally.',
|
||||
isImage: false,
|
||||
path: 'https://www.youtube.com/embed/oII-ZXm0smc',
|
||||
},
|
||||
{
|
||||
title: 'Event Notification via Webhooks and Slack Integration',
|
||||
description:
|
||||
'The webhook interface allows you to build applications that receive all the data changes happening in your organization through APIs. We’ve worked on webhook integration to register URLs to receive metadata event notifications. These events will be pushed to Elasticsearch and Slack via Pluggable Consumers that can read the events published to LMAX. We’ve done a Slack integration through webhook, allowing users to set up Slack notifications.',
|
||||
isImage: false,
|
||||
path: 'https://www.youtube.com/embed/3flJMXmJqfk',
|
||||
},
|
||||
{
|
||||
title: 'Maintain Metadata for Deleted Entities',
|
||||
description:
|
||||
'Entities have a lot of user-generated metadata, such as descriptions, tags, ownership, tiering. There’s also rich metadata generated by OpenMetadata through the data profiler, usage data, lineage, test results, and other graph relationships with other entities. When an entity is deleted, all of this rich information is lost, and it’s not easy to recreate it. Now OpenMetadata supports soft deletion in the UI, and soft and permanent deletion in the API.',
|
||||
isImage: false,
|
||||
path: 'https://www.youtube.com/embed/PNrTX1D8e-E',
|
||||
},
|
||||
{
|
||||
title: 'Integrated Service and Ingestion Creation',
|
||||
description:
|
||||
'Service and ingestion creation has been integrated into a single workflow.',
|
||||
isImage: false,
|
||||
path: 'https://www.youtube.com/embed/fGVyIHIA6w4',
|
||||
},
|
||||
{
|
||||
title: 'Feature Tour',
|
||||
description: 'A tour of the key features in OpenMetadata 0.8.',
|
||||
isImage: false,
|
||||
path: 'https://www.youtube.com/embed/ZNGyjiQqS1w',
|
||||
},
|
||||
],
|
||||
changeLogs: {
|
||||
'Access Control Policy': `- Role Based Access Control (RBAC) policy has been designed for metadata operations.\n- New entities called ‘Role’ and ‘Policy’ have been added.\n- A User has a ‘Role’. A ‘Policy’ can be assigned to a Role. \n- A Policy has a set of ‘Rules’. Rules are used to provide access to functions like updateDescription, updateTags, updateOwner and so on.\n- Can provide access to metadata operations on any entity.\n- A standard set of Roles with their Policies have been added in the new release.\n- ‘Admins’ and ‘Bots’ can perform any metadata operation on any entity.\n- Admins can define policies through the Policy UI, and assign roles to the Users.\n- Rules can be enabled or disabled, as well as an entire policy can be disabled.`,
|
||||
'Manual Lineage': `- Enhance the lineage captured from machine metadata with user knowledge.\n- Users can edit the lineage and connect the entities with a no-code editor.\n- Drag and drop UI has been designed to add lineage information manually for the table and column levels.\n- Entities like table, pipeline, and dashboard can be dragged and dropped to the lineage graph to create a node.\n- The required entity can be searched and clicked to insert into the graph.\n- Users can add a new edge as well as delete an existing edge.\n- Lineage data updates in realtime.\n- Nodes load incrementally.`,
|
||||
'Event Notification via Webhooks': `- Subscribe event notifications via webhooks.`,
|
||||
'Slack Integration': `- Send metadata change events as Slack notifications\n- Provide timely updates to keep the data team informed of changes\n- Worked on LMAX disruptor integration to publish change events.\n- Worked on webhook integration to register URLs to receive metadata event notifications.\n- These events will be pushed to Elasticsearch and Slack via pluggable consumers that can read the events published to LMAX.\n- Supports a Slack integration through webhook, allowing users to set up Slack notifications.`,
|
||||
'Data Profiler': `- Earlier, we were using the Great Expectations profiler.\n- We have replaced it with a new and more efficient data profiler.`,
|
||||
'Entity Deletion': `- API support has been added for entity deletion, both for soft delete and hard delete.\n- A deleted dataset is marked as deactivated in the OpenMetadata backend instead of hard deleting it.\n- Users can restore the accidentally deleted entities.\n- Ingestion support has been added to publish entity deletion.\n- Enabled version support for deleted entities.\n- Added support for deleted entities in Elasticsearch.`,
|
||||
'Updates to Metadata Versioning': `- Version panel has been added for all the entities- Table, Topic, Pipeline, and Dashboard.\n- Previously, we were getting the change descriptions for a limited set of fields for the Topic entity; several other fields have now been included.`,
|
||||
'New Connectors': `- Supports [Delta Lake](https://delta.io/), an open source project that enables building a Lakehouse architecture on top of data lakes.\n- Worked on the refactor of SQL connectors to extract the lineage.\n- Connector API was refactored to capture the configs on the OpenMetadata side and to schedule the ingestion via UI.`,
|
||||
'Other Features': `- DataSource attribute has been added to the ML model entity.\n- Python API has been updated to add lineage for ML Model entities.\n- Supports the ingestion via environment variables to configure connectivity for both Elasticsearch and Airflow.\n- A new tab called ‘Bots’ has been added to group users with isBot set to true.\n- Support Application Default Credentials or a keyless, default service account in BigQuery data ingestion.\n- Improved usability of the metadata docker commands.\n- Includes a feature tour for new users.`,
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user