Skip to content

Commit 4313a22

Browse files
Bump Airbyte version from 0.39.24-alpha to 0.39.25-alpha (#14124)
Co-authored-by: brianjlai <brianjlai@users.noreply.github.com>
1 parent 703ea07 commit 4313a22

File tree

21 files changed

+36
-36
lines changed

21 files changed

+36
-36
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.39.24-alpha
2+
current_version = 0.39.25-alpha
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-[a-z]+)?

.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
### SHARED ###
13-
VERSION=0.39.24-alpha
13+
VERSION=0.39.25-alpha
1414

1515
# When using the airbyte-db via default docker image
1616
CONFIG_ROOT=/data

airbyte-bootloader/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG JDK_VERSION=17.0.1
22
ARG JDK_IMAGE=openjdk:${JDK_VERSION}-slim
33
FROM ${JDK_IMAGE}
44

5-
ARG VERSION=0.39.24-alpha
5+
ARG VERSION=0.39.25-alpha
66

77
ENV APPLICATION airbyte-bootloader
88
ENV VERSION ${VERSION}

airbyte-container-orchestrator/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ RUN echo "deb [signed-by=/usr/share/keyrings/kubernetes-archive-keyring.gpg] htt
2828
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y kubectl
2929

3030
# Don't change this manually. Bump version expects to make moves based on this string
31-
ARG VERSION=0.39.24-alpha
31+
ARG VERSION=0.39.25-alpha
3232

3333
ENV APPLICATION airbyte-container-orchestrator
3434
ENV VERSION=${VERSION}

airbyte-metrics/reporter/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG JDK_VERSION=17.0.1
22
ARG JDK_IMAGE=openjdk:${JDK_VERSION}-slim
33
FROM ${JDK_IMAGE} AS metrics-reporter
44

5-
ARG VERSION=0.39.24-alpha
5+
ARG VERSION=0.39.25-alpha
66

77
ENV APPLICATION airbyte-metrics-reporter
88
ENV VERSION ${VERSION}

airbyte-server/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM ${JDK_IMAGE} AS server
44

55
EXPOSE 8000
66

7-
ARG VERSION=0.39.24-alpha
7+
ARG VERSION=0.39.25-alpha
88

99
ENV APPLICATION airbyte-server
1010
ENV VERSION ${VERSION}

airbyte-webapp/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

airbyte-webapp/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "airbyte-webapp",
3-
"version": "0.39.24-alpha",
3+
"version": "0.39.25-alpha",
44
"private": true,
55
"engines": {
66
"node": ">=16.0.0"

airbyte-workers/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RUN curl -fsSLo /usr/share/keyrings/kubernetes-archive-keyring.gpg https://packa
2727
RUN echo "deb [signed-by=/usr/share/keyrings/kubernetes-archive-keyring.gpg] https://apt.kubernetes.io/ kubernetes-xenial main" | tee /etc/apt/sources.list.d/kubernetes.list
2828
RUN apt-get update && apt-get install -y kubectl
2929

30-
ARG VERSION=0.39.24-alpha
30+
ARG VERSION=0.39.25-alpha
3131

3232
ENV APPLICATION airbyte-workers
3333
ENV VERSION ${VERSION}

charts/airbyte/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ version: 0.3.6
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "0.39.24-alpha"
24+
appVersion: "0.39.25-alpha"
2525

2626
dependencies:
2727
- name: common

charts/airbyte/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Helm charts for Airbyte.
3030
| `webapp.replicaCount` | Number of webapp replicas | `1` |
3131
| `webapp.image.repository` | The repository to use for the airbyte webapp image. | `airbyte/webapp` |
3232
| `webapp.image.pullPolicy` | the pull policy to use for the airbyte webapp image | `IfNotPresent` |
33-
| `webapp.image.tag` | The airbyte webapp image tag. Defaults to the chart's AppVersion | `0.39.24-alpha` |
33+
| `webapp.image.tag` | The airbyte webapp image tag. Defaults to the chart's AppVersion | `0.39.25-alpha` |
3434
| `webapp.podAnnotations` | Add extra annotations to the webapp pod(s) | `{}` |
3535
| `webapp.containerSecurityContext` | Security context for the container | `{}` |
3636
| `webapp.livenessProbe.enabled` | Enable livenessProbe on the webapp | `true` |
@@ -103,7 +103,7 @@ Helm charts for Airbyte.
103103
| `server.replicaCount` | Number of server replicas | `1` |
104104
| `server.image.repository` | The repository to use for the airbyte server image. | `airbyte/server` |
105105
| `server.image.pullPolicy` | the pull policy to use for the airbyte server image | `IfNotPresent` |
106-
| `server.image.tag` | The airbyte server image tag. Defaults to the chart's AppVersion | `0.39.24-alpha` |
106+
| `server.image.tag` | The airbyte server image tag. Defaults to the chart's AppVersion | `0.39.25-alpha` |
107107
| `server.podAnnotations` | Add extra annotations to the server pod | `{}` |
108108
| `server.containerSecurityContext` | Security context for the container | `{}` |
109109
| `server.livenessProbe.enabled` | Enable livenessProbe on the server | `true` |
@@ -138,7 +138,7 @@ Helm charts for Airbyte.
138138
| `worker.replicaCount` | Number of worker replicas | `1` |
139139
| `worker.image.repository` | The repository to use for the airbyte worker image. | `airbyte/worker` |
140140
| `worker.image.pullPolicy` | the pull policy to use for the airbyte worker image | `IfNotPresent` |
141-
| `worker.image.tag` | The airbyte worker image tag. Defaults to the chart's AppVersion | `0.39.24-alpha` |
141+
| `worker.image.tag` | The airbyte worker image tag. Defaults to the chart's AppVersion | `0.39.25-alpha` |
142142
| `worker.podAnnotations` | Add extra annotations to the worker pod(s) | `{}` |
143143
| `worker.containerSecurityContext` | Security context for the container | `{}` |
144144
| `worker.livenessProbe.enabled` | Enable livenessProbe on the worker | `true` |
@@ -170,7 +170,7 @@ Helm charts for Airbyte.
170170
| ------------------------------- | -------------------------------------------------------------------- | -------------------- |
171171
| `bootloader.image.repository` | The repository to use for the airbyte bootloader image. | `airbyte/bootloader` |
172172
| `bootloader.image.pullPolicy` | the pull policy to use for the airbyte bootloader image | `IfNotPresent` |
173-
| `bootloader.image.tag` | The airbyte bootloader image tag. Defaults to the chart's AppVersion | `0.39.24-alpha` |
173+
| `bootloader.image.tag` | The airbyte bootloader image tag. Defaults to the chart's AppVersion | `0.39.25-alpha` |
174174
| `bootloader.podAnnotations` | Add extra annotations to the bootloader pod | `{}` |
175175
| `bootloader.nodeSelector` | Node labels for pod assignment | `{}` |
176176
| `bootloader.tolerations` | Tolerations for worker pod assignment. | `[]` |

charts/airbyte/values.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ webapp:
4141
image:
4242
repository: airbyte/webapp
4343
pullPolicy: IfNotPresent
44-
tag: 0.39.24-alpha
44+
tag: 0.39.25-alpha
4545

4646
## @param webapp.podAnnotations [object] Add extra annotations to the webapp pod(s)
4747
##
@@ -315,7 +315,7 @@ server:
315315
image:
316316
repository: airbyte/server
317317
pullPolicy: IfNotPresent
318-
tag: 0.39.24-alpha
318+
tag: 0.39.25-alpha
319319

320320
## @param server.podAnnotations [object] Add extra annotations to the server pod
321321
##
@@ -442,7 +442,7 @@ worker:
442442
image:
443443
repository: airbyte/worker
444444
pullPolicy: IfNotPresent
445-
tag: 0.39.24-alpha
445+
tag: 0.39.25-alpha
446446

447447
## @param worker.podAnnotations [object] Add extra annotations to the worker pod(s)
448448
##
@@ -560,7 +560,7 @@ bootloader:
560560
image:
561561
repository: airbyte/bootloader
562562
pullPolicy: IfNotPresent
563-
tag: 0.39.24-alpha
563+
tag: 0.39.25-alpha
564564

565565
## @param bootloader.podAnnotations [object] Add extra annotations to the bootloader pod
566566
##

docs/operator-guides/upgrading-airbyte.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ If you are upgrading from (i.e. your current version of Airbyte is) Airbyte vers
103103
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`.
104104

105105
```bash
106-
docker run --rm -v /tmp:/config airbyte/migration:0.39.24-alpha --\
106+
docker run --rm -v /tmp:/config airbyte/migration:0.39.25-alpha --\
107107
--input /config/airbyte_archive.tar.gz\
108108
--output /config/airbyte_archive_migrated.tar.gz
109109
```

kube/overlays/stable-with-resource-limits/.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AIRBYTE_VERSION=0.39.24-alpha
1+
AIRBYTE_VERSION=0.39.25-alpha
22

33
# Airbyte Internal Database, see https://docs.airbyte.io/operator-guides/configuring-airbyte-db
44
DATABASE_HOST=airbyte-db-svc

kube/overlays/stable-with-resource-limits/kustomization.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ bases:
88

99
images:
1010
- name: airbyte/db
11-
newTag: 0.39.24-alpha
11+
newTag: 0.39.25-alpha
1212
- name: airbyte/bootloader
13-
newTag: 0.39.24-alpha
13+
newTag: 0.39.25-alpha
1414
- name: airbyte/server
15-
newTag: 0.39.24-alpha
15+
newTag: 0.39.25-alpha
1616
- name: airbyte/webapp
17-
newTag: 0.39.24-alpha
17+
newTag: 0.39.25-alpha
1818
- name: airbyte/worker
19-
newTag: 0.39.24-alpha
19+
newTag: 0.39.25-alpha
2020
- name: temporalio/auto-setup
2121
newTag: 1.7.0
2222

kube/overlays/stable/.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AIRBYTE_VERSION=0.39.24-alpha
1+
AIRBYTE_VERSION=0.39.25-alpha
22

33
# Airbyte Internal Database, see https://docs.airbyte.io/operator-guides/configuring-airbyte-db
44
DATABASE_HOST=airbyte-db-svc

kube/overlays/stable/kustomization.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ bases:
88

99
images:
1010
- name: airbyte/db
11-
newTag: 0.39.24-alpha
11+
newTag: 0.39.25-alpha
1212
- name: airbyte/bootloader
13-
newTag: 0.39.24-alpha
13+
newTag: 0.39.25-alpha
1414
- name: airbyte/server
15-
newTag: 0.39.24-alpha
15+
newTag: 0.39.25-alpha
1616
- name: airbyte/webapp
17-
newTag: 0.39.24-alpha
17+
newTag: 0.39.25-alpha
1818
- name: airbyte/worker
19-
newTag: 0.39.24-alpha
19+
newTag: 0.39.25-alpha
2020
- name: temporalio/auto-setup
2121
newTag: 1.7.0
2222

octavia-cli/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ USER octavia-cli
1414
WORKDIR /home/octavia-project
1515
ENTRYPOINT ["octavia"]
1616

17-
LABEL io.airbyte.version=0.39.24-alpha
17+
LABEL io.airbyte.version=0.39.25-alpha
1818
LABEL io.airbyte.name=airbyte/octavia-cli

octavia-cli/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ This script:
105105
```bash
106106
touch ~/.octavia # Create a file to store env variables that will be mapped the octavia-cli container
107107
mkdir my_octavia_project_directory # Create your octavia project directory where YAML configurations will be stored.
108-
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.39.24-alpha
108+
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.39.25-alpha
109109
```
110110

111111
### Using `docker-compose`

octavia-cli/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This install scripts currently only works for ZSH and Bash profiles.
44
# It creates an octavia alias in your profile bound to a docker run command and your current user.
55

6-
VERSION=0.39.24-alpha
6+
VERSION=0.39.25-alpha
77
OCTAVIA_ENV_FILE=${HOME}/.octavia
88

99
detect_profile() {

octavia-cli/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setup(
1717
name="octavia-cli",
18-
version="0.39.24",
18+
version="0.39.25",
1919
description="A command line interface to manage Airbyte configurations",
2020
long_description=README,
2121
author="Airbyte",

0 commit comments

Comments
 (0)