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.30.0 #437

Merged
merged 1 commit into from
Aug 23, 2023
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
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## 0.30.0

**Release date:** 2023-08-23

This prerelease adds support for Secrets of type
[`kubernetes.io/tls`](https://kubernetes.io/docs/concepts/configuration/secret/#tls-secrets) ImageRepositories'
`.spec.certSecretRef`. Note: Support for the `caFile`, `certFile` and `keyFile` keys has
been deprecated and will be removed in upcoming releases. After upgrading the controller to version 0.30.0, please
change all Secrets referenced in `.spec.certSecretRef` to follow the new format.

Starting with this version, the controller now stops exporting an object's metrics as soon as the object has been
deleted.

In addition, this version fixes handling of finalizers and updates the controller's dependencies.

Improvements:

- Update dependencies
[#441](https://github.com/fluxcd/image-reflector-controller/pull/431)
- imagerepo: adopt Kubernetes style TLS secrets
[#434](https://github.com/fluxcd/image-reflector-controller/pull/434)
- Delete stale metrics on object delete
[#430](https://github.com/fluxcd/image-reflector-controller/pull/430)
- Update pkg/oci to support Azure China and US gov
[438](https://github.com/fluxcd/image-reflector-controller/pull/438)

## 0.29.1

**Release date:** 2023-07-10
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.29.1
newTag: v0.30.0
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ require (
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230106234847-43070de90fa1
github.com/Masterminds/semver/v3 v3.2.1
github.com/dgraph-io/badger/v3 v3.2103.5
github.com/fluxcd/image-reflector-controller/api v0.29.1
github.com/fluxcd/image-reflector-controller/api v0.30.0
github.com/fluxcd/pkg/apis/acl v0.1.0
github.com/fluxcd/pkg/apis/event v0.5.2
github.com/fluxcd/pkg/apis/meta v1.1.2
Expand Down