Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.33.0 #641

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ resources:
images:
- name: fluxcd/image-reflector-controller
newName: fluxcd/image-reflector-controller
newTag: v0.32.0
newTag: v0.33.0
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down