Skip to content

Commit

Permalink
Bump version: 0.27.0-alpha → 0.27.1-alpha (#4640)
Browse files Browse the repository at this point in the history
  • Loading branch information
davinchia committed Jul 9, 2021
1 parent bfab448 commit 4c1c4d9
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.27.0-alpha
current_version = 0.27.1-alpha
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-[a-z]+)?
Expand Down
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=0.27.0-alpha
VERSION=0.27.1-alpha

# Airbyte Internal Database, see https://docs.airbyte.io/operator-guides/configuring-airbyte-db
DATABASE_USER=docker
Expand Down
2 changes: 1 addition & 1 deletion airbyte-webapp/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion airbyte-webapp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "airbyte-webapp",
"version": "0.27.0-alpha",
"version": "0.27.1-alpha",
"private": true,
"scripts": {
"start": "react-scripts start",
Expand Down
8 changes: 4 additions & 4 deletions docs/operator-guides/upgrading-airbyte.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ If you are running [Airbyte on Kubernetes](../deploying-airbyte/on-kubernetes.md
docker-compose up
```

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

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

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

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

## Upgrading on K8s (0.26.4-alpha and below)
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.
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.

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.

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

```bash
docker run --rm -v /tmp:/config airbyte/migration:0.27.0-alpha --\
docker run --rm -v /tmp:/config airbyte/migration:0.27.1-alpha --\
--input /config/airbyte_archive.tar.gz\
--output /config/airbyte_archive_migrated.tar.gz
```
Expand Down
2 changes: 1 addition & 1 deletion kube/overlays/stable/.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRBYTE_VERSION=0.27.0-alpha
AIRBYTE_VERSION=0.27.1-alpha

# Airbyte Internal Database, see https://docs.airbyte.io/operator-guides/configuring-airbyte-db
DATABASE_USER=docker
Expand Down
10 changes: 5 additions & 5 deletions kube/overlays/stable/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ bases:

images:
- name: airbyte/seed
newTag: 0.27.0-alpha
newTag: 0.27.1-alpha
- name: airbyte/db
newTag: 0.27.0-alpha
newTag: 0.27.1-alpha
- name: airbyte/scheduler
newTag: 0.27.0-alpha
newTag: 0.27.1-alpha
- name: airbyte/server
newTag: 0.27.0-alpha
newTag: 0.27.1-alpha
- name: airbyte/webapp
newTag: 0.27.0-alpha
newTag: 0.27.1-alpha
- name: temporalio/auto-setup
newTag: 1.7.0

Expand Down

0 comments on commit 4c1c4d9

Please sign in to comment.