github tektoncd/pipeline v0.58.0
Tekton Pipeline release v0.58.0 "Bombay Robbie"

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

🎉 displayName in childReferences and dynamic specifications of secrets and configmaps in workspaces 🎉

-Docs @ v0.58.0
-Examples @ v0.58.0

Installation one-liner

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

Attestation

The Rekor UUID for this release is 24296fb24b8ad77ad32de0077ddf3d746f9072f2d536cec99e2add11d56d964943ea86f5265aec54

Obtain the attestation:

REKOR_UUID=24296fb24b8ad77ad32de0077ddf3d746f9072f2d536cec99e2add11d56d964943ea86f5265aec54
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.58.0/release.yaml
REKOR_UUID=24296fb24b8ad77ad32de0077ddf3d746f9072f2d536cec99e2add11d56d964943ea86f5265aec54

# 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.58.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

  • ✨ TEP-0147: introduce feature flag to guard artifacts feature (#7705)

Introduces a feature flag enable-artifacts.

  • ✨ TEP 0147: add inputs/outputs to stepState (#7703)

introduce inputs/outputs to stepState for future artifacts work

  • ✨ implementing TEP-0150 - in (#7683)

A fully resolved displayName is now available in childReferences along with the pipelineTaskName. This is mainly beneficial to parameterize and easily distinguish matrix instances of the task.

  • ✨ feat: support for variable interpolation in workspace.* (in PipelineRun and TaskRun) (#7671)

feat: support for variable interpolation in workspace.* (in PipelineRun and TaskRun)

Fixes

  • 🐛 fix: avoid panic when used pipelineRef or pipelineSpec in pipeline task (#7722)

fix: avoid panic when used pipelineRef or pipelineSpec in pipeline task

  • 🐛 fix: pipeline execution status test case index error (#7742)
  • 🐛 Migrate jaeger to otel API (#7547)

Misc

  • 🔨 chore(deps): bump google.golang.org/grpc from 1.62.0 to 1.62.1 (#7774)
  • 🔨 chore(deps): bump google.golang.org/protobuf from 1.32.0 to 1.33.0 (#7773)
  • 🔨 chore(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 (#7772)
  • 🔨 chore(deps): bump tj-actions/changed-files from 42.1.0 to 43.0.0 (#7771)
  • 🔨 chore(deps): bump github.com/containerd/containerd from 1.7.13 to 1.7.14 (#7770)
  • 🔨 chore(deps): bump github/codeql-action from 3.24.6 to 3.24.8 (#7769)
  • 🔨 chore(deps): bump actions/checkout from 4.1.1 to 4.1.2 (#7768)
  • 🔨 chore(deps): bump k8s.io/api from 0.27.11 to 0.27.12 in /test/custom-task-ctrls/wait-task-beta (#7767)
  • 🔨 chore(deps): bump tj-actions/changed-files from 42.0.5 to 42.1.0 (#7747)
  • 🔨 chore(deps): bump github/codeql-action from 3.24.5 to 3.24.6 (#7735)
  • 🔨 chore(deps): bump github.com/sigstore/sigstore/pkg/signature/kms/aws from 1.8.1 to 1.8.2 (#7727)
  • 🔨 chore(deps): bump github.com/sigstore/sigstore/pkg/signature/kms/hashivault from 1.8.1 to 1.8.2 (#7723)
  • 🔨 chore(deps): bump github/codeql-action from 3.24.3 to 3.24.5 (#7719)
  • 🔨 chore(deps): bump tj-actions/changed-files from 42.0.4 to 42.0.5 (#7718)
  • 🔨 chore(deps): bump github.com/spiffe/spire-api-sdk from 1.8.7 to 1.9.0 (#7712)
  • 🔨 chore(deps): bump go.opentelemetry.io/otel/sdk from 1.23.1 to 1.24.0 (#7710)
  • 🔨 chore(deps): bump go.opentelemetry.io/otel from 1.23.1 to 1.24.0 (#7709)
  • 🔨 chore(deps): bump google.golang.org/grpc from 1.61.1 to 1.62.0 (#7702)
  • 🔨 chore(deps): bump go.uber.org/zap from 1.26.0 to 1.27.0 (#7696)
  • 🔨 chore(deps): bump github.com/cloudevents/sdk-go/v2 from 2.14.0 to 2.15.1 (#7695)
  • 🔨 chore(deps): bump github.com/golangci/golangci-lint from 1.56.1 to 1.56.2 in /tools (#7676)
  • 🔨 fix: reduce warnings caused by woke scan results (#7558)
  • 🔨 Bump github.com/docker/docker from 24.0.0+incompatible to 24.0.7+incompatible (#7526)

Docs

  • 📖 [TEP-0129] Move CRDs definition and update multi-tenancy docs accordingly (#7598)

Document simple installation instructions for a Tekton multi-tenancy setup.

  • 📖 docs: changing the variable camel cases (#7701)
  • 📖 fix:add missing documentation link (#7697)
  • 📖 Fix link to CEL in WhenExpression docs (#7692)
  • 📖 Fix typo in additional configs doc (#7689)
  • 📖 Add release v0.57.0 to the list of releases (#7687)
  • 📖 Add feature flags recording demo for developer guide (#7662)
  • 📖 docs: optimize examples for propagating results (#7554)

Thanks

Thanks to these contributors who contributed to v0.58.0!

Extra shout-out for awesome release notes:

Don't miss a new pipeline release

NewReleases is sending notifications on new releases.