github tektoncd/pipeline v0.65.0
Tekton Pipeline release v0.65.0 "Sokoke Herbie"

7 hours ago

-Docs @ v0.65.0
-Examples @ v0.65.0

Installation one-liner

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

Attestation

The Rekor UUID for this release is 108e9186e8c5677aad7a1878b454249eae3ea9a5ff3b0eef665d0995b57a367880b4b34fbd42a3b4

Obtain the attestation:

REKOR_UUID=108e9186e8c5677aad7a1878b454249eae3ea9a5ff3b0eef665d0995b57a367880b4b34fbd42a3b4
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.65.0/release.yaml
REKOR_UUID=108e9186e8c5677aad7a1878b454249eae3ea9a5ff3b0eef665d0995b57a367880b4b34fbd42a3b4

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

  • ✨ Add support for priorityClassName in affinityAssistantPodTemplate (#8286)

Add support for priorityClassName in affinityAssistantPodTemplate

This will help to specify default priorityClassName in affinity assistant podTemplate for affinity assistant pods.
Also value specified in pipelinerun/taskrun will be used for both affinity assistant pods and taskrun pods.

  • ✨ Add support for multiple git resolver configurations (#8263)

Add support for multiple git resolver configurations

  • ✨ Add Metrics for Running PipelinesRuns at Pipeline and Namespace level (#8280)

Fixes

Misc

  • 🔨 build(deps): bump the all group in /tekton with 4 updates (#8342)
  • 🔨 build(deps): bump the all group in /tekton with 4 updates (#8331)
  • 🔨 build(deps): bump github/codeql-action from 3.26.12 to 3.26.13 (#8330)
  • 🔨 build(deps): bump actions/upload-artifact from 4.4.1 to 4.4.3 (#8329)
  • 🔨 build(deps): bump actions/cache from 4.1.0 to 4.1.1 (#8328)
  • 🔨 tekton: update bugfix-release.sh script for ghcr.io (#8323)
  • 🔨 build(deps): bump actions/cache from 4.0.2 to 4.1.0 (#8321)
  • 🔨 build(deps): bump actions/upload-artifact from 4.4.0 to 4.4.1 (#8320)
  • 🔨 build(deps): bump tj-actions/changed-files from 45.0.2 to 45.0.3 (#8319)
  • 🔨 build(deps): bump github/codeql-action from 3.26.10 to 3.26.12 (#8318)
  • 🔨 build(deps): bump actions/checkout from 4.2.0 to 4.2.1 (#8317)
  • 🔨 build(deps): bump the all group across 1 directory with 4 updates (#8316)
  • 🔨 build(deps): bump actions/setup-go from 5.0.0 to 5.0.2 (#8309)
  • 🔨 build(deps): bump github/codeql-action from 3.26.8 to 3.26.10 (#8308)
  • 🔨 build(deps): bump actions/checkout from 4.1.7 to 4.2.0 (#8307)
  • 🔨 build(deps): bump github.com/golangci/golangci-lint from 1.60.3 to 1.61.0 in /tools (#8254)
  • 🔨 Improve how gosec G115 findings are addressed (#8250)
  • 🔨 build(deps): bump actions/upload-artifact from 4.3.6 to 4.4.0 (#8231)

Docs

  • 📖 Update the release cheat-sheet (#8302)

Container images in the release are stored in ghcr.io,

  • 📖 docs: fix formatting in artifacts.md (#8326)
  • 📖 Improve git resolver docs (#8311)
  • 📖 Update releases.md with v0.64.0 (#8304)

Thanks

Thanks to these contributors who contributed to v0.65.0!

Extra shout-out for awesome release notes:

Don't miss a new pipeline release

NewReleases is sending notifications on new releases.