Release v0.36.0

Signed-off-by: Hidde Beydals <hidde@hhh.computer>
This commit is contained in:
Hidde Beydals 2023-03-08 12:33:28 +01:00
parent 5bf114a941
commit ae4012d2ff
No known key found for this signature in database
GPG Key ID: 979F380FC2341744
3 changed files with 29 additions and 2 deletions

View File

@ -2,6 +2,33 @@
All notable changes to this project are documented in this file. All notable changes to this project are documented in this file.
## 0.36.0
**Release date:** 2023-03-08
This release changes the format of the Artifact `Revision` field when using a
GitRepository with a `.spec.ref.name` set (introduced in [`v0.35.0`](#0350)),
changing it from `sha1:<commit>` to `<name>@sha1:<commit>`. Offering a more
precise reflection of the revision the Artifact was created from.
In addition, `klog` is now configured to log using the same logger as the rest
of the controller (providing a consistent log format).
Lastly, the controller is now built using Go `1.20`, and the dependencies have
been updated to their latest versions.
Improvements:
- Advertise absolute reference in Artifact for GitRepository name ref
[#1036](https://github.com/fluxcd/source-controller/pull/1036)
- Update Go to 1.20
[#1040](https://github.com/fluxcd/source-controller/pull/1040)
- Update dependencies
[#1040](https://github.com/fluxcd/source-controller/pull/1040)
[#1041](https://github.com/fluxcd/source-controller/pull/1041)
[#1043](https://github.com/fluxcd/source-controller/pull/1043)
- Use `logger.SetLogger` to also configure `klog`
[#1044](https://github.com/fluxcd/source-controller/pull/1044)
## 0.35.2 ## 0.35.2
**Release date:** 2023-02-23 **Release date:** 2023-02-23

View File

@ -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.2 newTag: v0.36.0

2
go.mod
View File

@ -35,7 +35,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.2 github.com/fluxcd/source-controller/api v0.36.0
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