chore: sync dependabot ignore to STANDARD.md 4.10 (ignore floored packages entirely) - #93
Merged
Conversation
…kages entirely) NextIteration.Standards PR #26 changed §4.10: per-TFM-floored packages MUST be ignored with no update-types filter, not just semver-major. A name-scoped major-only ignore cannot protect a per-TFM floor — because the package name lives in both the net8 and net10 ItemGroups, a net10 minor/patch bump rewrites the net8 floor to a 10.x version (PR #89 did exactly that: 8.0.x -> 10.0.12). Sync this repo to the merged standard: - .github/dependabot.yml: drop update-types from the three floored-package ignore entries; rewrite the caveat comment. - Directory.Packages.props: update the cross-reference comment. Prevents Dependabot from regenerating the #89 net8-floor bump. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
StuartMeeks
deleted the
chore/sync-dependabot-ignore-to-standard-4.10
branch
September 21, 2026 06:37
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.
Syncs this repo to NextIteration.Standards §4.10 (fixed in StuartMeeks/NextIteration.Standards#26): per-TFM-floored packages must be ignored with no
update-typesfilter, not justsemver-major.Why
A name-scoped,
semver-major-only ignore can't protect a per-TFM floor. BecauseMicrosoft.Extensions.DependencyInjection.Abstractions,Microsoft.Extensions.Http, andSystem.Security.Cryptography.ProtectedDataappear under both the net8 and net10ItemGroups and Dependabot tracks one version per name, a net10 minor/patch bump gets applied to every entry — silently rewriting the net8 floor to a 10.x version. That's exactly what #89 did (8.0.x → 10.0.12).Changes
.github/dependabot.yml: dropupdate-typesfrom the three floored-package ignore entries (now ignored entirely); rewrite the caveat comment.Directory.Packages.props: update the cross-reference comment.Config + comments only — no code change. Prevents Dependabot regenerating the #89 net8-floor bump next Monday.
Follows #92 (the safe bumps from #89) and the merged standards fix.
🤖 Generated with Claude Code