v0.0.12
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 | shWindows (PowerShell):
iwr -useb https://raw.githubusercontent.com/diagridio/dev-dashboard/main/scripts/install.ps1 | iexthen 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 adiagrid-dev-dashboardbinary inside, the CLI help and--versionbanner 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-dashboardinstall, 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 | shWindows (PowerShell):
iwr -useb https://raw.githubusercontent.com/diagridio/dev-dashboard/main/scripts/install.ps1 | iexContainer:
docker pull ghcr.io/diagridio/dev-dashboard:0.0.12Run:
diagrid-dev-dashboard # serves http://localhost:9090 and opens your browserSingle 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.