Tekton Dashboard v0.62.0
This Dashboard release supports Pipelines v1.3.x LTS, v1.5.x, and Triggers v0.33.x LTS.
Attestation
The Rekor UUID for this release is 108e9186e8c5677aa96143cddaa604d70cb484833dad562def95536284bd79bcc0b569cd7ab72cea
Verify that all container images in the release file are in the attestation:
RELEASE_FILE=https://infra.tekton.dev/tekton-releases/dashboard/previous/v0.62.0/release.yaml
REKOR_UUID=108e9186e8c5677aa96143cddaa604d70cb484833dad562def95536284bd79bcc0b569cd7ab72cea
# 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.62.0@sha256:" + .digest.sha256')
# Download the release file
curl -s -L "$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
- ๐ Guard against missing TaskRun status when rendering logs toolbar https://github.com/tektoncd/dashboard/pull/4445
Misc
- ๐จ Bump actions/setup-go from 5.5.0 to 6.0.0 https://github.com/tektoncd/dashboard/pull/4422
- ๐จ Bump actions/setup-node from 4.4.0 to 5.0.0 https://github.com/tektoncd/dashboard/pull/4423
- ๐จ Bump github/codeql-action from 3.29.11 to 3.30.1 https://github.com/tektoncd/dashboard/pull/4424
- ๐จ Bump the storybook group across 1 directory with 6 updates https://github.com/tektoncd/dashboard/pull/4426
- ๐จ Bump the all group across 1 directory with 2 updates https://github.com/tektoncd/dashboard/pull/4425
- ๐จ nightly leveraging action from plumbing https://github.com/tektoncd/dashboard/pull/4414
- ๐จ Bump sass-embedded from 1.92.0 to 1.92.1 https://github.com/tektoncd/dashboard/pull/4427
- ๐จ Fix image path for GHA nightly builds https://github.com/tektoncd/dashboard/pull/4430
- ๐จ Update the length of the abbreviated commit used in nightly release tags https://github.com/tektoncd/dashboard/pull/4432
- ๐จ Bump vite from 7.1.3 to 7.1.5 https://github.com/tektoncd/dashboard/pull/4433
- ๐จ Harden the nightly build workflow https://github.com/tektoncd/dashboard/pull/4434
- ๐จ Bump the k8s group with 2 updates https://github.com/tektoncd/dashboard/pull/4436
- ๐จ Bump step-security/harden-runner from 2.13.0 to 2.13.1 https://github.com/tektoncd/dashboard/pull/4437
- ๐จ Bump github/codeql-action from 3.30.1 to 3.30.3 https://github.com/tektoncd/dashboard/pull/4438
- ๐จ Bump dotenv from 17.2.1 to 17.2.2 https://github.com/tektoncd/dashboard/pull/4439
- ๐จ Bump the all group across 3 directories with 4 updates https://github.com/tektoncd/dashboard/pull/4440
- ๐จ Bump msw from 2.11.1 to 2.11.2 https://github.com/tektoncd/dashboard/pull/4442
- ๐จ Disable the harden runner step of the nightly build https://github.com/tektoncd/dashboard/pull/4446
- ๐จ Bump the all group across 2 directories with 3 updates https://github.com/tektoncd/dashboard/pull/4448
- ๐จ Bump the storybook group across 1 directory with 6 updates https://github.com/tektoncd/dashboard/pull/4449
- ๐จ Bump @carbon/charts-react from 1.23.17 to 1.25.1 https://github.com/tektoncd/dashboard/pull/4450
- ๐จ Bump the storybook group across 1 directory with 6 updates https://github.com/tektoncd/dashboard/pull/4453
- ๐จ Bump @uiw/react-codemirror from 4.25.1 to 4.25.2 https://github.com/tektoncd/dashboard/pull/4456
- ๐จ Bump @vitejs/plugin-react-swc from 4.0.1 to 4.1.0 https://github.com/tektoncd/dashboard/pull/4457
- ๐จ Bump @tanstack/react-query from 4.40.1 to 4.41.0 https://github.com/tektoncd/dashboard/pull/4458
- ๐จ Bump elkjs from 0.10.0 to 0.11.0 https://github.com/tektoncd/dashboard/pull/4459
- ๐จ Bump jsdom from 26.1.0 to 27.0.0 https://github.com/tektoncd/dashboard/pull/4454
Docs
- ๐ Add v0.61.0 to the releases doc https://github.com/tektoncd/dashboard/pull/4420
- ๐ Update release cheat sheet to reflect use of new OCI cluster https://github.com/tektoncd/dashboard/pull/4421
Thanks
Thanks to these contributors who contributed to v0.62.0!
- โค๏ธ @AlanGreene
- โค๏ธ @anithapriyanatarajan
- โค๏ธ @dependabot[bot]