Skip to content

Tekton Pipeline release v1.9.7 "Devon Rex Dreadnought"

Choose a tag to compare

@tekton-robot tekton-robot released this 27 Aug 10:32

-Docs @ v1.9.7
-Examples @ v1.9.7

Installation one-liner

kubectl apply -f https://infra.tekton.dev/tekton-releases/pipeline/previous/v1.9.7/release.yaml

Attestation

The Rekor UUID for this release is 108e9186e8c5677a4454652bbad6671ba390d5109a6546be8ae7c3c5842910cbff8d1ab88b1b0c74

Obtain the attestation:

REKOR_UUID=108e9186e8c5677a4454652bbad6671ba390d5109a6546be8ae7c3c5842910cbff8d1ab88b1b0c74
rekor-cli get --uuid $REKOR_UUID --format json | jq -r .Attestation | jq .

Verify that all container images in the attestation are in the release file:

RELEASE_FILE=https://infra.tekton.dev/tekton-releases/pipeline/previous/v1.9.7/release.yaml
REKOR_UUID=108e9186e8c5677a4454652bbad6671ba390d5109a6546be8ae7c3c5842910cbff8d1ab88b1b0c74

# Obtains the list of images with sha from the attestation
REKOR_ATTESTATION_IMAGES=$(rekor-cli get --uuid "$REKOR_UUID" --format json | jq -r .Attestation | jq -r '.subject[]|.name + ":v1.9.7@sha256:" + .digest.sha256')

# Download the release file
curl -L "$RELEASE_FILE" > release.yaml

# For each image in the attestation, match it to the release file
for image in $REKOR_ATTESTATION_IMAGES; do
  printf $image; grep -q $image release.yaml && echo " ===> ok" || echo " ===> no match";
done

Changes

Features

Fixes

  • 🐛 [cherry-pick: release-v1.9.x] Fix PipelineRun stuck in ResolvingTaskRef when ResolutionRequest enqueue is missed (#10485)

ix PipelineRun remaining stuck in ResolvingTaskRef when a ResolutionRequest completion event is missed by periodically requeueing while remote resolution is in progress

  • 🐛 [cherry-pick: release-v1.9.x] fix(resolvers): honor leader-election bucket ownership (#10482)

ix resolver replicas processing ResolutionRequests outside their leader-election bucket.

  • 🐛 [cherry-pick: release-v1.9.x] fix(resolvers): skip re-resolution when ResolutionRequest data is already present (#10477)

Skip re-resolution of ResolutionRequests when Status.Data is already present, preventing hundreds of redundant reconciliations under load.

Misc

  • 🔨 [release-v1.9.x] bump google.golang.org/protobuf from 1.36.11 to 1.36.12 (#10599)
  • 🔨 [release-v1.9.x] bump ossf/scorecard-action from 2.4.3 to 2.4.4 (#10501)

Docs

Thanks

Thanks to these contributors who contributed to v1.9.7!

Extra shout-out for awesome release notes: