From 69f0c90b8d7ff8c911abb816db3f8e4dad4d02db Mon Sep 17 00:00:00 2001 From: RounakDhillon <162090200+RounakDhillon@users.noreply.github.com> Date: Wed, 27 Nov 2024 13:42:40 +0530 Subject: [PATCH] Docs: 1.5.12 Updation (#18808) Co-authored-by: Rounak Dhillon --- .../content/partials/v1.6/releases/latest.md | 25 ++++++++++++------- .../deployment/ingestion/external/airflow.md | 4 +-- .../quick-start/local-docker-deployment.md | 14 +++++------ .../content/v1.5.x/sdk/python/index.md | 4 +-- .../deployment/ingestion/external/airflow.md | 4 +-- .../quick-start/local-docker-deployment.md | 14 +++++------ .../v1.6.x-SNAPSHOT/sdk/python/index.md | 4 +-- 7 files changed, 38 insertions(+), 31 deletions(-) diff --git a/openmetadata-docs/content/partials/v1.6/releases/latest.md b/openmetadata-docs/content/partials/v1.6/releases/latest.md index f4613bb5347..091af4b664f 100644 --- a/openmetadata-docs/content/partials/v1.6/releases/latest.md +++ b/openmetadata-docs/content/partials/v1.6/releases/latest.md @@ -1,7 +1,7 @@ -# 1.5.10 Release 🎉 +# 1.5.12 Release 🎉 {% note noteType="Tip" %} -**Oct 31st, 2024** +**Nov 26th, 2024** {% /note %} {% inlineCalloutContainer %} @@ -10,17 +10,24 @@ color="violet-70" icon="celebration" bold="Upgrade OpenMetadata" href="/deployment/upgrade" %} -Learn how to upgrade your OpenMetadata instance to 1.5.10! +Learn how to upgrade your OpenMetadata instance to 1.5.12! {% /inlineCallout %} {% /inlineCalloutContainer %} -You can find the GitHub release [here](https://github.com/open-metadata/OpenMetadata/releases/tag/1.5.10-release). +You can find the GitHub release [here](https://github.com/open-metadata/OpenMetadata/releases/tag/1.5.12-release). # What's Changed -- Fix encoding issue for teams search query. -- Fix disable empty rule for query builder widget. -- Fix unable to add more enum values for enum cp. -- Fix navigate to listing for deleting a service. +- Improvement: Added async apis for csv import. +- Improvement: Skip domain check for bots and admin +- Improvement: MYSQL lineage and usage. +- Minor: Added Lineage Field back to SearchLineage. +- Fix: Database is missing from the search dropdown +- Fix: Bad Representation of owners. +- Fix: The Daily Active Users Summary Card in Data Insights. +- Fix: The processing of URL Encoded Assets in Data Insights. +- Fix: Column Level Lineage export. +- Fix: Store procedure yielding by adding Try/Except. +- Fix: Lineage export when there is no column / pipeline edge. -**Full Changelog**: https://github.com/open-metadata/OpenMetadata/compare/1.5.9-release...1.5.10-release +**Full Changelog**: https://github.com/open-metadata/OpenMetadata/compare/1.5.11-release...1.5.12-release diff --git a/openmetadata-docs/content/v1.5.x/deployment/ingestion/external/airflow.md b/openmetadata-docs/content/v1.5.x/deployment/ingestion/external/airflow.md index 712d966ac33..a8b28ab5193 100644 --- a/openmetadata-docs/content/v1.5.x/deployment/ingestion/external/airflow.md +++ b/openmetadata-docs/content/v1.5.x/deployment/ingestion/external/airflow.md @@ -26,11 +26,11 @@ Install the `openmetadata-ingestion` package in your Airflow environment. This a pip3 install openmetadata-ingestion[]==x.y.z ``` -Replace [](https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/setup.py) with the sources to ingest, such as mysql, snowflake, or s3. --Replace x.y.z with the OpenMetadata version matching your server (e.g., 1.5.11). +-Replace x.y.z with the OpenMetadata version matching your server (e.g., 1.5.12). ### Example ``` -pip3 install openmetadata-ingestion[mysql,snowflake,s3]==1.5.11 +pip3 install openmetadata-ingestion[mysql,snowflake,s3]==1.5.12 ``` ### Example DAG diff --git a/openmetadata-docs/content/v1.5.x/quick-start/local-docker-deployment.md b/openmetadata-docs/content/v1.5.x/quick-start/local-docker-deployment.md index ce637c764b4..11e3713e92c 100644 --- a/openmetadata-docs/content/v1.5.x/quick-start/local-docker-deployment.md +++ b/openmetadata-docs/content/v1.5.x/quick-start/local-docker-deployment.md @@ -120,15 +120,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.10-release/docker-compose.yml +curl -sL -o docker-compose.yml https://github.com/open-metadata/OpenMetadata/releases/download/1.5.12-release/docker-compose.yml -curl -sL -o docker-compose-postgres.yml https://github.com/open-metadata/OpenMetadata/releases/download/1.5.10-release/docker-compose-postgres.yml +curl -sL -o docker-compose-postgres.yml https://github.com/open-metadata/OpenMetadata/releases/download/1.5.12-release/docker-compose-postgres.yml ``` ```commandline -wget https://github.com/open-metadata/OpenMetadata/releases/download/1.5.10-release/docker-compose.yml +wget https://github.com/open-metadata/OpenMetadata/releases/download/1.5.12-release/docker-compose.yml -wget https://github.com/open-metadata/OpenMetadata/releases/download/1.5.10-release/docker-compose-postgres.yml +wget https://github.com/open-metadata/OpenMetadata/releases/download/1.5.12-release/docker-compose-postgres.yml ``` ### 3. Start the Docker Compose Services @@ -168,10 +168,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.10 "./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.10 "./ingestion_depende…" 45 seconds ago Up 43 seconds 0.0.0.0:8080->8080/tcp openmetadata_ingestion +470cc8149826 openmetadata/server:1.5.12 "./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.12 "./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.10 "/entrypoint.sh mysq…" 45 seconds ago Up 44 seconds (healthy) 3306/tcp, 33060-33061/tcp openmetadata_mysql +08947ab3424b openmetadata/db:1.5.12 "/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) diff --git a/openmetadata-docs/content/v1.5.x/sdk/python/index.md b/openmetadata-docs/content/v1.5.x/sdk/python/index.md index 85ae1dd1155..78d5a409e32 100644 --- a/openmetadata-docs/content/v1.5.x/sdk/python/index.md +++ b/openmetadata-docs/content/v1.5.x/sdk/python/index.md @@ -12,10 +12,10 @@ We are now going to present a high-level Python API as a type-safe and gentle wr The Python SDK is part of the `openmetadata-ingestion` base package. You can install it from [PyPI](https://pypi.org/project/openmetadata-ingestion/). Make sure to use the same `openmetadata-ingestion` version as your server version. For example, if you have the OpenMetadata -server at version 1.5.11, you will need to install: +server at version 1.5.12, you will need to install: ```python -pip install "openmetadata-ingestion~=1.5.11.0" +pip install "openmetadata-ingestion~=1.5.12.0" ``` {% /note %} diff --git a/openmetadata-docs/content/v1.6.x-SNAPSHOT/deployment/ingestion/external/airflow.md b/openmetadata-docs/content/v1.6.x-SNAPSHOT/deployment/ingestion/external/airflow.md index 712d966ac33..a8b28ab5193 100644 --- a/openmetadata-docs/content/v1.6.x-SNAPSHOT/deployment/ingestion/external/airflow.md +++ b/openmetadata-docs/content/v1.6.x-SNAPSHOT/deployment/ingestion/external/airflow.md @@ -26,11 +26,11 @@ Install the `openmetadata-ingestion` package in your Airflow environment. This a pip3 install openmetadata-ingestion[]==x.y.z ``` -Replace [](https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/setup.py) with the sources to ingest, such as mysql, snowflake, or s3. --Replace x.y.z with the OpenMetadata version matching your server (e.g., 1.5.11). +-Replace x.y.z with the OpenMetadata version matching your server (e.g., 1.5.12). ### Example ``` -pip3 install openmetadata-ingestion[mysql,snowflake,s3]==1.5.11 +pip3 install openmetadata-ingestion[mysql,snowflake,s3]==1.5.12 ``` ### Example DAG diff --git a/openmetadata-docs/content/v1.6.x-SNAPSHOT/quick-start/local-docker-deployment.md b/openmetadata-docs/content/v1.6.x-SNAPSHOT/quick-start/local-docker-deployment.md index 8c9346120fa..4d356aa2f49 100644 --- a/openmetadata-docs/content/v1.6.x-SNAPSHOT/quick-start/local-docker-deployment.md +++ b/openmetadata-docs/content/v1.6.x-SNAPSHOT/quick-start/local-docker-deployment.md @@ -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.8-release/docker-compose.yml +curl -sL -o docker-compose.yml https://github.com/open-metadata/OpenMetadata/releases/download/1.5.12-release/docker-compose.yml -curl -sL -o docker-compose-postgres.yml https://github.com/open-metadata/OpenMetadata/releases/download/1.5.8-release/docker-compose-postgres.yml +curl -sL -o docker-compose-postgres.yml https://github.com/open-metadata/OpenMetadata/releases/download/1.5.12-release/docker-compose-postgres.yml ``` ```commandline -wget https://github.com/open-metadata/OpenMetadata/releases/download/1.5.8-release/docker-compose.yml +wget https://github.com/open-metadata/OpenMetadata/releases/download/1.5.12-release/docker-compose.yml -wget https://github.com/open-metadata/OpenMetadata/releases/download/1.5.8-release/docker-compose-postgres.yml +wget https://github.com/open-metadata/OpenMetadata/releases/download/1.5.12-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.8 "./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.8 "./ingestion_depende…" 45 seconds ago Up 43 seconds 0.0.0.0:8080->8080/tcp openmetadata_ingestion +470cc8149826 openmetadata/server:1.5.12 "./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.12 "./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.8 "/entrypoint.sh mysq…" 45 seconds ago Up 44 seconds (healthy) 3306/tcp, 33060-33061/tcp openmetadata_mysql +08947ab3424b openmetadata/db:1.5.12 "/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) diff --git a/openmetadata-docs/content/v1.6.x-SNAPSHOT/sdk/python/index.md b/openmetadata-docs/content/v1.6.x-SNAPSHOT/sdk/python/index.md index 85ae1dd1155..78d5a409e32 100644 --- a/openmetadata-docs/content/v1.6.x-SNAPSHOT/sdk/python/index.md +++ b/openmetadata-docs/content/v1.6.x-SNAPSHOT/sdk/python/index.md @@ -12,10 +12,10 @@ We are now going to present a high-level Python API as a type-safe and gentle wr The Python SDK is part of the `openmetadata-ingestion` base package. You can install it from [PyPI](https://pypi.org/project/openmetadata-ingestion/). Make sure to use the same `openmetadata-ingestion` version as your server version. For example, if you have the OpenMetadata -server at version 1.5.11, you will need to install: +server at version 1.5.12, you will need to install: ```python -pip install "openmetadata-ingestion~=1.5.11.0" +pip install "openmetadata-ingestion~=1.5.12.0" ``` {% /note %}