diff --git a/CHANGELOG.md b/CHANGELOG.md index 8860b2f9..8ca711c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,27 @@ All notable changes to this project are documented in this file. +## 0.2.0 (2020-10-29) + +This is the second MINOR prerelease, it comes with breaking changes: + +* Due to a change of semver library to exclude pre-releases from `1.0.x` + ranges, support for more complex ranges like + `>=1.0.0 <2.0.0 || >=3.0.0 !3.0.1-beta.1` has been dropped. +* The histogram metric `gotk_reconcile_duration` was renamed to `gotk_reconcile_duration_seconds` + +Other notable changes: + +* Ambiguous semver matches are now sorted by the timestamp of the source + system to use the most recent match. +* Added support for downloading dependencies for Helm charts from + `GitRepository` and `Bucket` sources. +* Added support for creating artifacts for packaged Helm charts (`.tgz`) + from `GitRepository` and `Bucket` sources. +* The annotation `fluxcd.io/reconcileAt` was renamed to `reconcile.fluxcd.io/requestedAt`, + the former will be removed in a next release but is backwards + compatible for now. + ## 0.1.1 (2020-10-13) This prerelease comes with Prometheus instrumentation for the controller's resources. diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index 900a9884..7652a4c0 100644 --- a/config/manager/kustomization.yaml +++ b/config/manager/kustomization.yaml @@ -6,4 +6,4 @@ resources: images: - name: fluxcd/source-controller newName: fluxcd/source-controller - newTag: v0.1.1 + newTag: v0.2.0 diff --git a/go.mod b/go.mod index 7cc9fa3c..b1eae756 100644 --- a/go.mod +++ b/go.mod @@ -14,7 +14,7 @@ require ( github.com/fluxcd/pkg/ssh v0.0.5 github.com/fluxcd/pkg/untar v0.0.5 github.com/fluxcd/pkg/version v0.0.1 - github.com/fluxcd/source-controller/api v0.1.1 + github.com/fluxcd/source-controller/api v0.2.0 github.com/go-git/go-billy/v5 v5.0.0 github.com/go-git/go-git/v5 v5.1.0 github.com/go-logr/logr v0.1.0