Skip to content

Bump branding version to 13.2.3 - #16181

Merged
Jose Perez Rodriguez (joperezr) merged 1 commit into
release/13.2from
copilot/update-branding-for-13-2-3
Apr 14, 2026
Merged

Bump branding version to 13.2.3#16181
Jose Perez Rodriguez (joperezr) merged 1 commit into
release/13.2from
copilot/update-branding-for-13-2-3

Conversation

Copilot AI commented Apr 14, 2026

Copy link
Copy Markdown
Contributor

Description

Post-ship version bump from 13.2.2 → 13.2.3, following the same pattern as #15754.

  • eng/Versions.props: PatchVersion 2 → 3
  • tests/Shared/RepoTesting/Aspire.RepoTesting.targets: Aspire.AppHost.Sdk version in both Sdk.props and Sdk.targets imports
  • tests/Shared/RepoTesting/Directory.Packages.Helix.props: All hardcoded package versions

Checklist

  • Is this feature complete?
    • Yes. Ready to ship.
    • No. Follow-up changes expected.
  • Are you including unit tests for the changes and scenario tests if relevant?
    • Yes
    • No
  • Did you add public API?
    • Yes
    • No
  • Does the change make any security assumptions or guarantees?
    • Yes
    • No
  • Does the change require an update in our Aspire docs?
    • Yes
    • No

Agent-Logs-Url: https://github.com/microsoft/aspire/sessions/42367a1d-b584-439d-a6e1-5cde4d83ea53

Co-authored-by: joperezr <13854455+joperezr@users.noreply.github.com>
@joperezr
Jose Perez Rodriguez (joperezr) marked this pull request as ready for review April 14, 2026 23:04
Copilot AI review requested due to automatic review settings April 14, 2026 23:04
@joperezr
Jose Perez Rodriguez (joperezr) merged commit b150513 into release/13.2 Apr 14, 2026
1 check passed

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Note

Copilot was unable to run its full agentic suite in this review.

Bumps the repository’s branding/package versions from 13.2.2 to 13.2.3 to align repo testing and Helix test package pinning with the post-ship patch release.

Changes:

  • Updated repo patch version to 13.2.3.
  • Bumped Aspire.AppHost.Sdk import versions used by out-of-repo test runs.
  • Updated hardcoded Aspire package versions in Helix test package props to 13.2.3.

Reviewed changes

Copilot reviewed 3 out of 3 changed files in this pull request and generated 4 comments.

File Description
eng/Versions.props Patch version bump to 13.2.3.
tests/Shared/RepoTesting/Aspire.RepoTesting.targets Updates Aspire.AppHost.Sdk import versions to 13.2.3 for repo-testing.
tests/Shared/RepoTesting/Directory.Packages.Helix.props Pins Aspire package versions to 13.2.3 for Helix runs.

<PackageVersion Include="Aspire.Azure.Security.KeyVault" Version="13.2.3" />
<PackageVersion Include="Aspire.Azure.Storage.Blobs" Version="13.2.3" />
<PackageVersion Include="Aspire.Azure.Storage.Queues" Version="13.2.3" />
<PackageVersion Include="Aspire.Azure.Npgsql.EntityFrameworkCore.PostgreSQL" Version="13.2.3" />

Copilot AI Apr 14, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These two PackageVersion entries appear to target the same package ID (Aspire.Npgsql.EntityFrameworkCore.PostgreSQL), but one line uses Aspire.Azure.Npgsql.EntityFrameworkCore.PostgreSQL. If the Aspire.Azure.* ID is not a real package (or was renamed), this will silently pin a non-existent/unused ID and make updates error-prone. Recommend verifying the correct package ID and removing/renaming the incorrect entry so there is exactly one authoritative PackageVersion for this dependency.

Suggested change
<PackageVersion Include="Aspire.Azure.Npgsql.EntityFrameworkCore.PostgreSQL" Version="13.2.3" />
<PackageVersion Include="Aspire.Npgsql.EntityFrameworkCore.PostgreSQL" Version="13.2.3" />

Copilot uses AI. Check for mistakes.
<PackageVersion Include="Aspire.MySqlConnector" Version="13.2.3" />
<PackageVersion Include="Aspire.NATS.Net" Version="13.2.3" />
<PackageVersion Include="Aspire.Npgsql" Version="13.2.3" />
<PackageVersion Include="Aspire.Npgsql.EntityFrameworkCore.PostgreSQL" Version="13.2.3" />

Copilot AI Apr 14, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These two PackageVersion entries appear to target the same package ID (Aspire.Npgsql.EntityFrameworkCore.PostgreSQL), but one line uses Aspire.Azure.Npgsql.EntityFrameworkCore.PostgreSQL. If the Aspire.Azure.* ID is not a real package (or was renamed), this will silently pin a non-existent/unused ID and make updates error-prone. Recommend verifying the correct package ID and removing/renaming the incorrect entry so there is exactly one authoritative PackageVersion for this dependency.

Copilot uses AI. Check for mistakes.
Comment on lines +36 to 38
<Import Project="Sdk.props" Sdk="Aspire.AppHost.Sdk" Version="13.2.3" Condition="'$(IsAspireHost)' == 'true' and '$(RepoRoot)' == '' and '$(TestsRunningOutsideOfRepo)' == 'true'" />

<PropertyGroup>

Copilot AI Apr 14, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Aspire.AppHost.Sdk version is duplicated in two Import statements, which increases the chance of future mismatches. Consider defining a single property in this file (e.g., <AspireAppHostSdkVersion>13.2.3</AspireAppHostSdkVersion> or reusing an existing version property if available here) and referencing it from both Import Version attributes so only one value needs updating per bump.

Suggested change
<Import Project="Sdk.props" Sdk="Aspire.AppHost.Sdk" Version="13.2.3" Condition="'$(IsAspireHost)' == 'true' and '$(RepoRoot)' == '' and '$(TestsRunningOutsideOfRepo)' == 'true'" />
<PropertyGroup>
<Import Project="Sdk.props" Sdk="Aspire.AppHost.Sdk" Version="$(AspireAppHostSdkVersion)" Condition="'$(IsAspireHost)' == 'true' and '$(RepoRoot)' == '' and '$(TestsRunningOutsideOfRepo)' == 'true'" />
<PropertyGroup>
<AspireAppHostSdkVersion>13.2.3</AspireAppHostSdkVersion>

Copilot uses AI. Check for mistakes.
</PropertyGroup>

<Import Project="Sdk.targets" Sdk="Aspire.AppHost.Sdk" Version="13.2.2" Condition="'$(IsAspireHost)' == 'true' and '$(RepoRoot)' == '' and '$(TestsRunningOutsideOfRepo)' == 'true'" />
<Import Project="Sdk.targets" Sdk="Aspire.AppHost.Sdk" Version="13.2.3" Condition="'$(IsAspireHost)' == 'true' and '$(RepoRoot)' == '' and '$(TestsRunningOutsideOfRepo)' == 'true'" />

Copilot AI Apr 14, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Aspire.AppHost.Sdk version is duplicated in two Import statements, which increases the chance of future mismatches. Consider defining a single property in this file (e.g., <AspireAppHostSdkVersion>13.2.3</AspireAppHostSdkVersion> or reusing an existing version property if available here) and referencing it from both Import Version attributes so only one value needs updating per bump.

Copilot uses AI. Check for mistakes.
@github-actions github-actions Bot added this to the 13.2.x milestone Apr 14, 2026
@github-actions github-actions Bot locked and limited conversation to collaborators May 15, 2026
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants