github tektoncd/pipeline v0.44.2
Tekton Pipeline release v0.44.2 "Nebelung Nomad"

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

-Docs @ v0.44.2
-Examples @ v0.44.2

🎉 latest knative 1.8 and conversion webhook fix 🎉

Installation one-liner

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

Attestation

The Rekor UUID for this release is 24296fb24b8ad77ab75fc4e1c8817b3c2c2dad74af094e0feaeb3d9f16494dde7b30016f56a040b9

Obtain the attestation:

REKOR_UUID=24296fb24b8ad77ab75fc4e1c8817b3c2c2dad74af094e0feaeb3d9f16494dde7b30016f56a040b9
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.44.2/release.yaml
REKOR_UUID=24296fb24b8ad77ab75fc4e1c8817b3c2c2dad74af094e0feaeb3d9f16494dde7b30016f56a040b9

# 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.44.2@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.44.x] Make sure we pass the live config to the conversion webhook (#6460)

ake sure the conversion webhook sees the live configmaps instead of the default ones

  • 🐛 [release-v0.44.x] don't validate skipped task results for pipeline results (#6376)

A fix for regression issue that previously we don't fail the run when skipped task results don't emit, but failed when validation is introduced.

Misc

  • 🔨 [release-v0.44.x] [TEP074] Remove git-ssh Examples (#6243)
  • 🔨 [release-0.44.x] picking up latest changes in knative 1.8 (#6226)
  • 🔨 [release-v0.44.x] Fixing CI for 0.44 (LTS) (#6223)

Docs

Thanks

Thanks to these contributors who contributed to v0.44.2!

Extra shout-out for awesome release notes:

Don't miss a new pipeline release

NewReleases is sending notifications on new releases.