mirror of https://github.com/knative/pkg.git
upgrade to latest dependencies (#3160)
bumping knative.dev/hack ce4c934...8f599b7: > 8f599b7 Skip whitespace changes in codegen (# 420) > 742e1e5 Deprecate knative.dev/hack/schema (# 418) > 306ce74 Update community files (# 414) Signed-off-by: Knative Automation <automation@knative.team>
This commit is contained in:
parent
b7bbf4be5d
commit
9f3e60a924
2
go.mod
2
go.mod
|
@ -39,7 +39,7 @@ require (
|
|||
k8s.io/gengo/v2 v2.0.0-20240911193312-2b36238f13e9
|
||||
k8s.io/klog/v2 v2.130.1
|
||||
k8s.io/utils v0.0.0-20241210054802-24370beab758
|
||||
knative.dev/hack v0.0.0-20250217122557-ce4c934f30e5
|
||||
knative.dev/hack v0.0.0-20250318155814-8f599b7a828c
|
||||
sigs.k8s.io/yaml v1.4.0
|
||||
)
|
||||
|
||||
|
|
4
go.sum
4
go.sum
|
@ -739,8 +739,8 @@ k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7 h1:hcha5B1kVACrLujCKLbr8X
|
|||
k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7/go.mod h1:GewRfANuJ70iYzvn+i4lezLDAFzvjxZYK1gn1lWcfas=
|
||||
k8s.io/utils v0.0.0-20241210054802-24370beab758 h1:sdbE21q2nlQtFh65saZY+rRM6x6aJJI8IUa1AmH/qa0=
|
||||
k8s.io/utils v0.0.0-20241210054802-24370beab758/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
|
||||
knative.dev/hack v0.0.0-20250217122557-ce4c934f30e5 h1:BIkxsbG01S563JJ68n4SIeIpizDlAcf1vgss6b1QAhE=
|
||||
knative.dev/hack v0.0.0-20250217122557-ce4c934f30e5/go.mod h1:R0ritgYtjLDO9527h5vb5X6gfvt5LCrJ55BNbVDsWiY=
|
||||
knative.dev/hack v0.0.0-20250318155814-8f599b7a828c h1:WbSdxtzL02rpfF6KNbAFnWLMCE9TFfrfD39VqgsCuOA=
|
||||
knative.dev/hack v0.0.0-20250318155814-8f599b7a828c/go.mod h1:R0ritgYtjLDO9527h5vb5X6gfvt5LCrJ55BNbVDsWiY=
|
||||
pgregory.net/rapid v1.1.0 h1:CMa0sjHSru3puNx+J0MIAuiiEV4N0qj8/cMWGBBCsjw=
|
||||
pgregory.net/rapid v1.1.0/go.mod h1:PY5XlDGj0+V1FCq0o192FdRhpKHGTRIWBgqjDBTrq04=
|
||||
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
|
||||
|
|
|
@ -5,7 +5,7 @@ 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
|
||||
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,
|
||||
|
|
|
@ -138,8 +138,8 @@ function restore-changes-if-its-copyright-year-only() {
|
|||
git diff --name-only > "$difflist"
|
||||
while read -r file; do
|
||||
# check if the file contains just the change in the boilerplate year
|
||||
if [ "$(LANG=C git diff --exit-code --shortstat -- "$file")" = ' 1 file changed, 1 insertion(+), 1 deletion(-)' ] && \
|
||||
[[ "$(git diff --exit-code -U1 -- "$file" | grep -Ec '^[+-]\s*[*#]?\s*Copyright 2[0-9]{3}')" -eq 2 ]]; then
|
||||
if [ "$(LANG=C git diff --ignore-space-change --exit-code --shortstat -- "$file")" = ' 1 file changed, 1 insertion(+), 1 deletion(-)' ] && \
|
||||
[[ "$(git diff --ignore-space-change --exit-code -U1 -- "$file" | grep -Ec '^[+-]\s*[*#]?\s*Copyright 2[0-9]{3}')" -eq 2 ]]; then
|
||||
# restore changes to that file
|
||||
git checkout -- "$file"
|
||||
fi
|
||||
|
|
|
@ -995,7 +995,7 @@ k8s.io/utils/net
|
|||
k8s.io/utils/pointer
|
||||
k8s.io/utils/ptr
|
||||
k8s.io/utils/trace
|
||||
# knative.dev/hack v0.0.0-20250217122557-ce4c934f30e5
|
||||
# knative.dev/hack v0.0.0-20250318155814-8f599b7a828c
|
||||
## explicit; go 1.21
|
||||
knative.dev/hack
|
||||
# sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8
|
||||
|
|
Loading…
Reference in New Issue