Release v0.28.0
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
This commit is contained in:
parent
430f5071b6
commit
ee4fa55863
28
CHANGELOG.md
28
CHANGELOG.md
|
@ -2,6 +2,32 @@
|
||||||
|
|
||||||
All notable changes to this project are documented in this file.
|
All notable changes to this project are documented in this file.
|
||||||
|
|
||||||
|
## 0.28.0
|
||||||
|
|
||||||
|
**Release date:** 2022-08-29
|
||||||
|
|
||||||
|
This prerelease adds support for contextual login to container registries when pulling
|
||||||
|
Helm charts from Azure Container Registry, Amazon Elastic Container Registry
|
||||||
|
and Google Artifact Registry. Contextual login for `HelmRepository`
|
||||||
|
objects can be enabled by setting the `spec.provider` field to `azure`, `aws` or `gcp`.
|
||||||
|
|
||||||
|
Selecting the OCI layer containing Kubernetes manifests is now possible
|
||||||
|
when defining `OCIRepository` objects by setting the `spec.layerSelector.mediaType` field.
|
||||||
|
|
||||||
|
In addition, the controller dependencies have been updated to Kubernetes v1.25.0 and Helm v3.9.4.
|
||||||
|
|
||||||
|
Improvements:
|
||||||
|
- [HelmRepository] Enable contextual login for OCI
|
||||||
|
[#873](https://github.com/fluxcd/source-controller/pull/873)
|
||||||
|
- [OCIRepository] Select layer by media type
|
||||||
|
[#871](https://github.com/fluxcd/source-controller/pull/871)
|
||||||
|
- Update Kubernetes packages to v1.25.0
|
||||||
|
[#875](https://github.com/fluxcd/source-controller/pull/875)
|
||||||
|
- Update dependencies
|
||||||
|
[#869](https://github.com/fluxcd/source-controller/pull/869)
|
||||||
|
- Ensure Go 1.18 for fuzz image
|
||||||
|
[#872](https://github.com/fluxcd/source-controller/pull/872)
|
||||||
|
|
||||||
## 0.27.0
|
## 0.27.0
|
||||||
|
|
||||||
**Release date:** 2022-08-17
|
**Release date:** 2022-08-17
|
||||||
|
@ -190,7 +216,7 @@ Improvements:
|
||||||
This prerelease fixes a regression for SSH host key verification
|
This prerelease fixes a regression for SSH host key verification
|
||||||
and fixes semver sorting for Helm OCI charts.
|
and fixes semver sorting for Helm OCI charts.
|
||||||
|
|
||||||
In addition, the controller dependencies where update to Kubernetes v1.24.1.
|
In addition, the controller dependencies have been updated to Kubernetes v1.24.1.
|
||||||
|
|
||||||
Fixes:
|
Fixes:
|
||||||
- helm: Fix sorting semver from OCI repository tags
|
- helm: Fix sorting semver from OCI repository tags
|
||||||
|
|
|
@ -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.27.0
|
newTag: v0.28.0
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -45,7 +45,7 @@ require (
|
||||||
github.com/fluxcd/pkg/testserver v0.3.0
|
github.com/fluxcd/pkg/testserver v0.3.0
|
||||||
github.com/fluxcd/pkg/untar v0.2.0
|
github.com/fluxcd/pkg/untar v0.2.0
|
||||||
github.com/fluxcd/pkg/version v0.2.0
|
github.com/fluxcd/pkg/version v0.2.0
|
||||||
github.com/fluxcd/source-controller/api v0.27.0
|
github.com/fluxcd/source-controller/api v0.28.0
|
||||||
github.com/go-git/go-billy/v5 v5.3.1
|
github.com/go-git/go-billy/v5 v5.3.1
|
||||||
github.com/go-git/go-git/v5 v5.4.2
|
github.com/go-git/go-git/v5 v5.4.2
|
||||||
github.com/go-logr/logr v1.2.3
|
github.com/go-logr/logr v1.2.3
|
||||||
|
|
Loading…
Reference in New Issue