github tektoncd/dashboard v0.37.0
Tekton Dashboard release v0.37.0

latest releases: v0.50.0, v0.49.0, v0.48.0...
15 months ago

This Dashboard release supports Pipelines v0.44.x LTS, v0.47.x LTS, and v0.49.x, and Triggers v0.24.x.

Attestation

The Rekor UUID for this release is 24296fb24b8ad77a57c11f98883a3a5828db8e840a3049f30536d45ba13f12fc16fe7f6ba9577b57

Verify that all container images in the release file are in the attestation:

RELEASE_FILE=https://storage.googleapis.com/tekton-releases/dashboard/previous/v0.37.0/release.yaml
REKOR_UUID=24296fb24b8ad77a57c11f98883a3a5828db8e840a3049f30536d45ba13f12fc16fe7f6ba9577b57

# 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.37.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

  • 🔨 Bump css-loader from 6.7.3 to 6.8.1 #2944
  • 🔨 Bump @babel/plugin-transform-runtime from 7.21.4 to 7.22.4 #2943
  • 🔨 Bump webpack-merge from 5.8.0 to 5.9.0 #2945
  • 🔨 Bump sass-loader from 13.2.2 to 13.3.1 #2942
  • 🔨 Bump babel-plugin-formatjs from 10.5.0 to 10.5.1 #2941
  • 🔨 Bump webpack-cli from 5.0.2 to 5.1.4 #2947
  • 🔨 Bump react-intl from 6.4.2 to 6.4.3 #2949
  • 🔨 Bump babel-plugin-formatjs from 10.5.1 to 10.5.2 #2951
  • 🔨 Bump @babel/preset-react from 7.18.6 to 7.22.5 #2948
  • 🔨 Update Storybook and Cypress to latest releases #2952
  • 🔨 Bump babel-plugin-formatjs from 10.5.2 to 10.5.3 #2953
  • 🔨 Bump @babel/runtime from 7.21.5 to 7.22.5 #2954
  • 🔨 Bump @babel/eslint-parser from 7.21.3 to 7.22.5 #2955
  • 🔨 Bump tlds from 1.238.0 to 1.240.0 #2958
  • 🔨 Bump @babel/plugin-proposal-export-default-from from 7.18.10 to 7.22.5 #2959
  • 🔨 Update tests to latest Pipelines and Triggers releases #2960

Docs

  • 📖 Add patch releases for stepTemplate merge issue to releases doc #2940

Thanks

Thanks to these contributors who contributed to v0.37.0!

Don't miss a new dashboard release

NewReleases is sending notifications on new releases.