diff --git a/cli/azd/extensions/azure.ai.inspector/CHANGELOG.md b/cli/azd/extensions/azure.ai.inspector/CHANGELOG.md index 4658bcd3e71..6ab4945ac89 100644 --- a/cli/azd/extensions/azure.ai.inspector/CHANGELOG.md +++ b/cli/azd/extensions/azure.ai.inspector/CHANGELOG.md @@ -1,5 +1,18 @@ # Release History -## 0.1.0-preview (Unreleased) +## 0.0.1-preview (2026-05-22) -- Initial release. +Initial preview release of the Agent Inspector extension. + +### Features Added + +- Agent Inspector extension: serves the Inspector single-page app on loopback and bridges it to a locally running agent over WebSocket JSON-RPC and HTTP/SSE proxying. +- Added `azd ai inspector launch` to start the Inspector standalone; the `azd ai inspector` command group is kept for future subcommands. +- Integrated with `azd ai agent run` so the Inspector is launched automatically for local agent runs (opt out with `--no-inspector`). + +### Other Changes + +- Hardened the loopback server with `Host`/`Origin` allowlisting, proxy URL constraints (http/https, loopback hosts, configured agent port), bounded WebSocket frame size, read/write deadlines, ping/pong, and Content-Security-Policy and related hardening headers on the served SPA. +- Restricted `openUrlInBrowser` to `http`/`https` URLs. +- Suppressed proxy body logging and stdout output when launched in silent mode from `azd ai agent run`. +- Added panic recovery in per-message RPC goroutines and fixed a nil-map race in stream registration during session cleanup. diff --git a/cli/azd/extensions/azure.ai.inspector/extension.yaml b/cli/azd/extensions/azure.ai.inspector/extension.yaml index 9efd484e4ff..4ff7e327d5a 100644 --- a/cli/azd/extensions/azure.ai.inspector/extension.yaml +++ b/cli/azd/extensions/azure.ai.inspector/extension.yaml @@ -5,7 +5,7 @@ displayName: Foundry agent inspector (Preview) description: Browser-based inspector UI for locally running Foundry agents. (Preview) usage: azd ai inspector [options] # NOTE: Make sure version.txt is in sync with this version. -version: 0.1.0-preview +version: 0.0.1-preview requiredAzdVersion: ">1.23.13" language: go capabilities: diff --git a/cli/azd/extensions/azure.ai.inspector/version.txt b/cli/azd/extensions/azure.ai.inspector/version.txt index 2c31a296e4c..1d8239b9041 100644 --- a/cli/azd/extensions/azure.ai.inspector/version.txt +++ b/cli/azd/extensions/azure.ai.inspector/version.txt @@ -1 +1 @@ -0.1.0-preview +0.0.1-preview