Skip to content

Commit ea5962d

Browse files
authored
chore: release v0.16.0 (#700)
1 parent 82cb830 commit ea5962d

9 files changed

Lines changed: 33 additions & 23 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## v0.16.0
4+
5+
+ Add affinity, tolerations in template and clusterIP in service #663
6+
+ Support for using a live K8s resource in standard K8s triggers #671
7+
+ Introduce EventBus CRD #674
8+
+ Enhanced filter for resource gateway #682
9+
+ Fix gateway client http requests #684
10+
+ Fix k8s trigger operations #695
11+
+ Support to register multiple events in a GitLab webhook #696
12+
313
## v0.15.0
414

515
+ Made deployment/Service template optional in Gateway #598

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ override LDFLAGS += \
1717
# docker image publishing options
1818
DOCKER_PUSH?=true
1919
IMAGE_NAMESPACE?=argoproj
20-
IMAGE_TAG?=v0.15.0
20+
IMAGE_TAG?=v0.16.0
2121
BUILD_BINARY?=true
2222

2323
ifeq (${DOCKER_PUSH},true)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.15.0
1+
0.16.0

api/openapi-spec/swagger.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"swagger": "2.0",
33
"info": {
44
"title": "Argo",
5-
"version": "v0.15.0"
5+
"version": "v0.16.0"
66
},
77
"paths": {},
88
"definitions": {

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ Make sure you have helm client installed and Tiller server is running. To instal
134134
helm repo add argo https://argoproj.github.io/argo-helm
135135

136136
1. The helm chart for argo-events is maintained solely by the community and hence the image version for controllers can go out of sync.
137-
Update the image version in values.yaml to v0.15.0.
137+
Update the image version in values.yaml to v0.16.0.
138138

139139
1. Install `argo-events` chart
140140

manifests/base/kustomization.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ resources:
1616

1717
images:
1818
- name: argoproj/gateway-controller
19-
newTag: v0.15.0
19+
newTag: v0.16.0
2020
- name: argoproj/sensor-controller
21-
newTag: v0.15.0
21+
newTag: v0.16.0
2222
- name: argoproj/eventbus-controller
23-
newTag: v0.15.0
23+
newTag: v0.16.0
2424

2525
patchesStrategicMerge:
2626
- |-
@@ -35,9 +35,9 @@ patchesStrategicMerge:
3535
- name: gateway-controller
3636
env:
3737
- name: GATEWAY_CLIENT_IMAGE
38-
value: argoproj/gateway-client:v0.15.0
38+
value: argoproj/gateway-client:v0.16.0
3939
- name: GATEWAY_SERVER_IMAGE
40-
value: argoproj/gateway-server:v0.15.0
40+
value: argoproj/gateway-server:v0.16.0
4141
- |-
4242
apiVersion: apps/v1
4343
kind: Deployment
@@ -50,4 +50,4 @@ patchesStrategicMerge:
5050
- name: sensor-controller
5151
env:
5252
- name: SENSOR_IMAGE
53-
value: argoproj/sensor:v0.15.0
53+
value: argoproj/sensor:v0.16.0

manifests/install.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ spec:
308308
fieldPath: metadata.namespace
309309
- name: NATS_STREAMING_IMAGE
310310
value: nats-streaming:0.17.0
311-
image: argoproj/eventbus-controller:v0.15.0
311+
image: argoproj/eventbus-controller:v0.16.0
312312
imagePullPolicy: Always
313313
name: eventbus-controller
314314
serviceAccountName: argo-events-sa
@@ -337,10 +337,10 @@ spec:
337337
- name: CONTROLLER_CONFIG_MAP
338338
value: gateway-controller-configmap
339339
- name: GATEWAY_CLIENT_IMAGE
340-
value: argoproj/gateway-client:v0.15.0
340+
value: argoproj/gateway-client:v0.16.0
341341
- name: GATEWAY_SERVER_IMAGE
342-
value: argoproj/gateway-server:v0.15.0
343-
image: argoproj/gateway-controller:v0.15.0
342+
value: argoproj/gateway-server:v0.16.0
343+
image: argoproj/gateway-controller:v0.16.0
344344
name: gateway-controller
345345
serviceAccountName: argo-events-sa
346346
---
@@ -368,7 +368,7 @@ spec:
368368
- name: CONTROLLER_CONFIG_MAP
369369
value: sensor-controller-configmap
370370
- name: SENSOR_IMAGE
371-
value: argoproj/sensor:v0.15.0
372-
image: argoproj/sensor-controller:v0.15.0
371+
value: argoproj/sensor:v0.16.0
372+
image: argoproj/sensor-controller:v0.16.0
373373
name: sensor-controller
374374
serviceAccountName: argo-events-sa

manifests/namespace-install.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ spec:
196196
fieldPath: metadata.namespace
197197
- name: NATS_STREAMING_IMAGE
198198
value: nats-streaming:0.17.0
199-
image: argoproj/eventbus-controller:v0.15.0
199+
image: argoproj/eventbus-controller:v0.16.0
200200
imagePullPolicy: Always
201201
name: eventbus-controller
202202
serviceAccountName: argo-events-sa
@@ -225,10 +225,10 @@ spec:
225225
- name: CONTROLLER_CONFIG_MAP
226226
value: gateway-controller-configmap
227227
- name: GATEWAY_CLIENT_IMAGE
228-
value: argoproj/gateway-client:v0.15.0
228+
value: argoproj/gateway-client:v0.16.0
229229
- name: GATEWAY_SERVER_IMAGE
230-
value: argoproj/gateway-server:v0.15.0
231-
image: argoproj/gateway-controller:v0.15.0
230+
value: argoproj/gateway-server:v0.16.0
231+
image: argoproj/gateway-controller:v0.16.0
232232
name: gateway-controller
233233
serviceAccountName: argo-events-sa
234234
---
@@ -256,7 +256,7 @@ spec:
256256
- name: CONTROLLER_CONFIG_MAP
257257
value: sensor-controller-configmap
258258
- name: SENSOR_IMAGE
259-
value: argoproj/sensor:v0.15.0
260-
image: argoproj/sensor-controller:v0.15.0
259+
value: argoproj/sensor:v0.16.0
260+
image: argoproj/sensor-controller:v0.16.0
261261
name: sensor-controller
262262
serviceAccountName: argo-events-sa

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
// Version information set by link flags during build. We fall back to these sane
2525
// default values when we build outside the Makefile context (e.g. go build or go test).
2626
var (
27-
version = "v0.15.0" // value from VERSION file
27+
version = "0.16.0" // value from VERSION file
2828
buildDate = "1970-01-01T00:00:00Z" // output from `date -u +'%Y-%m-%dT%H:%M:%SZ'`
2929
gitCommit = "" // output from `git rev-parse HEAD`
3030
gitTag = "" // output from `git describe --exact-match --tags HEAD` (if clean tree state)

0 commit comments

Comments
 (0)