Release v0.31.0
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
This commit is contained in:
parent
09cae78713
commit
ab313f9baf
24
CHANGELOG.md
24
CHANGELOG.md
|
@ -2,6 +2,30 @@
|
|||
|
||||
All notable changes to this project are documented in this file.
|
||||
|
||||
## 0.31.0
|
||||
|
||||
**Release date:** 2022-10-21
|
||||
|
||||
This prerelease comes with support for Cosign verification of Helm charts.
|
||||
The signatures verification can be configured by setting `HelmChart.spec.verify` with
|
||||
`provider` as `cosign` and a `secretRef` to a secret containing the public key.
|
||||
Cosign keyless verification is also supported, please see the
|
||||
[HelmChart API documentation](https://github.com/fluxcd/source-controller/blob/api/v0.31.0/docs/spec/v1beta2/helmcharts.md#verification)
|
||||
for more details.
|
||||
|
||||
In addition, the controller dependencies have been updated
|
||||
to Kubernetes v1.25.3 and Helm v3.10.1.
|
||||
|
||||
Improvements:
|
||||
- Implement Cosign verification for HelmCharts
|
||||
[#925](https://github.com/fluxcd/source-controller/pull/925)
|
||||
- Update dependencies
|
||||
[#942](https://github.com/fluxcd/source-controller/pull/942)
|
||||
|
||||
Fixes:
|
||||
- Allow deleting suspended objects
|
||||
[#937](https://github.com/fluxcd/source-controller/pull/937)
|
||||
|
||||
## 0.30.1
|
||||
|
||||
**Release date:** 2022-10-10
|
||||
|
|
|
@ -6,4 +6,4 @@ resources:
|
|||
images:
|
||||
- name: fluxcd/source-controller
|
||||
newName: fluxcd/source-controller
|
||||
newTag: v0.30.1
|
||||
newTag: v0.31.0
|
||||
|
|
2
go.mod
2
go.mod
|
@ -42,7 +42,7 @@ require (
|
|||
github.com/fluxcd/pkg/testserver v0.4.0
|
||||
github.com/fluxcd/pkg/untar v0.2.0
|
||||
github.com/fluxcd/pkg/version v0.2.0
|
||||
github.com/fluxcd/source-controller/api v0.30.1
|
||||
github.com/fluxcd/source-controller/api v0.31.0
|
||||
github.com/go-git/go-billy/v5 v5.3.1
|
||||
github.com/go-git/go-git/v5 v5.4.2
|
||||
github.com/go-logr/logr v1.2.3
|
||||
|
|
Loading…
Reference in New Issue