{Branch Management} Fix merge-base: Merge release 2.90.0 fixes back to dev - #33988
Open
mansoor sarfraz (msarfraz) wants to merge 1 commit into
Open
{Branch Management} Fix merge-base: Merge release 2.90.0 fixes back to dev#33988mansoor sarfraz (msarfraz) wants to merge 1 commit into
mansoor sarfraz (msarfraz) wants to merge 1 commit into
Conversation
Co-authored-by: Mansoor Sarfraz <msarfraz+microsoft@microsoft.com>
Collaborator
|
Thank you for your contribution! We will review the pull request and get back to you soon. |
Copilot started reviewing on behalf of
mansoor sarfraz (msarfraz)
August 26, 2026 01:17
View session
Contributor
There was a problem hiding this comment.
Pull request overview
This pull request merges the 2.90.0 release hotfix back into dev to restore a correct merge-base between release and dev, preventing branch drift and keeping CI/scans aligned.
Changes:
- Update the RPM-in-Docker test script to
dnf update -y expatbefore installing the built RPM to avoid Python 3.12pyexpatincompatibilities on pinned UBI 8/9 images.
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Copilot started reviewing on behalf of
mansoor sarfraz (msarfraz)
August 26, 2026 01:21
View session
Comment on lines
+7
to
+8
| # Pinned UBI 8/9 images contain an older Expat incompatible with current Python 3.12 pyexpat. | ||
| dnf update -y expat |
Cooper Cox (coopercox-ms)
approved these changes
Aug 26, 2026
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.
🤖 PR Validation — ️✔️ All clear
Fix merge-base between
releaseanddevAfter the 2.90.0 fixes applied on
release(PR #33987), the hotfix commits need to come back todevso the two branches stay in sync and future scans/CI ondevdo not drift.Commits being merged back
2e67654b4bState before this PR
dc50d47ef9e71dWhat this PR does
This PR satisfies the
azure-production-rulesetpull-request requirement and uses a GitHub merge commit to linkreleasehistory intodev. Squash or rebase must not be used because they do not preservereleaseas an ancestor ofdev.Repository configuration required
The bypass is required because the Copilot review ruleset otherwise permits only squash merges for
dev.How to merge future
releasebackportsreleasetodev.CLI equivalent for a repository admin:
Do not merge locally and push directly to
dev; branch protection and the organization ruleset require the change to be merged through the PR.Result
PR #33987 was merged as
9a2c8e0bee95f1a954bc397b4f229d1db8ae128f:ef9e71dface1f409c05dcfcbf5047b5e8600832e(devbefore the merge)dc50d475a00ded4a1a1980d4a10a9fbd9a750a81(release)The
dev/releasemerge-base is nowdc50d475a00ded4a1a1980d4a10a9fbd9a750a81.Reference
Related historical processes: PR #33987 .