Merge pull request #523 from fluxcd/release-v1.0.0-rc.2
Release v1.0.0-rc.2
This commit is contained in:
commit
72d2eafdd9
27
CHANGELOG.md
27
CHANGELOG.md
|
|
@ -2,6 +2,33 @@
|
||||||
|
|
||||||
All notable changes to this project are documented in this file.
|
All notable changes to this project are documented in this file.
|
||||||
|
|
||||||
|
## 1.0.0-rc.2
|
||||||
|
|
||||||
|
**Release date:** 2023-05-09
|
||||||
|
|
||||||
|
This release candidate comes with performance improvements for Receivers
|
||||||
|
and removes the deprecated `.status.url` field from the Receiver v1 API.
|
||||||
|
|
||||||
|
A new filed was added to the Alert v1beta2 API named `.spec.inclusionList` for
|
||||||
|
better control over events filtering.
|
||||||
|
|
||||||
|
In addition, the controller dependencies have been updated to their latest
|
||||||
|
versions.
|
||||||
|
|
||||||
|
Improvements:
|
||||||
|
- Index receivers using webhook path as key
|
||||||
|
[#506](https://github.com/fluxcd/notification-controller/pull/506)
|
||||||
|
- Append the Alert summary to Azure DevOps genre field
|
||||||
|
[#514](https://github.com/fluxcd/notification-controller/pull/514)
|
||||||
|
- Add InclusionList to Alert CRD
|
||||||
|
[#515](https://github.com/fluxcd/notification-controller/pull/515)
|
||||||
|
- Update dependencies
|
||||||
|
[#520](https://github.com/fluxcd/notification-controller/pull/520)
|
||||||
|
- Improve event handler tests
|
||||||
|
[#521](https://github.com/fluxcd/notification-controller/pull/521)
|
||||||
|
- receiver/v1: Remove deprecated `.status.url` field
|
||||||
|
[#482](https://github.com/fluxcd/notification-controller/pull/482)
|
||||||
|
|
||||||
## 1.0.0-rc.1
|
## 1.0.0-rc.1
|
||||||
|
|
||||||
**Release date:** 2023-03-30
|
**Release date:** 2023-03-30
|
||||||
|
|
|
||||||
|
|
@ -6,4 +6,4 @@ resources:
|
||||||
images:
|
images:
|
||||||
- name: fluxcd/notification-controller
|
- name: fluxcd/notification-controller
|
||||||
newName: fluxcd/notification-controller
|
newName: fluxcd/notification-controller
|
||||||
newTag: v1.0.0-rc.1
|
newTag: v1.0.0-rc.2
|
||||||
|
|
|
||||||
2
go.mod
2
go.mod
|
|
@ -10,7 +10,7 @@ require (
|
||||||
github.com/Azure/azure-amqp-common-go/v4 v4.1.0
|
github.com/Azure/azure-amqp-common-go/v4 v4.1.0
|
||||||
github.com/Azure/azure-event-hubs-go/v3 v3.5.0
|
github.com/Azure/azure-event-hubs-go/v3 v3.5.0
|
||||||
github.com/containrrr/shoutrrr v0.7.1
|
github.com/containrrr/shoutrrr v0.7.1
|
||||||
github.com/fluxcd/notification-controller/api v1.0.0-rc.1
|
github.com/fluxcd/notification-controller/api v1.0.0-rc.2
|
||||||
github.com/fluxcd/pkg/apis/event v0.4.1
|
github.com/fluxcd/pkg/apis/event v0.4.1
|
||||||
github.com/fluxcd/pkg/apis/meta v1.0.0
|
github.com/fluxcd/pkg/apis/meta v1.0.0
|
||||||
github.com/fluxcd/pkg/git v0.11.0
|
github.com/fluxcd/pkg/git v0.11.0
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue