✓ No known CVEs patched in this version
Topics
Summary
AI summaryFixes cross‑arch platform command lookup errors in Tekton Pipeline entrypoint.
Full changelog
Tekton Pipeline release v1.0.3
-Docs @ v1.0.3
-Examples @ v1.0.3
Installation one-liner
kubectl apply -f https://infra.tekton.dev/tekton-releases/pipeline/previous/v1.0.3/release.yaml
Attestation
The Rekor UUID for this release is 108e9186e8c5677af9a0b5c0d190a06d3da1caf538bf0a6bb9020c707dcfdbe4dd8d2cbceec407d1
Obtain the attestation:
REKOR_UUID=108e9186e8c5677af9a0b5c0d190a06d3da1caf538bf0a6bb9020c707dcfdbe4dd8d2cbceec407d1
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://infra.tekton.dev/tekton-releases/pipeline/previous/v1.0.3/release.yaml
REKOR_UUID=108e9186e8c5677af9a0b5c0d190a06d3da1caf538bf0a6bb9020c707dcfdbe4dd8d2cbceec407d1
# 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 + ":v1.0.3@sha256:" + .digest.sha256')
# Download the release file
curl -L "$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
- :bug: Fix cross-arch platform command lookup in entrypoint (#10165)
Fix entrypoint command lookup when controller and worker nodes run on different CPU architectures (e.g., ARM controller with AMD64 workloads). The controller's CPU variant was leaking into TEKTON_PLATFORM_COMMANDS keys via platforms.NewPlatform(), causing "could not find command for platform" errors on worker nodes of a different architecture.
Misc
- :hammer: build(deps): bump github.com/jenkins-x/go-scm from 1.14.56 to 1.14.59 (#9968)
- :hammer: build(deps): bump go.uber.org/zap from 1.27.0 to 1.27.1 (#9865)
- :hammer: build(deps): bump tj-actions/changed-files (#9942)
- :hammer: build(deps): bump the all group in /tekton with 4 updates (#9944)
- :hammer: build(deps): bump step-security/harden-runner from 2.12.0 to 2.12.2 (#9945)
- :hammer: build(deps): bump k8s.io/apiextensions-apiserver from 0.32.1 to 0.32.13 (#9919)
- :hammer: build(deps): bump chainguard-dev/actions from 1.5.3 to 1.5.16 (#9902)
- :hammer: build(deps): bump ossf/scorecard-action from 2.4.1 to 2.4.3 (#9900)
- :hammer: build(deps): bump tj-actions/changed-files (#9904)
- :hammer: build(deps): bump the all group in /tekton with 4 updates (#9899)
- :hammer: build(deps): bump actions/cache from 4.2.3 to 4.2.4 (#9903)
- :hammer: build(deps): bump golangci/golangci-lint-action from 6.5.1 to 6.5.2 (#9901)
- :hammer: build(deps): bump github.com/tektoncd/pipeline (#9887)
- :hammer: build(deps): bump github.com/go-jose/go-jose/v3 from 3.0.4 to 3.0.5 (#9877)
Thanks
Thanks to these contributors who contributed to v1.0.3!
- :heart: @dependabot
- :heart: @vdemeester
Extra shout-out for awesome release notes:
- :heart_eyes: @vdemeester
Weekly OSS security release digest.
The CVE patches and breaking changes that affected production tools this week. One email, every Sunday.
No spam, unsubscribe anytime.
Share this release
Related context
Related tools
Earlier breaking changes
- v1.13.1 Tekton no longer applies default resource requests or limits to internal containers when `default-container-resource-requirements` is unset.
- v1.9.4 Tekton Resolvers now only resolve StepActions, Tasks, and Pipelines; custom resolvers for other types will fail.
- v1.6.3 Restrict Tekton Resolvers to resolve only StepActions, Tasks, and Pipelines; custom resolvers for other types now fail.
Beta — feedback welcome: [email protected]