chore(deps): bump Microsoft.Extensions.Logging.Abstractions to 10.0.10 on net8.0 - #85
Merged
Merged
Conversation
…0 on net8.0 Raises the net8.0 pin from 8.0.3 to 10.0.10 (already 10.0.10 on net10.0). This is a prerequisite for the StackExchange.Redis 3.0 upgrade, which has a hard transitive dependency on Microsoft.Extensions.Logging.Abstractions >= 10.0.5 — with the net8.0 pin at 8.0.3 the 3.0 bump fails restore (NU1605 package downgrade). Landing it separately keeps the SE.Redis 3.0 change isolated. Logging.Abstractions 10.x targets net8.0, so net8.0 consumers remain compatible; they now transitively resolve the 10.x abstractions package. Full suite green on net8.0 and net10.0 (1174/1174 each). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Signed-off-by: Cosmin Staicu <cosmin.staicu@uipath.com>
cosmin-staicu
requested review from
alinahornet,
cosminvlad,
litheon,
lucianaparaschivei and
razvalex
as code owners
July 16, 2026 20:00
5 tasks
Microsoft.Extensions.Logging.Abstractions (10.0.10, now identical on both TFMs after the net8.0 bump) and Swashbuckle.AspNetCore (10.2.3, already identical) were duplicated across the net8.0/net10.0 conditional groups. Moved both to the unconditional ItemGroup — a package pinned to the same version regardless of target framework does not belong in a per-TFM group. The remaining Microsoft.Extensions.* packages stay TFM-split (8.0.x on net8.0, 10.0.x on net10.0) on purpose: they are shared-framework packages, so net8.0 consumers resolve the framework-provided 8.0.x assemblies rather than being forced onto standalone 10.x ones. Logging.Abstractions is the sole exception, forced to 10.x by StackExchange.Redis 3.0, and it ships a net8.0-specific asset. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Signed-off-by: Cosmin Staicu <cosmin.staicu@uipath.com>
|
5 tasks
alinahornet
approved these changes
Jul 17, 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.



Summary
Raises the
net8.0pin ofMicrosoft.Extensions.Logging.Abstractionsfrom8.0.3to10.0.10(net10.0 is already at 10.0.10). This is a prerequisite for the StackExchange.Redis 3.0 upgrade, landed separately to keep the SE.Redis 3.0 change isolated.Why now
StackExchange.Redis
3.0.17has a hard transitive dependency onMicrosoft.Extensions.Logging.Abstractions >= 10.0.5. With thenet8.0pin at8.0.3, restoring the 3.0 bump fails withNU1605(package downgrade, warning-as-error). Bumping the abstractions package first unblocks 3.0.Microsoft.Extensions.Logging.Abstractions10.x targetsnet8.0, sonet8.0consumers stay compatible — they now transitively resolve the 10.x abstractions package. No othernet8.0Microsoft.Extensions.*pins change, and the build has no dependency cascade.Changes
Directory.Packages.props:net8.0Microsoft.Extensions.Logging.Abstractions8.0.3→10.0.10.[Unreleased].Test plan
dotnet test)Full suite green on net8.0 and net10.0 — 1174/1174 each — run with
RUN_REDIS_INTEGRATION_TESTS=1against a live Redis.Linked issues
Fixes #
Contributor declaration
git commit -s).🤖 Generated with Claude Code