Release v0.25.2
Signed-off-by: Sanskar Jaiswal <jaiswalsanskar078@gmail.com>
This commit is contained in:
parent
ea1bab5a73
commit
fd56bcaa8e
20
CHANGELOG.md
20
CHANGELOG.md
|
@ -2,9 +2,27 @@
|
||||||
|
|
||||||
All notable changes to this project are documented in this file.
|
All notable changes to this project are documented in this file.
|
||||||
|
|
||||||
|
## 0.25.2
|
||||||
|
|
||||||
|
**Release date:** 2022-06-03
|
||||||
|
|
||||||
|
This prerelease fixes a bug which prevented the use of the `OptimizedGitClones`
|
||||||
|
feature when using tags to checkout a Git repository, and adds docs on how to
|
||||||
|
access Azure Blob using managed identities and aad-pod-identity.
|
||||||
|
|
||||||
|
Improvements:
|
||||||
|
- Add docs on managed identity for Azure Blob
|
||||||
|
[#752](https://github.com/fluxcd/source-controller/pull/752)
|
||||||
|
|
||||||
|
Fixes:
|
||||||
|
- libgit2: return CheckoutTag with LastRevision
|
||||||
|
[#755](https://github.com/fluxcd/source-controller/pull/755)
|
||||||
|
- Log on new artifact and failure recovery
|
||||||
|
[#759](https://github.com/fluxcd/source-controller/pull/759)
|
||||||
|
|
||||||
## 0.25.1
|
## 0.25.1
|
||||||
|
|
||||||
**Release date:** 2022-06-01
|
**Release date:** 2022-06-02
|
||||||
|
|
||||||
This prerelease fixes some race conditions in the libgit2 managed ssh smart
|
This prerelease fixes some race conditions in the libgit2 managed ssh smart
|
||||||
subtransport.
|
subtransport.
|
||||||
|
|
|
@ -6,4 +6,4 @@ resources:
|
||||||
images:
|
images:
|
||||||
- name: fluxcd/source-controller
|
- name: fluxcd/source-controller
|
||||||
newName: fluxcd/source-controller
|
newName: fluxcd/source-controller
|
||||||
newTag: v0.25.1
|
newTag: v0.25.2
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -32,7 +32,7 @@ require (
|
||||||
github.com/fluxcd/pkg/testserver v0.2.0
|
github.com/fluxcd/pkg/testserver v0.2.0
|
||||||
github.com/fluxcd/pkg/untar v0.1.0
|
github.com/fluxcd/pkg/untar v0.1.0
|
||||||
github.com/fluxcd/pkg/version v0.1.0
|
github.com/fluxcd/pkg/version v0.1.0
|
||||||
github.com/fluxcd/source-controller/api v0.25.1
|
github.com/fluxcd/source-controller/api v0.25.2
|
||||||
github.com/go-git/go-billy/v5 v5.3.1
|
github.com/go-git/go-billy/v5 v5.3.1
|
||||||
github.com/go-git/go-git/v5 v5.4.2
|
github.com/go-git/go-git/v5 v5.4.2
|
||||||
github.com/go-logr/logr v1.2.3
|
github.com/go-logr/logr v1.2.3
|
||||||
|
|
Loading…
Reference in New Issue