From 715f99e7e7af44abf1776cbc5d57771746d7f421 Mon Sep 17 00:00:00 2001 From: Pere Miquel Brull Date: Fri, 15 Sep 2023 17:14:42 +0200 Subject: [PATCH] [Docs] - Release 1.1.5 (#13218) * [Docs] - Release 1.1.5 * [Docs] - Release 1.1.5 * [Docs] - Release 1.1.5 --- .../upgrade/upgrade-prerequisites.md | 8 +++---- .../connectors/dashboard/superset/index.md | 16 +++++++------- .../content/v1.1.x/deployment/docker/index.md | 2 +- .../quick-start/local-docker-deployment.md | 14 ++++++------ .../content/v1.1.x/releases/index.md | 20 ++++++++++++----- .../content/v1.1.x/releases/releases/index.md | 22 +++++++++++++++++-- .../v1.1.x/releases/releases/latest.md | 20 ++++++++++++----- .../v1.1.x/releases/releases/supported.md | 2 +- 8 files changed, 71 insertions(+), 33 deletions(-) diff --git a/openmetadata-docs/content/partials/v1.1/deployment/upgrade/upgrade-prerequisites.md b/openmetadata-docs/content/partials/v1.1/deployment/upgrade/upgrade-prerequisites.md index 112b327e90a..e0f23366f34 100644 --- a/openmetadata-docs/content/partials/v1.1/deployment/upgrade/upgrade-prerequisites.md +++ b/openmetadata-docs/content/partials/v1.1/deployment/upgrade/upgrade-prerequisites.md @@ -27,7 +27,7 @@ You can learn more about how the migration process works [here](/deployment/upgr ```python python -m venv venv source venv/bin/activate -pip install openmetadata-ingestion~=1.1.4 +pip install openmetadata-ingestion~=1.1.5 ``` Validate the installed metadata version with `python -m metadata --version` @@ -87,12 +87,12 @@ For example, if you are upgrading the server to the version `x.y.z`, you will ne pip install openmetadata-ingestion[]==x.y.z ``` -The `plugin` parameter is a list of the sources that we want to ingest. An example would look like this `openmetadata-ingestion[mysql,snowflake,s3]==1.1.4`. +The `plugin` parameter is a list of the sources that we want to ingest. An example would look like this `openmetadata-ingestion[mysql,snowflake,s3]==1.1.5`. You will find specific instructions for each connector [here](/connectors). -## 1.1.4 - Stable Release 🎉 +## 1.1.5 - Stable Release 🎉 -OpenMetadata 1.1.4 is a stable release. Please check the [release notes](/releases/latest-release). +OpenMetadata 1.1.5 is a stable release. Please check the [release notes](/releases/latest-release). If you are upgrading production this is the recommended version to upgrade to. diff --git a/openmetadata-docs/content/v1.1.x/connectors/dashboard/superset/index.md b/openmetadata-docs/content/v1.1.x/connectors/dashboard/superset/index.md index 5f91d6da1c9..2ef40a560f0 100644 --- a/openmetadata-docs/content/v1.1.x/connectors/dashboard/superset/index.md +++ b/openmetadata-docs/content/v1.1.x/connectors/dashboard/superset/index.md @@ -5,14 +5,14 @@ slug: /connectors/dashboard/superset # Superset -| Stage | PROD | -|------------|--------------------------------| -| Dashboards | {% icon iconName="check" /%} | -| Charts | {% icon iconName="check" /%} | -| Owners | {% icon iconName="check" /%} | -| Tags | {% icon iconName="cross" /%} | -| Datamodels | Upcoming in OpenMetadata 1.1.4 | -| Lineage | {% icon iconName="check" /%} | +| Stage | PROD | +|------------|-------------------------------| +| Dashboards | {% icon iconName="check" /%} | +| Charts | {% icon iconName="check" /%} | +| Owners | {% icon iconName="check" /%} | +| Tags | {% icon iconName="cross" /%} | +| Datamodels |Upcoming in OpenMetadata 1.1.4 | +| Lineage | {% icon iconName="check" /%} | In this section, we provide guides and references to use the Superset connector. diff --git a/openmetadata-docs/content/v1.1.x/deployment/docker/index.md b/openmetadata-docs/content/v1.1.x/deployment/docker/index.md index d3b6eebefb8..a0b3efe9acd 100644 --- a/openmetadata-docs/content/v1.1.x/deployment/docker/index.md +++ b/openmetadata-docs/content/v1.1.x/deployment/docker/index.md @@ -97,7 +97,7 @@ This docker compose file contains only the docker compose services for OpenMetad You can also run the below command to fetch the docker compose file directly from the terminal - ```bash -wget https://github.com/open-metadata/OpenMetadata/releases/download/1.1.4-release/docker-compose-openmetadata-server.yml +wget https://github.com/open-metadata/OpenMetadata/releases/download/1.1.5-release/docker-compose-openmetadata-server.yml ``` ### 3. Update Environment Variables required for OpenMetadata Dependencies diff --git a/openmetadata-docs/content/v1.1.x/quick-start/local-docker-deployment.md b/openmetadata-docs/content/v1.1.x/quick-start/local-docker-deployment.md index 65c4635d265..7c6541b824b 100644 --- a/openmetadata-docs/content/v1.1.x/quick-start/local-docker-deployment.md +++ b/openmetadata-docs/content/v1.1.x/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 https://github.com/open-metadata/OpenMetadata/releases/download/1.1.4-release/docker-compose.yml +curl -sL https://github.com/open-metadata/OpenMetadata/releases/download/1.1.5-release/docker-compose.yml -curl -sL https://github.com/open-metadata/OpenMetadata/releases/download/1.1.4-release/docker-compose-postgres.yml +curl -sL https://github.com/open-metadata/OpenMetadata/releases/download/1.1.5-release/docker-compose-postgres.yml ``` ```commandline -wget -O https://github.com/open-metadata/OpenMetadata/releases/download/1.1.4-release/docker-compose.yml +wget -O https://github.com/open-metadata/OpenMetadata/releases/download/1.1.5-release/docker-compose.yml -wget -O https://github.com/open-metadata/OpenMetadata/releases/download/1.1.4-release/docker-compose-postgres.yml +wget -O https://github.com/open-metadata/OpenMetadata/releases/download/1.1.5-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.1.4 "./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.1.4 "./ingestion_depende…" 45 seconds ago Up 43 seconds 0.0.0.0:8080->8080/tcp openmetadata_ingestion +470cc8149826 openmetadata/server:1.1.5 "./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.1.5 "./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.1.4 "/entrypoint.sh mysq…" 45 seconds ago Up 44 seconds (healthy) 3306/tcp, 33060-33061/tcp openmetadata_mysql +08947ab3424b openmetadata/db:1.1.5 "/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.1.x/releases/index.md b/openmetadata-docs/content/v1.1.x/releases/index.md index 3726862fce4..f4d09d8e4f1 100644 --- a/openmetadata-docs/content/v1.1.x/releases/index.md +++ b/openmetadata-docs/content/v1.1.x/releases/index.md @@ -3,7 +3,7 @@ title: Releases slug: /releases --- -# 1.1.4 Release 🎉 +# 1.1.5 Release 🎉 {% inlineCalloutContainer %} {% inlineCallout @@ -11,12 +11,22 @@ color="violet-70" icon="celebration" bold="Upgrade OpenMetadata" href="/deployment/upgrade" %} -Learn how to upgrade your OpenMetadata instance to 1.1.4! +Learn how to upgrade your OpenMetadata instance to 1.1.5! {% /inlineCallout %} {% /inlineCalloutContainer %} -## UI Improvements -- Fixed ingestion deployment with schedule as `None` +## UI +- Fixed signup page styling +- Fixed OIDC Keyset retrieval + +## Ingestion +- Fixed BigQuery multi-project ingestion +- Upgrade Airflow base image to 2.6.3. This fixes Airflow's db migration. +- Fixed table usage count +- Add support for Tableau version 3.10 +- Add support for BigQuery datasets named with hyphens ## Backend -- Fixed Test Suite migrations +- Standardized timestamp +- Improved Data Insights error management to improve result accuracy +- Improved API performance of Data Quality endpoints diff --git a/openmetadata-docs/content/v1.1.x/releases/releases/index.md b/openmetadata-docs/content/v1.1.x/releases/releases/index.md index f9d9eae12a8..dadfb305567 100644 --- a/openmetadata-docs/content/v1.1.x/releases/releases/index.md +++ b/openmetadata-docs/content/v1.1.x/releases/releases/index.md @@ -12,7 +12,7 @@ version. To see what's coming in next releases, please check our [Roadmap](/rele {% /note %} -# 1.1.4 Release 🎉 +# 1.1.5 Release 🎉 {% inlineCalloutContainer %} {% inlineCallout @@ -20,10 +20,28 @@ color="violet-70" icon="celebration" bold="Upgrade OpenMetadata" href="/deployment/upgrade" %} -Learn how to upgrade your OpenMetadata instance to 1.1.4! +Learn how to upgrade your OpenMetadata instance to 1.1.5! {% /inlineCallout %} {% /inlineCalloutContainer %} +## UI +- Fixed signup page styling +- Fixed OIDC Keyset retrieval + +## Ingestion +- Fixed BigQuery multi-project ingestion +- Upgrade Airflow base image to 2.6.3. This fixes Airflow's db migration. +- Fixed table usage count +- Add support for Tableau version 3.10 +- Add support for BigQuery datasets named with hyphens + +## Backend +- Standardized timestamp +- Improved Data Insights error management to improve result accuracy +- Improved API performance of Data Quality endpoints + +# 1.1.4 Release 🎉 + ## UI Improvements - Fixed ingestion deployment with schedule as `None` diff --git a/openmetadata-docs/content/v1.1.x/releases/releases/latest.md b/openmetadata-docs/content/v1.1.x/releases/releases/latest.md index c93847e8941..e856f4bd02e 100644 --- a/openmetadata-docs/content/v1.1.x/releases/releases/latest.md +++ b/openmetadata-docs/content/v1.1.x/releases/releases/latest.md @@ -3,7 +3,7 @@ title: Latest Release slug: /releases/latest-release --- -# 1.1.4 Release 🎉 +# 1.1.5 Release 🎉 {% inlineCalloutContainer %} {% inlineCallout @@ -11,12 +11,22 @@ color="violet-70" icon="celebration" bold="Upgrade OpenMetadata" href="/deployment/upgrade" %} -Learn how to upgrade your OpenMetadata instance to 1.1.4! +Learn how to upgrade your OpenMetadata instance to 1.1.5! {% /inlineCallout %} {% /inlineCalloutContainer %} -## UI Improvements -- Fixed ingestion deployment with schedule as `None` +## UI +- Fixed signup page styling +- Fixed OIDC Keyset retrieval + +## Ingestion +- Fixed BigQuery multi-project ingestion +- Upgrade Airflow base image to 2.6.3. This fixes Airflow's db migration. +- Fixed table usage count +- Add support for Tableau version 3.10 +- Add support for BigQuery datasets named with hyphens ## Backend -- Fixed Test Suite migrations \ No newline at end of file +- Standardized timestamp +- Improved Data Insights error management to improve result accuracy +- Improved API performance of Data Quality endpoints diff --git a/openmetadata-docs/content/v1.1.x/releases/releases/supported.md b/openmetadata-docs/content/v1.1.x/releases/releases/supported.md index 2a20713e810..ed3750fc52b 100644 --- a/openmetadata-docs/content/v1.1.x/releases/releases/supported.md +++ b/openmetadata-docs/content/v1.1.x/releases/releases/supported.md @@ -10,5 +10,5 @@ major releases. | Release | Release Date | |:--------|:-------------| -| 1.1.4 | 2023/08/29 | +| 1.1.5 | 2023/09/15 | | 1.0.5 | 2023/06/22 |