File tree Expand file tree Collapse file tree 6 files changed +28
-8
lines changed Expand file tree Collapse file tree 6 files changed +28
-8
lines changed Original file line number Diff line number Diff line change 22
33All notable changes to this project are documented in this file.
44
5+ ## 0.5.2
6+
7+ ** Release date:** 2020-12-16
8+
9+ This prerelease comes with improvements to garbage collection
10+ and adds safe guards for relative paths.
11+
12+ The ` Path ` field was marked as optional, when not specified,
13+ it defaults to the root path of the ` SourceRef ` .
14+
15+ Health checking and garbage collection for ` HelmReleases `
16+ and other custom resources were fixed by downgrading
17+ to ` controller-runtime ` v0.6.3.
18+
19+ Improvements:
20+ * Refactor garbage collection
21+ [ #210 ] ( https://github.com/fluxcd/kustomize-controller/pull/210 )
22+ * Make Path field optional and add safe guards for relative paths
23+ [ #211 ] ( https://github.com/fluxcd/kustomize-controller/pull/211 )
24+
525## 0.5.1
626
727** Release date:** 2020-12-14
Original file line number Diff line number Diff line change 22IMG ?= fluxcd/kustomize-controller:latest
33# Produce CRDs that work back to Kubernetes 1.16
44CRD_OPTIONS ?= crd:crdVersions=v1
5- SOURCE_VER ?= v0.5.4
5+ SOURCE_VER ?= v0.5.5
66
77# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
88ifeq (,$(shell go env GOBIN) )
Original file line number Diff line number Diff line change @@ -5,6 +5,6 @@ resources:
55- ../crd
66- ../rbac
77- ../manager
8- - github.com/fluxcd/source-controller/config//crd?ref=v0.5.4
9- - github.com/fluxcd/source-controller/config//manager?ref=v0.5.4
8+ - github.com/fluxcd/source-controller/config//crd?ref=v0.5.5
9+ - github.com/fluxcd/source-controller/config//manager?ref=v0.5.5
1010- namespace.yaml
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ resources:
55images :
66 - name : fluxcd/kustomize-controller
77 newName : fluxcd/kustomize-controller
8- newTag : v0.5.1
8+ newTag : v0.5.2
Original file line number Diff line number Diff line change @@ -6,12 +6,12 @@ replace github.com/fluxcd/kustomize-controller/api => ./api
66
77require (
88 github.com/cyphar/filepath-securejoin v0.2.2
9- github.com/fluxcd/kustomize-controller/api v0.5.1
9+ github.com/fluxcd/kustomize-controller/api v0.5.2
1010 github.com/fluxcd/pkg/apis/meta v0.5.0
1111 github.com/fluxcd/pkg/runtime v0.4.0
1212 github.com/fluxcd/pkg/testserver v0.0.2
1313 github.com/fluxcd/pkg/untar v0.0.5
14- github.com/fluxcd/source-controller/api v0.5.4
14+ github.com/fluxcd/source-controller/api v0.5.5
1515 github.com/go-logr/logr v0.2.1
1616 github.com/howeyc/gopass v0.0.0-20170109162249-bf9dde6d0d2c
1717 github.com/onsi/ginkgo v1.12.1
Original file line number Diff line number Diff line change @@ -170,8 +170,8 @@ github.com/fluxcd/pkg/testserver v0.0.2 h1:SoaMtO9cE5p/wl2zkGudzflnEHd9mk68CGjZO
170170github.com/fluxcd/pkg/testserver v0.0.2 /go.mod h1:pgUZTh9aQ44FSTQo+5NFlh7YMbUfdz1B80DalW7k96Y =
171171github.com/fluxcd/pkg/untar v0.0.5 h1:UGI3Ch1UIEIaqQvMicmImL1s9npQa64DJ/ozqHKB7gk =
172172github.com/fluxcd/pkg/untar v0.0.5 /go.mod h1:O6V9+rtl8c1mHBafgqFlJN6zkF1HS5SSYn7RpQJ/nfw =
173- github.com/fluxcd/source-controller/api v0.5.4 h1:V3SzxbBDLULPWBD9nObJqXovCU5TZka8R/vrDIgomj4 =
174- github.com/fluxcd/source-controller/api v0.5.4 /go.mod h1:/mpW0EM2dUnRey6rffqsSmgNkSAYm+zq9i0GfmTO7I0 =
173+ github.com/fluxcd/source-controller/api v0.5.5 h1:F6xmaKSks8YaETG8IEocpJQ1g07JbaJiVJAqmM2jP0M =
174+ github.com/fluxcd/source-controller/api v0.5.5 /go.mod h1:/mpW0EM2dUnRey6rffqsSmgNkSAYm+zq9i0GfmTO7I0 =
175175github.com/fsnotify/fsnotify v1.4.7 /go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo =
176176github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4 =
177177github.com/fsnotify/fsnotify v1.4.9 /go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ =
You can’t perform that action at this time.
0 commit comments