Skip to content

Commit 931f60b

Browse files
[release-1.19] Upgrade to latest dependencies [skip-dot-release] (#8694)
upgrade to latest dependencies bumping knative.dev/hack f88b7db...af735b2: > af735b2 Fix dot releases (# 434) bumping knative.dev/hack/schema f88b7db...af735b2: > af735b2 Fix dot releases (# 434) Signed-off-by: Knative Automation <[email protected]>
1 parent 81bea20 commit 931f60b

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ require (
4848
k8s.io/client-go v0.33.4
4949
k8s.io/code-generator v0.33.4
5050
k8s.io/utils v0.0.0-20241210054802-24370beab758
51-
knative.dev/hack v0.0.0-20250819212847-f88b7db09b1c
52-
knative.dev/hack/schema v0.0.0-20250819212847-f88b7db09b1c
51+
knative.dev/hack v0.0.0-20250902154142-af735b2738d6
52+
knative.dev/hack/schema v0.0.0-20250902154142-af735b2738d6
5353
knative.dev/pkg v0.0.0-20250821143151-4ffdcf6b3fa5
5454
knative.dev/reconciler-test v0.0.0-20250821144151-207031116b7d
5555
sigs.k8s.io/randfill v1.0.0

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1129,10 +1129,10 @@ k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff h1:/usPimJzUKKu+m+TE36gUy
11291129
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff/go.mod h1:5jIi+8yX4RIb8wk3XwBo5Pq2ccx4FP10ohkbSKCZoK8=
11301130
k8s.io/utils v0.0.0-20241210054802-24370beab758 h1:sdbE21q2nlQtFh65saZY+rRM6x6aJJI8IUa1AmH/qa0=
11311131
k8s.io/utils v0.0.0-20241210054802-24370beab758/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
1132-
knative.dev/hack v0.0.0-20250819212847-f88b7db09b1c h1:eG94MceyTPHalVaBXAaIVXkD1zLdrM9BpVD2oXbpEXs=
1133-
knative.dev/hack v0.0.0-20250819212847-f88b7db09b1c/go.mod h1:R0ritgYtjLDO9527h5vb5X6gfvt5LCrJ55BNbVDsWiY=
1134-
knative.dev/hack/schema v0.0.0-20250819212847-f88b7db09b1c h1:NMxG8TbuJ871OcT2YGmChDHxbE2mxU03uYIQHtyzSG0=
1135-
knative.dev/hack/schema v0.0.0-20250819212847-f88b7db09b1c/go.mod h1:KkibP1IazICP5ClxwN5D26LDSygsqbYnVGuGFTsHNOQ=
1132+
knative.dev/hack v0.0.0-20250902154142-af735b2738d6 h1:JYZgO9bni32T+BB5v6WpeRFm1hjj+EypBLZCk6HZBt0=
1133+
knative.dev/hack v0.0.0-20250902154142-af735b2738d6/go.mod h1:R0ritgYtjLDO9527h5vb5X6gfvt5LCrJ55BNbVDsWiY=
1134+
knative.dev/hack/schema v0.0.0-20250902154142-af735b2738d6 h1:RIPnscHomWR2WxXJ84/JOU72SSatNZX+nsA2mN9B39g=
1135+
knative.dev/hack/schema v0.0.0-20250902154142-af735b2738d6/go.mod h1:KkibP1IazICP5ClxwN5D26LDSygsqbYnVGuGFTsHNOQ=
11361136
knative.dev/pkg v0.0.0-20250821143151-4ffdcf6b3fa5 h1:2U4nNoTuF/3enFcPp1BVQXCjUC4XfieIHkZeuU7j8uA=
11371137
knative.dev/pkg v0.0.0-20250821143151-4ffdcf6b3fa5/go.mod h1:ewap/fhCZCh6Gm+F6udBION8T2+UcJFK4L1Ss/5K8Dw=
11381138
knative.dev/reconciler-test v0.0.0-20250821144151-207031116b7d h1:vAi2NeLP5qMXRYvFfrsPud//paEe13Z7Lm3XehcvKzs=

vendor/knative.dev/hack/release.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,11 +219,15 @@ function prepare_dot_release() {
219219
# Use the original tag (ie. potentially with a knative- prefix) when determining the last version commit sha
220220
local github_tag="$(gh_tool release list --json tagName --jq '.[].tagName' | grep "${last_version}")"
221221
local last_release_commit="$(git rev-list -n 1 "${github_tag}")"
222-
local last_release_commit_filtered="$(git rev-list --invert-grep --grep '^(?!\s*>).*?\[skip-dot-release\]'-n 1 "${github_tag}")"
222+
local last_release_commit_filtered="$(git rev-list --invert-grep --grep '^(?!\s*>).*?\[skip-dot-release\]' -n 1 "${github_tag}")"
223223
local release_branch_commit="$(git rev-list -n 1 upstream/"${RELEASE_BRANCH}")"
224224
local release_branch_commit_filtered="$(git rev-list --invert-grep --grep '^(?!\s*>).*?\[skip-dot-release\]' -n 1 upstream/"${RELEASE_BRANCH}")"
225+
225226
[[ -n "${last_release_commit}" ]] || abort "cannot get last release commit"
226227
[[ -n "${release_branch_commit}" ]] || abort "cannot get release branch last commit"
228+
[[ -n "${last_release_commit_filtered}" ]] || abort "cannot get filtered last release commit"
229+
[[ -n "${release_branch_commit_filtered}" ]] || abort "cannot get filtered release branch last commit"
230+
227231
echo "Version ${last_version} is at commit ${last_release_commit}. Comparing using ${last_release_commit_filtered}. If it is different is because commits with the [skip-dot-release] flag in their commit body are not being considered."
228232
echo "Branch ${RELEASE_BRANCH} is at commit ${release_branch_commit}. Comparing using ${release_branch_commit_filtered}. If it is different is because commits with the [skip-dot-release] flag in their commit body are not being considered."
229233
if [[ "${last_release_commit_filtered}" == "${release_branch_commit_filtered}" ]]; then

vendor/modules.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1230,10 +1230,10 @@ k8s.io/utils/pointer
12301230
k8s.io/utils/ptr
12311231
k8s.io/utils/strings/slices
12321232
k8s.io/utils/trace
1233-
# knative.dev/hack v0.0.0-20250819212847-f88b7db09b1c
1233+
# knative.dev/hack v0.0.0-20250902154142-af735b2738d6
12341234
## explicit; go 1.21
12351235
knative.dev/hack
1236-
# knative.dev/hack/schema v0.0.0-20250819212847-f88b7db09b1c
1236+
# knative.dev/hack/schema v0.0.0-20250902154142-af735b2738d6
12371237
## explicit; go 1.21
12381238
knative.dev/hack/schema/commands
12391239
knative.dev/hack/schema/docs

0 commit comments

Comments
 (0)