Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: fluxcd/helm-controller
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.11.2
Choose a base ref
...
head repository: fluxcd/helm-controller
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.12.0
Choose a head ref
  • 11 commits
  • 12 files changed
  • 3 contributors

Commits on Aug 23, 2021

  1. Fix indentation for PostRenderers example

    Signed-off-by: Nuriel Shem-Tov <nurielst@hotmail.com>
    nuriel77 committed Aug 23, 2021
    Copy the full SHA
    99dcd96 View commit details

Commits on Aug 30, 2021

  1. Merge pull request #314 from nuriel77/fix/yaml-indent

    Fix indentation for PostRenderers example
    hiddeco authored Aug 30, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4c528cb View commit details

Commits on Oct 8, 2021

  1. Update fluxcd/source-controller to v0.16.0

    This introduces support for defining a `ReconcileStrategy` for
    `HelmChart` resources.
    
    Signed-off-by: Hidde Beydals <hello@hidde.co>
    hiddeco committed Oct 8, 2021

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    f3cbefe View commit details
  2. Introduce ReconcileStrategy in HelmChartTemplateSpec

    To allow configuring it within the `HelmRelease`.
    
    Signed-off-by: Hidde Beydals <hello@hidde.co>
    hiddeco committed Oct 8, 2021

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    c079240 View commit details
  3. Merge pull request #329 from fluxcd/reconcile-strategy

    Update fluxcd/source-controller to v0.16.0
    hiddeco authored Oct 8, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b467ea6 View commit details
  4. Update sigs.k8s.io/kustomize/api to v0.10.0

    Signed-off-by: Hidde Beydals <hello@hidde.co>
    hiddeco committed Oct 8, 2021

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    33e9eeb View commit details
  5. Enforce github.com/opencontainers/runc v1.0.0-rc95

    To fix CVE-2021-30465.
    
    Signed-off-by: Hidde Beydals <hello@hidde.co>
    hiddeco committed Oct 8, 2021

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    dc74a8a View commit details
  6. Update Helm to v3.7.0

    This pulls in Kubernetes dependencies at `v0.22.1`, but should include
    improvements that would help resolve #149
    
    Signed-off-by: Hidde Beydals <hello@hidde.co>
    hiddeco committed Oct 8, 2021

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    ea447a4 View commit details
  7. Merge pull request #330 from fluxcd/update-dependencies

    Update dependencies
    hiddeco authored Oct 8, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    8b769f7 View commit details
  8. Release v0.12.0

    Signed-off-by: Hidde Beydals <hello@hidde.co>
    hiddeco committed Oct 8, 2021

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    7e021d4 View commit details
  9. Merge pull request #332 from fluxcd/release-v0.12.0

    Release v0.12.0
    hiddeco authored Oct 8, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    54db7fd View commit details
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# Changelog

## 0.12.0

**Release date:** 2021-10-08

This prerelease updates Helm to `v3.7.0`, this Helm version should include
improvements to the locking mechanism of releases, which should result in
a reduction of deadlocked releases that have been reported in the past.

In addition, it is now possible to define a `ReconcileStrategy` in the
`HelmChartTemplateSpec`. By setting the value of this field to `Revision`,
a new artifact will be made available for charts from `Bucket` and
`GitRepository` sources whenever a new revision is available.
The default value of the field is `ChartVersion`, which looks for version
changes in the `Chart.yaml` file.

Improvements:

* Update fluxcd/source-controller to v0.16.0
[#329](https://github.com/fluxcd/helm-controller/pull/329)
* Introduce ReconcileStrategy in HelmChartTemplateSpec
[#329](https://github.com/fluxcd/helm-controller/pull/329)
* Update sigs.k8s.io/kustomize/api to v0.10.0
[#330](https://github.com/fluxcd/helm-controller/pull/330)
* Update Helm to v3.7.0
[#330](https://github.com/fluxcd/helm-controller/pull/330)

Fixes:
* Fix indentation for PostRenderers example
[#314](https://github.com/fluxcd/helm-controller/pull/314)

## 0.11.2

**Release date:** 2021-08-05
4 changes: 2 additions & 2 deletions api/go.mod
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ require (
github.com/fluxcd/pkg/apis/kustomize v0.1.0
github.com/fluxcd/pkg/apis/meta v0.10.0
github.com/fluxcd/pkg/runtime v0.12.0
k8s.io/apiextensions-apiserver v0.21.3
k8s.io/apimachinery v0.21.3
k8s.io/apiextensions-apiserver v0.22.1
k8s.io/apimachinery v0.22.1
sigs.k8s.io/controller-runtime v0.9.5
)
Loading