Add Aspire 13.2.1 release notes to the 13.2 what's-new doc#630
Open
Add Aspire 13.2.1 release notes to the 13.2 what's-new doc#630
Conversation
…ing 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>
Copilot created this pull request from a session on behalf of
sebastienros
March 27, 2026 17:38
View session
Contributor
There was a problem hiding this comment.
Pull request overview
Adds patch release notes for Aspire 13.2.1 to the existing “What’s new in Aspire 13.2” documentation, with emphasis on TypeScript AppHost SDK API renames introduced in 13.2.1.
Changes:
- Appends a new
## Aspire 13.2.1section to the 13.2 “what’s new” page. - Documents TypeScript AppHost SDK API renames (including positional → options-object changes).
- Adds a note about
withConnectionPropertyValuebeing available as a compatibility alias.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a new
## Aspire 13.2.1sub-section at the end ofaspire-13-2.mdxcontaining the 13.2.1 patch release notes.The section documents the breaking changes introduced in the TypeScript AppHost SDK as described in microsoft/aspire#15557 (comment):
runAsExistingFromParameters(name, resourceGroup)runAsExisting(name, { resourceGroup })publishAsExistingFromParameters(name, resourceGroup)publishAsExisting(name, { resourceGroup })withConnectionPropertyValue(name, value)withConnectionProperty(name, value)withParameterBuildArg(name, parameter)withBuildArg(name, parameter)withBuildArgsurface.Also includes the note that
withConnectionPropertyValueis restored as a compatibility alias in the generated SDKs, so it is not a runtime SDK break.