commit
e402a46816
15
CHANGELOG.md
15
CHANGELOG.md
|
|
@ -1,5 +1,20 @@
|
|||
# Changelog
|
||||
|
||||
## 0.6.0
|
||||
|
||||
**Release date:** 2021-01-22
|
||||
|
||||
This is the sixth MINOR prerelease.
|
||||
|
||||
Two new argument flags are introduced to support configuring the QPS
|
||||
(`--kube-api-qps`) and burst (`--kube-api-burst`) while communicating
|
||||
with the Kubernetes API server.
|
||||
|
||||
The `LocalObjectReference` from the Kubernetes core has been replaced
|
||||
with our own, making `Name` a required field. The impact of this should
|
||||
be limited to direct API consumers only, as the field was already
|
||||
required by controller logic.
|
||||
|
||||
## 0.5.2
|
||||
|
||||
**Release date:** 2021-01-18
|
||||
|
|
|
|||
|
|
@ -5,4 +5,4 @@ resources:
|
|||
images:
|
||||
- name: fluxcd/helm-controller
|
||||
newName: fluxcd/helm-controller
|
||||
newTag: v0.5.2
|
||||
newTag: v0.6.0
|
||||
|
|
|
|||
2
go.mod
2
go.mod
|
|
@ -5,7 +5,7 @@ go 1.15
|
|||
replace github.com/fluxcd/helm-controller/api => ./api
|
||||
|
||||
require (
|
||||
github.com/fluxcd/helm-controller/api v0.5.2
|
||||
github.com/fluxcd/helm-controller/api v0.6.0
|
||||
github.com/fluxcd/pkg/apis/meta v0.7.0
|
||||
github.com/fluxcd/pkg/runtime v0.8.0
|
||||
github.com/fluxcd/source-controller/api v0.7.0
|
||||
|
|
|
|||
Loading…
Reference in New Issue