Release v0.15.4
Signed-off-by: Hidde Beydals <hello@hidde.co>
This commit is contained in:
parent
c30b9408bd
commit
fd1b3ce0bb
33
CHANGELOG.md
33
CHANGELOG.md
|
@ -2,6 +2,39 @@
|
||||||
|
|
||||||
All notable changes to this project are documented in this file.
|
All notable changes to this project are documented in this file.
|
||||||
|
|
||||||
|
## 0.15.4
|
||||||
|
|
||||||
|
**Release date:** 2021-08-05
|
||||||
|
|
||||||
|
This prerelease comes with a series of bug fixes, and updates the Kubernetes
|
||||||
|
dependencies to `v1.21.3` and Helm to `v3.6.3`.
|
||||||
|
|
||||||
|
Fixes:
|
||||||
|
* Fix tag checkout with libgit2
|
||||||
|
[#394](https://github.com/fluxcd/source-controller/pull/394)
|
||||||
|
* Take relative paths in account for Bucket revision
|
||||||
|
[#403](https://github.com/fluxcd/source-controller/pull/403)
|
||||||
|
* Ensure rel path never traverses outside Storage
|
||||||
|
[#417](https://github.com/fluxcd/source-controller/pull/417)
|
||||||
|
* Use same SemVer logic in both Git implementations
|
||||||
|
[#417](https://github.com/fluxcd/source-controller/pull/417)
|
||||||
|
* storage: strip env specific data during archive
|
||||||
|
[#417](https://github.com/fluxcd/source-controller/pull/417)
|
||||||
|
|
||||||
|
Improvements:
|
||||||
|
* e2e: Update Kubernetes to v1.21
|
||||||
|
[#396](https://github.com/fluxcd/source-controller/pull/396)
|
||||||
|
* Update Helm to v3.6.3
|
||||||
|
[#400](https://github.com/fluxcd/source-controller/pull/400)
|
||||||
|
* Add setup-envtest in Makefile
|
||||||
|
[#404](https://github.com/fluxcd/source-controller/pull/404)
|
||||||
|
* Use ObjectKeyFromObject instead of ObjectKey
|
||||||
|
[#405](https://github.com/fluxcd/source-controller/pull/405)
|
||||||
|
* Drop deprecated `io/ioutil`
|
||||||
|
[#409](https://github.com/fluxcd/source-controller/pull/409)
|
||||||
|
* Update dependencies
|
||||||
|
[#416](https://github.com/fluxcd/source-controller/pull/416)
|
||||||
|
|
||||||
## 0.15.3
|
## 0.15.3
|
||||||
|
|
||||||
**Release date:** 2021-06-29
|
**Release date:** 2021-06-29
|
||||||
|
|
|
@ -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.15.3
|
newTag: v0.15.4
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -16,7 +16,7 @@ require (
|
||||||
github.com/fluxcd/pkg/ssh v0.1.0
|
github.com/fluxcd/pkg/ssh v0.1.0
|
||||||
github.com/fluxcd/pkg/untar v0.1.0
|
github.com/fluxcd/pkg/untar v0.1.0
|
||||||
github.com/fluxcd/pkg/version v0.1.0
|
github.com/fluxcd/pkg/version v0.1.0
|
||||||
github.com/fluxcd/source-controller/api v0.15.3
|
github.com/fluxcd/source-controller/api v0.15.4
|
||||||
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 v0.4.0
|
github.com/go-logr/logr v0.4.0
|
||||||
|
|
Loading…
Reference in New Issue