Skip to content

Commit e8136c4

Browse files
PCP-3113: CVE-2024-24790 Fix (#107)
* PCP-3113: Bump go version and dependencies * PCP-3113: Bump go version and dependencies * PCP-3113: Bump go version and dependencies * Revert DS_Store files
1 parent d686f74 commit e8136c4

File tree

3 files changed

+54
-48
lines changed

3 files changed

+54
-48
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,5 @@ _releasenotes
8080

8181
# calico manifests archive
8282
release-*/manifests/calico-*.yaml
83+
84+
.DS_Store

go.mod

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
module sigs.k8s.io/cluster-api-provider-azure
22

3-
go 1.21
3+
go 1.22
4+
5+
toolchain go1.22.4
46

57
require (
68
github.com/Azure/aad-pod-identity v1.8.13
79
github.com/Azure/azure-sdk-for-go v68.0.0+incompatible
8-
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.7.1
9-
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.3.1
10+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1
11+
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.6.0
1012
github.com/Azure/go-autorest/autorest v0.11.27
1113
github.com/Azure/go-autorest/autorest/adal v0.9.20
1214
github.com/Azure/go-autorest/autorest/azure/auth v0.5.10
@@ -18,7 +20,7 @@ require (
1820
github.com/golang/mock v1.6.0
1921
github.com/google/go-cmp v0.5.9
2022
github.com/google/gofuzz v1.2.0
21-
github.com/google/uuid v1.3.0
23+
github.com/google/uuid v1.6.0
2224
github.com/hashicorp/go-retryablehttp v0.7.0
2325
github.com/hashicorp/golang-lru v0.5.4
2426
github.com/onsi/ginkgo v1.16.5
@@ -34,8 +36,8 @@ require (
3436
go.opentelemetry.io/otel/sdk v1.4.0
3537
go.opentelemetry.io/otel/sdk/metric v0.27.0
3638
go.opentelemetry.io/otel/trace v1.4.0
37-
golang.org/x/crypto v0.21.0
38-
golang.org/x/mod v0.8.0
39+
golang.org/x/crypto v0.24.0
40+
golang.org/x/mod v0.17.0
3941
helm.sh/helm/v3 v3.8.1
4042
k8s.io/api v0.25.0
4143
k8s.io/apimachinery v0.25.0
@@ -51,14 +53,14 @@ require (
5153
)
5254

5355
require (
54-
github.com/Azure/azure-sdk-for-go/sdk/internal v1.3.0 // indirect
56+
github.com/Azure/azure-sdk-for-go/sdk/internal v1.8.0 // indirect
5557
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
5658
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
5759
github.com/Azure/go-autorest/autorest/azure/cli v0.4.2 // indirect
5860
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
5961
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect
6062
github.com/Azure/go-autorest/logger v0.2.1 // indirect
61-
github.com/AzureAD/microsoft-authentication-library-for-go v1.1.1 // indirect
63+
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
6264
github.com/BurntSushi/toml v1.0.0 // indirect
6365
github.com/MakeNowJust/heredoc v1.0.0 // indirect
6466
github.com/Masterminds/goutils v1.1.1 // indirect
@@ -106,7 +108,7 @@ require (
106108
github.com/gofrs/uuid v4.2.0+incompatible // indirect
107109
github.com/gogo/protobuf v1.3.2 // indirect
108110
github.com/golang-jwt/jwt/v4 v4.4.3 // indirect
109-
github.com/golang-jwt/jwt/v5 v5.0.0 // indirect
111+
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
110112
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
111113
github.com/golang/protobuf v1.5.3 // indirect
112114
github.com/google/btree v1.0.1 // indirect
@@ -157,7 +159,7 @@ require (
157159
github.com/opencontainers/image-spec v1.0.2 // indirect
158160
github.com/pelletier/go-toml v1.9.4 // indirect
159161
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
160-
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 // indirect
162+
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
161163
github.com/prometheus/client_model v0.2.0 // indirect
162164
github.com/prometheus/common v0.32.1 // indirect
163165
github.com/prometheus/procfs v0.7.3 // indirect
@@ -183,12 +185,12 @@ require (
183185
go.opentelemetry.io/otel/internal/metric v0.27.0 // indirect
184186
go.opentelemetry.io/proto/otlp v0.12.0 // indirect
185187
go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5 // indirect
186-
golang.org/x/net v0.23.0 // indirect
188+
golang.org/x/net v0.26.0 // indirect
187189
golang.org/x/oauth2 v0.10.0 // indirect
188-
golang.org/x/sync v0.3.0 // indirect
189-
golang.org/x/sys v0.18.0 // indirect
190-
golang.org/x/term v0.18.0 // indirect
191-
golang.org/x/text v0.14.0 // indirect
190+
golang.org/x/sync v0.7.0 // indirect
191+
golang.org/x/sys v0.21.0 // indirect
192+
golang.org/x/term v0.21.0 // indirect
193+
golang.org/x/text v0.16.0 // indirect
192194
golang.org/x/time v0.0.0-20220609170525-579cf78fd858 // indirect
193195
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
194196
google.golang.org/appengine v1.6.7 // indirect

0 commit comments

Comments
 (0)