github tektoncd/pipeline v0.59.4
Tekton Pipeline release v0.59.4 "Scottish Fold Sox"

latest release: v0.62.4
one day ago

-Docs @ v0.59.4
-Examples @ v0.59.4

Installation one-liner

kubectl apply -f https://storage.googleapis.com/tekton-releases/pipeline/previous/v0.59.4/release.yaml

Attestation

The Rekor UUID for this release is 108e9186e8c5677ac434e5a611e150eb519bc1caa8020f7c0cbc114f780104b2ea371633e61c4fed

Obtain the attestation:

REKOR_UUID=108e9186e8c5677ac434e5a611e150eb519bc1caa8020f7c0cbc114f780104b2ea371633e61c4fed
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://storage.googleapis.com/tekton-releases/pipeline/previous/v0.59.4/release.yaml
REKOR_UUID=108e9186e8c5677ac434e5a611e150eb519bc1caa8020f7c0cbc114f780104b2ea371633e61c4fed

# 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 + ":v0.59.4@sha256:" + .digest.sha256')

# Download the release file
curl "$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-v0.59.x] Fix isolated workspaces ignored when using StepTemplate (#8275)

Isolated workspaces are now correctly set when using in conjuction with StepTemplate

  • 🐛 [release-v0.59.x] pkg/taskrunmetrics/fake shouldn't be imported… (#8189)
  • 🐛 [release-v0.59.x] Mark steps as deleted when TaskRun fails (#8296)

Misc

  • 🔨 [release-v0.59.x] Backport release "scripts" changes from main… (#8333)

Docs

Thanks

Thanks to these contributors who contributed to v0.59.4!

Extra shout-out for awesome release notes:

Don't miss a new pipeline release

NewReleases is sending notifications on new releases.