Skip to content

Tekton Pipeline release v1.9.6 "Devon Rex Dreadnought"

Choose a tag to compare

@tekton-robot tekton-robot released this 08 Jul 11:06

-Docs @ v1.9.6
-Examples @ v1.9.6

Installation one-liner

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

Attestation

The Rekor UUID for this release is 108e9186e8c5677acf3e338c239faf5a2afc67e49eec5d5d5166654363563c81b57d51d4bd910d27

Obtain the attestation:

REKOR_UUID=108e9186e8c5677acf3e338c239faf5a2afc67e49eec5d5d5166654363563c81b57d51d4bd910d27
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.6/release.yaml
REKOR_UUID=108e9186e8c5677acf3e338c239faf5a2afc67e49eec5d5d5166654363563c81b57d51d4bd910d27

# 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.6@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

  • 🐛 [release-v1.9.x] fix: bump Go and x deps for CVEs (#10337)

Bump Go to 1.25.10, golang.org/x/crypto to v0.52.0, and golang.org/x/net to v0.55.0 for CVE remediation.

Misc

  • 🔨 [cherry-pick: release-v1.9.x] fix: replace kodata LICENSE symlinks with actual files (#10388)

Docs

Thanks

Thanks to these contributors who contributed to v1.9.6!

Extra shout-out for awesome release notes: