Release v0.25.5
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
This commit is contained in:
parent
6e44c8c4fb
commit
b120c299a5
23
CHANGELOG.md
23
CHANGELOG.md
|
@ -2,6 +2,27 @@
|
|||
|
||||
All notable changes to this project are documented in this file.
|
||||
|
||||
## 0.25.5
|
||||
|
||||
**Release date:** 2022-06-08
|
||||
|
||||
This prerelease fixes a regression for SSH host key verification
|
||||
and fixes semver sorting for Helm OCI charts.
|
||||
|
||||
In addition, the controller dependencies where update to Kubernetes v1.24.1.
|
||||
|
||||
Fixes:
|
||||
- helm: Fix sorting semver from OCI repository tags
|
||||
[#769](https://github.com/fluxcd/source-controller/pull/769)
|
||||
- libgit2: Fix SSH host key verification regression
|
||||
[#771](https://github.com/fluxcd/source-controller/pull/771)
|
||||
|
||||
Improvements:
|
||||
- libgit2: Improve HTTP redirection observability
|
||||
[#772](https://github.com/fluxcd/source-controller/pull/772)
|
||||
- Update dependencies
|
||||
[#773](https://github.com/fluxcd/source-controller/pull/773)
|
||||
|
||||
## 0.25.4
|
||||
|
||||
**Release date:** 2022-06-07
|
||||
|
@ -15,6 +36,8 @@ Fixes:
|
|||
[#764](https://github.com/fluxcd/source-controller/pull/764)
|
||||
- libgit2: fix gitlab redirection for HTTP
|
||||
[#765](https://github.com/fluxcd/source-controller/pull/765)
|
||||
|
||||
Improvements:
|
||||
- Update dependencies
|
||||
[#766](https://github.com/fluxcd/source-controller/pull/766)
|
||||
|
||||
|
|
|
@ -6,4 +6,4 @@ resources:
|
|||
images:
|
||||
- name: fluxcd/source-controller
|
||||
newName: fluxcd/source-controller
|
||||
newTag: v0.25.4
|
||||
newTag: v0.25.5
|
||||
|
|
2
go.mod
2
go.mod
|
@ -32,7 +32,7 @@ require (
|
|||
github.com/fluxcd/pkg/testserver v0.2.0
|
||||
github.com/fluxcd/pkg/untar v0.1.0
|
||||
github.com/fluxcd/pkg/version v0.1.0
|
||||
github.com/fluxcd/source-controller/api v0.25.4
|
||||
github.com/fluxcd/source-controller/api v0.25.5
|
||||
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