mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-06-27 04:22:05 +00:00
Bump main branch to version 1.0.0 (#10040)
* Bump to version 0.13.2 * Bump mvn projects to 1.0.0-SNAPSHOT * Bump python projects to 1.0.0.dev0 --------- Co-authored-by: Pere Miquel Brull <peremiquelbrull@gmail.com>
This commit is contained in:
parent
72d6bfca1d
commit
b9a3c06104
2
.github/workflows/docker-openmetadata-db.yml
vendored
2
.github/workflows/docker-openmetadata-db.yml
vendored
@ -31,7 +31,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Check trigger type
|
- name: Check trigger type
|
||||||
if: ${{ env.input == '' }}
|
if: ${{ env.input == '' }}
|
||||||
run: echo "input=0.13.1" >> $GITHUB_ENV
|
run: echo "input=0.13.2" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Check out the Repo
|
- name: Check out the Repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
@ -31,7 +31,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Check trigger type
|
- name: Check trigger type
|
||||||
if: ${{ env.input == '' }}
|
if: ${{ env.input == '' }}
|
||||||
run: echo "input=0.13.1" >> $GITHUB_ENV
|
run: echo "input=0.13.2" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Check out the Repo
|
- name: Check out the Repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
@ -31,7 +31,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Check trigger type
|
- name: Check trigger type
|
||||||
if: ${{ env.input == '' }}
|
if: ${{ env.input == '' }}
|
||||||
run: echo "input=0.13.1" >> $GITHUB_ENV
|
run: echo "input=0.13.2" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Check out the Repo
|
- name: Check out the Repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
@ -31,7 +31,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Check trigger type
|
- name: Check trigger type
|
||||||
if: ${{ env.input == '' }}
|
if: ${{ env.input == '' }}
|
||||||
run: echo "input=0.13.1" >> $GITHUB_ENV
|
run: echo "input=0.13.2" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Check out the Repo
|
- name: Check out the Repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
@ -58,7 +58,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Check trigger type
|
- name: Check trigger type
|
||||||
id: check_trigger
|
id: check_trigger
|
||||||
run: echo "DOCKER_RELEASE_TAG=0.13.1" >> $GITHUB_OUTPUT
|
run: echo "DOCKER_RELEASE_TAG=0.13.2" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Download application from Artifiact
|
- name: Download application from Artifiact
|
||||||
uses: actions/download-artifact@v2
|
uses: actions/download-artifact@v2
|
||||||
@ -120,7 +120,7 @@ jobs:
|
|||||||
- name: Check trigger type
|
- name: Check trigger type
|
||||||
id: check_trigger
|
id: check_trigger
|
||||||
if: ${{ env.DOCKER_RELEASE_TAG == '' }}
|
if: ${{ env.DOCKER_RELEASE_TAG == '' }}
|
||||||
run: echo "DOCKER_RELEASE_TAG=0.13.1" >> $GITHUB_ENV
|
run: echo "DOCKER_RELEASE_TAG=0.13.2" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Check out the Repo
|
- name: Check out the Repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>platform</artifactId>
|
<artifactId>platform</artifactId>
|
||||||
<groupId>org.open-metadata</groupId>
|
<groupId>org.open-metadata</groupId>
|
||||||
<version>0.13.2-SNAPSHOT</version>
|
<version>1.0.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<properties>
|
<properties>
|
||||||
|
@ -19,7 +19,7 @@ RUN apk update \
|
|||||||
&& rm -rf /var/cache/apk/*
|
&& rm -rf /var/cache/apk/*
|
||||||
|
|
||||||
COPY docker/metadata/openmetadata-start.sh docker/metadata/openmetadata.yaml ./
|
COPY docker/metadata/openmetadata-start.sh docker/metadata/openmetadata.yaml ./
|
||||||
RUN wget https://github.com/open-metadata/OpenMetadata/releases/download/0.12.0-release/openmetadata-0.12.0.tar.gz && \
|
RUN wget https://github.com/open-metadata/OpenMetadata/releases/download/0.13.2-release/openmetadata-0.13.2.tar.gz && \
|
||||||
tar zxvf openmetadata-*.tar.gz && \
|
tar zxvf openmetadata-*.tar.gz && \
|
||||||
rm openmetadata-*.tar.gz
|
rm openmetadata-*.tar.gz
|
||||||
RUN chmod 777 openmetadata-start.sh
|
RUN chmod 777 openmetadata-start.sh
|
||||||
|
@ -18,7 +18,7 @@ volumes:
|
|||||||
services:
|
services:
|
||||||
postgresql:
|
postgresql:
|
||||||
container_name: openmetadata_postgresql
|
container_name: openmetadata_postgresql
|
||||||
image: docker.getcollate.io/openmetadata/postgresql:0.13.1
|
image: docker.getcollate.io/openmetadata/postgresql:0.13.2
|
||||||
restart: always
|
restart: always
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_USER: postgres
|
POSTGRES_USER: postgres
|
||||||
@ -55,7 +55,7 @@ services:
|
|||||||
openmetadata-server:
|
openmetadata-server:
|
||||||
container_name: openmetadata_server
|
container_name: openmetadata_server
|
||||||
restart: always
|
restart: always
|
||||||
image: docker.getcollate.io/openmetadata/server:0.13.1
|
image: docker.getcollate.io/openmetadata/server:0.13.2
|
||||||
environment:
|
environment:
|
||||||
# OpenMetadata Server Authentication Configuration
|
# OpenMetadata Server Authentication Configuration
|
||||||
AUTHORIZER_CLASS_NAME: ${AUTHORIZER_CLASS_NAME:-org.openmetadata.service.security.DefaultAuthorizer}
|
AUTHORIZER_CLASS_NAME: ${AUTHORIZER_CLASS_NAME:-org.openmetadata.service.security.DefaultAuthorizer}
|
||||||
@ -121,7 +121,7 @@ services:
|
|||||||
|
|
||||||
ingestion:
|
ingestion:
|
||||||
container_name: openmetadata_ingestion
|
container_name: openmetadata_ingestion
|
||||||
image: docker.getcollate.io/openmetadata/ingestion:0.13.1
|
image: docker.getcollate.io/openmetadata/ingestion:0.13.2
|
||||||
depends_on:
|
depends_on:
|
||||||
elasticsearch:
|
elasticsearch:
|
||||||
condition: service_started
|
condition: service_started
|
||||||
|
@ -18,7 +18,7 @@ volumes:
|
|||||||
services:
|
services:
|
||||||
mysql:
|
mysql:
|
||||||
container_name: openmetadata_mysql
|
container_name: openmetadata_mysql
|
||||||
image: docker.getcollate.io/openmetadata/db:0.13.1
|
image: docker.getcollate.io/openmetadata/db:0.13.2
|
||||||
restart: always
|
restart: always
|
||||||
environment:
|
environment:
|
||||||
MYSQL_ROOT_PASSWORD: password
|
MYSQL_ROOT_PASSWORD: password
|
||||||
@ -53,7 +53,7 @@ services:
|
|||||||
openmetadata-server:
|
openmetadata-server:
|
||||||
container_name: openmetadata_server
|
container_name: openmetadata_server
|
||||||
restart: always
|
restart: always
|
||||||
image: docker.getcollate.io/openmetadata/server:0.13.1
|
image: docker.getcollate.io/openmetadata/server:0.13.2
|
||||||
environment:
|
environment:
|
||||||
# OpenMetadata Server Authentication Configuration
|
# OpenMetadata Server Authentication Configuration
|
||||||
AUTHORIZER_CLASS_NAME: ${AUTHORIZER_CLASS_NAME:-org.openmetadata.service.security.DefaultAuthorizer}
|
AUTHORIZER_CLASS_NAME: ${AUTHORIZER_CLASS_NAME:-org.openmetadata.service.security.DefaultAuthorizer}
|
||||||
@ -119,7 +119,7 @@ services:
|
|||||||
|
|
||||||
ingestion:
|
ingestion:
|
||||||
container_name: openmetadata_ingestion
|
container_name: openmetadata_ingestion
|
||||||
image: docker.getcollate.io/openmetadata/ingestion:0.13.1
|
image: docker.getcollate.io/openmetadata/ingestion:0.13.2
|
||||||
depends_on:
|
depends_on:
|
||||||
elasticsearch:
|
elasticsearch:
|
||||||
condition: service_started
|
condition: service_started
|
||||||
|
@ -72,8 +72,8 @@ USER airflow
|
|||||||
# Argument to provide for Ingestion Dependencies to install. Defaults to all
|
# Argument to provide for Ingestion Dependencies to install. Defaults to all
|
||||||
ARG INGESTION_DEPENDENCY="all"
|
ARG INGESTION_DEPENDENCY="all"
|
||||||
RUN pip install --upgrade pip
|
RUN pip install --upgrade pip
|
||||||
RUN pip install "openmetadata-managed-apis==0.12.2.4" --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.3.3/constraints-3.9.txt"
|
RUN pip install "openmetadata-managed-apis==0.13.2.1" --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.3.3/constraints-3.9.txt"
|
||||||
RUN pip install "openmetadata-ingestion[${INGESTION_DEPENDENCY}]==0.12.2.4"
|
RUN pip install "openmetadata-ingestion[${INGESTION_DEPENDENCY}]==0.13.2.1"
|
||||||
# remove all airflow providers except for docker
|
# remove all airflow providers except for docker
|
||||||
RUN pip freeze | grep "apache-airflow-providers" | grep -v "docker\|http" | xargs pip uninstall -y
|
RUN pip freeze | grep "apache-airflow-providers" | grep -v "docker\|http" | xargs pip uninstall -y
|
||||||
# Uninstalling psycopg2-binary and installing psycopg2 instead
|
# Uninstalling psycopg2-binary and installing psycopg2 instead
|
||||||
|
@ -63,8 +63,8 @@ COPY ingestion/operators/docker/main.py .
|
|||||||
RUN pip install --upgrade pip
|
RUN pip install --upgrade pip
|
||||||
|
|
||||||
ARG INGESTION_DEPENDENCY="all"
|
ARG INGESTION_DEPENDENCY="all"
|
||||||
RUN pip install --upgrade openmetadata-ingestion[airflow]
|
RUN pip install --upgrade "openmetadata-ingestion[airflow]==0.13.2.1"
|
||||||
RUN pip install --upgrade openmetadata-ingestion[${INGESTION_DEPENDENCY}]
|
RUN pip install --upgrade "openmetadata-ingestion[${INGESTION_DEPENDENCY}]==0.13.2.1"
|
||||||
# Uninstalling psycopg2-binary and installing psycopg2 instead
|
# Uninstalling psycopg2-binary and installing psycopg2 instead
|
||||||
# because the psycopg2-binary generates a architecture specific error
|
# because the psycopg2-binary generates a architecture specific error
|
||||||
# while authrenticating connection with the airflow, psycopg2 solves this error
|
# while authrenticating connection with the airflow, psycopg2 solves this error
|
||||||
|
@ -227,7 +227,7 @@ test = {
|
|||||||
build_options = {"includes": ["_cffi_backend"]}
|
build_options = {"includes": ["_cffi_backend"]}
|
||||||
setup(
|
setup(
|
||||||
name="openmetadata-ingestion",
|
name="openmetadata-ingestion",
|
||||||
version="0.13.2.0.dev0",
|
version="1.0.0.0.dev0",
|
||||||
url="https://open-metadata.org/",
|
url="https://open-metadata.org/",
|
||||||
author="OpenMetadata Committers",
|
author="OpenMetadata Committers",
|
||||||
license="Apache License 2.0",
|
license="Apache License 2.0",
|
||||||
|
@ -69,7 +69,7 @@ setup(
|
|||||||
packages=find_packages(include=[f"{PLUGIN_NAME}.*", PLUGIN_NAME]),
|
packages=find_packages(include=[f"{PLUGIN_NAME}.*", PLUGIN_NAME]),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
package_data={PLUGIN_NAME: get_package_data()},
|
package_data={PLUGIN_NAME: get_package_data()},
|
||||||
version="0.13.2.0.dev0",
|
version="1.0.0.0.dev0",
|
||||||
url="https://open-metadata.org/",
|
url="https://open-metadata.org/",
|
||||||
author="OpenMetadata Committers",
|
author="OpenMetadata Committers",
|
||||||
license="Apache License 2.0",
|
license="Apache License 2.0",
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>openmetadata-clients</artifactId>
|
<artifactId>openmetadata-clients</artifactId>
|
||||||
<groupId>org.open-metadata</groupId>
|
<groupId>org.open-metadata</groupId>
|
||||||
<version>0.13.2-SNAPSHOT</version>
|
<version>1.0.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>platform</artifactId>
|
<artifactId>platform</artifactId>
|
||||||
<groupId>org.open-metadata</groupId>
|
<groupId>org.open-metadata</groupId>
|
||||||
<version>0.13.2-SNAPSHOT</version>
|
<version>1.0.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>platform</artifactId>
|
<artifactId>platform</artifactId>
|
||||||
<groupId>org.open-metadata</groupId>
|
<groupId>org.open-metadata</groupId>
|
||||||
<version>0.13.2-SNAPSHOT</version>
|
<version>1.0.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>openmetadata-dist</artifactId>
|
<artifactId>openmetadata-dist</artifactId>
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>platform</artifactId>
|
<artifactId>platform</artifactId>
|
||||||
<groupId>org.open-metadata</groupId>
|
<groupId>org.open-metadata</groupId>
|
||||||
<version>0.13.2-SNAPSHOT</version>
|
<version>1.0.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<artifactId>openmetadata-service</artifactId>
|
<artifactId>openmetadata-service</artifactId>
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>platform</artifactId>
|
<artifactId>platform</artifactId>
|
||||||
<groupId>org.open-metadata</groupId>
|
<groupId>org.open-metadata</groupId>
|
||||||
<version>0.13.2-SNAPSHOT</version>
|
<version>1.0.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>platform</artifactId>
|
<artifactId>platform</artifactId>
|
||||||
<groupId>org.open-metadata</groupId>
|
<groupId>org.open-metadata</groupId>
|
||||||
<version>0.13.2-SNAPSHOT</version>
|
<version>1.0.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
2
pom.xml
2
pom.xml
@ -26,7 +26,7 @@
|
|||||||
based on Open Metadata Standards/APIs, supporting connectors to a wide range of data services,
|
based on Open Metadata Standards/APIs, supporting connectors to a wide range of data services,
|
||||||
OpenMetadata enables end-to-end metadata management, giving you the freedom to unlock the value of your data assets.
|
OpenMetadata enables end-to-end metadata management, giving you the freedom to unlock the value of your data assets.
|
||||||
</description>
|
</description>
|
||||||
<version>0.13.2-SNAPSHOT</version>
|
<version>1.0.0-SNAPSHOT</version>
|
||||||
<url>https://github.com/open-metadata/OpenMetadata</url>
|
<url>https://github.com/open-metadata/OpenMetadata</url>
|
||||||
<modules>
|
<modules>
|
||||||
<module>openmetadata-spec</module>
|
<module>openmetadata-spec</module>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user