build(deps): pin Microsoft.CodeAnalysis to v5.0.0 to fix interception bug#83
Merged
ncipollina merged 1 commit intomainfrom Mar 23, 2026
Merged
Conversation
Downgrades Microsoft.CodeAnalysis.Common and Microsoft.CodeAnalysis.CSharp from 5.3.0 to 5.0.0 to work around a bug in the newer version that breaks source generator interception. Also updates AWSSDK.DynamoDBv2 (4.0.15 → 4.0.17), Scriban (6.6.0 → 7.0.0), and bumps VersionPrefix to 1.0.6. Co-Authored-By: Claude Sonnet 4.6 <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.
Summary
Downgrades
Microsoft.CodeAnalysis.CommonandMicrosoft.CodeAnalysis.CSharpfrom5.3.0to5.0.0to work around a bug in the newer release that breaks source generator interception. The remaining dependency updates (AWSSDK.DynamoDBv2,Scriban) were already in the working tree and are included here.VersionPrefixis bumped to1.0.6to reflect this patch-level change.Changes
Microsoft.CodeAnalysis.Common+Microsoft.CodeAnalysis.CSharp:5.3.0→5.0.0(pinned to avoid interception regression)AWSSDK.DynamoDBv2:4.0.15→4.0.17Scriban:6.6.0→7.0.0VersionPrefix:1.0.5→1.0.6Validation
dotnet buildpasses with the pinned versions5.0.0Release Notes
Patch release
1.0.6— pinsMicrosoft.CodeAnalysisto5.0.0to restore correct source generator interception behaviour broken in5.3.0.Notes for Reviewers
The
Microsoft.CodeAnalysis.Analyzerspackage remains at5.3.0as it is a build-time-only analyzer with no runtime impact and is unaffected by the interception bug. The pin onCommonandCSharpshould be revisited once a fixed upstream release is available.