diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ef941532427..f49768269d4 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.50.3 +current_version = 0.50.4 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-[a-z]+)? diff --git a/.env b/.env index 3a789838c4c..209b15325c3 100644 --- a/.env +++ b/.env @@ -10,7 +10,7 @@ ### SHARED ### -VERSION=0.50.3 +VERSION=0.50.4 # When using the airbyte-db via default docker image CONFIG_ROOT=/data diff --git a/airbyte-bootloader/Dockerfile b/airbyte-bootloader/Dockerfile index 367a356ce9d..a7ab9ca4a24 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.3 +ARG VERSION=0.50.4 ENV APPLICATION airbyte-bootloader ENV VERSION ${VERSION} diff --git a/airbyte-connector-atelier-server/Dockerfile b/airbyte-connector-atelier-server/Dockerfile index e50124eda87..d3fb4a2fa3b 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.3 +ARG VERSION=0.50.4 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.3 +LABEL io.airbyte.version=0.50.4 LABEL io.airbyte.name=airbyte/connector-atelier-server diff --git a/airbyte-connector-builder-server/Dockerfile b/airbyte-connector-builder-server/Dockerfile index 618a22c415f..20e1f055489 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.3 +LABEL io.airbyte.version=0.50.4 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 550939ef679..3c7d341187a 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.3", + version="0.50.4", description="", long_description=README, author="Airbyte", diff --git a/airbyte-container-orchestrator/Dockerfile b/airbyte-container-orchestrator/Dockerfile index e3ba8aef71a..29f473bd880 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.3 +ARG VERSION=0.50.4 ENV APPLICATION airbyte-container-orchestrator ENV VERSION=${VERSION} diff --git a/airbyte-cron/Dockerfile b/airbyte-cron/Dockerfile index 2eb0208bcc8..bf3a451fc2c 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.3 +ARG VERSION=0.50.4 ENV APPLICATION airbyte-cron ENV VERSION ${VERSION} diff --git a/airbyte-metrics/reporter/Dockerfile b/airbyte-metrics/reporter/Dockerfile index 0dbfbbeb7bb..65a6d74b68b 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.3 +ARG VERSION=0.50.4 ENV APPLICATION airbyte-metrics-reporter ENV VERSION ${VERSION} diff --git a/airbyte-proxy/Dockerfile b/airbyte-proxy/Dockerfile index 80e82241954..6e9e51ec9eb 100644 --- a/airbyte-proxy/Dockerfile +++ b/airbyte-proxy/Dockerfile @@ -2,7 +2,7 @@ FROM nginx:latest -ARG VERSION=0.50.3 +ARG VERSION=0.50.4 ENV APPLICATION airbyte-proxy ENV VERSION ${VERSION} diff --git a/airbyte-server/Dockerfile b/airbyte-server/Dockerfile index 68c2098991d..ed4a0c88215 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.3 +ARG VERSION=0.50.4 ENV APPLICATION airbyte-server ENV VERSION ${VERSION} diff --git a/airbyte-webapp/package.json b/airbyte-webapp/package.json index a8d33cf238c..8538ba535f5 100644 --- a/airbyte-webapp/package.json +++ b/airbyte-webapp/package.json @@ -1,6 +1,6 @@ { "name": "airbyte-webapp", - "version": "0.50.3", + "version": "0.50.4", "private": true, "engines": { "node": "18.15.0", diff --git a/airbyte-workers/Dockerfile b/airbyte-workers/Dockerfile index ac42c1c8ea6..974df877123 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.3 +ARG VERSION=0.50.4 ENV APPLICATION airbyte-workers ENV VERSION ${VERSION} diff --git a/charts/airbyte-bootloader/Chart.yaml b/charts/airbyte-bootloader/Chart.yaml index 5002f2c650d..f49c7e66c9f 100644 --- a/charts/airbyte-bootloader/Chart.yaml +++ b/charts/airbyte-bootloader/Chart.yaml @@ -22,7 +22,7 @@ version: "0.45.35" # 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.3" +appVersion: "0.50.4" dependencies: - name: common diff --git a/charts/airbyte-connector-builder-server/Chart.yaml b/charts/airbyte-connector-builder-server/Chart.yaml index ac5e39e248b..be75d48e53c 100644 --- a/charts/airbyte-connector-builder-server/Chart.yaml +++ b/charts/airbyte-connector-builder-server/Chart.yaml @@ -21,7 +21,7 @@ version: "0.45.35" # 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.3" +appVersion: "0.50.4" dependencies: - name: common diff --git a/charts/airbyte-cron/Chart.yaml b/charts/airbyte-cron/Chart.yaml index 9222cbfb7e9..f101d8b2072 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.3" +appVersion: "0.50.4" dependencies: - name: common diff --git a/charts/airbyte-server/Chart.yaml b/charts/airbyte-server/Chart.yaml index df1e84fdc26..a6d4827027b 100644 --- a/charts/airbyte-server/Chart.yaml +++ b/charts/airbyte-server/Chart.yaml @@ -21,7 +21,7 @@ version: "0.45.35" # 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.3" +appVersion: "0.50.4" dependencies: - name: common diff --git a/charts/airbyte-temporal/Chart.yaml b/charts/airbyte-temporal/Chart.yaml index 3b444de163c..dca00b5f3f6 100644 --- a/charts/airbyte-temporal/Chart.yaml +++ b/charts/airbyte-temporal/Chart.yaml @@ -22,7 +22,7 @@ version: "0.45.35" # 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.3" +appVersion: "0.50.4" dependencies: - name: common diff --git a/charts/airbyte-webapp/Chart.yaml b/charts/airbyte-webapp/Chart.yaml index a15b1a02a79..16994236032 100644 --- a/charts/airbyte-webapp/Chart.yaml +++ b/charts/airbyte-webapp/Chart.yaml @@ -22,7 +22,7 @@ version: "0.45.35" # 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.3" +appVersion: "0.50.4" dependencies: - name: common diff --git a/charts/airbyte-worker/Chart.yaml b/charts/airbyte-worker/Chart.yaml index 8908ce132fe..d4d0dfd24cc 100644 --- a/charts/airbyte-worker/Chart.yaml +++ b/charts/airbyte-worker/Chart.yaml @@ -22,7 +22,7 @@ version: "0.45.35" # 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.3" +appVersion: "0.50.4" dependencies: - name: common diff --git a/charts/airbyte/Chart.yaml b/charts/airbyte/Chart.yaml index 326d04c1209..83a55353073 100644 --- a/charts/airbyte/Chart.yaml +++ b/charts/airbyte/Chart.yaml @@ -21,7 +21,7 @@ version: 0.45.35 # 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.3" +appVersion: "0.50.4" dependencies: - name: common diff --git a/charts/airbyte/README.md b/charts/airbyte/README.md index 1d8d4659f7a..8895cb542a5 100644 --- a/charts/airbyte/README.md +++ b/charts/airbyte/README.md @@ -1,6 +1,6 @@ # airbyte -![Version: 0.50.3](https://img.shields.io/badge/Version-0.50.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.50.3](https://img.shields.io/badge/AppVersion-0.50.3-informational?style=flat-square) +![Version: 0.50.4](https://img.shields.io/badge/Version-0.50.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.50.4](https://img.shields.io/badge/AppVersion-0.50.4-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.3 | -| https://airbytehq.github.io/helm-charts/ | connector-builder-server | 0.50.3 | -| https://airbytehq.github.io/helm-charts/ | cron | 0.50.3 | -| https://airbytehq.github.io/helm-charts/ | metrics | 0.50.3 | -| https://airbytehq.github.io/helm-charts/ | pod-sweeper | 0.50.3 | -| https://airbytehq.github.io/helm-charts/ | server | 0.50.3 | -| https://airbytehq.github.io/helm-charts/ | temporal | 0.50.3 | -| https://airbytehq.github.io/helm-charts/ | webapp | 0.50.3 | -| https://airbytehq.github.io/helm-charts/ | worker | 0.50.3 | +| https://airbytehq.github.io/helm-charts/ | airbyte-bootloader | 0.50.4 | +| https://airbytehq.github.io/helm-charts/ | connector-builder-server | 0.50.4 | +| https://airbytehq.github.io/helm-charts/ | cron | 0.50.4 | +| https://airbytehq.github.io/helm-charts/ | metrics | 0.50.4 | +| https://airbytehq.github.io/helm-charts/ | pod-sweeper | 0.50.4 | +| https://airbytehq.github.io/helm-charts/ | server | 0.50.4 | +| https://airbytehq.github.io/helm-charts/ | temporal | 0.50.4 | +| https://airbytehq.github.io/helm-charts/ | webapp | 0.50.4 | +| https://airbytehq.github.io/helm-charts/ | worker | 0.50.4 | | https://charts.bitnami.com/bitnami | common | 1.x.x | ## Values