Skip to content

Commit 34f5ab7

Browse files
authored
Merge pull request #69 from fluxcd/release-v0.2.0
Release v0.2.0
2 parents 9cd9ea5 + 866aa89 commit 34f5ab7

File tree

6 files changed

+13
-7
lines changed

6 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project are documented in this file.
44

5+
## 0.2.0 (2020-10-29)
6+
7+
This is the second MINOR prerelease, it comes with breaking changes:
8+
* the histogram metric `gotk_reconcile_duration` was renamed to `gotk_reconcile_duration_seconds`
9+
* the annotation `fluxcd.io/reconcileAt` was renamed to `reconcile.fluxcd.io/requestedAt`
10+
511
## 0.1.2 (2020-10-19)
612

713
This prerelease adds support for HTTP/S proxies when sending alerts.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ docker-push:
9090

9191
# Set the docker image in-cluster
9292
docker-deploy:
93-
kubectl -n gotk-system set image deployment/notification-controller manager=${IMG}
93+
kubectl -n flux-system set image deployment/notification-controller manager=${IMG}
9494

9595
# Find or download controller-gen
9696
controller-gen:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![license](https://img.shields.io/github/license/fluxcd/notification-controller.svg)](https://github.com/fluxcd/notification-controller/blob/main/LICENSE)
66
[![release](https://img.shields.io/github/release/fluxcd/notification-controller/all.svg)](https://github.com/fluxcd/notification-controller/releases)
77

8-
Event forwarder and notification dispatcher for the GitOps Toolkit controllers.
8+
Event forwarder and notification dispatcher for the [GitOps Toolkit](https://toolkit.fluxcd.io) controllers.
99
The notification-controller is an implementation of the [notification.toolkit.fluxcd.io](docs/spec/v1beta1/README.md)
1010
API based on the specifications described in the [RFC](docs/spec/README.md).
1111

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ resources:
66
images:
77
- name: fluxcd/notification-controller
88
newName: fluxcd/notification-controller
9-
newTag: v0.1.2
9+
newTag: v0.2.0

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ go 1.15
55
replace github.com/fluxcd/notification-controller/api => ./api
66

77
require (
8-
github.com/fluxcd/notification-controller/api v0.1.2
8+
github.com/fluxcd/notification-controller/api v0.2.0
99
github.com/fluxcd/pkg/apis/meta v0.1.0
1010
github.com/fluxcd/pkg/recorder v0.0.6
1111
github.com/fluxcd/pkg/runtime v0.1.2
12-
github.com/fluxcd/source-controller/api v0.1.1
12+
github.com/fluxcd/source-controller/api v0.2.0
1313
github.com/go-logr/logr v0.1.0
1414
github.com/google/go-github/v32 v32.0.0
1515
github.com/hashicorp/go-retryablehttp v0.6.7

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ github.com/fluxcd/pkg/recorder v0.0.6 h1:me/n8syeeGXz50OXoPX3jgIj9AtinvhHdKT9Dy+
7474
github.com/fluxcd/pkg/recorder v0.0.6/go.mod h1:IfQxfVRSNsWs3B0Yp5B6ObEWwKHILlAx8N7XkoDdhFg=
7575
github.com/fluxcd/pkg/runtime v0.1.2 h1:bKhjJGVOJgTQTWjqhwasyt69lBItq1ZWjX04rUkiypo=
7676
github.com/fluxcd/pkg/runtime v0.1.2/go.mod h1:HXYTNdkK8ulcT1mhuGhio9tsX65ACKaealtd/MsnkhM=
77-
github.com/fluxcd/source-controller/api v0.1.1 h1:BYxl9qc8pCx3/Bn1885TlkJPwvXqz+rAL9mzpnCrj9A=
78-
github.com/fluxcd/source-controller/api v0.1.1/go.mod h1:1ac/vj49YVPKF+xBHTo/9pfFj64TcLc1RLaxi4MwVEM=
77+
github.com/fluxcd/source-controller/api v0.2.0 h1:a+N8+kLDH24lN2hp3klIFGuET3uMhhBWTM9qKdIRhM8=
78+
github.com/fluxcd/source-controller/api v0.2.0/go.mod h1:1ac/vj49YVPKF+xBHTo/9pfFj64TcLc1RLaxi4MwVEM=
7979
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
8080
github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4=
8181
github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=

0 commit comments

Comments
 (0)