Fix Dependabot glob to freeze base Microsoft.EntityFrameworkCore package#109
Merged
Conversation
The ignore pattern `Microsoft.EntityFrameworkCore.*` (trailing dot) matches only suffixed packages (.Relational, .SqlServer, ...) and NOT the base `Microsoft.EntityFrameworkCore` package. Dependabot therefore bumped the base package across a major (8.0.25 -> 9.0.17) on the net8.0 TFM while Relational stayed at 8.0.25, producing CS0121 ambiguity for `ExecuteDeleteAsync` between EntityFrameworkQueryableExtensions (core, 9.x) and RelationalQueryableExtensions (relational, 8.x) and breaking the build. Dropping the dot freezes the base package too, honoring the "minimum compatible version per TFM" rule in CLAUDE.md. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
All repository-facing content (code, commits, PR titles/bodies, issue/PR comments, docs) must be in English, matching the convention already documented in the cldman and auto-compute repos. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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.
Problem
The current ignore pattern
Microsoft.EntityFrameworkCore.*(trailing dot) matches only the suffixed packages (.Relational,.SqlServer, …) and not the baseMicrosoft.EntityFrameworkCorepackage.As a result, Dependabot bumped the base package across a major (
8.0.25 → 9.0.17) on the net8.0 TFM while...Relationalstayed at8.0.25. Since EF Core 9 movedExecuteDeleteAsyncfromRelationalQueryableExtensionstoEntityFrameworkQueryableExtensions, net8.0 ended up with the method in both assemblies →CS0121(ambiguous call) → broken build (see #107).Fix
Dropping the dot (
Microsoft.EntityFrameworkCore*) also freezes the base package, honoring the rule inCLAUDE.md:Microsoft.Extensions.*needs no change — there is no baseMicrosoft.Extensionspackage.With this, Dependabot stops touching EF Core (bumps become manual, per TFM). #107 has been closed; the
dotnetgroup will be recreated without the EF Core bumps.Also
Adds a
## Languagesection toCLAUDE.mdrequiring English for all repository-facing content (code, commits, PRs, issue/PR comments, docs), matching the convention already documented in the cldman and auto-compute repos.🤖 Generated with Claude Code