Skip to content

Commit 862e56c

Browse files
authored
Merge pull request #662 from fluxcd/kustomize-v5.4.0
Update dependencies to Kustomize v5.4.0
2 parents f5daf35 + 45b79b2 commit 862e56c

File tree

2 files changed

+53
-57
lines changed

2 files changed

+53
-57
lines changed

go.mod

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ go 1.22
44

55
replace github.com/fluxcd/image-automation-controller/api => ./api
66

7-
// Pin kustomize to v5.3.0
7+
// Pin kustomize to v5.4.0
88
replace (
9-
sigs.k8s.io/kustomize/api => sigs.k8s.io/kustomize/api v0.16.0
10-
sigs.k8s.io/kustomize/kyaml => sigs.k8s.io/kustomize/kyaml v0.16.0
9+
sigs.k8s.io/kustomize/api => sigs.k8s.io/kustomize/api v0.17.0
10+
sigs.k8s.io/kustomize/kyaml => sigs.k8s.io/kustomize/kyaml v0.17.0
1111
)
1212

1313
require (
@@ -23,9 +23,9 @@ require (
2323
github.com/fluxcd/pkg/git v0.18.0
2424
github.com/fluxcd/pkg/git/gogit v0.18.0
2525
github.com/fluxcd/pkg/gittestserver v0.11.0
26-
github.com/fluxcd/pkg/runtime v0.45.0
26+
github.com/fluxcd/pkg/runtime v0.46.0
2727
github.com/fluxcd/pkg/ssh v0.12.0
28-
github.com/fluxcd/source-controller/api v1.2.4
28+
github.com/fluxcd/source-controller/api v1.2.5
2929
github.com/go-git/go-billy/v5 v5.5.0
3030
github.com/go-git/go-git/v5 v5.12.0
3131
github.com/go-logr/logr v1.4.1
@@ -39,7 +39,7 @@ require (
3939
k8s.io/kube-openapi v0.0.0-20240322212309-b815d8309940
4040
k8s.io/utils v0.0.0-20240310230437-4693a0247e57
4141
sigs.k8s.io/controller-runtime v0.17.2
42-
sigs.k8s.io/kustomize/kyaml v0.16.0
42+
sigs.k8s.io/kustomize/kyaml v0.17.0
4343
)
4444

4545
require (
@@ -50,16 +50,17 @@ require (
5050
github.com/Masterminds/semver/v3 v3.2.1 // indirect
5151
github.com/Microsoft/go-winio v0.6.1 // indirect
5252
github.com/beorn7/perks v1.0.1 // indirect
53+
github.com/blang/semver/v4 v4.0.0 // indirect
5354
github.com/cespare/xxhash/v2 v2.2.0 // indirect
5455
github.com/chai2010/gettext-go v1.0.2 // indirect
5556
github.com/cloudflare/circl v1.3.7 // indirect
56-
github.com/davecgh/go-spew v1.1.1 // indirect
57+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
5758
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
5859
github.com/emirpasic/gods v1.18.1 // indirect
5960
github.com/evanphx/json-patch v5.7.0+incompatible // indirect
6061
github.com/evanphx/json-patch/v5 v5.8.0 // indirect
6162
github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect
62-
github.com/fluxcd/cli-utils v0.36.0-flux.4 // indirect
63+
github.com/fluxcd/cli-utils v0.36.0-flux.5 // indirect
6364
github.com/fluxcd/gitkit v0.6.0 // indirect
6465
github.com/fluxcd/pkg/version v0.3.0 // indirect
6566
github.com/fsnotify/fsnotify v1.7.0 // indirect
@@ -124,21 +125,20 @@ require (
124125
go.starlark.net v0.0.0-20231121155337-90ade8b19d09 // indirect
125126
go.uber.org/multierr v1.11.0 // indirect
126127
go.uber.org/zap v1.27.0 // indirect
127-
golang.org/x/crypto v0.21.0 // indirect
128+
golang.org/x/crypto v0.22.0 // indirect
128129
golang.org/x/exp v0.0.0-20231206192017-f3f8817b8deb // indirect
129-
golang.org/x/mod v0.16.0 // indirect
130-
golang.org/x/net v0.22.0 // indirect
131-
golang.org/x/oauth2 v0.16.0 // indirect
132-
golang.org/x/sync v0.6.0 // indirect
133-
golang.org/x/sys v0.18.0 // indirect
134-
golang.org/x/term v0.18.0 // indirect
130+
golang.org/x/mod v0.17.0 // indirect
131+
golang.org/x/net v0.24.0 // indirect
132+
golang.org/x/oauth2 v0.19.0 // indirect
133+
golang.org/x/sync v0.7.0 // indirect
134+
golang.org/x/sys v0.19.0 // indirect
135+
golang.org/x/term v0.19.0 // indirect
135136
golang.org/x/text v0.14.0 // indirect
136137
golang.org/x/time v0.5.0 // indirect
137-
golang.org/x/tools v0.19.0 // indirect
138+
golang.org/x/tools v0.20.0 // indirect
138139
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
139-
google.golang.org/appengine v1.6.8 // indirect
140140
google.golang.org/protobuf v1.33.0 // indirect
141-
gopkg.in/evanphx/json-patch.v5 v5.7.0 // indirect
141+
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
142142
gopkg.in/inf.v0 v0.9.1 // indirect
143143
gopkg.in/warnings.v0 v0.1.2 // indirect
144144
gopkg.in/yaml.v2 v2.4.0 // indirect
@@ -149,7 +149,7 @@ require (
149149
k8s.io/klog/v2 v2.120.1 // indirect
150150
k8s.io/kubectl v0.29.3 // indirect
151151
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
152-
sigs.k8s.io/kustomize/api v0.16.0 // indirect
152+
sigs.k8s.io/kustomize/api v0.17.0 // indirect
153153
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
154154
sigs.k8s.io/yaml v1.4.0 // indirect
155155
)

0 commit comments

Comments
 (0)