Skip to content

Commit d4f0aab

Browse files
author
Ahmed El-Sayed
authored
prepare for release v0.19.0 (#2554)
* Update gitopssets-controller to v0.6.0 * bump templates-controller version to v0.1.4
1 parent 8097e2d commit d4f0aab

File tree

10 files changed

+187
-191
lines changed

10 files changed

+187
-191
lines changed

charts/gitopssets-controller/crds/gitopsset-crd.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -617,6 +617,11 @@ spec:
617617
type: object
618618
type: array
619619
type: object
620+
lastHandledReconcileAt:
621+
description: LastHandledReconcileAt holds the value of the most recent
622+
reconcile request value, so a change of the annotation value can
623+
be detected.
624+
type: string
620625
observedGeneration:
621626
description: ObservedGeneration is the last observed generation of
622627
the HelmRepository object.

charts/mccp/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ templates-controller:
174174
controllerManager:
175175
manager:
176176
image:
177-
tag: v0.1.2
177+
tag: v0.1.4
178178

179179
gitopssets-controller:
180180
enabled: true
@@ -183,4 +183,4 @@ gitopssets-controller:
183183
controllerManager:
184184
manager:
185185
image:
186-
tag: v0.5.1
186+
tag: v0.6.0

charts/templates-controller/crds/capitemplate-crd.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,8 @@ spec:
287287
path:
288288
type: string
289289
raw:
290+
description: Raw is the content of the resource template in
291+
a string format. It supports comments in the template file.
290292
type: string
291293
type: object
292294
type: array

charts/templates-controller/crds/gitopstemplate-crd.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,8 @@ spec:
289289
path:
290290
type: string
291291
raw:
292+
description: Raw is the content of the resource template in
293+
a string format. It supports comments in the template file.
292294
type: string
293295
type: object
294296
type: array

go.mod

Lines changed: 36 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ require (
1010
github.com/google/go-cmp v0.5.9
1111
github.com/google/uuid v1.3.0
1212
github.com/gorilla/mux v1.8.0 // indirect
13-
github.com/onsi/gomega v1.27.2
13+
github.com/onsi/gomega v1.27.4
1414
github.com/pkg/errors v0.9.1 // indirect
1515
github.com/prometheus/client_golang v1.14.0 // indirect
1616
github.com/sclevine/agouti v3.0.0+incompatible
1717
github.com/sirupsen/logrus v1.9.0
1818
github.com/spf13/cobra v1.6.1
19-
github.com/stretchr/testify v1.8.1
20-
github.com/weaveworks/weave-gitops v0.19.0
19+
github.com/stretchr/testify v1.8.2
20+
github.com/weaveworks/weave-gitops v0.19.1-0.20230316090717-efdd1e1fe2a6
2121
github.com/weaveworks/weave-gitops-enterprise-credentials v0.0.2
2222
github.com/weaveworks/weave-gitops-enterprise/common v0.0.0
2323
gopkg.in/yaml.v3 v3.0.1 // indirect
@@ -39,12 +39,12 @@ require (
3939
github.com/fluxcd/go-git-providers v0.14.0
4040
github.com/fluxcd/helm-controller/api v0.30.0
4141
github.com/fluxcd/kustomize-controller/api v0.34.0
42-
github.com/fluxcd/pkg/apis/meta v0.19.0
43-
github.com/fluxcd/pkg/runtime v0.29.0
42+
github.com/fluxcd/pkg/apis/meta v0.19.1
43+
github.com/fluxcd/pkg/runtime v0.32.0
4444
github.com/fluxcd/pkg/untar v0.2.0
45-
github.com/fluxcd/source-controller/api v0.35.2
45+
github.com/fluxcd/source-controller/api v0.36.0
4646
github.com/go-resty/resty/v2 v2.7.0
47-
github.com/golang/protobuf v1.5.2
47+
github.com/golang/protobuf v1.5.3
4848
github.com/google/go-github/v32 v32.1.0
4949
github.com/grpc-ecosystem/grpc-gateway/v2 v2.10.2
5050
github.com/grpc-ecosystem/protoc-gen-grpc-gateway-ts v1.1.1
@@ -54,26 +54,26 @@ require (
5454
github.com/mattn/go-sqlite3 v1.14.16
5555
github.com/maxbrunsfeld/counterfeiter/v6 v6.5.0
5656
github.com/mkmik/multierror v0.3.0
57-
github.com/onsi/ginkgo/v2 v2.9.0
57+
github.com/onsi/ginkgo/v2 v2.9.1
5858
github.com/spf13/pflag v1.0.5
5959
github.com/spf13/viper v1.15.0
6060
github.com/tonglil/buflogr v1.0.1
6161
github.com/weaveworks/cluster-controller v1.4.1
62-
github.com/weaveworks/gitopssets-controller v0.5.2-0.20230306134151-79578e0349c2
62+
github.com/weaveworks/gitopssets-controller v0.6.0
6363
github.com/weaveworks/go-checkpoint v0.0.0-20220223124739-fd9899e2b4f2
6464
github.com/weaveworks/policy-agent/api v1.0.5
6565
github.com/weaveworks/progressive-delivery v0.0.0-20220915081124-d9f0c4063521
66-
github.com/weaveworks/templates-controller v0.1.3
66+
github.com/weaveworks/templates-controller v0.1.4
6767
github.com/xanzy/go-gitlab v0.78.0
68-
golang.org/x/crypto v0.6.0
68+
golang.org/x/crypto v0.7.0
6969
golang.org/x/oauth2 v0.6.0
7070
google.golang.org/genproto v0.0.0-20221227171554-f9683d7f8bef
7171
google.golang.org/grpc v1.52.0
7272
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0
73-
google.golang.org/protobuf v1.28.1
73+
google.golang.org/protobuf v1.30.0
7474
gotest.tools/v3 v3.1.0
7575
helm.sh/helm/v3 v3.9.4
76-
k8s.io/apiextensions-apiserver v0.26.1
76+
k8s.io/apiextensions-apiserver v0.26.2
7777
sigs.k8s.io/cluster-api v1.4.0-beta.2
7878
sigs.k8s.io/kustomize/kyaml v0.13.9
7979
sigs.k8s.io/yaml v1.3.0
@@ -114,10 +114,12 @@ require (
114114
github.com/muesli/cancelreader v0.2.2 // indirect
115115
github.com/muesli/reflow v0.3.0 // indirect
116116
github.com/muesli/termenv v0.11.1-0.20220212125758-44cd13922739 // indirect
117+
github.com/pjbgf/sha1cd v0.3.0 // indirect
117118
github.com/rogpeppe/go-internal v1.8.1 // indirect
118119
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 // indirect
120+
github.com/skeema/knownhosts v1.1.0 // indirect
119121
github.com/yannh/kubeconform v0.5.0 // indirect
120-
golang.org/x/tools v0.6.0 // indirect
122+
golang.org/x/tools v0.7.0 // indirect
121123
)
122124

123125
require (
@@ -150,11 +152,11 @@ require (
150152
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.35.0 // indirect
151153
go.opentelemetry.io/otel v1.10.0 // indirect
152154
go.opentelemetry.io/otel/trace v1.10.0 // indirect
153-
golang.org/x/mod v0.8.0 // indirect
155+
golang.org/x/mod v0.9.0 // indirect
154156
)
155157

156158
require (
157-
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
159+
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
158160
github.com/BurntSushi/toml v1.1.0 // indirect
159161
github.com/MakeNowJust/heredoc v1.0.0 // indirect
160162
github.com/Masterminds/goutils v1.1.1 // indirect
@@ -171,7 +173,7 @@ require (
171173
github.com/beorn7/perks v1.0.1 // indirect
172174
github.com/blang/semver v3.5.1+incompatible // indirect
173175
github.com/bufbuild/buf v1.7.0
174-
github.com/cespare/xxhash/v2 v2.1.2 // indirect
176+
github.com/cespare/xxhash/v2 v2.2.0 // indirect
175177
github.com/chai2010/gettext-go v1.0.2 // indirect
176178
github.com/cheshir/ttlcache v1.0.1-0.20220504185148-8ceeff21b789
177179
github.com/clbanning/mxj/v2 v2.3.3-0.20201214204241-e937bdee5a3e // indirect
@@ -188,7 +190,7 @@ require (
188190
github.com/docker/go-metrics v0.0.1 // indirect
189191
github.com/docker/go-units v0.4.0 // indirect
190192
github.com/drone/envsubst/v2 v2.0.0-20210730161058-179042472c46 // indirect
191-
github.com/emicklei/go-restful/v3 v3.10.0 // indirect
193+
github.com/emicklei/go-restful/v3 v3.10.2 // indirect
192194
github.com/emirpasic/gods v1.18.1 // indirect
193195
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
194196
github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect
@@ -201,11 +203,11 @@ require (
201203
github.com/go-errors/errors v1.4.2 // indirect
202204
github.com/go-git/gcfg v1.5.0 // indirect
203205
github.com/go-git/go-billy/v5 v5.4.1 // indirect
204-
github.com/go-git/go-git/v5 v5.4.2
206+
github.com/go-git/go-git/v5 v5.6.0
205207
github.com/go-gorp/gorp/v3 v3.0.2 // indirect
206208
github.com/go-logr/zapr v1.2.3 // indirect
207209
github.com/go-openapi/jsonpointer v0.19.6 // indirect
208-
github.com/go-openapi/jsonreference v0.20.1 // indirect
210+
github.com/go-openapi/jsonreference v0.20.2 // indirect
209211
github.com/go-openapi/swag v0.22.3 // indirect
210212
github.com/gobwas/glob v0.2.3 // indirect
211213
github.com/gofrs/flock v0.8.1 // indirect
@@ -225,10 +227,10 @@ require (
225227
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
226228
github.com/hashicorp/go-retryablehttp v0.7.2 // indirect
227229
github.com/hashicorp/hcl v1.0.1-vault-3 // indirect
228-
github.com/huandu/xstrings v1.3.3 // indirect
230+
github.com/huandu/xstrings v1.4.0 // indirect
229231
github.com/iancoleman/strcase v0.2.0 // indirect
230-
github.com/imdario/mergo v0.3.13 // indirect
231-
github.com/inconshreveable/mousetrap v1.0.1 // indirect
232+
github.com/imdario/mergo v0.3.14 // indirect
233+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
232234
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
233235
github.com/jmoiron/sqlx v1.3.5 // indirect
234236
github.com/josharian/intern v1.0.0 // indirect
@@ -252,7 +254,7 @@ require (
252254
github.com/mitchellh/reflectwalk v1.0.2 // indirect
253255
github.com/moby/locker v1.0.1 // indirect
254256
github.com/moby/spdystream v0.2.0 // indirect
255-
github.com/moby/term v0.0.0-20221105221325-4eb28fa6025c // indirect
257+
github.com/moby/term v0.0.0-20221205130635-1aeaba878587 // indirect
256258
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
257259
github.com/modern-go/reflect2 v1.0.2 // indirect
258260
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
@@ -265,8 +267,8 @@ require (
265267
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
266268
github.com/pmezard/go-difflib v1.0.0 // indirect
267269
github.com/prometheus/client_model v0.3.0 // indirect
268-
github.com/prometheus/common v0.37.0 // indirect
269-
github.com/prometheus/procfs v0.8.0 // indirect
270+
github.com/prometheus/common v0.42.0 // indirect
271+
github.com/prometheus/procfs v0.9.0 // indirect
270272
github.com/rivo/uniseg v0.4.2 // indirect
271273
github.com/rubenv/sql-migrate v1.1.2 // indirect
272274
github.com/sergi/go-diff v1.3.1 // indirect
@@ -282,10 +284,10 @@ require (
282284
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
283285
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
284286
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
285-
github.com/xlab/treeprint v1.1.0 // indirect
286-
go.starlark.net v0.0.0-20221028183056-acb66ad56dd2 // indirect
287+
github.com/xlab/treeprint v1.2.0 // indirect
288+
go.starlark.net v0.0.0-20230302034142-4b1e35fe2254 // indirect
287289
go.uber.org/atomic v1.10.0 // indirect
288-
go.uber.org/multierr v1.8.0 // indirect
290+
go.uber.org/multierr v1.10.0 // indirect
289291
go.uber.org/zap v1.24.0 // indirect
290292
golang.org/x/net v0.8.0
291293
golang.org/x/sync v0.1.0
@@ -300,12 +302,12 @@ require (
300302
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
301303
gopkg.in/warnings.v0 v0.1.2 // indirect
302304
gopkg.in/yaml.v2 v2.4.0
303-
k8s.io/apiserver v0.26.1 // indirect
304-
k8s.io/component-base v0.26.1 // indirect
305-
k8s.io/klog/v2 v2.90.0 // indirect
305+
k8s.io/apiserver v0.26.2 // indirect
306+
k8s.io/component-base v0.26.2 // indirect
307+
k8s.io/klog/v2 v2.90.1 // indirect
306308
k8s.io/kube-openapi v0.0.0-20230109183929-3758b55a6596 // indirect
307-
k8s.io/kubectl v0.26.1 // indirect
308-
k8s.io/utils v0.0.0-20221128185143-99ec85e7a448
309+
k8s.io/kubectl v0.26.2 // indirect
310+
k8s.io/utils v0.0.0-20230313181309-38a27ef9d749
309311
oras.land/oras-go v1.2.0 // indirect
310312
sigs.k8s.io/cli-utils v0.34.0 // indirect
311313
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect

0 commit comments

Comments
 (0)