Skip to content

Commit 2a0682b

Browse files
Upgrade golang.org/x/net version to v0.38.0 (#1530)
* upgrade golang.org/x/net version to v0.38.0 * trigger integration test cases on branch * remove integration test trigger
1 parent e9c2092 commit 2a0682b

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ require (
111111
go.uber.org/multierr v1.11.0 // indirect
112112
golang.org/x/crypto v0.36.0 // indirect
113113
golang.org/x/exp v0.0.0-20230515195305-f3d0a9c9a5cc // indirect
114-
golang.org/x/net v0.37.0 // indirect
114+
golang.org/x/net v0.38.0 // indirect
115115
golang.org/x/oauth2 v0.21.0 // indirect
116116
golang.org/x/sync v0.12.0 // indirect
117117
golang.org/x/sys v0.32.0 // indirect

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,8 @@ golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qx
336336
golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
337337
golang.org/x/net v0.37.0 h1:1zLorHbz+LYj7MQlSf1+2tPIIgibq2eL5xkrGk6f+2c=
338338
golang.org/x/net v0.37.0/go.mod h1:ivrbrMbzFq5J41QOQh0siUuly180yBYtLp+CKbEaFx8=
339+
golang.org/x/net v0.38.0 h1:vRMAPTMaeGqVhG5QyLJHqNDwecKTomGeqbnfZyKlBI8=
340+
golang.org/x/net v0.38.0/go.mod h1:ivrbrMbzFq5J41QOQh0siUuly180yBYtLp+CKbEaFx8=
339341
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
340342
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
341343
golang.org/x/oauth2 v0.21.0 h1:tsimM75w1tF/uws5rbeHzIWxEqElMehnc+iW793zsZs=

internal/controller/common/predicate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ func LabelChangedPredicate() predicate.Predicate {
3030
func GenerationChangedPredicate() predicate.Predicate {
3131
return predicate.Funcs{
3232
UpdateFunc: func(e event.UpdateEvent) bool {
33-
return !reflect.DeepEqual(e.ObjectOld.GetGeneration(), e.ObjectNew.GetGeneration())
33+
return !reflect.DeepEqual(e.ObjectOld.GetGeneration(), e.ObjectNew.GetGeneration())
3434
},
3535
DeleteFunc: func(e event.DeleteEvent) bool {
3636
// Evaluates to false if the object has been confirmed deleted.

0 commit comments

Comments
 (0)