[release/13.3] Bump patch version from 13.3.5 to 13.3.6#17367
Open
joperezr wants to merge 1 commit into
Open
Conversation
…uild tag * Bumps PatchVersion in eng/Versions.props from 5 to 6. * Updates Aspire.AppHost.Sdk version (13.3.5 -> 13.3.6) in tests/Shared/RepoTesting/Aspire.RepoTesting.targets. * Updates all Aspire.* PackageVersion entries (13.3.5 -> 13.3.6) in tests/Shared/RepoTesting/Directory.Packages.Helix.props. * Backports the small azure-pipelines.yml change from main (subset of PRs #17150 / #17236) that emits a 'release-version - <X.Y.Z>' AzDO build tag from the computeVersion step. The release-publish pipeline uses this tag to auto-derive ReleaseVersion at queue time. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
|
🚀 Dogfood this PR with:
curl -fsSL https://raw.githubusercontent.com/microsoft/aspire/main/eng/scripts/get-aspire-cli-pr.sh | bash -s -- 17367Or
iex "& { $(irm https://raw.githubusercontent.com/microsoft/aspire/main/eng/scripts/get-aspire-cli-pr.ps1) } 17367" |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the release/13.3 branch to the next servicing patch version (13.3.6) and backports a small Azure Pipelines change so the source build is tagged with release-version - <X.Y.Z>, enabling the main-branch release-publish pipeline to auto-derive ReleaseVersion from the selected source build.
Changes:
- Bump repo patch version from 13.3.5 → 13.3.6.
- Update Helix/out-of-repo test package version pins to 13.3.6.
- Backport Azure Pipelines
computeVersionstep change to add therelease-version - <version>build tag.
Show a summary per file
| File | Description |
|---|---|
eng/Versions.props |
Increments PatchVersion to 6 to produce version prefix 13.3.6. |
tests/Shared/RepoTesting/Aspire.RepoTesting.targets |
Updates Aspire.AppHost.Sdk Sdk.props/targets import versions to 13.3.6 for out-of-repo test builds. |
tests/Shared/RepoTesting/Directory.Packages.Helix.props |
Updates pinned Aspire package versions used in Helix/out-of-repo scenarios from 13.3.5 to 13.3.6. |
eng/pipelines/azure-pipelines.yml |
Adds ##vso[build.addbuildtag]release-version - $version to tag the source build with the resolved version. |
Copilot's findings
- Files reviewed: 4/4 changed files
- Comments generated: 0
Contributor
|
❓ CLI E2E Tests unknown — 64 passed, 0 failed, 4 unknown (commit View all recordings
📹 Recordings uploaded automatically from CI run #26257755359 |
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.
Bumps the patch version on release/13.3 in prep for the 13.3.6 release, and
backports the small
azure-pipelines.ymlchange frommainthat emits arelease-version - <X.Y.Z>AzDO build tag from thecomputeVersionstep.The release-publish pipeline (which now lives on
mainand runs against therelease branch's signed build) auto-derives
ReleaseVersionfrom that tag, sothe tag-add step needs to be present on the source build of the release branch
we're shipping from.
Equivalent of (#17315) for 13.3.6:
eng/Versions.props:PatchVersion5->6.tests/Shared/RepoTesting/Aspire.RepoTesting.targets:Aspire.AppHost.Sdkversion13.3.5->13.3.6(Sdk.props + Sdk.targets imports).tests/Shared/RepoTesting/Directory.Packages.Helix.props: all AspirePackageVersionentries13.3.5->13.3.6(71 packages).Pipeline backport (subset of #17150 / #17236):
eng/pipelines/azure-pipelines.yml: in thecomputeVersionstep, after setting theaspireVersionoutput variable, also emit##vso[build.addbuildtag]release-version - $versionso the build is tagged with the resolved Aspire version. Uses the' - 'separator (not':') to satisfy the AzDO 1ES PT request validator.No other functional changes — none of the larger pipeline restructuring from #17150 is included.