diff --git a/go.mod b/go.mod index 0f6ef7ec..384791cf 100644 --- a/go.mod +++ b/go.mod @@ -15,7 +15,7 @@ require ( k8s.io/code-generator v0.35.2 knative.dev/hack v0.0.0-20260310014051-c448fdb867e2 knative.dev/pkg v0.0.0-20260310013839-5504026dd1b6 - knative.dev/serving v0.48.1-0.20260310211214-d686bb2b8684 + knative.dev/serving v0.48.1-0.20260313135630-f698e61bf739 ) require ( @@ -97,7 +97,7 @@ require ( k8s.io/klog/v2 v2.130.1 // indirect k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 // indirect k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 // indirect - knative.dev/networking v0.0.0-20260310141215-8340ed7fd0e1 // indirect + knative.dev/networking v0.0.0-20260313010219-0055e9277729 // indirect sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect sigs.k8s.io/randfill v1.0.0 // indirect sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect diff --git a/go.sum b/go.sum index 839d8e47..f6994221 100644 --- a/go.sum +++ b/go.sum @@ -263,12 +263,12 @@ k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 h1:SjGebBtkBqHFOli+05xYbK8YF1Dzk k8s.io/utils v0.0.0-20251002143259-bc988d571ff4/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= knative.dev/hack v0.0.0-20260310014051-c448fdb867e2 h1:b35SGLEp03D8oGf8mE9HBt3yfNgYpAK0fw46hFXs9w4= knative.dev/hack v0.0.0-20260310014051-c448fdb867e2/go.mod h1:L5RzHgbvam0u8QFHfzCX6MKxu/a/gIGEdaRBqNiVbl0= -knative.dev/networking v0.0.0-20260310141215-8340ed7fd0e1 h1:MA7om/7ZLLj7dXmaHTUCoGOgd8AfCCdsKvBPBhPtisg= -knative.dev/networking v0.0.0-20260310141215-8340ed7fd0e1/go.mod h1:72PhQ+qnOAwz9FFK8y301eWuiQ6vD9qVUFnDBjNhju8= +knative.dev/networking v0.0.0-20260313010219-0055e9277729 h1:sF6e1RnluIKCiZBPrz7BxIWkAkLU8hiSSK+1NusRmGM= +knative.dev/networking v0.0.0-20260313010219-0055e9277729/go.mod h1:72PhQ+qnOAwz9FFK8y301eWuiQ6vD9qVUFnDBjNhju8= knative.dev/pkg v0.0.0-20260310013839-5504026dd1b6 h1:oVpQ0Y+FUmRQer8kdqJjQL20KveZa5sCfnBWeJi4nyQ= knative.dev/pkg v0.0.0-20260310013839-5504026dd1b6/go.mod h1:ziEj0TQOWvBw7t/VSkqaZlv++Qk8FfiuI72ZDmv23nI= -knative.dev/serving v0.48.1-0.20260310211214-d686bb2b8684 h1:rm/iRB2+Gn2C98rZHF8JkmU8Eduvbk+2CrejLWvoYUU= -knative.dev/serving v0.48.1-0.20260310211214-d686bb2b8684/go.mod h1:jdUcDEFlVNOSNTI03zKqx92BIT9Sh+mK0tlZCobXhrs= +knative.dev/serving v0.48.1-0.20260313135630-f698e61bf739 h1:4cJifaOgLRMKfwZhV0sfUtVur0Ks/mQS6k6pKHYhmZ4= +knative.dev/serving v0.48.1-0.20260313135630-f698e61bf739/go.mod h1:YXhCh+8z9p1v3txp7U0LVPS73f4Pwrujqcpf/rHGhHY= sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 h1:IpInykpT6ceI+QxKBbEflcR5EXP7sU1kvOlxwZh5txg= sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730/go.mod h1:mdzfpAEoE6DHQEN0uh9ZbOCuHbLK5wOm7dK4ctXE9Tg= sigs.k8s.io/randfill v1.0.0 h1:JfjMILfT8A6RbawdsK2JXGBR5AQVfd+9TbzrlneTyrU= diff --git a/vendor/knative.dev/networking/pkg/apis/networking/register.go b/vendor/knative.dev/networking/pkg/apis/networking/register.go index ad4b0ee4..676f5684 100644 --- a/vendor/knative.dev/networking/pkg/apis/networking/register.go +++ b/vendor/knative.dev/networking/pkg/apis/networking/register.go @@ -41,9 +41,9 @@ const ( // the rollout state in the Annotations of the Kingress or Route.Status. RolloutAnnotationKey = GroupName + "/rollout" - // TagLabelKey is the label key attached to per-tag Ingress resources - // to indicate which traffic tag the Ingress corresponds to. - TagLabelKey = GroupName + "/tag" + // TagToHostAnnotationKey is the annotation key used for storing a JSON map of + // tags to host names + TagToHostAnnotationKey = GroupName + "/tag-to-host" ) const ( diff --git a/vendor/knative.dev/pkg/tls/config.go b/vendor/knative.dev/pkg/tls/config.go deleted file mode 100644 index e4d975e0..00000000 --- a/vendor/knative.dev/pkg/tls/config.go +++ /dev/null @@ -1,39 +0,0 @@ -/* -Copyright 2026 The Knative Authors - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Deprecated: Use knative.dev/pkg/network/tls instead. -// This package is kept for backward compatibility and re-exports all -// public symbols from knative.dev/pkg/network/tls. -package tls - -import ( - networktls "knative.dev/pkg/network/tls" -) - -// Deprecated: Use knative.dev/pkg/network/tls.MinVersionEnvKey instead. -const MinVersionEnvKey = networktls.MinVersionEnvKey - -// Deprecated: Use knative.dev/pkg/network/tls.MaxVersionEnvKey instead. -const MaxVersionEnvKey = networktls.MaxVersionEnvKey - -// Deprecated: Use knative.dev/pkg/network/tls.CipherSuitesEnvKey instead. -const CipherSuitesEnvKey = networktls.CipherSuitesEnvKey - -// Deprecated: Use knative.dev/pkg/network/tls.CurvePreferencesEnvKey instead. -const CurvePreferencesEnvKey = networktls.CurvePreferencesEnvKey - -// Deprecated: Use knative.dev/pkg/network/tls.DefaultConfigFromEnv instead. -var DefaultConfigFromEnv = networktls.DefaultConfigFromEnv diff --git a/vendor/knative.dev/serving/pkg/queue/sharedmain/main.go b/vendor/knative.dev/serving/pkg/queue/sharedmain/main.go index ec819973..ffdc78b4 100644 --- a/vendor/knative.dev/serving/pkg/queue/sharedmain/main.go +++ b/vendor/knative.dev/serving/pkg/queue/sharedmain/main.go @@ -30,7 +30,7 @@ import ( netproxy "knative.dev/networking/pkg/http/proxy" pkghandler "knative.dev/pkg/network/handlers" - knativetls "knative.dev/pkg/tls" + knativetls "knative.dev/pkg/network/tls" "knative.dev/serving/pkg/activator" "github.com/kelseyhightower/envconfig" diff --git a/vendor/modules.txt b/vendor/modules.txt index 05c87063..990faf4f 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -910,7 +910,7 @@ k8s.io/utils/trace # knative.dev/hack v0.0.0-20260310014051-c448fdb867e2 ## explicit; go 1.24 knative.dev/hack -# knative.dev/networking v0.0.0-20260310141215-8340ed7fd0e1 +# knative.dev/networking v0.0.0-20260313010219-0055e9277729 ## explicit; go 1.25.0 knative.dev/networking/pkg/apis/networking knative.dev/networking/pkg/apis/networking/v1alpha1 @@ -958,10 +958,9 @@ knative.dev/pkg/observability/tracing knative.dev/pkg/ptr knative.dev/pkg/signals knative.dev/pkg/system -knative.dev/pkg/tls knative.dev/pkg/tracker knative.dev/pkg/websocket -# knative.dev/serving v0.48.1-0.20260310211214-d686bb2b8684 +# knative.dev/serving v0.48.1-0.20260313135630-f698e61bf739 ## explicit; go 1.25.0 knative.dev/serving/pkg/activator knative.dev/serving/pkg/apis/autoscaling