Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ require (
knative.dev/caching v0.0.0-20250812142340-b29547050297
knative.dev/eventing v0.46.1-0.20250812205542-23fa8200f151
knative.dev/hack v0.0.0-20250708013849-70d4b00da6ba
knative.dev/pkg v0.0.0-20250811181739-e06d4c9af190
knative.dev/pkg v0.0.0-20250813152941-6c39c7c0f363
knative.dev/reconciler-test v0.0.0-20250812021543-e78bf69e0210
knative.dev/serving v0.46.1-0.20250813121741-7040345eb739
sigs.k8s.io/yaml v1.6.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1711,8 +1711,8 @@ knative.dev/hack v0.0.0-20250708013849-70d4b00da6ba h1:PkOTBI8DRfvUKD8HTvYYT94NJ
knative.dev/hack v0.0.0-20250708013849-70d4b00da6ba/go.mod h1:R0ritgYtjLDO9527h5vb5X6gfvt5LCrJ55BNbVDsWiY=
knative.dev/networking v0.0.0-20250807143752-5be3ba43ad43 h1:L/5Vq6nkB57u8rHvuLSmE0JDrPGqNcaP40k+4OQV5KA=
knative.dev/networking v0.0.0-20250807143752-5be3ba43ad43/go.mod h1:Wnr65yYzbfKbr8Q0KQjYBnpQvvhZQpD0XlxIZnCEeFQ=
knative.dev/pkg v0.0.0-20250811181739-e06d4c9af190 h1:YAb1BppD0yXKJ8axSYRHFwkrJ+TiYLLJ06dNt4XdOqk=
knative.dev/pkg v0.0.0-20250811181739-e06d4c9af190/go.mod h1:fjxsqJKXTSnVPtW9Z0lXGaGw7qrUtAoinUpWFJzSn+4=
knative.dev/pkg v0.0.0-20250813152941-6c39c7c0f363 h1:LWnPilvpMV9Yzvf3x34AweQ+nj82y4rvg4e+b8lnbwY=
knative.dev/pkg v0.0.0-20250813152941-6c39c7c0f363/go.mod h1:Sfr4wvc45NpT6UhONuLTYAOhQyT+C0JmjoY7XGec+kI=
knative.dev/reconciler-test v0.0.0-20250812021543-e78bf69e0210 h1:MAebWJ2ldgcb0FRS9GkIZ9Ly2vRMuCN8zZJb0GqhPC8=
knative.dev/reconciler-test v0.0.0-20250812021543-e78bf69e0210/go.mod h1:0fW3BRm5iBYmz7RbuPB+sJFZx/C83AQiWQd1RX5qikA=
knative.dev/serving v0.46.1-0.20250813121741-7040345eb739 h1:r9iH2pp0OEIlAIcGCTAUEgkwPZRxb+q0KYy3fxAe8lI=
Expand Down
1 change: 0 additions & 1 deletion vendor/knative.dev/pkg/hack/update-codegen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ go run k8s.io/code-generator/cmd/deepcopy-gen \
knative.dev/pkg/apis/duck/v1 \
knative.dev/pkg/tracker \
knative.dev/pkg/logging \
knative.dev/pkg/metrics \
knative.dev/pkg/testing \
knative.dev/pkg/testing/duck \
knative.dev/pkg/webhook/resourcesemantics/conversion/internal
Expand Down
5 changes: 0 additions & 5 deletions vendor/knative.dev/pkg/hack/verify-codegen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ cp -aR \
"${REPO_ROOT_DIR}/go.sum" \
"${REPO_ROOT_DIR}/apis" \
"${REPO_ROOT_DIR}/logging" \
"${REPO_ROOT_DIR}/metrics" \
"${REPO_ROOT_DIR}/testing" \
"${REPO_ROOT_DIR}/vendor" \
"${TMP_DIFFROOT}"
Expand All @@ -55,9 +54,6 @@ diff -Naupr --no-dereference \
diff -Naupr --no-dereference \
"${REPO_ROOT_DIR}/logging" "${TMP_DIFFROOT}/logging" || ret=1

diff -Naupr --no-dereference \
"${REPO_ROOT_DIR}/metrics" "${TMP_DIFFROOT}/metrics" || ret=1

diff -Naupr --no-dereference \
"${REPO_ROOT_DIR}/testing" "${TMP_DIFFROOT}/testing" || ret=1

Expand All @@ -69,7 +65,6 @@ rm -fr \
"${REPO_ROOT_DIR}/go.sum" \
"${REPO_ROOT_DIR}/apis" \
"${REPO_ROOT_DIR}/logging" \
"${REPO_ROOT_DIR}/metrics" \
"${REPO_ROOT_DIR}/testing" \
"${REPO_ROOT_DIR}/vendor"

Expand Down
3 changes: 2 additions & 1 deletion vendor/knative.dev/pkg/network/transports.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ func dialBackOffHelper(ctx context.Context, network, address string, bo wait.Bac
if tlsConf == nil {
c, err = dialer.DialContext(ctx, network, address)
} else {
c, err = tls.DialWithDialer(dialer, network, address, tlsConf)
d := tls.Dialer{NetDialer: dialer, Config: tlsConf}
c, err = d.DialContext(ctx, network, address)
}
if err != nil {
var errNet net.Error
Expand Down
2 changes: 1 addition & 1 deletion vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1596,7 +1596,7 @@ knative.dev/networking/pkg/http/proxy
knative.dev/networking/pkg/http/stats
knative.dev/networking/pkg/ingress
knative.dev/networking/pkg/k8s
# knative.dev/pkg v0.0.0-20250811181739-e06d4c9af190
# knative.dev/pkg v0.0.0-20250813152941-6c39c7c0f363
## explicit; go 1.24.0
knative.dev/pkg/apiextensions/storageversion
knative.dev/pkg/apiextensions/storageversion/cmd/migrate
Expand Down
Loading