mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-14 12:06:54 +00:00
fix:cherry pick from 0.8.0 and miscellaneous fixes (#2445)
* updating ingestion-core version to 0.8.0 * updating ingestion version to 0.8.0 * fixing file copy path * update docker images to point to 0.8.0 * set up new release version * reset ingestion version to 0.9.0.dev0 * reset ingestion-core version to 0.9.0
This commit is contained in:
parent
76e1b2e696
commit
20309cde64
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>catalog</artifactId>
|
||||
<groupId>org.openmetadata</groupId>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<version>0.9.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
<parent>
|
||||
<artifactId>catalog</artifactId>
|
||||
<groupId>org.openmetadata</groupId>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<version>0.9.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<properties>
|
||||
|
@ -18,8 +18,8 @@ RUN apk update \
|
||||
&& apk add --update wget curl bash openjdk11 \
|
||||
&& rm -rf /var/cache/apk/*
|
||||
|
||||
COPY openmetadata-start.sh openmetadata.yaml ./
|
||||
RUN wget https://github.com/open-metadata/OpenMetadata/releases/download/0.7.0-release/openmetadata-0.7.0.tar.gz && \
|
||||
COPY docker/metadata/openmetadata-start.sh docker/metadata/openmetadata.yaml ./
|
||||
RUN wget https://github.com/open-metadata/OpenMetadata/releases/download/0.8.0-release/openmetadata-0.8.0.tar.gz && \
|
||||
tar zxvf openmetadata-*.tar.gz && \
|
||||
rm openmetadata-*.tar.gz
|
||||
RUN chmod 777 openmetadata-start.sh
|
||||
|
@ -13,7 +13,7 @@ version: "3.9"
|
||||
services:
|
||||
mysql:
|
||||
container_name: openmetadata_mysql
|
||||
image: openmetadata/db:0.7.0
|
||||
image: openmetadata/db:0.8.0
|
||||
restart: always
|
||||
environment:
|
||||
MYSQL_ROOT_PASSWORD: password
|
||||
@ -40,7 +40,7 @@ services:
|
||||
openmetadata-server:
|
||||
container_name: openmetadata_server
|
||||
restart: always
|
||||
image: openmetadata/server:0.7.0
|
||||
image: openmetadata/server:0.8.0
|
||||
expose:
|
||||
- 8585
|
||||
- 9200
|
||||
@ -59,7 +59,7 @@ services:
|
||||
|
||||
ingestion:
|
||||
container_name: openmetadata_ingestion
|
||||
image: openmetadata/ingestion:0.7.0
|
||||
image: openmetadata/ingestion:0.8.0
|
||||
depends_on:
|
||||
- mysql
|
||||
expose:
|
||||
|
@ -7,5 +7,5 @@ Provides metadata version information.
|
||||
|
||||
from incremental import Version
|
||||
|
||||
__version__ = Version("metadata", 0, 8, 0, dev=14)
|
||||
__version__ = Version("metadata", 0, 9, 0)
|
||||
__all__ = ["__version__"]
|
||||
|
@ -23,7 +23,7 @@ def get_long_description():
|
||||
|
||||
|
||||
base_requirements = {
|
||||
"openmetadata-ingestion-core==0.8.0.dev0",
|
||||
"openmetadata-ingestion-core==0.8.0",
|
||||
"commonregex",
|
||||
"idna<3,>=2.5",
|
||||
"click>=7.1.1",
|
||||
@ -134,7 +134,7 @@ test = {
|
||||
build_options = {"includes": ["_cffi_backend"]}
|
||||
setup(
|
||||
name="openmetadata-ingestion",
|
||||
version="0.6.1.dev0",
|
||||
version="0.9.0.dev0",
|
||||
url="https://open-metadata.org/",
|
||||
author="OpenMetadata Committers",
|
||||
license="Apache License 2.0",
|
||||
|
@ -20,7 +20,7 @@
|
||||
<parent>
|
||||
<artifactId>catalog</artifactId>
|
||||
<groupId>org.openmetadata</groupId>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<version>0.9.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>openmetadata-dist</artifactId>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>catalog</artifactId>
|
||||
<groupId>org.openmetadata</groupId>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
<version>0.9.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user