-
Notifications
You must be signed in to change notification settings - Fork 703
[release/9.5] Update Aspire package versions from 9.5.0 to 9.5.1 #11721
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[release/9.5] Update Aspire package versions from 9.5.0 to 9.5.1 #11721
Conversation
Co-authored-by: joperezr <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Updates the Aspire package versions throughout the codebase from 9.5.0 to 9.5.1 as part of a patch version increment.
- Incremented patch version from 0 to 1 in versioning configuration
- Updated 71 Aspire package references from 9.5.0 to 9.5.1 in test configuration
- Updated Aspire.AppHost.Sdk version references in test targets
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
File | Description |
---|---|
eng/Versions.props | Updated PatchVersion from 0 to 1 to reflect the new 9.5.1 version |
tests/Shared/RepoTesting/Directory.Packages.Helix.props | Updated all 71 Aspire package version references from 9.5.0 to 9.5.1 |
tests/Shared/RepoTesting/Aspire.RepoTesting.targets | Updated Aspire.AppHost.Sdk version from 9.5.0 to 9.5.1 in SDK import statements |
<PackageVersion Include="Aspire.Hosting.Azure.ApplicationInsights" Version="9.5.1" /> | ||
<PackageVersion Include="Aspire.Hosting.Azure.CognitiveServices" Version="9.5.1" /> | ||
<PackageVersion Include="Aspire.Hosting.Azure.CosmosDB" Version="9.5.1" /> | ||
<PackageVersion Include="Aspire.Hosting.Azure.ContainerRegistry" Version="$(PackageVersion)" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does $(PackageVersion)
not work? also, whichever option we use, all the references should be updated for that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It does not for the packages that are staying stable vs the ones that are still in preview. This is just old debt we have as this file should really be getting generated on the fly by calling into each project and getting out the package version from it. That way we wouldn't have to do this manual change everytime we snap.
🚀 Dogfood this PR with:
curl -fsSL https://raw.githubusercontent.com/dotnet/aspire/main/eng/scripts/get-aspire-cli-pr.sh | bash -s -- 11721 Or
iex "& { $(irm https://raw.githubusercontent.com/dotnet/aspire/main/eng/scripts/get-aspire-cli-pr.ps1) } 11721" |
This PR updates the Aspire package versions from 9.5.0 to 9.5.1 as part of the regular patch release process.
Changes
The following files have been updated to reflect the new patch version:
eng/Versions.props - Updated
PatchVersion
from0
to1
, which changes the overall repository version to 9.5.1tests/Shared/RepoTesting/Directory.Packages.Helix.props - Updated 71 package version references from
9.5.0
to9.5.1
, including:tests/Shared/RepoTesting/Aspire.RepoTesting.targets - Updated the Aspire.AppHost.Sdk version from
9.5.0
to9.5.1
in both SDK imports (Sdk.props and Sdk.targets)These changes ensure that all Aspire packages built from this repository will have version 9.5.1, and that test infrastructure using these packages will reference the correct version when running outside the repository (e.g., on Helix agents).
Verification
Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.