diff --git a/CHANGELOG.md b/CHANGELOG.md index d8684dd..14b7914 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project are documented in this file. +## 0.3.0 (2020-11-20) + +This is the third MINOR prerelease. It introduces a breaking change to +the API package; the status condition type has changed to the type +introduced in Kubernetes API machinery `v1.19.0`. + +Improvements: +* Add support for sending a `Notification-Controller` HTTP header from + the forward notifier + [#84](https://github.com/fluxcd/notification-controller/pull/84) +* Verify repository ID in Git notifiers + [#82](https://github.com/fluxcd/notification-controller/pull/82) +* Use subgroup in GitLab + [#80](https://github.com/fluxcd/notification-controller/pull/80) + ## 0.2.1 (2020-11-09) This prerelease comes with support for Bitbucket commit status updates. diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index 69b2347..0652675 100644 --- a/config/manager/kustomization.yaml +++ b/config/manager/kustomization.yaml @@ -6,4 +6,4 @@ resources: images: - name: fluxcd/notification-controller newName: fluxcd/notification-controller - newTag: v0.2.1 + newTag: v0.3.0 diff --git a/go.mod b/go.mod index c1a316a..7a4cd4c 100644 --- a/go.mod +++ b/go.mod @@ -5,7 +5,7 @@ go 1.15 replace github.com/fluxcd/notification-controller/api => ./api require ( - github.com/fluxcd/notification-controller/api v0.2.1 + github.com/fluxcd/notification-controller/api v0.3.0 github.com/fluxcd/pkg/apis/meta v0.4.0 github.com/fluxcd/pkg/recorder v0.0.6 github.com/fluxcd/pkg/runtime v0.3.0