Skip to content

Commit 456d0b6

Browse files
chore(deps): bump the flux-deps group across 1 directory with 11 updates
Bumps the flux-deps group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [github.com/fluxcd/cli-utils](https://github.com/fluxcd/cli-utils) | `0.36.0-flux.9` | `0.36.0-flux.12` | | [github.com/fluxcd/pkg/apis/acl](https://github.com/fluxcd/pkg) | `0.3.0` | `0.6.0` | | [github.com/fluxcd/pkg/apis/event](https://github.com/fluxcd/pkg) | `0.10.1` | `0.16.0` | | [github.com/fluxcd/pkg/http/fetch](https://github.com/fluxcd/pkg) | `0.12.1` | `0.15.0` | | [github.com/fluxcd/pkg/runtime](https://github.com/fluxcd/pkg) | `0.49.1` | `0.54.0` | | [github.com/fluxcd/pkg/ssa](https://github.com/fluxcd/pkg) | `0.41.1` | `0.45.1` | | [github.com/fluxcd/source-controller/api](https://github.com/fluxcd/source-controller) | `1.4.1` | `1.5.0` | | [github.com/fluxcd/source-watcher](https://github.com/fluxcd/source-watcher) | `1.1.0` | `1.2.0` | Updates `github.com/fluxcd/cli-utils` from 0.36.0-flux.9 to 0.36.0-flux.12 - [Commits](fluxcd/cli-utils@v0.36.0-flux.9...v0.36.0-flux.12) Updates `github.com/fluxcd/pkg/apis/acl` from 0.3.0 to 0.6.0 - [Commits](fluxcd/pkg@tar/v0.3.0...tar/v0.6.0) Updates `github.com/fluxcd/pkg/apis/event` from 0.10.1 to 0.16.0 - [Commits](fluxcd/pkg@runtime/v0.10.1...git/v0.16.0) Updates `github.com/fluxcd/pkg/http/fetch` from 0.12.1 to 0.15.0 - [Commits](fluxcd/pkg@git/v0.12.1...git/v0.15.0) Updates `github.com/fluxcd/pkg/runtime` from 0.49.1 to 0.54.0 - [Commits](fluxcd/pkg@runtime/v0.49.1...runtime/v0.54.0) Updates `github.com/fluxcd/pkg/ssa` from 0.41.1 to 0.45.1 - [Commits](fluxcd/pkg@oci/v0.41.1...ssa/v0.45.1) Updates `github.com/fluxcd/pkg/tar` from 0.8.1 to 0.10.0 - [Commits](fluxcd/pkg@ssh/v0.8.1...git/v0.10.0) Updates `github.com/fluxcd/pkg/testserver` from 0.7.0 to 0.9.0 - [Commits](fluxcd/pkg@git/v0.7.0...git/v0.9.0) Updates `github.com/fluxcd/source-controller/api` from 1.4.1 to 1.5.0 - [Release notes](https://github.com/fluxcd/source-controller/releases) - [Changelog](https://github.com/fluxcd/source-controller/blob/main/CHANGELOG.md) - [Commits](fluxcd/source-controller@v1.4.1...v1.5.0) Updates `github.com/fluxcd/pkg/apis/meta` from 1.6.1 to 1.10.0 - [Commits](fluxcd/pkg@apis/meta/v1.6.1...apis/meta/v1.10.0) Updates `github.com/fluxcd/source-watcher` from 1.1.0 to 1.2.0 - [Release notes](https://github.com/fluxcd/source-watcher/releases) - [Changelog](https://github.com/fluxcd/source-watcher/blob/main/.goreleaser.yaml) - [Commits](fluxcd/source-watcher@v1.1.0...v1.2.0) --- updated-dependencies: - dependency-name: github.com/fluxcd/cli-utils dependency-type: direct:production update-type: version-update:semver-patch dependency-group: flux-deps - dependency-name: github.com/fluxcd/pkg/apis/acl dependency-type: direct:production update-type: version-update:semver-minor dependency-group: flux-deps - dependency-name: github.com/fluxcd/pkg/apis/event dependency-type: direct:production update-type: version-update:semver-minor dependency-group: flux-deps - dependency-name: github.com/fluxcd/pkg/http/fetch dependency-type: direct:production update-type: version-update:semver-minor dependency-group: flux-deps - dependency-name: github.com/fluxcd/pkg/runtime dependency-type: direct:production update-type: version-update:semver-minor dependency-group: flux-deps - dependency-name: github.com/fluxcd/pkg/ssa dependency-type: direct:production update-type: version-update:semver-minor dependency-group: flux-deps - dependency-name: github.com/fluxcd/pkg/tar dependency-type: direct:production update-type: version-update:semver-minor dependency-group: flux-deps - dependency-name: github.com/fluxcd/pkg/testserver dependency-type: direct:production update-type: version-update:semver-minor dependency-group: flux-deps - dependency-name: github.com/fluxcd/source-controller/api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: flux-deps - dependency-name: github.com/fluxcd/pkg/apis/meta dependency-type: direct:production update-type: version-update:semver-minor dependency-group: flux-deps - dependency-name: github.com/fluxcd/source-watcher dependency-type: direct:production update-type: version-update:semver-minor dependency-group: flux-deps ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent af9ff9d commit 456d0b6

File tree

2 files changed

+200
-193
lines changed

2 files changed

+200
-193
lines changed

go.mod

+60-60
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,32 @@
11
module github.com/kcl-lang/flux-kcl-controller
22

33
go 1.23
4+
toolchain go1.24.1
45

56
// Replace digest lib to master to gather access to BLAKE3.
67
// xref: https://github.com/opencontainers/go-digest/pull/66
78
replace github.com/opencontainers/go-digest => github.com/opencontainers/go-digest v1.0.1-0.20220411205349-bde1400a84be
89

910
require (
10-
github.com/fluxcd/cli-utils v0.36.0-flux.9
11-
github.com/fluxcd/pkg/apis/acl v0.3.0
12-
github.com/fluxcd/pkg/apis/event v0.10.1
13-
github.com/fluxcd/pkg/http/fetch v0.12.1
14-
github.com/fluxcd/pkg/runtime v0.49.1
15-
github.com/fluxcd/pkg/ssa v0.41.1
16-
github.com/fluxcd/pkg/tar v0.8.1
17-
github.com/fluxcd/pkg/testserver v0.7.0
18-
github.com/fluxcd/source-controller/api v1.4.1
11+
github.com/fluxcd/cli-utils v0.36.0-flux.13
12+
github.com/fluxcd/pkg/apis/acl v0.7.0
13+
github.com/fluxcd/pkg/apis/event v0.17.0
14+
github.com/fluxcd/pkg/http/fetch v0.16.0
15+
github.com/fluxcd/pkg/runtime v0.59.0
16+
github.com/fluxcd/pkg/ssa v0.46.0
17+
github.com/fluxcd/pkg/tar v0.12.0
18+
github.com/fluxcd/pkg/testserver v0.11.0
19+
github.com/fluxcd/source-controller/api v1.5.0
1920
github.com/hashicorp/vault/api v1.16.0
20-
github.com/onsi/gomega v1.36.2
21+
github.com/onsi/gomega v1.37.0
2122
github.com/ory/dockertest v3.3.5+incompatible
2223
github.com/spf13/pflag v1.0.6
2324
github.com/stretchr/testify v1.10.0
24-
k8s.io/apimachinery v0.31.1
25-
k8s.io/client-go v0.31.1
25+
k8s.io/apimachinery v0.33.0
26+
k8s.io/client-go v0.33.0
2627
kcl-lang.io/kcl-go v0.11.1
2728
kcl-lang.io/kpm v0.11.1
28-
sigs.k8s.io/controller-runtime v0.19.0
29+
sigs.k8s.io/controller-runtime v0.20.4
2930
)
3031

3132
require (
@@ -36,7 +37,7 @@ require (
3637
cloud.google.com/go/iam v1.1.8 // indirect
3738
cloud.google.com/go/storage v1.42.0 // indirect
3839
dario.cat/mergo v1.0.1 // indirect
39-
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect
40+
github.com/AdaLogics/go-fuzz-headers v0.0.0-20240806141605-e8a1dd7889d6 // indirect
4041
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
4142
github.com/BurntSushi/toml v1.4.0 // indirect
4243
github.com/MakeNowJust/heredoc v1.0.0 // indirect
@@ -89,13 +90,13 @@ require (
8990
github.com/gofrs/flock v0.12.1 // indirect
9091
github.com/golang-collections/collections v0.0.0-20130729185459-604e922904d3 // indirect
9192
github.com/golang/snappy v0.0.4 // indirect
92-
github.com/google/btree v1.1.2 // indirect
93+
github.com/google/btree v1.1.3 // indirect
9394
github.com/google/s2a-go v0.1.7 // indirect
9495
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
9596
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
9697
github.com/googleapis/gax-go/v2 v2.12.5 // indirect
9798
github.com/gorilla/mux v1.8.1 // indirect
98-
github.com/gorilla/websocket v1.5.0 // indirect
99+
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 // indirect
99100
github.com/gotestyourself/gotestyourself v2.2.0+incompatible // indirect
100101
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
101102
github.com/hashicorp/errwrap v1.1.0 // indirect
@@ -113,7 +114,7 @@ require (
113114
github.com/jinzhu/copier v0.4.0 // indirect
114115
github.com/jmespath/go-jmespath v0.4.0 // indirect
115116
github.com/kevinburke/ssh_config v1.2.0 // indirect
116-
github.com/klauspost/compress v1.17.11 // indirect
117+
github.com/klauspost/compress v1.18.0 // indirect
117118
github.com/kubescape/go-git-url v0.0.30 // indirect
118119
github.com/kylelemons/godebug v1.1.0 // indirect
119120
github.com/lib/pq v1.10.9 // indirect
@@ -123,7 +124,7 @@ require (
123124
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
124125
github.com/mitchellh/mapstructure v1.5.0 // indirect
125126
github.com/moby/locker v1.0.1 // indirect
126-
github.com/moby/spdystream v0.4.0 // indirect
127+
github.com/moby/spdystream v0.5.0 // indirect
127128
github.com/moby/sys/capability v0.4.0 // indirect
128129
github.com/moby/sys/mountinfo v0.7.2 // indirect
129130
github.com/moby/sys/user v0.3.0 // indirect
@@ -143,48 +144,49 @@ require (
143144
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
144145
github.com/sirupsen/logrus v1.9.3 // indirect
145146
github.com/skeema/knownhosts v1.3.0 // indirect
146-
github.com/spf13/cobra v1.8.1 // indirect
147+
github.com/spf13/cobra v1.9.1 // indirect
147148
github.com/thoas/go-funk v0.9.3 // indirect
148149
github.com/ulikunitz/xz v0.5.12 // indirect
149150
github.com/x448/float16 v0.8.4 // indirect
150151
github.com/xanzy/ssh-agent v0.3.3 // indirect
151152
github.com/xlab/treeprint v1.2.0 // indirect
152153
go.opencensus.io v0.24.0 // indirect
153-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 // indirect
154-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.54.0 // indirect
155-
go.opentelemetry.io/otel v1.32.0 // indirect
156-
go.opentelemetry.io/otel/metric v1.32.0 // indirect
157-
go.opentelemetry.io/otel/trace v1.32.0 // indirect
158-
go.starlark.net v0.0.0-20231121155337-90ade8b19d09 // indirect
159-
golang.org/x/crypto v0.32.0 // indirect
154+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
155+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.58.0 // indirect
156+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.58.0 // indirect
157+
go.opentelemetry.io/otel v1.34.0 // indirect
158+
go.opentelemetry.io/otel/metric v1.34.0 // indirect
159+
go.opentelemetry.io/otel/trace v1.34.0 // indirect
160+
golang.org/x/crypto v0.37.0 // indirect
160161
golang.org/x/mod v0.23.0 // indirect
161-
golang.org/x/sync v0.10.0 // indirect
162+
golang.org/x/sync v0.13.0 // indirect
162163
google.golang.org/api v0.186.0 // indirect
163164
google.golang.org/genproto v0.0.0-20240624140628-dc46fd24d27d // indirect
164-
google.golang.org/genproto/googleapis/api v0.0.0-20241202173237-19429a94021a // indirect
165+
google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576 // indirect
165166
google.golang.org/genproto/googleapis/rpc v0.0.0-20250102185135-69823020774d // indirect
166167
google.golang.org/grpc v1.70.0 // indirect
167168
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
168169
gopkg.in/warnings.v0 v0.1.2 // indirect
169-
k8s.io/cli-runtime v0.31.1 // indirect
170-
k8s.io/kubectl v0.31.1 // indirect
170+
k8s.io/cli-runtime v0.33.0 // indirect
171+
k8s.io/kubectl v0.33.0 // indirect
171172
kcl-lang.io/lib v0.11.1 // indirect
172173
oras.land/oras-go v1.2.6 // indirect
173174
oras.land/oras-go/v2 v2.5.0 // indirect
174-
sigs.k8s.io/kustomize/api v0.17.3 // indirect
175-
sigs.k8s.io/kustomize/kyaml v0.17.2 // indirect
175+
sigs.k8s.io/kustomize/api v0.19.0 // indirect
176+
sigs.k8s.io/kustomize/kyaml v0.19.0 // indirect
177+
sigs.k8s.io/randfill v1.0.0 // indirect
176178
)
177179

178180
require (
179181
github.com/beorn7/perks v1.0.1 // indirect
180182
github.com/cespare/xxhash/v2 v2.3.0 // indirect
181183
github.com/cyphar/filepath-securejoin v0.4.1
182184
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
183-
github.com/emicklei/go-restful/v3 v3.12.0 // indirect
184-
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
185-
github.com/fluxcd/pkg/apis/meta v1.6.1
186-
github.com/fluxcd/source-watcher v1.1.0
187-
github.com/fsnotify/fsnotify v1.7.0 // indirect
185+
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
186+
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
187+
github.com/fluxcd/pkg/apis/meta v1.11.0
188+
github.com/fluxcd/source-watcher v1.2.0
189+
github.com/fsnotify/fsnotify v1.8.0 // indirect
188190
github.com/go-logr/logr v1.4.2 // indirect
189191
github.com/go-logr/zapr v1.3.0 // indirect
190192
github.com/go-openapi/jsonpointer v0.21.0 // indirect
@@ -193,49 +195,47 @@ require (
193195
github.com/gogo/protobuf v1.3.2 // indirect
194196
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
195197
github.com/golang/protobuf v1.5.4 // indirect
196-
github.com/google/gnostic-models v0.6.8 // indirect
197-
github.com/google/go-cmp v0.6.0 // indirect
198-
github.com/google/gofuzz v1.2.0 // indirect
198+
github.com/google/gnostic-models v0.6.9 // indirect
199+
github.com/google/go-cmp v0.7.0 // indirect
199200
github.com/google/uuid v1.6.0 // indirect
200201
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
201202
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
202-
github.com/imdario/mergo v0.3.16 // indirect
203203
github.com/josharian/intern v1.0.0 // indirect
204204
github.com/json-iterator/go v1.1.12 // indirect
205-
github.com/klauspost/cpuid/v2 v2.2.8 // indirect
206-
github.com/mailru/easyjson v0.7.7 // indirect
205+
github.com/klauspost/cpuid/v2 v2.2.10 // indirect
206+
github.com/mailru/easyjson v0.9.0 // indirect
207207
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
208208
github.com/modern-go/reflect2 v1.0.2 // indirect
209209
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
210210
github.com/opencontainers/go-digest v1.0.0
211-
github.com/opencontainers/go-digest/blake3 v0.0.0-20231025023718-d50d2fec9c98 // indirect
211+
github.com/opencontainers/go-digest/blake3 v0.0.0-20250116041648-1e56c6daea3b // indirect
212212
github.com/pkg/errors v0.9.1 // indirect
213-
github.com/prometheus/client_golang v1.20.5 // indirect
213+
github.com/prometheus/client_golang v1.22.0 // indirect
214214
github.com/prometheus/client_model v0.6.1 // indirect
215-
github.com/prometheus/common v0.57.0 // indirect
215+
github.com/prometheus/common v0.62.0 // indirect
216216
github.com/prometheus/procfs v0.15.1 // indirect
217-
github.com/zeebo/blake3 v0.2.3 // indirect
217+
github.com/zeebo/blake3 v0.2.4 // indirect
218218
go.uber.org/multierr v1.11.0 // indirect
219219
go.uber.org/zap v1.27.0 // indirect
220220
golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67
221-
golang.org/x/net v0.34.0 // indirect
222-
golang.org/x/oauth2 v0.25.0 // indirect
223-
golang.org/x/sys v0.29.0 // indirect
224-
golang.org/x/term v0.28.0 // indirect
225-
golang.org/x/text v0.21.0 // indirect
226-
golang.org/x/time v0.6.0 // indirect
221+
golang.org/x/net v0.39.0 // indirect
222+
golang.org/x/oauth2 v0.29.0 // indirect
223+
golang.org/x/sys v0.32.0 // indirect
224+
golang.org/x/term v0.31.0 // indirect
225+
golang.org/x/text v0.24.0 // indirect
226+
golang.org/x/time v0.11.0 // indirect
227227
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
228228
google.golang.org/protobuf v1.36.5 // indirect
229229
gopkg.in/inf.v0 v0.9.1 // indirect
230230
gopkg.in/yaml.v2 v2.4.0
231231
gopkg.in/yaml.v3 v3.0.1 // indirect
232-
k8s.io/api v0.31.1
233-
k8s.io/apiextensions-apiserver v0.31.1 // indirect
234-
k8s.io/component-base v0.31.1 // indirect
232+
k8s.io/api v0.33.0
233+
k8s.io/apiextensions-apiserver v0.33.0 // indirect
234+
k8s.io/component-base v0.33.0 // indirect
235235
k8s.io/klog/v2 v2.130.1 // indirect
236-
k8s.io/kube-openapi v0.0.0-20240411171206-dc4e619f62f3 // indirect
237-
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect
238-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
239-
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
236+
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
237+
k8s.io/utils v0.0.0-20250321185631-1f6e0b77f77e // indirect
238+
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
239+
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
240240
sigs.k8s.io/yaml v1.4.0 // indirect
241241
)

0 commit comments

Comments
 (0)