Group SkiaSharp Dependabot updates into a single PR#2593
Merged
Conversation
SkiaSharp and its SkiaSharp.NativeAssets.* companion packages must be kept at matching versions, but the `all-dependencies` group only covers minor/patch updates, and even a minor bump (4.148.0 -> 4.150.1) recently produced two separate PRs (#2590, #2591) that left the two packages at different versions in the same csproj. Add a dedicated `skiasharp` group modeled after `dotnet-runtime` (no `update-types` filter, so it accepts any version bump including majors), and exclude the same patterns from `all-dependencies` so routing stays deterministic. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 223b18cd-a71c-4c51-971e-25c9b0e7b91c
raffaeler
approved these changes
Jul 23, 2026
krwq
enabled auto-merge (squash)
July 23, 2026 15:58
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.
SkiaSharpand itsSkiaSharp.NativeAssets.*companion packages must be kept at matching versions, but they were slipping through the existing grouping and shipping as separate Dependabot PRs (#2590, #2591 for the 4.148.0 -> 4.150.1 bump). #2591 merged and #2590 did not, which leftsrc/devices/SkiaSharpAdapter/SkiaSharpAdapter.csprojwithSkiaSharpat 4.148.0 andSkiaSharp.NativeAssets.Linuxat 4.150.1 - exactly the drift the group is meant to prevent.This adds a dedicated
skiasharpgroup modeled after the existingdotnet-runtimegroup:SkiaSharp(exact) andSkiaSharp.NativeAssets.*(covers.Linuxtoday and any future.Windows/.macOSvariants).update-typesfilter, so any bump (major, minor, or patch) is grouped - the two packages always land in one PR regardless of version-change type.all-dependencies'exclude-patternsso routing stays deterministic regardless of group evaluation order.Follow-up to #2571, which set up the initial grouping but only covered
System.*/Microsoft.Extensions.*and generic minor/patch updates.Microsoft Reviewers: Open in CodeFlow