Release v0.3.0
Signed-off-by: Hidde Beydals <hello@hidde.co>
This commit is contained in:
parent
2d4c6e31ba
commit
2a51bd7745
15
CHANGELOG.md
15
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.
|
||||
|
|
|
|||
|
|
@ -6,4 +6,4 @@ resources:
|
|||
images:
|
||||
- name: fluxcd/notification-controller
|
||||
newName: fluxcd/notification-controller
|
||||
newTag: v0.2.1
|
||||
newTag: v0.3.0
|
||||
|
|
|
|||
2
go.mod
2
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
|
||||
|
|
|
|||
Loading…
Reference in New Issue