diff --git a/CHANGELOG.md b/CHANGELOG.md index 98242490..e0c177e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.11.0 + +**Release date:** 2021-06-02 + +This prerelease replaces `go-git` usage with `libgit2` for clone, fetch and push operations. + +The `gitImplementation` field in the referenced `GitRepository` is ignored. The +automation controller cannot use shallow clones or submodules, so there is no +reason to use the `go-git` implementation rather than `libgit2`. + +Improvements: +* Use libgit2 for clone, fetch, push + [#177](https://github.com/fluxcd/image-automation-controller/pull/177) + ## 0.10.1 **Release date:** 2021-06-02 diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index d2cb186c..452760f4 100644 --- a/config/manager/kustomization.yaml +++ b/config/manager/kustomization.yaml @@ -5,4 +5,4 @@ resources: images: - name: fluxcd/image-automation-controller newName: fluxcd/image-automation-controller - newTag: v0.10.1 + newTag: v0.11.0 diff --git a/go.mod b/go.mod index 0260fdef..16441c5d 100644 --- a/go.mod +++ b/go.mod @@ -7,7 +7,7 @@ replace github.com/fluxcd/image-automation-controller/api => ./api require ( github.com/ProtonMail/go-crypto v0.0.0-20210428141323-04723f9f07d7 github.com/cyphar/filepath-securejoin v0.2.2 - github.com/fluxcd/image-automation-controller/api v0.10.1 + github.com/fluxcd/image-automation-controller/api v0.11.0 // If you bump this, change REFLECTOR_VER in the Makefile to match github.com/fluxcd/image-reflector-controller/api v0.9.1 github.com/fluxcd/pkg/apis/meta v0.9.0