Skip to content

v0.0.12

Choose a tag to compare

@github-actions github-actions released this 14 Jul 11:38
· 125 commits to main since this release

Diagrid Dev Dashboard

A local dashboard for Dapr developers that offers a live view of everything Dapr running on your machine, plus guided builders for authoring Dapr component files and resiliency policies. v0.0.12 is a small but important release with one headline change: the dashboard binary has a new name.

⚠️ Breaking: the binary is now diagrid-dev-dashboard

The CLI, release archives, and installed binary are renamed from dev-dashboard
to diagrid-dev-dashboard. Existing installs cannot self-update across this
rename
dev-dashboard update (and the startup update prompt) will fail with
"release not found". Reinstall once with the one-liner:

curl -sSL https://raw.githubusercontent.com/diagridio/dev-dashboard/main/scripts/install.sh | sh

Windows (PowerShell):

iwr -useb https://raw.githubusercontent.com/diagridio/dev-dashboard/main/scripts/install.ps1 | iex

then delete the old dev-dashboard binary (the installer prints its location if
one is found). The GitHub repo, Go module path, container image names
(ghcr.io/diagridio/dev-dashboard), DEVDASHBOARD_* environment variables,
and your saved state-store connections in ~/.dapr/dev-dashboard/ are unchanged.

What's new

🏷️ The rename, end to end

  • Every layer moves together: release archives are now diagrid-dev-dashboard_{version}_{os}_{arch}.* with a diagrid-dev-dashboard binary inside, the CLI help and --version banner carry the new name, and the self-updater expects the new naming — so upgrades from this version onward work seamlessly again.
  • The install scripts install to the new name and print a notice when they find an old dev-dashboard install, so you know exactly what to remove.

📚 Docs & housekeeping

  • The README got a restructure, and all docs (README, ARCHITECTURE, contributor docs, issue template) consistently use the new binary name.
  • CI now skips docs-only and tooling-only changes via a shared paths allowlist.

Install & run

One-liner (macOS / Linux):

curl -sSL https://raw.githubusercontent.com/diagridio/dev-dashboard/main/scripts/install.sh | sh

Windows (PowerShell):

iwr -useb https://raw.githubusercontent.com/diagridio/dev-dashboard/main/scripts/install.ps1 | iex

Container:

docker pull ghcr.io/diagridio/dev-dashboard:0.0.12

Run:

diagrid-dev-dashboard          # serves http://localhost:9090 and opens your browser

Single self-contained binary — the React frontend is embedded via go:embed, so there are no runtime dependencies. Prebuilt archives for macOS and Linux (amd64 + arm64) and Windows (amd64) are attached below, and the multi-arch container image is on GHCR.