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.37.1 #852

Merged
merged 1 commit into from
Dec 15, 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
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# Changelog

## 0.37.1

This prerelease fixes a backwards compatibility issue that could occur when
trying to move from the `v2beta1` to `v2beta2` API while enabling drift
detection.

In addition, logging has been improved to provide faster feedback on any
HTTP errors encountered while fetching HelmChart artifacts, and the controller
will now set the `Stalled` condition as soon as it detects to be out of retries
without having to wait for the next reconciliation.

Lastly, Helm has been updated to v3.13.3.

Fixes:
- loader: allow overwrite of URL hostname again
[#844](https://github.com/fluxcd/helm-controller/pull/844)
- api: ensure backwards compatibility v2beta1
[#851](https://github.com/fluxcd/helm-controller/pull/851)

Improvements:
- loader: log HTTP errors to provide faster feedback
[#845](https://github.com/fluxcd/helm-controller/pull/845)
- Update runtime to v0.43.3
[#846](https://github.com/fluxcd/helm-controller/pull/846)
- Early stall condition detection after remediation
[#848](https://github.com/fluxcd/helm-controller/pull/848)
- Update Helm to v3.13.3
[#849](https://github.com/fluxcd/helm-controller/pull/849)

## 0.37.0

**Release date:** 2023-12-12
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/helm-controller
newName: fluxcd/helm-controller
newTag: v0.37.0
newTag: v0.37.1
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ replace (

require (
github.com/fluxcd/cli-utils v0.36.0-flux.2
github.com/fluxcd/helm-controller/api v0.37.0
github.com/fluxcd/helm-controller/api v0.37.1
github.com/fluxcd/pkg/apis/acl v0.1.0
github.com/fluxcd/pkg/apis/event v0.6.0
github.com/fluxcd/pkg/apis/kustomize v1.2.0
Expand Down