This Dashboard release supports Pipelines v0.41.x LTS - v0.46.x and Triggers v0.23.x.
Attestation
The Rekor UUID for this release is 24296fb24b8ad77aa217372b208f132930d16084136a9244d304040c73104150558322d0cc050f00
Verify that all container images in the release file are in the attestation:
RELEASE_FILE=https://storage.googleapis.com/tekton-releases/dashboard/previous/v0.34.0/release.yaml
REKOR_UUID=24296fb24b8ad77aa217372b208f132930d16084136a9244d304040c73104150558322d0cc050f00
# 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.34.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 tests to latest Triggers release #2747
- 🔨 Temporary workaround for issue downloading apt-key.gpg #2754
- 🔨 Update to Storybook v7 #2748
- 🔨 Bump babel-plugin-formatjs from 10.3.36 to 10.4.0 #2749
- 🔨 Bump react-intl from 6.2.8 to 6.2.10 #2751
- 🔨 Bump eslint from 8.34.0 to 8.35.0 #2752
- 🔨 Revert workaround for apt-key error #2755
- 🔨 Bump @babel/core from 7.20.12 to 7.21.0 #2753
- 🔨 Run storybook-deployer via npx #2756
- 🔨 Update msw #2757
- 🔨 Remove whatwg-fetch polyfill #2758
- 🔨 Update Cypress to 12.7.0 #2759
- 🔨 Bump @babel/plugin-transform-runtime from 7.19.6 to 7.21.0 #2762
- 🔨 Bump @tanstack/react-query-devtools from 4.24.9 to 4.24.12 #2764
- 🔨 Improve stability of PipelineRun not found / error tests #2767
- 🔨 Update Storybook #2766
- 🔨 Update glob to v9 #2769
- 🔨 Fix glob version conflict #2770
- 🔨 Update Storybook #2771
- 🔨 Bump @babel/runtime from 7.20.13 to 7.21.0 #2775
- 🔨 Bump glob from 9.1.0 to 9.1.2 #2776
- 🔨 Update core-js to 3.29 #2780
- 🔨 Update tests to use latest Triggers release #2781
- 🔨 Update go.mod to go 1.19 #2782
- 🔨 Initial import of graph POC components #2783
- 🔨 Bump @tanstack/react-query-devtools from 4.24.12 to 4.26.0 #2787
- 🔨 Continue import of graph POC components #2793
- 🔨 Update Storybook #2794
- 🔨 Graph cleanup #2795
- 🔨 Bump jest-environment-jsdom from 29.4.3 to 29.5.0 #2800
- 🔨 Bump tlds from 1.236.0 to 1.237.0 #2798
- 🔨 Update Storybook to release candidate #2801
- 🔨 Update caniuse-lite #2802
- 🔨 Update webpack #2802
- 🔨 Bump k8s.io/client-go from 0.25.4 to 0.26.2 #2784
- 🔨 Bump k8s.io/client-go from 0.26.2 to 0.26.3 #2806
- 🔨 Bump tlds from 1.237.0 to 1.238.0 #2811
- 🔨 Bump eslint-config-prettier from 8.6.0 to 8.7.0 #2808
- 🔨 Update tests to latest Pipelines release #2812
- 🔨 Cleanup E2E tests and scripts #2813
- 🔨 Remove installer script release tests #2814
- 🔨 Update Storybook to latest release candidate #2815
Docs
- 📖 Add v0.33.0 to the release docs #2746
- 📖 Remove reference to local integration tests script #2813
- 📖 Convert graph POC examples to stories #2793
Thanks
Thanks to these contributors who contributed to v0.34.0!
- ❤️ @AlanGreene
- ❤️ @dependabot[bot]