This Dashboard release supports Pipelines v1.6.x LTS and Triggers v0.33.x LTS.
The Rekor UUID for this release is Verify that all container images in the release file are in the attestation:
Attestation
108e9186e8c5677a12fc7bf8df7322fd4041d9232c3110daf0990e596b05f7d957a1690cd3cb290f
RELEASE_FILE=https://storage.googleapis.com/tekton-releases/dashboard/previous/v0.63.1/release.yaml
REKOR_UUID=108e9186e8c5677a12fc7bf8df7322fd4041d9232c3110daf0990e596b05f7d957a1690cd3cb290f
# Obtains the list of images with sha from the attestation
REKOR_ATTESTATION_IMAGE=$(rekor-cli get --uuid "$REKOR_UUID" --format json | jq -r .Attestation | jq -r '.subject[]|select(.name | startswith("ghcr.io"))|.name + ":v0.63.1@sha256:" + .digest.sha256')
# Download the release file
curl -s "$RELEASE_FILE" -o release.yaml
# Match the image used in the release file to an image in the attestation
DASHBOARD_IMAGE=$(cat release.yaml | grep image: | awk -F' ' '{print $2}')
echo
printf $DASHBOARD_IMAGE
if [[ "${REKOR_ATTESTATION_IMAGE}" = "${DASHBOARD_IMAGE}" ]]; then
echo " ===> ok"
else
echo " ===> no match"
fi
Fixes
- 🐛 Fix batch delete action on PipelineRuns, TaskRuns, and CustomRuns pages #4562
Selecting resources from the table using the checkboxes on the table rows then selecting the delete option in the table toolbar resulted in an error. This is now addressed and the batch delete action is working as expected.
Thanks
Thanks to these contributors who contributed to v0.63.1!
- ❤️ @AlanGreene