Skip to content

Commit

Permalink
0.4.0 -> 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
erwinvaneyk committed Jul 11, 2018
1 parent 49382d2 commit 9bae009
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 12 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,32 @@
# Change Log

## [0.5.0](https://github.com/fission/fission-workflows/tree/0.5.0) (2018-07-11)
[Full Changelog](https://github.com/fission/fission-workflows/compare/0.4.0...0.5.0)

**Implemented enhancements:**

- Attach invocation context to logs [\#86](https://github.com/fission/fission-workflows/issues/86)

**Merged pull requests:**

- Update commands to setup fission functions [\#163](https://github.com/fission/fission-workflows/pull/163) ([beevelop](https://github.com/beevelop))
- Update wfcli docs [\#162](https://github.com/fission/fission-workflows/pull/162) ([beevelop](https://github.com/beevelop))
- add NOBUILD ARG to script [\#161](https://github.com/fission/fission-workflows/pull/161) ([xiekeyang](https://github.com/xiekeyang))
- YAML API improvements [\#159](https://github.com/fission/fission-workflows/pull/159) ([erwinvaneyk](https://github.com/erwinvaneyk))
- Log correlation [\#157](https://github.com/fission/fission-workflows/pull/157) ([erwinvaneyk](https://github.com/erwinvaneyk))
- Set content-length when setting body [\#156](https://github.com/fission/fission-workflows/pull/156) ([erwinvaneyk](https://github.com/erwinvaneyk))
- Cleanup labels package [\#154](https://github.com/fission/fission-workflows/pull/154) ([erwinvaneyk](https://github.com/erwinvaneyk))
- Namespace proto files [\#153](https://github.com/fission/fission-workflows/pull/153) ([erwinvaneyk](https://github.com/erwinvaneyk))
- Listen to system termination signals [\#152](https://github.com/fission/fission-workflows/pull/152) ([erwinvaneyk](https://github.com/erwinvaneyk))
- Match validation errors to IllegalArgument HTTP statuses [\#151](https://github.com/fission/fission-workflows/pull/151) ([erwinvaneyk](https://github.com/erwinvaneyk))
- Fission integration tests [\#121](https://github.com/fission/fission-workflows/pull/121) ([erwinvaneyk](https://github.com/erwinvaneyk))

## [0.4.0](https://github.com/fission/fission-workflows/tree/0.4.0) (2018-06-07)
[Full Changelog](https://github.com/fission/fission-workflows/compare/0.3.0...0.4.0)

**Merged pull requests:**

- 0.3.0 -\> 0.4.0 [\#149](https://github.com/fission/fission-workflows/pull/149) ([erwinvaneyk](https://github.com/erwinvaneyk))
- Merge API packages [\#147](https://github.com/fission/fission-workflows/pull/147) ([erwinvaneyk](https://github.com/erwinvaneyk))
- Include git info in versioning [\#146](https://github.com/fission/fission-workflows/pull/146) ([erwinvaneyk](https://github.com/erwinvaneyk))
- Prometheus integration [\#122](https://github.com/fission/fission-workflows/pull/122) ([erwinvaneyk](https://github.com/erwinvaneyk))
Expand Down
7 changes: 4 additions & 3 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Workflows | Compatible Fission versions
0.2.x | 0.4.1 up to 0.6.1
0.3.0 | all (tested on 0.6.0, 0.6.1, and 0.7.2)
0.4.0 | all
0.5.0 | all

### Prerequisites

Expand Down Expand Up @@ -43,7 +44,7 @@ helm repo update
helm install --wait -n fission-all --namespace fission --set serviceType=NodePort --set analytics=false fission-charts/fission-all --version 0.7.2

# Install Fission Workflows
helm install --wait -n fission-workflows fission-charts/fission-workflows --version 0.4.0
helm install --wait -n fission-workflows fission-charts/fission-workflows --version 0.5.0
```

### Creating your first workflow
Expand Down Expand Up @@ -89,9 +90,9 @@ It has the following features:

#### Installation
To install `wfcli` either download a version of the binary from the [releases](https://github.com/fission/fission-workflows/releases).
For example, to download and install version 0.4.0, assuming that you use OS X:
For example, to download and install version 0.5.0, assuming that you use OS X:
```bash
curl -Lo wfcli https://github.com/fission/fission-workflows/releases/download/0.4.0/wfcli-osx
curl -Lo wfcli https://github.com/fission/fission-workflows/releases/download/0.5.0/wfcli-osx
chmod +x ./wfcli
sudo mv ./wfcli /usr/local/bin
```
Expand Down
4 changes: 2 additions & 2 deletions charts/fission-workflows/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: fission-workflows
version: 0.4.0
appVersion: 0.4.0
version: 0.5.0
appVersion: 0.5.0
description: Fission Workflows is a fast workflow engine for serverless functions on Kubernetes
keywords:
- fission
Expand Down
2 changes: 1 addition & 1 deletion charts/fission-workflows/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ envImage: fission/workflow-env
# Image of the Fission build environment for Fission Workflows
buildEnvImage: fission/workflow-build-env

tag: 0.4.0
tag: 0.5.0

pullPolicy: IfNotPresent

Expand Down
4 changes: 2 additions & 2 deletions examples/readitlater/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
kubectl apply -f redis/redis.yaml

# Setup environments
fission env create --name python3 --version 2 --image fission/python-env:0.4.0rc --builder fission/python-build-env:0.4.0rc
fission env create --name binary --image fission/binary-env:0.4.0rc
fission env create --name python3 --version 2 --image fission/python-env --builder fission/python-build-env
fission env create --name binary --image fission/binary-env

# Prepare functions
zip -jr notify-pushbullet.zip notify-pushbullet/
Expand Down
2 changes: 1 addition & 1 deletion hack/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# Configs
FISSION_VERSION=${FISSION_VERSION:-0.7.2}
WORKFLOWS_VERSION=${WORKFLOWS_VERSION:-0.4.0}
WORKFLOWS_VERSION=${WORKFLOWS_VERSION:-0.5.0}
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

echo "Fission Workflows Deploy Script v1.4"
Expand Down
6 changes: 3 additions & 3 deletions pkg/version/version.gen.go

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

0 comments on commit 9bae009

Please sign in to comment.