Skip to content

Commit 3bb3f2e

Browse files
authored
Merge pull request #78 from gianlucam76/main
(chore) advance dependencies
2 parents 24084e0 + f8e697c commit 3bb3f2e

File tree

3 files changed

+89
-84
lines changed

3 files changed

+89
-84
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Image URL to use all building/pushing image targets
22
IMG ?= controller:latest
33
# KUBEBUILDER_ENVTEST_KUBERNETES_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
4-
KUBEBUILDER_ENVTEST_KUBERNETES_VERSION = 1.31.0
4+
KUBEBUILDER_ENVTEST_KUBERNETES_VERSION = 1.32.0
55

66
# Setting SHELL to bash allows bash commands to be executed by recipes.
77
# This is a requirement for 'setup-envtest.sh' in the test target.

hack/tools/go.mod

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
module github.com/projectsveltos/addon-controller/hack/tools
22

3-
go 1.22.7
3+
go 1.23.6
44

55
require (
66
github.com/a8m/envsubst v1.4.2
7-
github.com/onsi/ginkgo/v2 v2.20.2
8-
golang.org/x/oauth2 v0.23.0
9-
k8s.io/client-go v0.31.1
10-
sigs.k8s.io/controller-tools v0.16.3
11-
sigs.k8s.io/kind v0.24.0
7+
github.com/onsi/ginkgo/v2 v2.23.0
8+
golang.org/x/oauth2 v0.28.0
9+
k8s.io/client-go v0.32.2
10+
sigs.k8s.io/controller-tools v0.17.2
11+
sigs.k8s.io/kind v0.27.0
1212
)
1313

1414
require (
15+
al.essio.dev/pkg/shellescape v1.5.1 // indirect
1516
cloud.google.com/go/compute/metadata v0.5.1 // indirect
1617
github.com/BurntSushi/toml v1.4.0 // indirect
17-
github.com/alessio/shellescape v1.4.2 // indirect
1818
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
1919
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
20-
github.com/fatih/color v1.17.0 // indirect
20+
github.com/fatih/color v1.18.0 // indirect
2121
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
2222
github.com/go-logr/logr v1.4.2 // indirect
2323
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
24-
github.com/gobuffalo/flect v1.0.2 // indirect
24+
github.com/gobuffalo/flect v1.0.3 // indirect
2525
github.com/gogo/protobuf v1.3.2 // indirect
2626
github.com/google/gofuzz v1.2.0 // indirect
27-
github.com/google/pprof v0.0.0-20240910150728-a0b0bb1d4134 // indirect
27+
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect
2828
github.com/google/safetext v0.0.0-20240722112252-5a72de7e7962 // indirect
2929
github.com/google/uuid v1.6.0 // indirect
3030
github.com/inconshreveable/mousetrap v1.1.0 // indirect
@@ -33,29 +33,30 @@ require (
3333
github.com/mattn/go-isatty v0.0.20 // indirect
3434
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
3535
github.com/modern-go/reflect2 v1.0.2 // indirect
36+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
3637
github.com/pborman/uuid v1.2.1 // indirect
3738
github.com/pelletier/go-toml v1.9.5 // indirect
3839
github.com/pkg/errors v0.9.1 // indirect
3940
github.com/spf13/cobra v1.8.1 // indirect
40-
github.com/spf13/pflag v1.0.5 // indirect
41+
github.com/spf13/pflag v1.0.6 // indirect
4142
github.com/x448/float16 v0.8.4 // indirect
42-
golang.org/x/mod v0.21.0 // indirect
43-
golang.org/x/net v0.29.0 // indirect
44-
golang.org/x/sync v0.8.0 // indirect
45-
golang.org/x/sys v0.25.0 // indirect
46-
golang.org/x/term v0.24.0 // indirect
47-
golang.org/x/text v0.18.0 // indirect
48-
golang.org/x/time v0.6.0 // indirect
49-
golang.org/x/tools v0.25.0 // indirect
43+
golang.org/x/mod v0.23.0 // indirect
44+
golang.org/x/net v0.35.0 // indirect
45+
golang.org/x/sync v0.11.0 // indirect
46+
golang.org/x/sys v0.30.0 // indirect
47+
golang.org/x/term v0.29.0 // indirect
48+
golang.org/x/text v0.22.0 // indirect
49+
golang.org/x/time v0.7.0 // indirect
50+
golang.org/x/tools v0.30.0 // indirect
5051
gopkg.in/inf.v0 v0.9.1 // indirect
5152
gopkg.in/yaml.v2 v2.4.0 // indirect
5253
gopkg.in/yaml.v3 v3.0.1 // indirect
53-
k8s.io/api v0.31.1 // indirect
54-
k8s.io/apiextensions-apiserver v0.31.0 // indirect
55-
k8s.io/apimachinery v0.31.1 // indirect
54+
k8s.io/api v0.32.2 // indirect
55+
k8s.io/apiextensions-apiserver v0.32.1 // indirect
56+
k8s.io/apimachinery v0.32.2 // indirect
5657
k8s.io/klog/v2 v2.130.1 // indirect
57-
k8s.io/utils v0.0.0-20240902221715-702e33fdd3c3 // indirect
58-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
59-
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
58+
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect
59+
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
60+
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect
6061
sigs.k8s.io/yaml v1.4.0 // indirect
6162
)

0 commit comments

Comments
 (0)