Skip to content

Commit 4c1c4d9

Browse files
authored
Bump version: 0.27.0-alpha → 0.27.1-alpha (#4640)
1 parent bfab448 commit 4c1c4d9

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.27.0-alpha
2+
current_version = 0.27.1-alpha
33
commit = True
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-[a-z]+)?

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION=0.27.0-alpha
1+
VERSION=0.27.1-alpha
22

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

airbyte-webapp/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

airbyte-webapp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "airbyte-webapp",
3-
"version": "0.27.0-alpha",
3+
"version": "0.27.1-alpha",
44
"private": true,
55
"scripts": {
66
"start": "react-scripts start",

docs/operator-guides/upgrading-airbyte.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ If you are running [Airbyte on Kubernetes](../deploying-airbyte/on-kubernetes.md
3030
docker-compose up
3131
```
3232

33-
## Upgrading on K8s (0.27.0-alpha and above)
33+
## Upgrading on K8s (0.27.1-alpha and above)
3434

35-
If you are upgrading from (i.e. your current version of Airbyte is) Airbyte version **0.27.0-alpha or above** on Kubernetes :
35+
If you are upgrading from (i.e. your current version of Airbyte is) Airbyte version **0.27.1-alpha or above** on Kubernetes :
3636

3737
1. In a terminal, on the host where Airbyte is running, turn off Airbyte.
3838

@@ -55,7 +55,7 @@ If you are upgrading from (i.e. your current version of Airbyte is) Airbyte vers
5555
Run `kubectl port-forward svc/airbyte-webapp-svc 8000:80` to allow access to the UI/API.
5656

5757
## Upgrading on K8s (0.26.4-alpha and below)
58-
If you are upgrading from (i.e. your current version of Airbyte is) Airbyte version **before 0.27.0-alpha** on Kubernetes we **do not** support automatic migration. Please follow the following steps to upgrade your Airbyte Kubernetes deployment.
58+
If you are upgrading from (i.e. your current version of Airbyte is) Airbyte version **before 0.27.1-alpha** on Kubernetes we **do not** support automatic migration. Please follow the following steps to upgrade your Airbyte Kubernetes deployment.
5959

6060
1. Switching over to your browser, navigate to the Admin page in the UI. Then go to the Configuration Tab. Click Export. This will download a compressed back-up archive \(gzipped tarball\) of all of your Airbyte configuration data and sync history locally.
6161

@@ -73,7 +73,7 @@ If you are upgrading from (i.e. your current version of Airbyte is) Airbyte ver
7373
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`.
7474

7575
```bash
76-
docker run --rm -v /tmp:/config airbyte/migration:0.27.0-alpha --\
76+
docker run --rm -v /tmp:/config airbyte/migration:0.27.1-alpha --\
7777
--input /config/airbyte_archive.tar.gz\
7878
--output /config/airbyte_archive_migrated.tar.gz
7979
```

kube/overlays/stable/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AIRBYTE_VERSION=0.27.0-alpha
1+
AIRBYTE_VERSION=0.27.1-alpha
22

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

kube/overlays/stable/kustomization.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ bases:
88

99
images:
1010
- name: airbyte/seed
11-
newTag: 0.27.0-alpha
11+
newTag: 0.27.1-alpha
1212
- name: airbyte/db
13-
newTag: 0.27.0-alpha
13+
newTag: 0.27.1-alpha
1414
- name: airbyte/scheduler
15-
newTag: 0.27.0-alpha
15+
newTag: 0.27.1-alpha
1616
- name: airbyte/server
17-
newTag: 0.27.0-alpha
17+
newTag: 0.27.1-alpha
1818
- name: airbyte/webapp
19-
newTag: 0.27.0-alpha
19+
newTag: 0.27.1-alpha
2020
- name: temporalio/auto-setup
2121
newTag: 1.7.0
2222

0 commit comments

Comments
 (0)