From 09222b1f0cdea97f721cd53b1a2236b9180d9c01 Mon Sep 17 00:00:00 2001 From: josephkmh Date: Wed, 19 Apr 2023 11:45:34 +0000 Subject: [PATCH] Bump Airbyte version from 0.44.0 to 0.44.1 --- .bumpversion.cfg | 2 +- .env | 3 +-- docker-compose.yaml | 6 ------ docs/operator-guides/upgrading-airbyte.md | 2 +- gradle.properties | 2 +- octavia-cli/Dockerfile | 2 +- octavia-cli/README.md | 2 +- octavia-cli/install.sh | 2 +- octavia-cli/setup.py | 2 +- 9 files changed, 8 insertions(+), 15 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 44430afc19b0c..e56872dec7f9c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.44.0 +current_version = 0.44.1 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-[a-z]+)? diff --git a/.env b/.env index c4f298318f383..9bd88dbede52b 100644 --- a/.env +++ b/.env @@ -10,7 +10,7 @@ ### SHARED ### -VERSION=0.44.0 +VERSION=0.44.1 # When using the airbyte-db via default docker image CONFIG_ROOT=/data @@ -61,7 +61,6 @@ INTERNAL_API_HOST=airbyte-server:8001 CONNECTOR_BUILDER_API_HOST=airbyte-connector-builder-server:80 WEBAPP_URL=http://localhost:8000/ # Although not present as an env var, required for webapp configuration. -API_URL=/api/v1/ CONNECTOR_BUILDER_API_URL=/connector-builder-api ### JOBS ### diff --git a/docker-compose.yaml b/docker-compose.yaml index fd0590ffd8470..5a281ced67a34 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -180,14 +180,8 @@ services: ports: - "80" environment: - - AIRBYTE_ROLE=${AIRBYTE_ROLE:-} - - AIRBYTE_VERSION=${VERSION} - - API_URL=${API_URL:-} - - CONNECTOR_BUILDER_API_URL=${CONNECTOR_BUILDER_API_URL:-} - INTERNAL_API_HOST=${INTERNAL_API_HOST} - CONNECTOR_BUILDER_API_HOST=${CONNECTOR_BUILDER_API_HOST} - - OPENREPLAY=${OPENREPLAY:-} - - PAPERCUPS_STORYTIME=${PAPERCUPS_STORYTIME:-} - TRACKING_STRATEGY=${TRACKING_STRATEGY} networks: - airbyte_internal diff --git a/docs/operator-guides/upgrading-airbyte.md b/docs/operator-guides/upgrading-airbyte.md index 5eba6572d1f30..a44d6fd41207c 100644 --- a/docs/operator-guides/upgrading-airbyte.md +++ b/docs/operator-guides/upgrading-airbyte.md @@ -109,7 +109,7 @@ If you are upgrading from (i.e. your current version of Airbyte is) Airbyte vers Here's an example of what it might look like with the values filled in. It assumes that the downloaded `airbyte_archive.tar.gz` is in `/tmp`. ```bash - docker run --rm -v /tmp:/config airbyte/migration:0.44.0 --\ + docker run --rm -v /tmp:/config airbyte/migration:0.44.1 --\ --input /config/airbyte_archive.tar.gz\ --output /config/airbyte_archive_migrated.tar.gz ``` diff --git a/gradle.properties b/gradle.properties index 12bf0a4cd9f85..d79d504d0a10d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION=0.44.0 +VERSION=0.44.1 # NOTE: some of these values are overwritten in CI! # NOTE: if you want to override this for your local machine, set overrides in ~/.gradle/gradle.properties diff --git a/octavia-cli/Dockerfile b/octavia-cli/Dockerfile index 285646c9c83a5..f2327a9f1d60f 100644 --- a/octavia-cli/Dockerfile +++ b/octavia-cli/Dockerfile @@ -14,5 +14,5 @@ USER octavia-cli WORKDIR /home/octavia-project ENTRYPOINT ["octavia"] -LABEL io.airbyte.version=0.44.0 +LABEL io.airbyte.version=0.44.1 LABEL io.airbyte.name=airbyte/octavia-cli diff --git a/octavia-cli/README.md b/octavia-cli/README.md index d71556008f9b9..64624fc9cd81b 100644 --- a/octavia-cli/README.md +++ b/octavia-cli/README.md @@ -104,7 +104,7 @@ This script: ```bash touch ~/.octavia # Create a file to store env variables that will be mapped the octavia-cli container mkdir my_octavia_project_directory # Create your octavia project directory where YAML configurations will be stored. -docker run --name octavia-cli -i --rm -v my_octavia_project_directory:/home/octavia-project --network host --user $(id -u):$(id -g) --env-file ~/.octavia airbyte/octavia-cli:0.44.0 +docker run --name octavia-cli -i --rm -v my_octavia_project_directory:/home/octavia-project --network host --user $(id -u):$(id -g) --env-file ~/.octavia airbyte/octavia-cli:0.44.1 ``` ### Using `docker-compose` diff --git a/octavia-cli/install.sh b/octavia-cli/install.sh index 8f07012a190b4..0ed52b4850778 100755 --- a/octavia-cli/install.sh +++ b/octavia-cli/install.sh @@ -3,7 +3,7 @@ # This install scripts currently only works for ZSH and Bash profiles. # It creates an octavia alias in your profile bound to a docker run command and your current user. -VERSION=0.44.0 +VERSION=0.44.1 OCTAVIA_ENV_FILE=${HOME}/.octavia detect_profile() { diff --git a/octavia-cli/setup.py b/octavia-cli/setup.py index f0b5f74f1d7c4..08e09e0e42803 100644 --- a/octavia-cli/setup.py +++ b/octavia-cli/setup.py @@ -15,7 +15,7 @@ setup( name="octavia-cli", - version="0.44.0", + version="0.44.1", description="A command line interface to manage Airbyte configurations", long_description=README, author="Airbyte",