diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d52e7dd6e5f..014f9e838ef 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.50.0 +current_version = 0.50.1 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-[a-z]+)? diff --git a/.env b/.env index 71c4ea879e3..1760003af8e 100644 --- a/.env +++ b/.env @@ -10,7 +10,7 @@ ### SHARED ### -VERSION=0.50.0 +VERSION=0.50.1 # When using the airbyte-db via default docker image CONFIG_ROOT=/data diff --git a/airbyte-bootloader/Dockerfile b/airbyte-bootloader/Dockerfile index 46bf6a509f5..1abf7aa93a3 100644 --- a/airbyte-bootloader/Dockerfile +++ b/airbyte-bootloader/Dockerfile @@ -1,7 +1,7 @@ ARG JDK_IMAGE=airbyte/airbyte-base-java-image:2.0.3 FROM ${JDK_IMAGE} -ARG VERSION=0.50.0 +ARG VERSION=0.50.1 ENV APPLICATION airbyte-bootloader ENV VERSION ${VERSION} diff --git a/airbyte-connector-atelier-server/Dockerfile b/airbyte-connector-atelier-server/Dockerfile index 471bf51ee5e..43fe98ada50 100644 --- a/airbyte-connector-atelier-server/Dockerfile +++ b/airbyte-connector-atelier-server/Dockerfile @@ -20,7 +20,7 @@ ENV PIP=${PYENV_ROOT}/versions/${PYTHON_VERSION}/bin/pip COPY requirements.txt requirements.txt RUN ${PIP} install -r requirements.txt -ARG VERSION=0.50.0 +ARG VERSION=0.50.1 ENV APPLICATION airbyte-connector-atelier-server ENV VERSION ${VERSION} @@ -33,5 +33,5 @@ ADD bin/${APPLICATION}-${VERSION}.tar /app # wait for upstream dependencies to become available before starting server ENTRYPOINT ["/bin/bash", "-c", "${APPLICATION}-${VERSION}/bin/${APPLICATION}"] -LABEL io.airbyte.version=0.50.0 +LABEL io.airbyte.version=0.50.1 LABEL io.airbyte.name=airbyte/connector-atelier-server diff --git a/airbyte-connector-builder-server/Dockerfile b/airbyte-connector-builder-server/Dockerfile index b2bf3d82696..e60975fecac 100644 --- a/airbyte-connector-builder-server/Dockerfile +++ b/airbyte-connector-builder-server/Dockerfile @@ -12,5 +12,5 @@ ENTRYPOINT ["uvicorn", "connector_builder.entrypoint:app", "--host", "0.0.0.0", EXPOSE 5005 -LABEL io.airbyte.version=0.50.0 +LABEL io.airbyte.version=0.50.1 LABEL io.airbyte.name=airbyte/connector-builder-server diff --git a/airbyte-connector-builder-server/setup.py b/airbyte-connector-builder-server/setup.py index 234c9606a25..d0740297cfa 100644 --- a/airbyte-connector-builder-server/setup.py +++ b/airbyte-connector-builder-server/setup.py @@ -16,7 +16,7 @@ setup( name="connector-builder-server", - version="0.50.0", + version="0.50.1", description="", long_description=README, author="Airbyte", diff --git a/airbyte-container-orchestrator/Dockerfile b/airbyte-container-orchestrator/Dockerfile index 8afe07aa055..51ccef5630a 100644 --- a/airbyte-container-orchestrator/Dockerfile +++ b/airbyte-container-orchestrator/Dockerfile @@ -10,7 +10,7 @@ RUN curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/s && chmod +x kubectl && mv kubectl /usr/local/bin/ # Don't change this manually. Bump version expects to make moves based on this string -ARG VERSION=0.50.0 +ARG VERSION=0.50.1 ENV APPLICATION airbyte-container-orchestrator ENV VERSION=${VERSION} diff --git a/airbyte-cron/Dockerfile b/airbyte-cron/Dockerfile index dc3310e14c0..8acd5c5dca5 100644 --- a/airbyte-cron/Dockerfile +++ b/airbyte-cron/Dockerfile @@ -1,7 +1,7 @@ ARG JDK_IMAGE=airbyte/airbyte-base-java-image:2.0.3 FROM ${JDK_IMAGE} AS cron -ARG VERSION=0.50.0 +ARG VERSION=0.50.1 ENV APPLICATION airbyte-cron ENV VERSION ${VERSION} diff --git a/airbyte-metrics/reporter/Dockerfile b/airbyte-metrics/reporter/Dockerfile index 9c028eded08..5978bfd1aa8 100644 --- a/airbyte-metrics/reporter/Dockerfile +++ b/airbyte-metrics/reporter/Dockerfile @@ -1,7 +1,7 @@ ARG JDK_IMAGE=airbyte/airbyte-base-java-image:2.0.3 FROM ${JDK_IMAGE} AS metrics-reporter -ARG VERSION=0.50.0 +ARG VERSION=0.50.1 ENV APPLICATION airbyte-metrics-reporter ENV VERSION ${VERSION} diff --git a/airbyte-proxy/Dockerfile b/airbyte-proxy/Dockerfile index 1867562b504..93f1dc21b58 100644 --- a/airbyte-proxy/Dockerfile +++ b/airbyte-proxy/Dockerfile @@ -2,7 +2,7 @@ FROM nginx:latest -ARG VERSION=0.50.0 +ARG VERSION=0.50.1 ENV APPLICATION airbyte-proxy ENV VERSION ${VERSION} diff --git a/airbyte-server/Dockerfile b/airbyte-server/Dockerfile index 5a38e65f887..7f36f78f6db 100644 --- a/airbyte-server/Dockerfile +++ b/airbyte-server/Dockerfile @@ -3,7 +3,7 @@ FROM ${JDK_IMAGE} AS server EXPOSE 8000 5005 -ARG VERSION=0.50.0 +ARG VERSION=0.50.1 ENV APPLICATION airbyte-server ENV VERSION ${VERSION} diff --git a/airbyte-webapp/package.json b/airbyte-webapp/package.json index 14ee7257b6b..06422528cfb 100644 --- a/airbyte-webapp/package.json +++ b/airbyte-webapp/package.json @@ -1,6 +1,6 @@ { "name": "airbyte-webapp", - "version": "0.50.0", + "version": "0.50.1", "private": true, "engines": { "node": "18.15.0", diff --git a/airbyte-workers/Dockerfile b/airbyte-workers/Dockerfile index c3ddb155e7c..c637b86573d 100644 --- a/airbyte-workers/Dockerfile +++ b/airbyte-workers/Dockerfile @@ -10,7 +10,7 @@ RUN curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/s && chmod +x kubectl && mv kubectl /usr/local/bin/ # Don't change this manually. Bump version expects to make moves based on this string -ARG VERSION=0.50.0 +ARG VERSION=0.50.1 ENV APPLICATION airbyte-workers ENV VERSION ${VERSION} diff --git a/charts/airbyte-bootloader/Chart.yaml b/charts/airbyte-bootloader/Chart.yaml index e5ad6511771..f03b6cbff4f 100644 --- a/charts/airbyte-bootloader/Chart.yaml +++ b/charts/airbyte-bootloader/Chart.yaml @@ -22,7 +22,7 @@ version: "0.45.20" # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.50.0" +appVersion: "0.50.1" dependencies: - name: common diff --git a/charts/airbyte-connector-builder-server/Chart.yaml b/charts/airbyte-connector-builder-server/Chart.yaml index 1a78c1ebbf1..8800cc6e060 100644 --- a/charts/airbyte-connector-builder-server/Chart.yaml +++ b/charts/airbyte-connector-builder-server/Chart.yaml @@ -21,7 +21,7 @@ version: "0.45.20" # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.50.0" +appVersion: "0.50.1" dependencies: - name: common diff --git a/charts/airbyte-cron/Chart.yaml b/charts/airbyte-cron/Chart.yaml index 407dccfb30d..6209e811e0a 100644 --- a/charts/airbyte-cron/Chart.yaml +++ b/charts/airbyte-cron/Chart.yaml @@ -21,7 +21,7 @@ version: 0.1.1 # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.50.0" +appVersion: "0.50.1" dependencies: - name: common diff --git a/charts/airbyte-server/Chart.yaml b/charts/airbyte-server/Chart.yaml index 06bdea9bd76..fd4dc12f76d 100644 --- a/charts/airbyte-server/Chart.yaml +++ b/charts/airbyte-server/Chart.yaml @@ -21,7 +21,7 @@ version: "0.45.20" # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.50.0" +appVersion: "0.50.1" dependencies: - name: common diff --git a/charts/airbyte-temporal/Chart.yaml b/charts/airbyte-temporal/Chart.yaml index 3bd73759053..ae9cd023538 100644 --- a/charts/airbyte-temporal/Chart.yaml +++ b/charts/airbyte-temporal/Chart.yaml @@ -22,7 +22,7 @@ version: "0.45.20" # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.50.0" +appVersion: "0.50.1" dependencies: - name: common diff --git a/charts/airbyte-webapp/Chart.yaml b/charts/airbyte-webapp/Chart.yaml index bdf7226469c..4b38f53ae19 100644 --- a/charts/airbyte-webapp/Chart.yaml +++ b/charts/airbyte-webapp/Chart.yaml @@ -22,7 +22,7 @@ version: "0.45.20" # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.50.0" +appVersion: "0.50.1" dependencies: - name: common diff --git a/charts/airbyte-worker/Chart.yaml b/charts/airbyte-worker/Chart.yaml index 9fb5fa9a6f1..8004fd90034 100644 --- a/charts/airbyte-worker/Chart.yaml +++ b/charts/airbyte-worker/Chart.yaml @@ -22,7 +22,7 @@ version: "0.45.20" # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.50.0" +appVersion: "0.50.1" dependencies: - name: common diff --git a/charts/airbyte/Chart.yaml b/charts/airbyte/Chart.yaml index 2bdda712ea9..4498be9e956 100644 --- a/charts/airbyte/Chart.yaml +++ b/charts/airbyte/Chart.yaml @@ -21,7 +21,7 @@ version: 0.45.20 # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.50.0" +appVersion: "0.50.1" dependencies: - name: common diff --git a/charts/airbyte/README.md b/charts/airbyte/README.md index c38c572f5cc..60d8db5d128 100644 --- a/charts/airbyte/README.md +++ b/charts/airbyte/README.md @@ -1,6 +1,6 @@ # airbyte -![Version: 0.50.0](https://img.shields.io/badge/Version-0.50.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.50.0](https://img.shields.io/badge/AppVersion-0.50.0-informational?style=flat-square) +![Version: 0.50.1](https://img.shields.io/badge/Version-0.50.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.50.1](https://img.shields.io/badge/AppVersion-0.50.1-informational?style=flat-square) Helm chart to deploy airbyte @@ -8,15 +8,15 @@ Helm chart to deploy airbyte | Repository | Name | Version | |------------|------|---------| -| https://airbytehq.github.io/helm-charts/ | airbyte-bootloader | 0.50.0 | -| https://airbytehq.github.io/helm-charts/ | connector-builder-server | 0.50.0 | -| https://airbytehq.github.io/helm-charts/ | cron | 0.50.0 | -| https://airbytehq.github.io/helm-charts/ | metrics | 0.50.0 | -| https://airbytehq.github.io/helm-charts/ | pod-sweeper | 0.50.0 | -| https://airbytehq.github.io/helm-charts/ | server | 0.50.0 | -| https://airbytehq.github.io/helm-charts/ | temporal | 0.50.0 | -| https://airbytehq.github.io/helm-charts/ | webapp | 0.50.0 | -| https://airbytehq.github.io/helm-charts/ | worker | 0.50.0 | +| https://airbytehq.github.io/helm-charts/ | airbyte-bootloader | 0.50.1 | +| https://airbytehq.github.io/helm-charts/ | connector-builder-server | 0.50.1 | +| https://airbytehq.github.io/helm-charts/ | cron | 0.50.1 | +| https://airbytehq.github.io/helm-charts/ | metrics | 0.50.1 | +| https://airbytehq.github.io/helm-charts/ | pod-sweeper | 0.50.1 | +| https://airbytehq.github.io/helm-charts/ | server | 0.50.1 | +| https://airbytehq.github.io/helm-charts/ | temporal | 0.50.1 | +| https://airbytehq.github.io/helm-charts/ | webapp | 0.50.1 | +| https://airbytehq.github.io/helm-charts/ | worker | 0.50.1 | | https://charts.bitnami.com/bitnami | common | 1.x.x | ## Values