Skip to content

dashboard

Pipelines

Web-based UI for managing and viewing Tekton Pipelines and Triggers resources

JavaScript Latest v0.69.0 · 1d ago Security brief →

Features

  • Realtime view of PipelineRun and TaskRun status and logs
  • Filter resources by label
  • View resource overview and YAML

Recent releases

View all 5 releases →
Review required
v0.69.0 New feature
Dependencies

Restore button for log downloads

v0.68.0 New feature
Notable features
  • Add support for creating a TaskRun in pending state
Full changelog

This Dashboard release supports Pipelines v1.12.x LTS, and Triggers v0.35.x LTS.

Attestation

The Rekor UUID for this release is 108e9186e8c5677a252c1aa8571050f47519d64f6f3005cbd4e694c151a95929ebca56389420a25e

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

RELEASE_FILE=https://infra.tekton.dev/tekton-releases/dashboard/previous/v0.68.0/release.yaml
REKOR_UUID=108e9186e8c5677a252c1aa8571050f47519d64f6f3005cbd4e694c151a95929ebca56389420a25e

# 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.68.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 creating a TaskRun in pending state https://github.com/tektoncd/dashboard/pull/4860

Fixes

  • 🐛 Fix log streaming when no external logs configured https://github.com/tektoncd/dashboard/pull/4921
  • 🐛 Fix table action button alignment https://github.com/tektoncd/dashboard/pull/4922

Misc

  • 🔨 Bump @carbon/react from 1.103.0 to 1.104.0 https://github.com/tektoncd/dashboard/pull/4854
  • 🔨 Bump lodash from 4.17.23 to 4.18.1 in /packages/e2e https://github.com/tektoncd/dashboard/pull/4861
  • 🔨 Bump the storybook group across 1 directory with 6 updates https://github.com/tektoncd/dashboard/pull/4862
  • 🔨 Bump eslint-plugin-cypress from 6.2.1 to 6.2.2 https://github.com/tektoncd/dashboard/pull/4867
  • 🔨 Bump @eslint/compat from 2.0.3 to 2.0.4 https://github.com/tektoncd/dashboard/pull/4866
  • 🔨 Bump vite-plugin-svgr from 5.0.0 to 5.2.0 https://github.com/tektoncd/dashboard/pull/4863
  • 🔨 Bump sass-embedded from 1.98.0 to 1.99.0 https://github.com/tektoncd/dashboard/pull/4864
  • 🔨 Bump eslint-import-resolver-node from 0.3.9 to 0.3.10 https://github.com/tektoncd/dashboard/pull/4865
  • 🔨 Bump lodash and lodash-es from 4.17.23 to 4.18.1 https://github.com/tektoncd/dashboard/pull/4868
  • 🔨 Bump step-security/harden-runner from 2.16.0 to 2.16.1 https://github.com/tektoncd/dashboard/pull/4869
  • 🔨 Bump actions/setup-go from 6.3.0 to 6.4.0 https://github.com/tektoncd/dashboard/pull/4870
  • 🔨 Bump the all group across 2 directories with 2 updates https://github.com/tektoncd/dashboard/pull/4871
  • 🔨 Bump vite from 8.0.3 to 8.0.5 https://github.com/tektoncd/dashboard/pull/4872
  • 🔨 Restore the buildx install for ppc64le and s390x nightly tests https://github.com/tektoncd/dashboard/pull/4889
  • 🔨 Bump actions/upload-artifact from 7.0.0 to 7.0.1 https://github.com/tektoncd/dashboard/pull/4876
  • 🔨 Bump step-security/harden-runner from 2.16.1 to 2.17.0 https://github.com/tektoncd/dashboard/pull/4877
  • 🔨 Bump the all group across 2 directories with 2 updates https://github.com/tektoncd/dashboard/pull/4878
  • 🔨 Bump the storybook group across 1 directory with 6 updates https://github.com/tektoncd/dashboard/pull/4879
  • 🔨 Bump the vitest group across 1 directory with 2 updates https://github.com/tektoncd/dashboard/pull/4880
  • 🔨 Bump @carbon/react from 1.104.1 to 1.105.0 https://github.com/tektoncd/dashboard/pull/4888
  • 🔨 Bump msw from 2.12.14 to 2.13.2 https://github.com/tektoncd/dashboard/pull/4881
  • 🔨 Bump jsdom from 29.0.1 to 29.0.2 https://github.com/tektoncd/dashboard/pull/4882
  • 🔨 Bump eslint-plugin-cypress from 6.2.2 to 6.3.0 https://github.com/tektoncd/dashboard/pull/4885
  • 🔨 Bump @eslint/compat from 2.0.4 to 2.0.5 https://github.com/tektoncd/dashboard/pull/4886
  • 🔨 Bump vite from 8.0.5 to 8.0.8 https://github.com/tektoncd/dashboard/pull/4887
  • 🔨 Bump prettier from 3.8.1 to 3.8.2 https://github.com/tektoncd/dashboard/pull/4884
  • 🔨 Fix detection of GitHub Actions environment in E2E tests https://github.com/tektoncd/dashboard/pull/4890
  • 🔨 Bump globals from 17.4.0 to 17.5.0 https://github.com/tektoncd/dashboard/pull/4883
  • 🔨 Limit the maximum length of a single log line https://github.com/tektoncd/dashboard/pull/4891
  • 🔨 Add GitHub Actions workflow to build and publish E2E base image https://github.com/tektoncd/dashboard/pull/4892
  • 🔨 Update E2E base image workflow to specify default value on input https://github.com/tektoncd/dashboard/pull/4893
  • 🔨 Update dompurify from 3.3.3 to 3.4.0 to address npm audit finding https://github.com/tektoncd/dashboard/pull/4894
  • 🔨 Update E2E to Node.js 24 and Chrome 147 https://github.com/tektoncd/dashboard/pull/4904
  • 🔨 Bump github/codeql-action from 4.35.1 to 4.35.2 https://github.com/tektoncd/dashboard/pull/4895
  • 🔨 Bump the k8s group with 2 updates https://github.com/tektoncd/dashboard/pull/4896
  • 🔨 Bump step-security/harden-runner from 2.17.0 to 2.18.0 https://github.com/tektoncd/dashboard/pull/4897
  • 🔨 Bump the all group across 3 directories with 3 updates https://github.com/tektoncd/dashboard/pull/4898
  • 🔨 Bump prettier from 3.8.2 to 3.8.3 https://github.com/tektoncd/dashboard/pull/4899
  • 🔨 Bump @formatjs/cli from 6.14.1 to 6.14.2 https://github.com/tektoncd/dashboard/pull/4900
  • 🔨 Bump eslint-plugin-cypress from 6.3.0 to 6.3.1 https://github.com/tektoncd/dashboard/pull/4901
  • 🔨 Bump msw from 2.13.3 to 2.13.4 https://github.com/tektoncd/dashboard/pull/4902
  • 🔨 Bump cypress from 15.13.0 to 15.14.0 in /packages/e2e https://github.com/tektoncd/dashboard/pull/4903
  • 🔨 Bump cypress from 15.14.0 to 15.14.1 in /packages/e2e https://github.com/tektoncd/dashboard/pull/4919
  • 🔨 Bump postcss from 8.5.8 to 8.5.12 https://github.com/tektoncd/dashboard/pull/4920
  • 🔨 Bump step-security/harden-runner from 2.18.0 to 2.19.0 https://github.com/tektoncd/dashboard/pull/4909
  • 🔨 Bump actions/setup-node from 6.3.0 to 6.4.0 https://github.com/tektoncd/dashboard/pull/4910
  • 🔨 Bump the all group across 2 directories with 2 updates https://github.com/tektoncd/dashboard/pull/4912
  • 🔨 Bump vite from 8.0.8 to 8.0.10 https://github.com/tektoncd/dashboard/pull/4918
  • 🔨 Bump the vitest group across 1 directory with 2 updates https://github.com/tektoncd/dashboard/pull/4913
  • 🔨 Bump msw from 2.13.4 to 2.13.6 https://github.com/tektoncd/dashboard/pull/4915
  • 🔨 Bump @carbon/react from 1.105.0 to 1.106.0 https://github.com/tektoncd/dashboard/pull/4916
  • 🔨 Bump @carbon/charts-react from 1.27.3 to 1.27.8 https://github.com/tektoncd/dashboard/pull/4914
  • 🔨 Bump @formatjs/cli from 6.14.2 to 6.14.3 https://github.com/tektoncd/dashboard/pull/4917
  • 🔨 Bump go.uber.org/zap from 1.27.1 to 1.28.0 https://github.com/tektoncd/dashboard/pull/4924
  • 🔨 Bump github/codeql-action from 4.35.2 to 4.35.3 https://github.com/tektoncd/dashboard/pull/4925
  • 🔨 Bump step-security/harden-runner from 2.19.0 to 2.19.1 https://github.com/tektoncd/dashboard/pull/4926
  • 🔨 Bump the all group across 2 directories with 2 updates https://github.com/tektoncd/dashboard/pull/4927
  • 🔨 Bump the storybook group across 1 directory with 6 updates https://github.com/tektoncd/dashboard/pull/4928
  • 🔨 Bump eslint-plugin-cypress from 6.3.1 to 6.4.0 https://github.com/tektoncd/dashboard/pull/4930
  • 🔨 Bump yaml from 2.8.3 to 2.8.4 https://github.com/tektoncd/dashboard/pull/4933
  • 🔨 Bump msw from 2.13.6 to 2.14.3 https://github.com/tektoncd/dashboard/pull/4932
  • 🔨 Bump @formatjs/cli from 6.14.3 to 6.14.4 https://github.com/tektoncd/dashboard/pull/4929
  • 🔨 Bump cypress from 15.14.1 to 15.14.2 in /packages/e2e https://github.com/tektoncd/dashboard/pull/4935
  • 🔨 Bump jsdom from 29.0.2 to 29.1.1 https://github.com/tektoncd/dashboard/pull/4931
  • 🔨 Bump globals from 17.5.0 to 17.6.0 https://github.com/tektoncd/dashboard/pull/4934
  • 🔨 Update kind and k8s versions for E2E tests and dev scripts https://github.com/tektoncd/dashboard/pull/4923
  • 🔨 Update E2E tests to Pipelines v1.12 https://github.com/tektoncd/dashboard/pull/4936

Docs

  • 📖 Add v0.67.0 to the releases doc https://github.com/tektoncd/dashboard/pull/4859

Thanks

Thanks to these contributors who contributed to v0.68.0!

  • ❤️ @AlanGreene
  • ❤️ @dependabot[bot]
  • ❤️ @kaushalnavneet
v0.65.0 New feature
Notable features
  • Scroll to top/bottom buttons on all pages
  • Configurable scroll button thresholds

Weekly OSS security release digest.

The CVE patches and breaking changes that affected production tools this week. One email, every Sunday.

No spam, unsubscribe anytime.

About

Stars
952
Forks
290
Languages
JavaScript SCSS Shell
Downloads/week
56 ↓46%
NPM Maintainers
4
Contributors
80

Beta — feedback welcome: [email protected]