diff --git a/src/frontend/src/content/docs/whats-new/aspire-13-6.mdx b/src/frontend/src/content/docs/whats-new/aspire-13-6.mdx index 716d4292e..13382c8a2 100644 --- a/src/frontend/src/content/docs/whats-new/aspire-13-6.mdx +++ b/src/frontend/src/content/docs/whats-new/aspire-13-6.mdx @@ -34,7 +34,7 @@ This release introduces: - **Integration improvements** — debug Blazor WebAssembly apps, discover Dev Tunnel URLs, customize Radius recipes, and protect destructive Azure location changes. - **Updated emulator images** — move Azure App Configuration to `1.2.0` and make the Linux-based vNext Cosmos DB emulator the default. - **Community contributions** — 13 pull requests from eight contributors span major features, integration improvements, reliability fixes, and project tooling. -- **One breaking change** — `RunAsEmulator` now selects the Linux-based vNext Cosmos DB emulator. +- **Two breaking changes** — `RunAsEmulator` now selects the Linux-based vNext Cosmos DB emulator, and `PublishAsAzureSandbox` no longer takes a sandbox-group parameter. - …and much more. ## 🆙 Upgrade to Aspire 13.6 @@ -127,6 +127,8 @@ The first-party package doesn't yet include the Community Toolkit integration's The experimental `Aspire.Hosting.Azure.Sandboxes` package can provision a sandbox group and Azure Container Registry, then publish project, container, and Dockerfile resources as sandbox containers. Aspire resolves images to immutable Linux/AMD64 digests, supports deploy, redeploy, stale-generation pruning, and destroy, and requires an explicit opt-in before an HTTP endpoint allows anonymous access. +Sandbox groups now work as compute environments without requiring every workload to opt in through `PublishAsAzureSandbox`: add a sandbox group and Aspire automatically assigns and deploys projects to it, keeping their endpoints private unless an endpoint is marked external (for example with `WithExternalHttpEndpoints`). `PublishAsAzureSandbox` now configures sandbox-specific runtime options only — with one compute environment, Aspire infers the sandbox group, and with multiple environments, a workload selects one explicitly through `WithComputeEnvironment` before calling `PublishAsAzureSandbox`. This is a breaking change; see [Azure Container Apps Sandboxes now infer their compute environment](#azure-container-apps-sandboxes-now-infer-their-compute-environment) below. +