| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| release.notags.yaml | 2025-09-05 | 1.6 MB | |
| release.yaml | 2025-09-05 | 1.6 MB | |
| README.md | 2025-09-04 | 3.2 kB | |
| Tekton Pipeline release v1.3.2 _Maine Coon Melfina_ source code.tar.gz | 2025-09-04 | 15.6 MB | |
| Tekton Pipeline release v1.3.2 _Maine Coon Melfina_ source code.zip | 2025-09-04 | 23.8 MB | |
| Totals: 5 Items | 42.6 MB | 0 | |
-Docs @ v1.3.2 -Examples @ v1.3.2
Installation one-liner
:::shell
kubectl apply -f https://storage.googleapis.com/tekton-releases/pipeline/previous/v1.3.2/release.yaml
Attestation
The Rekor UUID for this release is 108e9186e8c5677a00888046c319538ae57e1af2654be73472fb885d0554f5181b0736e1edb7c6ed
Obtain the attestation:
:::shell
REKOR_UUID=108e9186e8c5677a00888046c319538ae57e1af2654be73472fb885d0554f5181b0736e1edb7c6ed
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:
:::shell
RELEASE_FILE=https://storage.googleapis.com/tekton-releases/pipeline/previous/v1.3.2/release.yaml
REKOR_UUID=108e9186e8c5677a00888046c319538ae57e1af2654be73472fb885d0554f5181b0736e1edb7c6ed
# 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.3.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
- :bug: [release-v1.3.x] check for kubernetes sidecar implementation (#8997)
Updated the sidecar implementation to check the completion status of initContainers before marking the taskRun complete.
-
:bug: [release-v1.3.x] Disable the Gitea e2e tests temporarily to unblock (#9014)
-
:bug: [release-v1.3.x] Do not fail PipelineRun if pvc creation error is because of exceeded quotas (#9000)
-
:bug: [release-v1.3.x] fix: exclude pending PipelineRuns from
tekton_pipelines_controller_running_pipelinerunsmetric (#8980)
Fixed tekton_pipelines_controller_running_pipelineruns metric to exclude pending PipelineRuns, it now counts only running PipelineRuns
Thanks
Thanks to these contributors who contributed to v1.3.2! * :heart: @mbpavan * :heart: @divyansh42 * :heart: @khrm * :heart: @pritidesai * :heart: @vdemeester * :heart: @tekton-robot
Extra shout-out for awesome release notes: * :heart_eyes: @pritidesai * :heart_eyes: @divyansh42 * :heart_eyes: @tekton-robot