diff --git a/CHANGELOG.md b/CHANGELOG.md index f455935a..5c5eca11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,47 @@ # Changelog +## 0.33.0 + +**Release date:** 2024-09-26 + +This prerelease comes with support for using proxy for communications with the +container registry using the new `.spec.proxySecretRef` field on +`ImageRepository` objects. + +In addition, the Kubernetes dependencies have been updated to v1.31.1 +and various other controller dependencies have been updated to their latest +version. The controller is now built with Go 1.23. + +Fixes: +- Fix incorrect use of format strings with the conditions package + [#598](https://github.com/fluxcd/image-reflector-controller/pull/598) + +Improvements: +- Add proxy support for ImageRepository API + [#627](https://github.com/fluxcd/image-reflector-controller/pull/627) +- Build with Go 1.23 + [#623](https://github.com/fluxcd/image-reflector-controller/pull/623) +- Add workflow for AWS tests & document the setup + [#570](https://github.com/fluxcd/image-reflector-controller/pull/570) +- Various dependency updates + [#566](https://github.com/fluxcd/image-reflector-controller/pull/566) + [#567](https://github.com/fluxcd/image-reflector-controller/pull/567) + [#576](https://github.com/fluxcd/image-reflector-controller/pull/576) + [#578](https://github.com/fluxcd/image-reflector-controller/pull/578) + [#589](https://github.com/fluxcd/image-reflector-controller/pull/589) + [#599](https://github.com/fluxcd/image-reflector-controller/pull/599) + [#600](https://github.com/fluxcd/image-reflector-controller/pull/600) + [#601](https://github.com/fluxcd/image-reflector-controller/pull/601) + [#615](https://github.com/fluxcd/image-reflector-controller/pull/615) + [#618](https://github.com/fluxcd/image-reflector-controller/pull/618) + [#620](https://github.com/fluxcd/image-reflector-controller/pull/620) + [#622](https://github.com/fluxcd/image-reflector-controller/pull/622) + [#621](https://github.com/fluxcd/image-reflector-controller/pull/621) + [#625](https://github.com/fluxcd/image-reflector-controller/pull/625) + [#633](https://github.com/fluxcd/image-reflector-controller/pull/633) + [#639](https://github.com/fluxcd/image-reflector-controller/pull/639) + [#640](https://github.com/fluxcd/image-reflector-controller/pull/640) + ## 0.32.0 **Release date:** 2024-05-06 diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index 0f60e36f..ad694e30 100644 --- a/config/manager/kustomization.yaml +++ b/config/manager/kustomization.yaml @@ -5,4 +5,4 @@ resources: images: - name: fluxcd/image-reflector-controller newName: fluxcd/image-reflector-controller - newTag: v0.32.0 + newTag: v0.33.0 diff --git a/go.mod b/go.mod index 03c9c806..037191d1 100644 --- a/go.mod +++ b/go.mod @@ -9,7 +9,7 @@ require ( github.com/Masterminds/semver/v3 v3.3.0 github.com/dgraph-io/badger/v3 v3.2103.5 github.com/elazarl/goproxy v0.0.0-20240726154733-8b0c20506380 - github.com/fluxcd/image-reflector-controller/api v0.32.0 + github.com/fluxcd/image-reflector-controller/api v0.33.0 github.com/fluxcd/pkg/apis/acl v0.3.0 github.com/fluxcd/pkg/apis/event v0.10.1 github.com/fluxcd/pkg/apis/meta v1.6.1