Release v0.2.0
Signed-off-by: Hidde Beydals <hello@hidde.co>
This commit is contained in:
parent
0c43076a67
commit
a3f7b1d5b2
21
CHANGELOG.md
21
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.
|
||||
|
|
|
@ -6,4 +6,4 @@ resources:
|
|||
images:
|
||||
- name: fluxcd/source-controller
|
||||
newName: fluxcd/source-controller
|
||||
newTag: v0.1.1
|
||||
newTag: v0.2.0
|
||||
|
|
2
go.mod
2
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
|
||||
|
|
Loading…
Reference in New Issue