Skip to content

Commit 75e927a

Browse files
authored
Merge pull request #186 from fluxcd/release-v0.4.0
Release v0.4.0
2 parents 9190c76 + b46bda7 commit 75e927a

File tree

6 files changed

+23
-8
lines changed

6 files changed

+23
-8
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
All notable changes to this project are documented in this file.
44

5+
## 0.4.0 (2020-11-26)
6+
7+
This is the fourth MINOR prerelease. Suspended Kustomizations are
8+
no longer marked as not ready, the status sub-resource is left untouched.
9+
10+
Improvements:
11+
* Do not mark suspended resource as not ready
12+
[#183](https://github.com/fluxcd/kustomize-controller/pull/183)
13+
* Set field manager to `kustomize-controller` instead of `kubectl`
14+
[#184](https://github.com/fluxcd/kustomize-controller/pull/184)
15+
16+
Fixes:
17+
* Requeue after interval on source not found errors
18+
[#182](https://github.com/fluxcd/kustomize-controller/pull/182)
19+
520
## 0.3.0 (2020-11-20)
621

722
This is the third MINOR prerelease. It introduces two breaking changes:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
IMG ?= fluxcd/kustomize-controller:latest
33
# Produce CRDs that work back to Kubernetes 1.16
44
CRD_OPTIONS ?= crd:crdVersions=v1
5-
SOURCE_VER ?= v0.3.0
5+
SOURCE_VER ?= v0.4.0
66

77
# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
88
ifeq (,$(shell go env GOBIN))

config/default/kustomization.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ resources:
55
- ../crd
66
- ../rbac
77
- ../manager
8-
- github.com/fluxcd/source-controller/config//crd?ref=v0.3.0
9-
- github.com/fluxcd/source-controller/config//manager?ref=v0.3.0
8+
- github.com/fluxcd/source-controller/config//crd?ref=v0.4.0
9+
- github.com/fluxcd/source-controller/config//manager?ref=v0.4.0
1010
- namespace.yaml

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ resources:
55
images:
66
- name: fluxcd/kustomize-controller
77
newName: fluxcd/kustomize-controller
8-
newTag: v0.3.0
8+
newTag: v0.4.0

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ go 1.15
55
replace github.com/fluxcd/kustomize-controller/api => ./api
66

77
require (
8-
github.com/fluxcd/kustomize-controller/api v0.3.0
8+
github.com/fluxcd/kustomize-controller/api v0.4.0
99
github.com/fluxcd/pkg/apis/meta v0.4.0
1010
github.com/fluxcd/pkg/runtime v0.3.1
1111
github.com/fluxcd/pkg/testserver v0.0.2
1212
github.com/fluxcd/pkg/untar v0.0.5
13-
github.com/fluxcd/source-controller/api v0.3.0
13+
github.com/fluxcd/source-controller/api v0.4.0
1414
github.com/go-logr/logr v0.2.1
1515
github.com/howeyc/gopass v0.0.0-20170109162249-bf9dde6d0d2c
1616
github.com/onsi/ginkgo v1.12.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,8 @@ github.com/fluxcd/pkg/testserver v0.0.2 h1:SoaMtO9cE5p/wl2zkGudzflnEHd9mk68CGjZO
171171
github.com/fluxcd/pkg/testserver v0.0.2/go.mod h1:pgUZTh9aQ44FSTQo+5NFlh7YMbUfdz1B80DalW7k96Y=
172172
github.com/fluxcd/pkg/untar v0.0.5 h1:UGI3Ch1UIEIaqQvMicmImL1s9npQa64DJ/ozqHKB7gk=
173173
github.com/fluxcd/pkg/untar v0.0.5/go.mod h1:O6V9+rtl8c1mHBafgqFlJN6zkF1HS5SSYn7RpQJ/nfw=
174-
github.com/fluxcd/source-controller/api v0.3.0 h1:liDV8tqpBeQp7KDdVxX9YYb6gFoO7v2hyIFXudw2vQg=
175-
github.com/fluxcd/source-controller/api v0.3.0/go.mod h1:MYmvbADJp/21m4C+PEY7WXCeqEErMYuhns+jnKyewqs=
174+
github.com/fluxcd/source-controller/api v0.4.0 h1:hyHMFXLxkTT4H7KT7h0UUb3GK6bS2JJzNCcilBk2fXs=
175+
github.com/fluxcd/source-controller/api v0.4.0/go.mod h1:MYmvbADJp/21m4C+PEY7WXCeqEErMYuhns+jnKyewqs=
176176
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
177177
github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4=
178178
github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=

0 commit comments

Comments
 (0)