diff --git a/.bumpversion.cfg b/.bumpversion.cfg index fc9f04e5722..d12d1ab743b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.44.9 +current_version = 0.44.10 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-[a-z]+)? diff --git a/.env b/.env index ebf45070a7f..3b5ebe73642 100644 --- a/.env +++ b/.env @@ -10,7 +10,7 @@ ### SHARED ### -VERSION=0.44.9 +VERSION=0.44.10 # When using the airbyte-db via default docker image CONFIG_ROOT=/data diff --git a/airbyte-bootloader/Dockerfile b/airbyte-bootloader/Dockerfile index d05453af9e8..86c19085b84 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.44.9 +ARG VERSION=0.44.10 ENV APPLICATION airbyte-bootloader ENV VERSION ${VERSION} diff --git a/airbyte-connector-atelier-server/Dockerfile b/airbyte-connector-atelier-server/Dockerfile index c3d09bf9198..d54ed9f4f33 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.44.9 +ARG VERSION=0.44.10 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.44.9 +LABEL io.airbyte.version=0.44.10 LABEL io.airbyte.name=airbyte/connector-atelier-server diff --git a/airbyte-connector-builder-server/Dockerfile b/airbyte-connector-builder-server/Dockerfile index 00c4abff896..a43e1b1775f 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 5003 -LABEL io.airbyte.version=0.44.9 +LABEL io.airbyte.version=0.44.10 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 512af0a773e..a7ab3fa04bb 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.44.9", + version="0.44.10", description="", long_description=README, author="Airbyte", diff --git a/airbyte-container-orchestrator/Dockerfile b/airbyte-container-orchestrator/Dockerfile index db4e9a35449..26ebdbfe2f2 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.44.9 +ARG VERSION=0.44.10 ENV APPLICATION airbyte-container-orchestrator ENV VERSION=${VERSION} diff --git a/airbyte-cron/Dockerfile b/airbyte-cron/Dockerfile index 601c15e7c3e..51b9d97a06d 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.44.9 +ARG VERSION=0.44.10 ENV APPLICATION airbyte-cron ENV VERSION ${VERSION} diff --git a/airbyte-metrics/reporter/Dockerfile b/airbyte-metrics/reporter/Dockerfile index 69ee0e5bc29..1945b6e6101 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.44.9 +ARG VERSION=0.44.10 ENV APPLICATION airbyte-metrics-reporter ENV VERSION ${VERSION} diff --git a/airbyte-proxy/Dockerfile b/airbyte-proxy/Dockerfile index 64e89a4cd4a..d6066d1aac9 100644 --- a/airbyte-proxy/Dockerfile +++ b/airbyte-proxy/Dockerfile @@ -2,7 +2,7 @@ FROM nginx:latest -ARG VERSION=0.44.9 +ARG VERSION=0.44.10 ENV APPLICATION airbyte-proxy ENV VERSION ${VERSION} diff --git a/airbyte-server/Dockerfile b/airbyte-server/Dockerfile index 07feaebfa30..736ae9cc5d5 100644 --- a/airbyte-server/Dockerfile +++ b/airbyte-server/Dockerfile @@ -3,7 +3,7 @@ FROM ${JDK_IMAGE} AS server EXPOSE 8000 5001 -ARG VERSION=0.44.9 +ARG VERSION=0.44.10 ENV APPLICATION airbyte-server ENV VERSION ${VERSION} diff --git a/airbyte-webapp/package.json b/airbyte-webapp/package.json index 3abeda916e4..1e7dc7e2446 100644 --- a/airbyte-webapp/package.json +++ b/airbyte-webapp/package.json @@ -1,6 +1,6 @@ { "name": "airbyte-webapp", - "version": "0.44.9", + "version": "0.44.10", "private": true, "engines": { "node": "18.15.0", diff --git a/airbyte-workers/Dockerfile b/airbyte-workers/Dockerfile index 24670028c70..1596c7b580f 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.44.9 +ARG VERSION=0.44.10 ENV APPLICATION airbyte-workers ENV VERSION ${VERSION} diff --git a/charts/airbyte-bootloader/Chart.yaml b/charts/airbyte-bootloader/Chart.yaml index 55313daef61..df958f55101 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.44.9" +appVersion: "0.44.10" dependencies: - name: common diff --git a/charts/airbyte-connector-builder-server/Chart.yaml b/charts/airbyte-connector-builder-server/Chart.yaml index bb1f8d3c83c..d4420c4be00 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.44.9" +appVersion: "0.44.10" dependencies: - name: common diff --git a/charts/airbyte-cron/Chart.yaml b/charts/airbyte-cron/Chart.yaml index 3f9659bbe1b..9782be1a18d 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.44.9" +appVersion: "0.44.10" dependencies: - name: common diff --git a/charts/airbyte-server/Chart.yaml b/charts/airbyte-server/Chart.yaml index a62e1afc6cb..37eace66bf0 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.44.9" +appVersion: "0.44.10" dependencies: - name: common diff --git a/charts/airbyte-temporal/Chart.yaml b/charts/airbyte-temporal/Chart.yaml index 15b9a75fa65..40c743a918f 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.44.9" +appVersion: "0.44.10" dependencies: - name: common diff --git a/charts/airbyte-webapp/Chart.yaml b/charts/airbyte-webapp/Chart.yaml index 4813437d3ea..8377265c4fa 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.44.9" +appVersion: "0.44.10" dependencies: - name: common diff --git a/charts/airbyte-worker/Chart.yaml b/charts/airbyte-worker/Chart.yaml index 1336e8724d0..f94e6274a5d 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.44.9" +appVersion: "0.44.10" dependencies: - name: common diff --git a/charts/airbyte/Chart.yaml b/charts/airbyte/Chart.yaml index b8bfa9ab54d..a4fa4f28022 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.44.9" +appVersion: "0.44.10" dependencies: - name: common diff --git a/charts/airbyte/README.md b/charts/airbyte/README.md index 06eeffaf6bd..a4f3f9e98d6 100644 --- a/charts/airbyte/README.md +++ b/charts/airbyte/README.md @@ -1,6 +1,6 @@ # airbyte -![Version: 0.44.9](https://img.shields.io/badge/Version-0.44.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.44.9](https://img.shields.io/badge/AppVersion-0.44.9-informational?style=flat-square) +![Version: 0.44.10](https://img.shields.io/badge/Version-0.44.10-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.44.10](https://img.shields.io/badge/AppVersion-0.44.10-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.44.9 | -| https://airbytehq.github.io/helm-charts/ | connector-builder-server | 0.44.9 | -| https://airbytehq.github.io/helm-charts/ | cron | 0.44.9 | -| https://airbytehq.github.io/helm-charts/ | metrics | 0.44.9 | -| https://airbytehq.github.io/helm-charts/ | pod-sweeper | 0.44.9 | -| https://airbytehq.github.io/helm-charts/ | server | 0.44.9 | -| https://airbytehq.github.io/helm-charts/ | temporal | 0.44.9 | -| https://airbytehq.github.io/helm-charts/ | webapp | 0.44.9 | -| https://airbytehq.github.io/helm-charts/ | worker | 0.44.9 | +| https://airbytehq.github.io/helm-charts/ | airbyte-bootloader | 0.44.10 | +| https://airbytehq.github.io/helm-charts/ | connector-builder-server | 0.44.10 | +| https://airbytehq.github.io/helm-charts/ | cron | 0.44.10 | +| https://airbytehq.github.io/helm-charts/ | metrics | 0.44.10 | +| https://airbytehq.github.io/helm-charts/ | pod-sweeper | 0.44.10 | +| https://airbytehq.github.io/helm-charts/ | server | 0.44.10 | +| https://airbytehq.github.io/helm-charts/ | temporal | 0.44.10 | +| https://airbytehq.github.io/helm-charts/ | webapp | 0.44.10 | +| https://airbytehq.github.io/helm-charts/ | worker | 0.44.10 | | https://charts.bitnami.com/bitnami | common | 1.x.x | ## Values