diff --git a/CHANGELOG.md b/CHANGELOG.md index 26562fe75..3d390c46f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All notable changes to this project are documented in this file. +## 0.1.2 (2020-10-19) + +This prerelease adds support for HTTP/S proxies when sending alerts. +An optional field called `Proxy` was added to the Provider API. + +Features: +* Add support for http(s) proxy when sending alerts + [#62](https://github.com/fluxcd/notification-controller/pull/62) + ## 0.1.1 (2020-10-13) This prerelease comes with Prometheus instrumentation for the controller's resources. diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index d579d8fc7..3f7e734b3 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.1.1 + newTag: v0.1.2 diff --git a/go.mod b/go.mod index 69958f066..e93c9992c 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.1.1 + github.com/fluxcd/notification-controller/api v0.1.2 github.com/fluxcd/pkg/apis/meta v0.0.2 github.com/fluxcd/pkg/recorder v0.0.6 github.com/fluxcd/pkg/runtime v0.1.0