Skip to content

Commit f486ae8

Browse files
chore(release): Prepare Branch for 1.6.0-rc3
1 parent ad1bcf6 commit f486ae8

File tree

20 files changed

+28
-28
lines changed

20 files changed

+28
-28
lines changed

common/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<parent>
1919
<artifactId>platform</artifactId>
2020
<groupId>org.open-metadata</groupId>
21-
<version>1.6.0</version>
21+
<version>1.6.0-rc3</version>
2222
</parent>
2323
<modelVersion>4.0.0</modelVersion>
2424
<properties>

docker/docker-compose-ingestion/docker-compose-ingestion.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ volumes:
1818
services:
1919
ingestion:
2020
container_name: openmetadata_ingestion
21-
image: docker.getcollate.io/openmetadata/ingestion:1.6.0
21+
image: docker.getcollate.io/openmetadata/ingestion:1.6.0-rc3
2222
environment:
2323
AIRFLOW__API__AUTH_BACKENDS: "airflow.api.auth.backend.basic_auth,airflow.api.auth.backend.session"
2424
AIRFLOW__CORE__EXECUTOR: LocalExecutor

docker/docker-compose-openmetadata/docker-compose-openmetadata.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414
execute-migrate-all:
1515
container_name: execute_migrate_all
1616
command: "./bootstrap/openmetadata-ops.sh migrate"
17-
image: docker.getcollate.io/openmetadata/server:1.6.0
17+
image: docker.getcollate.io/openmetadata/server:1.6.0-rc3
1818
environment:
1919
OPENMETADATA_CLUSTER_NAME: ${OPENMETADATA_CLUSTER_NAME:-openmetadata}
2020
SERVER_PORT: ${SERVER_PORT:-8585}
@@ -227,7 +227,7 @@ services:
227227
openmetadata-server:
228228
container_name: openmetadata_server
229229
restart: always
230-
image: docker.getcollate.io/openmetadata/server:1.6.0
230+
image: docker.getcollate.io/openmetadata/server:1.6.0-rc3
231231
environment:
232232
OPENMETADATA_CLUSTER_NAME: ${OPENMETADATA_CLUSTER_NAME:-openmetadata}
233233
SERVER_PORT: ${SERVER_PORT:-8585}

docker/docker-compose-quickstart/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
# Build stage
1313
FROM alpine:3 AS build
14-
ARG RI_VERSION="1.6.0"
14+
ARG RI_VERSION="1.6.0-rc3"
1515
ENV RELEASE_URL="https://github.com/open-metadata/OpenMetadata/releases/download/${RI_VERSION}-release/openmetadata-${RI_VERSION}.tar.gz"
1616

1717
RUN mkdir -p /opt/openmetadata && \
@@ -21,7 +21,7 @@ RUN mkdir -p /opt/openmetadata && \
2121

2222
# Final stage
2323
FROM alpine:3
24-
ARG RI_VERSION="1.6.0"
24+
ARG RI_VERSION="1.6.0-rc3"
2525
ARG BUILD_DATE
2626
ARG COMMIT_ID
2727
LABEL maintainer="OpenMetadata"

docker/docker-compose-quickstart/docker-compose-postgres.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ volumes:
1818
services:
1919
postgresql:
2020
container_name: openmetadata_postgresql
21-
image: docker.getcollate.io/openmetadata/postgresql:1.6.0
21+
image: docker.getcollate.io/openmetadata/postgresql:1.6.0-rc3
2222
restart: always
2323
command: "--work_mem=10MB"
2424
environment:
@@ -61,7 +61,7 @@ services:
6161

6262
execute-migrate-all:
6363
container_name: execute_migrate_all
64-
image: docker.getcollate.io/openmetadata/server:1.6.0
64+
image: docker.getcollate.io/openmetadata/server:1.6.0-rc3
6565
command: "./bootstrap/openmetadata-ops.sh migrate"
6666
environment:
6767
OPENMETADATA_CLUSTER_NAME: ${OPENMETADATA_CLUSTER_NAME:-openmetadata}
@@ -275,7 +275,7 @@ services:
275275
openmetadata-server:
276276
container_name: openmetadata_server
277277
restart: always
278-
image: docker.getcollate.io/openmetadata/server:1.6.0
278+
image: docker.getcollate.io/openmetadata/server:1.6.0-rc3
279279
environment:
280280
OPENMETADATA_CLUSTER_NAME: ${OPENMETADATA_CLUSTER_NAME:-openmetadata}
281281
SERVER_PORT: ${SERVER_PORT:-8585}
@@ -483,7 +483,7 @@ services:
483483

484484
ingestion:
485485
container_name: openmetadata_ingestion
486-
image: docker.getcollate.io/openmetadata/ingestion:1.6.0
486+
image: docker.getcollate.io/openmetadata/ingestion:1.6.0-rc3
487487
depends_on:
488488
elasticsearch:
489489
condition: service_started

docker/docker-compose-quickstart/docker-compose.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ volumes:
1818
services:
1919
mysql:
2020
container_name: openmetadata_mysql
21-
image: docker.getcollate.io/openmetadata/db:1.6.0
21+
image: docker.getcollate.io/openmetadata/db:1.6.0-rc3
2222
command: "--sort_buffer_size=10M"
2323
restart: always
2424
environment:
@@ -59,7 +59,7 @@ services:
5959

6060
execute-migrate-all:
6161
container_name: execute_migrate_all
62-
image: docker.getcollate.io/openmetadata/server:1.6.0
62+
image: docker.getcollate.io/openmetadata/server:1.6.0-rc3
6363
command: "./bootstrap/openmetadata-ops.sh migrate"
6464
environment:
6565
OPENMETADATA_CLUSTER_NAME: ${OPENMETADATA_CLUSTER_NAME:-openmetadata}
@@ -273,7 +273,7 @@ services:
273273
openmetadata-server:
274274
container_name: openmetadata_server
275275
restart: always
276-
image: docker.getcollate.io/openmetadata/server:1.6.0
276+
image: docker.getcollate.io/openmetadata/server:1.6.0-rc3
277277
environment:
278278
OPENMETADATA_CLUSTER_NAME: ${OPENMETADATA_CLUSTER_NAME:-openmetadata}
279279
SERVER_PORT: ${SERVER_PORT:-8585}
@@ -482,7 +482,7 @@ services:
482482

483483
ingestion:
484484
container_name: openmetadata_ingestion
485-
image: docker.getcollate.io/openmetadata/ingestion:1.6.0
485+
image: docker.getcollate.io/openmetadata/ingestion:1.6.0-rc3
486486
depends_on:
487487
elasticsearch:
488488
condition: service_started

ingestion/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ ARG INGESTION_DEPENDENCY="all"
7676
ENV PIP_NO_CACHE_DIR=1
7777
# Make pip silent
7878
ENV PIP_QUIET=1
79-
ARG RI_VERSION="1.6.0.0"
79+
ARG RI_VERSION="1.6.0.0rc3"
8080
RUN pip install --upgrade pip
8181
RUN pip install "openmetadata-managed-apis~=${RI_VERSION}" --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.9.1/constraints-3.10.txt"
8282
RUN pip install "openmetadata-ingestion[${INGESTION_DEPENDENCY}]~=${RI_VERSION}"

ingestion/operators/docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ ENV PIP_QUIET=1
8181
RUN pip install --upgrade pip
8282

8383
ARG INGESTION_DEPENDENCY="all"
84-
ARG RI_VERSION="1.6.0.0"
84+
ARG RI_VERSION="1.6.0.0rc3"
8585
RUN pip install --upgrade pip
8686
RUN pip install "openmetadata-ingestion[airflow]~=${RI_VERSION}"
8787
RUN pip install "openmetadata-ingestion[${INGESTION_DEPENDENCY}]~=${RI_VERSION}"

ingestion/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66
# since it helps us organize and isolate version management
77
[project]
88
name = "openmetadata-ingestion"
9-
version = "1.6.0.0"
9+
version = "1.6.0.0rc3"
1010
dynamic = ["readme", "dependencies", "optional-dependencies"]
1111
authors = [
1212
{ name = "OpenMetadata Committers" }

openmetadata-airflow-apis/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66
# since it helps us organize and isolate version management
77
[project]
88
name = "openmetadata_managed_apis"
9-
version = "1.6.0.0"
9+
version = "1.6.0.0rc3"
1010
readme = "README.md"
1111
authors = [
1212
{name = "OpenMetadata Committers"}

openmetadata-clients/openmetadata-java-client/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>openmetadata-clients</artifactId>
77
<groupId>org.open-metadata</groupId>
8-
<version>1.6.0</version>
8+
<version>1.6.0-rc3</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

openmetadata-clients/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>platform</artifactId>
77
<groupId>org.open-metadata</groupId>
8-
<version>1.6.0</version>
8+
<version>1.6.0-rc3</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

openmetadata-dist/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<artifactId>platform</artifactId>
2222
<groupId>org.open-metadata</groupId>
23-
<version>1.6.0</version>
23+
<version>1.6.0-rc3</version>
2424
</parent>
2525

2626
<artifactId>openmetadata-dist</artifactId>

openmetadata-service/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>platform</artifactId>
77
<groupId>org.open-metadata</groupId>
8-
<version>1.6.0</version>
8+
<version>1.6.0-rc3</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>openmetadata-service</artifactId>

openmetadata-shaded-deps/elasticsearch-dep/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>openmetadata-shaded-deps</artifactId>
77
<groupId>org.open-metadata</groupId>
8-
<version>1.6.0</version>
8+
<version>1.6.0-rc3</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>elasticsearch-deps</artifactId>

openmetadata-shaded-deps/opensearch-dep/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>openmetadata-shaded-deps</artifactId>
77
<groupId>org.open-metadata</groupId>
8-
<version>1.6.0</version>
8+
<version>1.6.0-rc3</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>opensearch-deps</artifactId>

openmetadata-shaded-deps/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>platform</artifactId>
77
<groupId>org.open-metadata</groupId>
8-
<version>1.6.0</version>
8+
<version>1.6.0-rc3</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>openmetadata-shaded-deps</artifactId>

openmetadata-spec/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>platform</artifactId>
77
<groupId>org.open-metadata</groupId>
8-
<version>1.6.0</version>
8+
<version>1.6.0-rc3</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

openmetadata-ui/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>platform</artifactId>
77
<groupId>org.open-metadata</groupId>
8-
<version>1.6.0</version>
8+
<version>1.6.0-rc3</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
based on Open Metadata Standards/APIs, supporting connectors to a wide range of data services,
2727
OpenMetadata enables end-to-end metadata management, giving you the freedom to unlock the value of your data assets.
2828
</description>
29-
<version>1.6.0</version>
29+
<version>1.6.0-rc3</version>
3030
<url>https://github.com/open-metadata/OpenMetadata</url>
3131
<modules>
3232
<module>openmetadata-spec</module>

0 commit comments

Comments
 (0)