diff --git a/CHANGELOG.md b/CHANGELOG.md index ec545f91..3ffab245 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## 0.22.0 + +**Release date:** 2022-04-08 + +This prerelease comes with further stability improvements in the `libgit2` +experimental management transport and updates documentation links. + +Managed Transport for `libgit2` now introduces self-healing capabilities, +to recover from failure when long-running connections become stale. + +Improvements: +- Update dependencies (TBC) (PROVISIONAL) + [#](https://github.com/fluxcd/image-automation-controller/pull/) +- update toolkit.fluxcd.io docs links + [#343](https://github.com/fluxcd/image-automation-controller/pull/343) + ## 0.21.3 **Release date:** 2022-03-30 diff --git a/Makefile b/Makefile index b45261ad..ee969cd3 100644 --- a/Makefile +++ b/Makefile @@ -21,11 +21,11 @@ CACHE := cache # Version of the source-controller from which to get the GitRepository CRD. # Change this if you bump the source-controller/api version in go.mod. -SOURCE_VER ?= v0.22.5 +SOURCE_VER ?= $(shell go list -m all | grep github.com/fluxcd/source-controller/api | awk '{print $$2}') # Version of the image-reflector-controller from which to get the ImagePolicy CRD. # Change this if you bump the image-reflector-controller/api version in go.mod. -REFLECTOR_VER ?= v0.17.1 +REFLECTOR_VER ?= $(shell go list -m all | grep github.com/fluxcd/image-reflector-controller/api | awk '{print $$2}') # Repository root based on Git metadata. REPOSITORY_ROOT := $(shell git rev-parse --show-toplevel) diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index cb9b8eb6..9ddc7a8d 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.21.3 + newTag: v0.22.0 diff --git a/go.mod b/go.mod index 3cf90dfe..27aa22be 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ require ( github.com/Masterminds/sprig/v3 v3.2.2 github.com/ProtonMail/go-crypto v0.0.0-20220113124808-70ae35bab23f github.com/cyphar/filepath-securejoin v0.2.3 - github.com/fluxcd/image-automation-controller/api v0.21.3 + github.com/fluxcd/image-automation-controller/api v0.22.0 // If you bump this, change REFLECTOR_VER in the Makefile to match github.com/fluxcd/image-reflector-controller/api v0.17.1 github.com/fluxcd/pkg/apis/acl v0.0.3