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

latest releases: v0.52.0, v0.51.0
2 months ago

This Dashboard release supports Pipelines v0.59.x LTS, and v0.62.x LTS, and v0.63.x, as well as Triggers v0.28.x, and v0.29.x.

Attestation

The Rekor UUID for this release is 108e9186e8c5677ae546297367682597084f696246ebe9ee036032a4f5c56bbc8b6db5bb2dbb6ea5

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

RELEASE_FILE=https://storage.googleapis.com/tekton-releases/dashboard/previous/v0.50.0/release.yaml
REKOR_UUID=108e9186e8c5677ae546297367682597084f696246ebe9ee036032a4f5c56bbc8b6db5bb2dbb6ea5

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

  • 🔨 Add optional prop to PipelineRuns component for react-router v5 compatibility #3531
  • 🔨 Add custom DataTableSkeleton component to support display of filters #3533
  • 🔨 Bump the storybook group with 11 updates #3534
  • 🔨 Bump @vitest/coverage-istanbul from 2.0.4 to 2.0.5 #3535
  • 🔨 Bump react-router-dom from 6.25.1 to 6.26.0 #3536
  • 🔨 Bump msw from 2.3.4 to 2.3.5 #3537
  • 🔨 Update E2E tests to Pipelines v0.62.1 #3539
  • 🔨 Update Vite to 5.4 and Carbon to 1.63 #3540
  • 🔨 Bump cypress from 13.13.1 to 13.13.2 #3546
  • 🔨 Bump Storybook from 8.2.7 to 8.2.8 #3548
  • 🔨 Bump the storybook group across 1 directory with 11 updates #3549
  • 🔨 Bump eslint-plugin-cypress from 3.4.0 to 3.5.0 #3550
  • 🔨 Bump @carbon/react from 1.63.2 to 1.64.0 #3552
  • 🔨 Bump cypress from 13.13.2 to 13.13.3 #3551
  • 🔨 Bump @codemirror/legacy-modes from 6.4.0 to 6.4.1 #3554
  • 🔨 Bump react-router-dom from 6.26.0 to 6.26.1 #3556
  • 🔨 Bump k8s.io/client-go from 0.30.3 to 0.31.0 #3558
  • 🔨 Bump vite from 5.4.0 to 5.4.1 #3555
  • 🔨 Update E2E tests to Triggers v0.29.0 #3559
  • 🔨 Resolve a11y warning on tabs #3560
  • 🔨 Add router decorator to Trigger stories so they load correctly #3563
  • 🔨 Bump @carbon/react from 1.64.0 to 1.64.1 #3566
  • 🔨 Bump git-url-parse from 14.1.0 to 15.0.0 #3567
  • 🔨 Bump vite from 5.4.1 to 5.4.2 #3564
  • 🔨 Bump jsdom from 24.1.1 to 25.0.0 #3571
  • 🔨 Replace remaining use of useState in stories with useArgs #3568
  • 🔨 Convert more components to functional components #3569
  • 🔨 Bump cypress from 13.13.3 to 13.14.0 #3573
  • 🔨 Update E2E tests to Pipelines v0.63.0 #3574
  • 🔨 Bump cypress from 13.14.0 to 13.14.1 #3576
  • 🔨 Bump msw from 2.3.5 to 2.4.1 #3577
  • 🔨 Bump @carbon/react from 1.64.1 to 1.65.0 #3578
  • 🔨 npm audit fix - micromatch #3579

Docs

  • 📖 Add v0.49.0 LTS to the releases doc and remove the EOL v0.38.0 #3530
  • 📖 Add warning to tutorial about usage of read-write mode. #3541

Thanks

Thanks to these contributors who contributed to v0.50.0!

Don't miss a new dashboard release

NewReleases is sending notifications on new releases.