github tektoncd/pipeline v0.56.1
Tekton Pipeline release v0.56.1 "Persian Terminator"

latest releases: v0.62.3, v0.63.0, v0.62.2...
7 months ago

-Docs @ v0.56.1
-Examples @ v0.56.1

Installation one-liner

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

Attestation

The Rekor UUID for this release is 24296fb24b8ad77ad1e4c68a476e6b180257b4a6715315a2d40370f46ce4f36ce311c893d7bef2ba

Obtain the attestation:

REKOR_UUID=24296fb24b8ad77ad1e4c68a476e6b180257b4a6715315a2d40370f46ce4f36ce311c893d7bef2ba
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.56.1/release.yaml
REKOR_UUID=24296fb24b8ad77ad1e4c68a476e6b180257b4a6715315a2d40370f46ce4f36ce311c893d7bef2ba

# 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.56.1@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.56.x] The field in Final Task cannot parse ordinary Task status information. (#7661)

he status of the referenced ordinary task is replaced before calculating the final task when.cel.

  • 🐛 [release-v0.56.x] fix(pipeline): correct warning path for duplicate param name in pipeline tasks (#7660)

ix: correct warning path for duplicate param name in pipeline tasks

  • 🐛 [release-v0.56.x] fix: ensure clustertask annotations are synced to taskrun (#7654)

ix: ensure ClusterTask annotations and labels are synced to TaskRun

  • 🐛 [release-v0.56.x] do not allow negative requeue times (#7638)

ipelineRuns and TaskRuns that disable timeouts will no longer experience rapid requeue reconciliations

  • 🐛 [release-v0.56.x] Exclude stopped injected sidecars from TaskRun status (#7653)

Misc

Docs

Thanks

Thanks to these contributors who contributed to v0.56.1!

Extra shout-out for awesome release notes:

Don't miss a new pipeline release

NewReleases is sending notifications on new releases.