Release v0.35.2
Signed-off-by: Hidde Beydals <hello@hidde.co>
This commit is contained in:
parent
9982dba4d5
commit
70a44bd187
24
CHANGELOG.md
24
CHANGELOG.md
|
|
@ -2,6 +2,30 @@
|
||||||
|
|
||||||
All notable changes to this project are documented in this file.
|
All notable changes to this project are documented in this file.
|
||||||
|
|
||||||
|
## 0.35.2
|
||||||
|
|
||||||
|
**Release date:** 2023-02-23
|
||||||
|
|
||||||
|
This release reduces the amount of memory consumed by the controller when
|
||||||
|
reconciling HelmRepositories, by using only the digest of the YAML file as the
|
||||||
|
Revision of the Artifact instead of the stable sorted version of the entire
|
||||||
|
index. This aligns with the behavior before `v0.35.0`, and is therefore
|
||||||
|
considered a bug fix.
|
||||||
|
|
||||||
|
In addition, the dependencies have been updated to include some minor security
|
||||||
|
patches.
|
||||||
|
|
||||||
|
Note that `v0.35.0` contains breaking changes. Please refer to the [changelog
|
||||||
|
entry](#0350) for more information.
|
||||||
|
|
||||||
|
Fixes:
|
||||||
|
- helm: only use Digest to calculcate index revision
|
||||||
|
[#1035](https://github.com/fluxcd/source-controller/pull/1035)
|
||||||
|
|
||||||
|
Improvements:
|
||||||
|
- Update dependencies
|
||||||
|
[#1036](https://github.com/fluxcd/source-controller/pull/1036)
|
||||||
|
|
||||||
## 0.35.1
|
## 0.35.1
|
||||||
|
|
||||||
**Release date:** 2023-02-17
|
**Release date:** 2023-02-17
|
||||||
|
|
|
||||||
|
|
@ -6,4 +6,4 @@ resources:
|
||||||
images:
|
images:
|
||||||
- name: fluxcd/source-controller
|
- name: fluxcd/source-controller
|
||||||
newName: fluxcd/source-controller
|
newName: fluxcd/source-controller
|
||||||
newTag: v0.35.1
|
newTag: v0.35.2
|
||||||
|
|
|
||||||
2
go.mod
2
go.mod
|
|
@ -38,7 +38,7 @@ require (
|
||||||
github.com/fluxcd/pkg/testserver v0.4.0
|
github.com/fluxcd/pkg/testserver v0.4.0
|
||||||
github.com/fluxcd/pkg/untar v0.2.0
|
github.com/fluxcd/pkg/untar v0.2.0
|
||||||
github.com/fluxcd/pkg/version v0.2.1
|
github.com/fluxcd/pkg/version v0.2.1
|
||||||
github.com/fluxcd/source-controller/api v0.35.1
|
github.com/fluxcd/source-controller/api v0.35.2
|
||||||
github.com/go-git/go-billy/v5 v5.4.1
|
github.com/go-git/go-billy/v5 v5.4.1
|
||||||
github.com/go-logr/logr v1.2.3
|
github.com/go-logr/logr v1.2.3
|
||||||
github.com/google/go-containerregistry v0.13.0
|
github.com/google/go-containerregistry v0.13.0
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue