diff --git a/src/frontend/src/content/docs/whats-new/aspire-13-2.mdx b/src/frontend/src/content/docs/whats-new/aspire-13-2.mdx index e30882718..a77b09591 100644 --- a/src/frontend/src/content/docs/whats-new/aspire-13-2.mdx +++ b/src/frontend/src/content/docs/whats-new/aspire-13-2.mdx @@ -1284,3 +1284,22 @@ Aspire Azure client integrations no longer use the parameterless `DefaultAzureCr Follow the directions in [Upgrade to Aspire 13.2](#upgrade-to-aspire-13-2) to move forward and start using the new CLI, TypeScript apphost, dashboard, hosting, and integration capabilities in this release. For a complete list of issues addressed in this release, see the [Aspire 13.2 milestone on GitHub](https://github.com/microsoft/aspire/issues?q=is%3Aissue%20state%3Aclosed%20milestone%3A13.2). As always, we want to share a huge thank you to all our community contributors who filed issues, submitted pull requests, and helped shape this release — Aspire is better because of you. + +## Aspire 13.2.1 + +Aspire 13.2.1 is a patch release focused on reliability fixes. + +### Breaking changes in the TypeScript AppHost SDK + +The following TypeScript AppHost APIs were renamed. Update any affected `apphost.ts` files accordingly: + +| Previous name | New name | Notes | +| --- | --- | --- | +| `runAsExistingFromParameters(name, resourceGroup)` | `runAsExisting(name, { resourceGroup })` | Name change plus positional → options object. | +| `publishAsExistingFromParameters(name, resourceGroup)` | `publishAsExisting(name, { resourceGroup })` | Name change plus positional → options object. | +| `withConnectionPropertyValue(name, value)` | `withConnectionProperty(name, value)` | Unified API for string/reference values. | +| `withParameterBuildArg(name, parameter)` | `withBuildArg(name, parameter)` | Renamed to the unified `withBuildArg` surface. | + +