Release v0.24.0
Signed-off-by: Hidde Beydals <hello@hidde.co>
This commit is contained in:
parent
3559e7aac3
commit
c83f0ad96c
28
CHANGELOG.md
28
CHANGELOG.md
|
@ -2,6 +2,34 @@
|
|||
|
||||
All notable changes to this project are documented in this file.
|
||||
|
||||
## 0.24.0
|
||||
|
||||
**Release date:** 2022-04-19
|
||||
|
||||
This prerelease enables the Helm chart dependency manager to make use of the
|
||||
opt-in memory cache introduced in `v0.23.0`, revises the file permissions set
|
||||
by the controller, and updates various dependencies.
|
||||
|
||||
:warning: **Breaking change:** From this release on, the `RUNTIME_NAMESPACE`
|
||||
environment variable is no longer taken into account to configure the
|
||||
advertised HTTP/S address of the storage. Instead, [variable
|
||||
substitution](https://kubernetes.io/docs/tasks/inject-data-application/define-interdependent-environment-variables/#define-an-environment-dependent-variable-for-a-container)
|
||||
must be used, as described in [the changelog entry for `v0.5.2`](#052).
|
||||
|
||||
Improvements:
|
||||
- Change all file permissions to octal format
|
||||
[#653](https://github.com/fluxcd/source-controller/pull/653)
|
||||
- Enable dependency manager to use in-memory cache
|
||||
[#667](https://github.com/fluxcd/source-controller/pull/667)
|
||||
- Update libgit2 image to v1.3.1
|
||||
[#671](https://github.com/fluxcd/source-controller/pull/671)
|
||||
- Remove hostname hyphen split block
|
||||
[#672](https://github.com/fluxcd/source-controller/pull/672)
|
||||
- Update dependencies
|
||||
[#675](https://github.com/fluxcd/source-controller/pull/675)
|
||||
[#676](https://github.com/fluxcd/source-controller/pull/676)
|
||||
[#677](https://github.com/fluxcd/source-controller/pull/677)
|
||||
|
||||
## 0.23.0
|
||||
|
||||
**Release date:** 2022-04-12
|
||||
|
|
|
@ -6,4 +6,4 @@ resources:
|
|||
images:
|
||||
- name: fluxcd/source-controller
|
||||
newName: fluxcd/source-controller
|
||||
newTag: v0.23.0
|
||||
newTag: v0.24.0
|
||||
|
|
2
go.mod
2
go.mod
|
@ -29,7 +29,7 @@ require (
|
|||
github.com/fluxcd/pkg/testserver v0.2.0
|
||||
github.com/fluxcd/pkg/untar v0.1.0
|
||||
github.com/fluxcd/pkg/version v0.1.0
|
||||
github.com/fluxcd/source-controller/api v0.23.0
|
||||
github.com/fluxcd/source-controller/api v0.24.0
|
||||
github.com/go-git/go-billy/v5 v5.3.1
|
||||
github.com/go-git/go-git/v5 v5.4.2
|
||||
github.com/go-logr/logr v1.2.3
|
||||
|
|
Loading…
Reference in New Issue