From 2a321f5d83bb09d75b9d3d56fd5a8bde5d48fc48 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 27 Mar 2026 17:37:34 +0000 Subject: [PATCH 1/2] Add Aspire 13.2.1 release notes sub-section with TypeScript SDK breaking changes Agent-Logs-Url: https://github.com/microsoft/aspire.dev/sessions/4cae4fc9-94b4-40c3-bdd1-93b03e2f629f Co-authored-by: sebastienros <1165805+sebastienros@users.noreply.github.com> --- .../content/docs/whats-new/aspire-13-2.mdx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) 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..62f2d0e80 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 the TypeScript AppHost SDK. + +### 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. | + + From 4cc3e98e9ea815e33a81a772597e279faefa2068 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Ros?= Date: Fri, 27 Mar 2026 10:47:32 -0700 Subject: [PATCH 2/2] Update Aspire 13.2.1 release notes for clarity --- src/frontend/src/content/docs/whats-new/aspire-13-2.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 62f2d0e80..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 @@ -1287,7 +1287,7 @@ For a complete list of issues addressed in this release, see the [Aspire 13.2 mi ## Aspire 13.2.1 -Aspire 13.2.1 is a patch release focused on the TypeScript AppHost SDK. +Aspire 13.2.1 is a patch release focused on reliability fixes. ### Breaking changes in the TypeScript AppHost SDK @@ -1301,5 +1301,5 @@ The following TypeScript AppHost APIs were renamed. Update any affected `apphost | `withParameterBuildArg(name, parameter)` | `withBuildArg(name, parameter)` | Renamed to the unified `withBuildArg` surface. |