diff --git a/go.mod b/go.mod index c037a8006..0203cd626 100644 --- a/go.mod +++ b/go.mod @@ -15,7 +15,7 @@ require ( k8s.io/code-generator v0.25.2 k8s.io/utils v0.0.0-20220728103510-ee6ede2d64ed knative.dev/hack v0.0.0-20221010154335-3fdc50b9c24a - knative.dev/networking v0.0.0-20221007151732-fcbfa31ac035 + knative.dev/networking v0.0.0-20221012062251-58f3e6239b4f knative.dev/pkg v0.0.0-20221011175852-714b7630a836 sigs.k8s.io/gateway-api v0.5.0 sigs.k8s.io/yaml v1.3.0 diff --git a/go.sum b/go.sum index 7cb370d49..4c47cd738 100644 --- a/go.sum +++ b/go.sum @@ -889,8 +889,8 @@ k8s.io/utils v0.0.0-20220728103510-ee6ede2d64ed h1:jAne/RjBTyawwAy0utX5eqigAwz/l k8s.io/utils v0.0.0-20220728103510-ee6ede2d64ed/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= knative.dev/hack v0.0.0-20221010154335-3fdc50b9c24a h1:yfq1OMrkyYkxDeM0pmAOeN4YF16R/WG0C+VvLBeq4uc= knative.dev/hack v0.0.0-20221010154335-3fdc50b9c24a/go.mod h1:yk2OjGDsbEnQjfxdm0/HJKS2WqTLEFg/N6nUs6Rqx3Q= -knative.dev/networking v0.0.0-20221007151732-fcbfa31ac035 h1:OOw/KMAKITv3godQbwzT617mjJGYiNuRQxPGpjqwHkE= -knative.dev/networking v0.0.0-20221007151732-fcbfa31ac035/go.mod h1:ySkvDWiPZ0QD6H5GlYxOgUI782Fv2vLkyQRXCr4wkrQ= +knative.dev/networking v0.0.0-20221012062251-58f3e6239b4f h1:e/08+ofUjGjSYV2Usvb22IbkX4MjoiywbRtnXUK3FQY= +knative.dev/networking v0.0.0-20221012062251-58f3e6239b4f/go.mod h1:GciicKYf4aWE138pT2ZKkZ/E10rd0Kt4ziX52A/HnVY= knative.dev/pkg v0.0.0-20221011175852-714b7630a836 h1:0N7Zo/O+xeUUebJPm9keBaGclrUoEbljr3J1MsqtaIM= knative.dev/pkg v0.0.0-20221011175852-714b7630a836/go.mod h1:DMTRDJ5WRxf/DrlOPzohzfhSuJggscLZ8EavOq9O/x8= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= diff --git a/vendor/knative.dev/networking/test/conformance/ingress/grpc.go b/vendor/knative.dev/networking/test/conformance/ingress/grpc.go index 0019c4b01..0dabb3de9 100644 --- a/vendor/knative.dev/networking/test/conformance/ingress/grpc.go +++ b/vendor/knative.dev/networking/test/conformance/ingress/grpc.go @@ -27,6 +27,7 @@ import ( "github.com/google/go-cmp/cmp" "google.golang.org/grpc" + "google.golang.org/grpc/credentials/insecure" "k8s.io/apimachinery/pkg/util/intstr" "k8s.io/apimachinery/pkg/util/sets" "knative.dev/networking/pkg/apis/networking/v1alpha1" @@ -65,7 +66,7 @@ func TestGRPC(t *testing.T) { conn, err := grpc.Dial( domain+":80", - grpc.WithInsecure(), + grpc.WithTransportCredentials(insecure.NewCredentials()), grpc.WithContextDialer(func(ctx context.Context, addr string) (net.Conn, error) { return dialCtx(ctx, "unused", addr) }), @@ -134,7 +135,7 @@ func TestGRPCSplit(t *testing.T) { conn, err := grpc.Dial( domain+":80", - grpc.WithInsecure(), + grpc.WithTransportCredentials(insecure.NewCredentials()), grpc.WithContextDialer(func(ctx context.Context, addr string) (net.Conn, error) { return dialCtx(ctx, "unused", addr) }), diff --git a/vendor/modules.txt b/vendor/modules.txt index 51cd80138..9f9f07d42 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -894,7 +894,7 @@ k8s.io/utils/trace # knative.dev/hack v0.0.0-20221010154335-3fdc50b9c24a ## explicit; go 1.18 knative.dev/hack -# knative.dev/networking v0.0.0-20221007151732-fcbfa31ac035 +# knative.dev/networking v0.0.0-20221012062251-58f3e6239b4f ## explicit; go 1.18 knative.dev/networking/config knative.dev/networking/pkg