Tekton Dashboard release v0.47.0
This Dashboard release supports Pipelines v0.56.x LTS, v0.59.x LTS, and v0.60.x, as well as Triggers v0.26.x LTS, and v0.27.x LTS.
Attestation
The Rekor UUID for this release is 24296fb24b8ad77a9850dc31364b21bc2858592f30a543a529e52c2a936620de714b747050100af0
Verify that all container images in the release file are in the attestation:
RELEASE_FILE=https://storage.googleapis.com/tekton-releases/dashboard/previous/v0.47.0/release.yaml
REKOR_UUID=24296fb24b8ad77a9850dc31364b21bc2858592f30a543a529e52c2a936620de714b747050100af0
# 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("gcr.io"))|.name + ":v0.47.0@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
Misc
- π¨ Update E2E base image #3398
- π¨ Run React jsx codemod to remove unnecessary
React
import #3399 - π¨ Bump the storybook group with 9 updates #3400
- π¨ Bump cypress from 13.8.0 to 13.8.1 #3402
- π¨ Bump carbon-components-react from 7.59.21 to 7.59.22 #3403
- π¨ Bump eslint-plugin-react-hooks from 4.6.0 to 4.6.2 #3404
- π¨ Update vite config to use same transpilation target for dev as prod #3405
- π¨ Adopt CSS logical properties #3406
- π¨ Update E2E tests to Triggers v0.26.2 #3407
- π¨ Bump ejs from 3.1.9 to 3.1.10 #3408
- π¨ Update react-router-dom-v5-compat to latest version #3409
- π¨ Bump react-intl from 6.6.5 to 6.6.6 #3411
- π¨ Bump eslint-plugin-cypress from 2.15.1 to 3.1.1 #3412
- π¨ Bump the storybook group with 9 updates #3410
- π¨ Bump vite from 5.2.10 to 5.2.11 #3413
- π¨ Update E2E tests to Triggers v0.27.0 #3416
- π¨ Bump eslint-plugin-formatjs from 4.13.0 to 4.13.1 #3417
- π¨ Bump @formatjs/cli from 6.2.9 to 6.2.10 #3419
- π¨ Bump @carbon/themes from 10.55.4 to 10.55.5 #3420
- π¨ Bump @vitest/coverage-istanbul from 1.5.0 to 1.6.0 #3418
- π¨ Simplify API utils for constructing URLs #3421
- π¨ Remove obsolete extensions pages and related code #3422
- π¨ Update to React Router 6 #3423
- π¨ Bump the storybook group with 9 updates #3424
- π¨ Bump k8s.io/client-go from 0.30.0 to 0.30.1 #3429
- π¨ Bump msw from 2.2.14 to 2.3.0 #3425
- π¨ Bump eslint-plugin-formatjs from 4.13.1 to 4.13.3 #3427
- π¨ Update E2E tests to Pipelines v0.60.0 #3431
Docs
- π Add v0.46.0 to the releases doc and remove v0.35.x which is now EOL #3397
Thanks
Thanks to these contributors who contributed to v0.47.0!
- β€οΈ @AlanGreene
- β€οΈ @dependabot[bot]