Skip to content

Commit

Permalink
upgrade to latest dependencies (#1282)
Browse files Browse the repository at this point in the history
bumping knative.dev/eventing dc96522...140482e:
  > 140482e Upgrade tests account for last event being interrupted (# 7447)
  > d84daee Gather traces for TestChannelDeadLetterSinkExtensions (# 7441)
  > 2d1bfb5 Fix OIDC token handling in event_dispatcher (# 7457)

Signed-off-by: Knative Automation <automation@knative.team>
  • Loading branch information
knative-automation authored Nov 20, 2023
1 parent 1059592 commit 188018a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ require (
k8s.io/client-go v0.27.6
k8s.io/code-generator v0.27.6
k8s.io/kube-openapi v0.0.0-20230928205116-a78145627833
knative.dev/eventing v0.39.1-0.20231117075909-dc965225f635
knative.dev/eventing v0.39.1-0.20231120114720-140482e3189a
knative.dev/hack v0.0.0-20231109190034-5deaddeb51a7
knative.dev/pkg v0.0.0-20231115001034-97c7258e3a98
knative.dev/reconciler-test v0.0.0-20231115072946-99723665c94d
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1870,8 +1870,8 @@ k8s.io/kube-openapi v0.0.0-20230928205116-a78145627833 h1:iFFEmmB7szQhJP42AvRD2+
k8s.io/kube-openapi v0.0.0-20230928205116-a78145627833/go.mod h1:AsvuZPBlUDVuCdzJ87iajxtXuR9oktsTctW/R9wwouA=
k8s.io/utils v0.0.0-20230726121419-3b25d923346b h1:sgn3ZU783SCgtaSJjpcVVlRqd6GSnlTLKgpAAttJvpI=
k8s.io/utils v0.0.0-20230726121419-3b25d923346b/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
knative.dev/eventing v0.39.1-0.20231117075909-dc965225f635 h1:UuDZus9PmvDRLDsPe2M8abuoorvx53SMIbqJkpmuR2w=
knative.dev/eventing v0.39.1-0.20231117075909-dc965225f635/go.mod h1:LGZfBR1ykKiLBF06aX+C7vqe4HogiNc9MmFpJz9lvtw=
knative.dev/eventing v0.39.1-0.20231120114720-140482e3189a h1:fsve5uqqYxzrBkXAynlMmWkw4L1S6aYUuaLafBkBIE4=
knative.dev/eventing v0.39.1-0.20231120114720-140482e3189a/go.mod h1:LGZfBR1ykKiLBF06aX+C7vqe4HogiNc9MmFpJz9lvtw=
knative.dev/hack v0.0.0-20231109190034-5deaddeb51a7 h1:HXf7M7n9jwn+Hp904r0HXRSymf+DLXSciFpXVpCg+Bs=
knative.dev/hack v0.0.0-20231109190034-5deaddeb51a7/go.mod h1:yk2OjGDsbEnQjfxdm0/HJKS2WqTLEFg/N6nUs6Rqx3Q=
knative.dev/pkg v0.0.0-20231115001034-97c7258e3a98 h1:uvOLwp5Ar7oJlaYEszh51CemuZc1sRRI14xzKhUEF3U=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ func WithTransformers(transformers ...binding.Transformer) SendOption {

func WithOIDCAuthentication(serviceAccount *types.NamespacedName) SendOption {
return func(sc *senderConfig) error {
if serviceAccount != nil && serviceAccount.Name != "" && serviceAccount.Namespace == "" {
if serviceAccount != nil && serviceAccount.Name != "" && serviceAccount.Namespace != "" {
sc.oidcServiceAccount = serviceAccount
return nil
} else {
Expand Down Expand Up @@ -349,7 +349,7 @@ func (d *Dispatcher) createRequest(ctx context.Context, message binding.Message,
if err != nil {
return nil, fmt.Errorf("could not get JWT: %w", err)
}
request.Header.Set("Authorization", fmt.Sprintf("Bearer: %s", jwt))
request.Header.Set("Authorization", fmt.Sprintf("Bearer %s", jwt))
}
}

Expand Down
2 changes: 1 addition & 1 deletion vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1085,7 +1085,7 @@ k8s.io/utils/pointer
k8s.io/utils/ptr
k8s.io/utils/strings/slices
k8s.io/utils/trace
# knative.dev/eventing v0.39.1-0.20231117075909-dc965225f635
# knative.dev/eventing v0.39.1-0.20231120114720-140482e3189a
## explicit; go 1.19
knative.dev/eventing/cmd/heartbeats
knative.dev/eventing/pkg/adapter/v2
Expand Down

0 comments on commit 188018a

Please sign in to comment.