Skip to content

Commit

Permalink
upgrade to latest dependencies
Browse files Browse the repository at this point in the history
bumping knative.dev/eventing e7fca76...67af70b:
  > 67af70b workaround DeepDerivative CreationTimestamp comparison (# 8233)
  > e6490c3 Add Convertible interface to job sink (# 8214)
  > b3b29f0 update jobsink TLS comments (# 8215)
  > c8c1f41 [main] Upgrade to latest dependencies (# 8201)

Signed-off-by: Knative Automation <[email protected]>
  • Loading branch information
knative-automation committed Oct 8, 2024
1 parent 4f20f98 commit 3754658
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ require (
k8s.io/client-go v0.31.0
k8s.io/code-generator v0.31.0
k8s.io/kube-openapi v0.0.0-20240808142205-8e686545bdb8
knative.dev/eventing v0.42.1-0.20240926123447-e7fca7646f4a
knative.dev/eventing v0.42.1-0.20241008061000-67af70be5209
knative.dev/hack v0.0.0-20240909014011-fc6a8452af6d
knative.dev/pkg v0.0.0-20240930065954-503173341499
knative.dev/reconciler-test v0.0.0-20240926123451-87d857060042
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -826,8 +826,8 @@ k8s.io/kube-openapi v0.0.0-20240808142205-8e686545bdb8 h1:1Wof1cGQgA5pqgo8MxKPtf
k8s.io/kube-openapi v0.0.0-20240808142205-8e686545bdb8/go.mod h1:Os6V6dZwLNii3vxFpxcNaTmH8LJJBkOTg1N0tOA0fvA=
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 h1:pUdcCO1Lk/tbT5ztQWOBi5HBgbBP1J8+AsQnQCKsi8A=
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
knative.dev/eventing v0.42.1-0.20240926123447-e7fca7646f4a h1:HnJ8kus8avX0oMuzA1K3mKKV+mZJ32kJGqvtIYcoeEw=
knative.dev/eventing v0.42.1-0.20240926123447-e7fca7646f4a/go.mod h1:CguA8wPeeeED9ZIAJ+NqCo8fGj1W3gkEvTQs7Enk/oo=
knative.dev/eventing v0.42.1-0.20241008061000-67af70be5209 h1:qBTVNVuPzst+CQGr6tJNVguWyr+xpcPwvOQfwF/6tG0=
knative.dev/eventing v0.42.1-0.20241008061000-67af70be5209/go.mod h1:YJ/D6wg7f6lv2t9u+/jE/7WjxWA4WVMjw7mfvPAdlmM=
knative.dev/hack v0.0.0-20240909014011-fc6a8452af6d h1:mgROhGJG3+g0SBkaG4Y2HxrIOLN3ZZcN4+IFZla+Zqs=
knative.dev/hack v0.0.0-20240909014011-fc6a8452af6d/go.mod h1:R0ritgYtjLDO9527h5vb5X6gfvt5LCrJ55BNbVDsWiY=
knative.dev/pkg v0.0.0-20240930065954-503173341499 h1:5xOSRTSjmakkXWtFFWtNTlNcks0FTN7T7wHeFrWR0qg=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ var (
_ apis.Defaultable = (*JobSink)(nil)
_ apis.HasSpec = (*JobSink)(nil)
_ duckv1.KRShaped = (*JobSink)(nil)
_ apis.Convertible = (*JobSink)(nil)
)

// JobSinkSpec defines the desired state of the JobSink.
Expand Down
3 changes: 3 additions & 0 deletions vendor/knative.dev/eventing/pkg/auth/serviceaccount.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,9 @@ func EnsureOIDCServiceAccountExistsForResource(ctx context.Context, serviceAccou
return fmt.Errorf("service account %s not owned by %s %s", sa.Name, gvk.Kind, objectMeta.Name)
}

// DeepDerivative does not understand default metav1.Time{} as an empty value
expected.CreationTimestamp = sa.CreationTimestamp

if !equality.Semantic.DeepDerivative(expected, sa) {
expected.ResourceVersion = sa.ResourceVersion

Expand Down
2 changes: 1 addition & 1 deletion vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1078,7 +1078,7 @@ k8s.io/utils/pointer
k8s.io/utils/ptr
k8s.io/utils/strings/slices
k8s.io/utils/trace
# knative.dev/eventing v0.42.1-0.20240926123447-e7fca7646f4a
# knative.dev/eventing v0.42.1-0.20241008061000-67af70be5209
## explicit; go 1.22.0
knative.dev/eventing/cmd/heartbeats
knative.dev/eventing/pkg/adapter/v2
Expand Down

0 comments on commit 3754658

Please sign in to comment.