New
Tekton Dashboard v0.63.0 LTS
This Dashboard release supports Pipelines v1.6.x LTS and Triggers v0.33.x LTS.
Attestation
The Rekor UUID for this release is 108e9186e8c5677a4a2a1d45820d0aeaedbc2bd77d06337d0e0231de8f7412e68613c97cff026d3a
Verify that all container images in the release file are in the attestation:
RELEASE_FILE=https://infra.tekton.dev/tekton-releases/dashboard/previous/v0.63.0/release.yaml
REKOR_UUID=108e9186e8c5677a4a2a1d45820d0aeaedbc2bd77d06337d0e0231de8f7412e68613c97cff026d3a
# 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.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
Features
- β¨ Add support for trace log level in the log viewer https://github.com/tektoncd/dashboard/pull/4521
Misc
- π¨ Bump github/codeql-action from 3.30.5 to 3.30.6 https://github.com/tektoncd/dashboard/pull/4494
- π¨ Bump @formatjs/cli from 6.7.2 to 6.7.3 https://github.com/tektoncd/dashboard/pull/4495
- π¨ Bump vite from 7.1.8 to 7.1.9 https://github.com/tektoncd/dashboard/pull/4497
- π¨ Bump the all group across 2 directories with 1 update https://github.com/tektoncd/dashboard/pull/4496
- π¨ Bump react-intl from 7.1.11 to 7.1.13 https://github.com/tektoncd/dashboard/pull/4499
- π¨ Bump vite from 7.1.9 to 7.1.11 https://github.com/tektoncd/dashboard/pull/4520
- π¨ Bump actions/dependency-review-action from 4.8.0 to 4.8.1 https://github.com/tektoncd/dashboard/pull/4502
- π¨ Bump the all group across 2 directories with 2 updates https://github.com/tektoncd/dashboard/pull/4503
- π¨ Bump react-intl from 7.1.13 to 7.1.14 https://github.com/tektoncd/dashboard/pull/4504
- π¨ Bump msw from 2.11.3 to 2.11.5 https://github.com/tektoncd/dashboard/pull/4506
- π¨ Bump @formatjs/cli from 6.7.3 to 6.7.4 https://github.com/tektoncd/dashboard/pull/4507
- π¨ Bump actions/setup-node from 5.0.0 to 6.0.0 https://github.com/tektoncd/dashboard/pull/4513
- π¨ Bump cypress from 15.3.0 to 15.5.0 in /packages/e2e https://github.com/tektoncd/dashboard/pull/4519
- π¨ Bump @tanstack/react-query from 4.41.0 to 4.42.0 https://github.com/tektoncd/dashboard/pull/4516
- π¨ Bump github/codeql-action from 3.30.6 to 4.30.9 https://github.com/tektoncd/dashboard/pull/4514
- π¨ Bump rollup-plugin-visualizer from 6.0.4 to 6.0.5 https://github.com/tektoncd/dashboard/pull/4522
- π¨ Bump tlds from 1.260.0 to 1.261.0 https://github.com/tektoncd/dashboard/pull/4523
- π¨ Bump jsdom from 27.0.0 to 27.0.1 https://github.com/tektoncd/dashboard/pull/4524
- π¨ Bump msw from 2.11.5 to 2.11.6 https://github.com/tektoncd/dashboard/pull/4525
- π¨ Fix font style for task skipped message https://github.com/tektoncd/dashboard/pull/4526
- π¨ Don't show duration for sidecar containers https://github.com/tektoncd/dashboard/pull/4528
- π¨ Don't attempt to list namespaces when tenant namespaces configured https://github.com/tektoncd/dashboard/pull/4529
- π¨ Update to Node.js 24 https://github.com/tektoncd/dashboard/pull/4455
- π¨ Bump actions/upload-artifact from 4.6.2 to 5.0.0 https://github.com/tektoncd/dashboard/pull/4530
- π¨ Bump github/codeql-action from 4.30.9 to 4.31.0 https://github.com/tektoncd/dashboard/pull/4531
- π¨ Bump @vitejs/plugin-react-swc from 4.1.0 to 4.2.0 https://github.com/tektoncd/dashboard/pull/4537
- π¨ Bump the all group across 3 directories with 3 updates https://github.com/tektoncd/dashboard/pull/4535
- π¨ Bump vite from 7.1.11 to 7.1.12 https://github.com/tektoncd/dashboard/pull/4533
Docs
- π Add v0.62.0 to the releases doc https://github.com/tektoncd/dashboard/pull/4493
- π Update docs to reference OCI storage buckets instead of GCS https://github.com/tektoncd/dashboard/pull/4527
Thanks
Thanks to these contributors who contributed to v0.63.0!
- β€οΈ @AlanGreene
- β€οΈ @dependabot[bot]