Docs: Updating the latest Release v.1.5.3 (#17819)

Co-authored-by: Prajwal Pandit <prajwalpandit@Prajwals-MacBook-Air.local>
This commit is contained in:
Prajwal214 2024-09-12 20:47:09 +05:30 committed by GitHub
parent bd105c300a
commit c0a01159ca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 83 additions and 29 deletions

View File

@ -1,7 +1,7 @@
# 1.5.2 Release 🎉
# 1.5.3 Release 🎉
{% note noteType="Tip" %}
**Sep 2nd, 2024**
**Sep 9th, 2024**
{% /note %}
{% inlineCalloutContainer %}
@ -10,22 +10,28 @@ color="violet-70"
icon="celebration"
bold="Upgrade OpenMetadata"
href="/deployment/upgrade" %}
Learn how to upgrade your OpenMetadata instance to 1.5.2!
Learn how to upgrade your OpenMetadata instance to 1.5.3!
{% /inlineCallout %}
{% /inlineCalloutContainer %}
You can find the GitHub release [here](https://github.com/open-metadata/OpenMetadata/releases/tag/1.5.2-release).
You can find the GitHub release [here](https://github.com/open-metadata/OpenMetadata/releases/tag/1.5.3-release).
# What's New
# What's Changed
- Resolved issue with lineage lookup for long Fully Qualified Names (FQNs), ensuring accurate lineage tracking and display.
- Fixed the 'Edit Reviewers' permission issue, allowing correct permission management for editing reviewers.
- Addressed email update issues to ensure that email addresses are properly updated throughout the system.
- Fixed the delete lineage functionality to handle cases where override lineage is enabled, preventing errors and ensuring consistency.
- Added support for the 'Edit Assign' button in the Incident Manager, allowing for easier assignment changes.
- Introduced a resizable layout for the glossary page, improving usability and adaptability to different screen sizes.
- Enhanced the display of tier tags with improved styling for better visibility and distinction.
- Pick email and name based on claim values at login. This update ensures that user details are automatically populated during the login process, streamlining user experience.
- Added custom properties support in Data Product.
## OpenMetadata
- Added resizable columns for custom properties
- Added support for automated ingestion of Tableau data source tags and description
- Improved "follow data" landing page module performance
- Improved search result suggestion by showing display name instead of FQN
- Fixed Cost Analysis issue when service has no connection
- Improved PII classification for JSON data types
- Fixed issue with expand all operation on terms page
- Fixed feed freezing when large images are part of the feed results
- Fixed dbt run_results file name with dbt cloud connection
**Full Changelog**: https://github.com/open-metadata/OpenMetadata/compare/1.5.1-release...1.5.2-release
## Collate
- Cleaned Argo logs artifacts
- Shipped VertexAI Connector
- Fixed automator lineage propagation issues with possible None entities
**Full Changelog**: https://github.com/open-metadata/OpenMetadata/compare/1.5.2-release...1.5.3-release

View File

@ -919,6 +919,8 @@ site_menu:
url: /releases/supported
- category: Releases / All Releases
url: /releases/all-releases
- category: Releases / All Releases / 1.5.2 Release
url: /releases/all-releases/#1.5.2-release
- category: Releases / All Releases / 1.5.1 Release
url: /releases/all-releases/#1.5.1-release
- category: Releases / All Releases / 1.4.8 Release

View File

@ -119,15 +119,15 @@ The latest version is at the top of the page
You can use the curl or wget command as well to fetch the docker compose files from your terminal -
```commandline
curl -sL -o docker-compose.yml https://github.com/open-metadata/OpenMetadata/releases/download/1.5.2-release/docker-compose.yml
curl -sL -o docker-compose.yml https://github.com/open-metadata/OpenMetadata/releases/download/1.5.3-release/docker-compose.yml
curl -sL -o docker-compose-postgres.yml https://github.com/open-metadata/OpenMetadata/releases/download/1.5.2-release/docker-compose-postgres.yml
curl -sL -o docker-compose-postgres.yml https://github.com/open-metadata/OpenMetadata/releases/download/1.5.3-release/docker-compose-postgres.yml
```
```commandline
wget https://github.com/open-metadata/OpenMetadata/releases/download/1.5.2-release/docker-compose.yml
wget https://github.com/open-metadata/OpenMetadata/releases/download/1.5.3-release/docker-compose.yml
wget https://github.com/open-metadata/OpenMetadata/releases/download/1.5.2-release/docker-compose-postgres.yml
wget https://github.com/open-metadata/OpenMetadata/releases/download/1.5.3-release/docker-compose-postgres.yml
```
### 3. Start the Docker Compose Services
@ -166,10 +166,10 @@ You can validate that all containers are up by running with command `docker ps`.
```commandline
docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
470cc8149826 openmetadata/server:1.5.2 "./openmetadata-star…" 45 seconds ago Up 43 seconds 3306/tcp, 9200/tcp, 9300/tcp, 0.0.0.0:8585-8586->8585-8586/tcp openmetadata_server
63578aacbff5 openmetadata/ingestion:1.5.2 "./ingestion_depende…" 45 seconds ago Up 43 seconds 0.0.0.0:8080->8080/tcp openmetadata_ingestion
470cc8149826 openmetadata/server:1.5.3 "./openmetadata-star…" 45 seconds ago Up 43 seconds 3306/tcp, 9200/tcp, 9300/tcp, 0.0.0.0:8585-8586->8585-8586/tcp openmetadata_server
63578aacbff5 openmetadata/ingestion:1.5.3 "./ingestion_depende…" 45 seconds ago Up 43 seconds 0.0.0.0:8080->8080/tcp openmetadata_ingestion
9f5ee8334f4b docker.elastic.co/elasticsearch/elasticsearch:7.16.3 "/tini -- /usr/local…" 45 seconds ago Up 44 seconds 0.0.0.0:9200->9200/tcp, 0.0.0.0:9300->9300/tcp openmetadata_elasticsearch
08947ab3424b openmetadata/db:1.5.2 "/entrypoint.sh mysq…" 45 seconds ago Up 44 seconds (healthy) 3306/tcp, 33060-33061/tcp openmetadata_mysql
08947ab3424b openmetadata/db:1.5.3 "/entrypoint.sh mysq…" 45 seconds ago Up 44 seconds (healthy) 3306/tcp, 33060-33061/tcp openmetadata_mysql
```
In a few seconds, you should be able to access the OpenMetadata UI at [http://localhost:8585](http://localhost:8585)

View File

@ -14,6 +14,28 @@ version. To see what's coming in next releases, please check our [Roadmap](/rele
{% partial file="/v1.5/releases/latest.md" /%}
# 1.5.2 Release
{% note noteType="Tip" %}
**Sep 2nd, 2024**
{% /note %}
You can find the GitHub release [here](https://github.com/open-metadata/OpenMetadata/releases/tag/1.5.2-release).
# What's New
- Resolved issue with lineage lookup for long Fully Qualified Names (FQNs), ensuring accurate lineage tracking and display.
- Fixed the 'Edit Reviewers' permission issue, allowing correct permission management for editing reviewers.
- Addressed email update issues to ensure that email addresses are properly updated throughout the system.
- Fixed the delete lineage functionality to handle cases where override lineage is enabled, preventing errors and ensuring consistency.
- Added support for the 'Edit Assign' button in the Incident Manager, allowing for easier assignment changes.
- Introduced a resizable layout for the glossary page, improving usability and adaptability to different screen sizes.
- Enhanced the display of tier tags with improved styling for better visibility and distinction.
- Pick email and name based on claim values at login. This update ensures that user details are automatically populated during the login process, streamlining user experience.
- Added custom properties support in Data Product.
**Full Changelog**: https://github.com/open-metadata/OpenMetadata/compare/1.5.1-release...1.5.2-release
# 1.5.1 Release
{% note noteType="Tip" %}

View File

@ -923,6 +923,8 @@ site_menu:
url: /releases/supported
- category: Releases / All Releases
url: /releases/all-releases
- category: Releases / All Releases / 1.5.2 Release
url: /releases/all-releases/#1.5.2-release
- category: Releases / All Releases / 1.5.1 Release
url: /releases/all-releases/#1.5.1-release
- category: Releases / All Releases / 1.4.8 Release

View File

@ -119,15 +119,15 @@ The latest version is at the top of the page
You can use the curl or wget command as well to fetch the docker compose files from your terminal -
```commandline
curl -sL -o docker-compose.yml https://github.com/open-metadata/OpenMetadata/releases/download/1.5.0-release/docker-compose.yml
curl -sL -o docker-compose.yml https://github.com/open-metadata/OpenMetadata/releases/download/1.5.3-release/docker-compose.yml
curl -sL -o docker-compose-postgres.yml https://github.com/open-metadata/OpenMetadata/releases/download/1.5.0-release/docker-compose-postgres.yml
curl -sL -o docker-compose-postgres.yml https://github.com/open-metadata/OpenMetadata/releases/download/1.5.3-release/docker-compose-postgres.yml
```
```commandline
wget https://github.com/open-metadata/OpenMetadata/releases/download/1.5.0-release/docker-compose.yml
wget https://github.com/open-metadata/OpenMetadata/releases/download/1.5.3-release/docker-compose.yml
wget https://github.com/open-metadata/OpenMetadata/releases/download/1.5.0-release/docker-compose-postgres.yml
wget https://github.com/open-metadata/OpenMetadata/releases/download/1.5.3-release/docker-compose-postgres.yml
```
### 3. Start the Docker Compose Services
@ -166,10 +166,10 @@ You can validate that all containers are up by running with command `docker ps`.
```commandline
docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
470cc8149826 openmetadata/server:1.5.0 "./openmetadata-star…" 45 seconds ago Up 43 seconds 3306/tcp, 9200/tcp, 9300/tcp, 0.0.0.0:8585-8586->8585-8586/tcp openmetadata_server
63578aacbff5 openmetadata/ingestion:1.5.0 "./ingestion_depende…" 45 seconds ago Up 43 seconds 0.0.0.0:8080->8080/tcp openmetadata_ingestion
470cc8149826 openmetadata/server:1.5.3 "./openmetadata-star…" 45 seconds ago Up 43 seconds 3306/tcp, 9200/tcp, 9300/tcp, 0.0.0.0:8585-8586->8585-8586/tcp openmetadata_server
63578aacbff5 openmetadata/ingestion:1.5.3 "./ingestion_depende…" 45 seconds ago Up 43 seconds 0.0.0.0:8080->8080/tcp openmetadata_ingestion
9f5ee8334f4b docker.elastic.co/elasticsearch/elasticsearch:7.16.3 "/tini -- /usr/local…" 45 seconds ago Up 44 seconds 0.0.0.0:9200->9200/tcp, 0.0.0.0:9300->9300/tcp openmetadata_elasticsearch
08947ab3424b openmetadata/db:1.5.0 "/entrypoint.sh mysq…" 45 seconds ago Up 44 seconds (healthy) 3306/tcp, 33060-33061/tcp openmetadata_mysql
08947ab3424b openmetadata/db:1.5.3 "/entrypoint.sh mysq…" 45 seconds ago Up 44 seconds (healthy) 3306/tcp, 33060-33061/tcp openmetadata_mysql
```
In a few seconds, you should be able to access the OpenMetadata UI at [http://localhost:8585](http://localhost:8585)

View File

@ -14,6 +14,28 @@ version. To see what's coming in next releases, please check our [Roadmap](/rele
{% partial file="/v1.5/releases/latest.md" /%}
# 1.5.2 Release
{% note noteType="Tip" %}
**Sep 2nd, 2024**
{% /note %}
You can find the GitHub release [here](https://github.com/open-metadata/OpenMetadata/releases/tag/1.5.2-release).
# What's New
- Resolved issue with lineage lookup for long Fully Qualified Names (FQNs), ensuring accurate lineage tracking and display.
- Fixed the 'Edit Reviewers' permission issue, allowing correct permission management for editing reviewers.
- Addressed email update issues to ensure that email addresses are properly updated throughout the system.
- Fixed the delete lineage functionality to handle cases where override lineage is enabled, preventing errors and ensuring consistency.
- Added support for the 'Edit Assign' button in the Incident Manager, allowing for easier assignment changes.
- Introduced a resizable layout for the glossary page, improving usability and adaptability to different screen sizes.
- Enhanced the display of tier tags with improved styling for better visibility and distinction.
- Pick email and name based on claim values at login. This update ensures that user details are automatically populated during the login process, streamlining user experience.
- Added custom properties support in Data Product.
**Full Changelog**: https://github.com/open-metadata/OpenMetadata/compare/1.5.1-release...1.5.2-release
# 1.5.1 Release
{% note noteType="Tip" %}