Release v0.29.1
Signed-off-by: Sunny <darkowlzz@protonmail.com>
This commit is contained in:
parent
72a1668cd4
commit
5385dfd8a3
15
CHANGELOG.md
15
CHANGELOG.md
|
|
@ -2,6 +2,21 @@
|
||||||
|
|
||||||
All notable changes to this project are documented in this file.
|
All notable changes to this project are documented in this file.
|
||||||
|
|
||||||
|
## 0.29.1
|
||||||
|
|
||||||
|
**Release date:** 2022-12-01
|
||||||
|
|
||||||
|
This prerelease comes with a minor improvement in the receiver to use its own
|
||||||
|
ServeMux instead of using the default global one.
|
||||||
|
|
||||||
|
Fixes:
|
||||||
|
* receiver: Use new ServeMux
|
||||||
|
[#448](https://github.com/fluxcd/notification-controller/pull/448)
|
||||||
|
|
||||||
|
Improvements:
|
||||||
|
* build: Fix cifuzz and improve fuzz tests' reliability
|
||||||
|
[#446](https://github.com/fluxcd/notification-controller/pull/446)
|
||||||
|
|
||||||
## 0.29.0
|
## 0.29.0
|
||||||
|
|
||||||
**Release date:** 2022-11-22
|
**Release date:** 2022-11-22
|
||||||
|
|
|
||||||
|
|
@ -6,4 +6,4 @@ resources:
|
||||||
images:
|
images:
|
||||||
- name: fluxcd/notification-controller
|
- name: fluxcd/notification-controller
|
||||||
newName: fluxcd/notification-controller
|
newName: fluxcd/notification-controller
|
||||||
newTag: v0.29.0
|
newTag: v0.29.1
|
||||||
|
|
|
||||||
2
go.mod
2
go.mod
|
|
@ -9,7 +9,7 @@ require (
|
||||||
github.com/Azure/azure-amqp-common-go/v3 v3.2.3
|
github.com/Azure/azure-amqp-common-go/v3 v3.2.3
|
||||||
github.com/Azure/azure-event-hubs-go/v3 v3.3.20
|
github.com/Azure/azure-event-hubs-go/v3 v3.3.20
|
||||||
github.com/containrrr/shoutrrr v0.6.1
|
github.com/containrrr/shoutrrr v0.6.1
|
||||||
github.com/fluxcd/notification-controller/api v0.29.0
|
github.com/fluxcd/notification-controller/api v0.29.1
|
||||||
github.com/fluxcd/pkg/apis/event v0.2.0
|
github.com/fluxcd/pkg/apis/event v0.2.0
|
||||||
github.com/fluxcd/pkg/apis/meta v0.18.0
|
github.com/fluxcd/pkg/apis/meta v0.18.0
|
||||||
github.com/fluxcd/pkg/masktoken v0.2.0
|
github.com/fluxcd/pkg/masktoken v0.2.0
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue