Repoint JasperFx.SourceGeneration → JasperFx.SourceGenerator 2.0.1#2891
Merged
Conversation
The two JasperFx source-generator packages were merged into one (JasperFx/jasperfx#365). The CLI command-discovery + input-parser generators now ship in JasperFx.SourceGenerator (singular) instead of the retired JasperFx.SourceGeneration (noun). Same analyzer wiring (OutputItemType=Analyzer, ReferenceOutputAssembly=false); only the package id changes (2.0.0 -> 2.0.1). Closes #2890 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
dmytro-pryvedeniuk
pushed a commit
to dmytro-pryvedeniuk/wolverine
that referenced
this pull request
May 26, 2026
Patch release on the 6.0 line: keyed-service-location fix (via JasperFx 2.0.1, JasperFxGH-2878), SQS fair queues opt-in (JasperFx#2886), ancillary-store outbox per-store schema fix (JasperFx#2887), and the Critter Stack dependency refresh (JasperFx#2892, JasperFx#2891). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This was referenced May 28, 2026
Closed
This was referenced Jun 2, 2026
Merged
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.
Repoints core WolverineFx off the retired
JasperFx.SourceGeneration(noun) package onto the mergedJasperFx.SourceGenerator(singular)2.0.1, per JasperFx/jasperfx#365.The two JasperFx source-generator packages were combined into one: the CLI command-discovery + input-parser generators Wolverine consumes now ship in
JasperFx.SourceGeneratoralongside the OptionsDescription generator. The package versions in lockstep with theJasperFxcore package, starting at2.0.1(2.0.0of the singular package predates the merge and lacks the command generators, so2.0.1is required).Changes
Directory.Packages.props—JasperFx.SourceGeneration2.0.0→JasperFx.SourceGenerator2.0.1src/Wolverine/Wolverine.csproj—PackageReferenceid renamed (analyzer wiringOutputItemType="Analyzer"/ReferenceOutputAssembly="false"unchanged)The historical changelog comment in
Directory.Build.propsthat mentionsJasperFx.SourceGenerationwas intentionally left as-is (it's an accurate record of the alpha.5 bump).Verification
dotnet build wolverine.slnx— 0 errors, 0 warnings (live2.0.1analyzer resolves and generated code compiles across the solution).src/Testing/CoreTests— green: net10.0 1713/1713; net9.0 1712/1713 with one flakyTrackedSessiontimeout (envelope_username_tracking) that passes on isolated re-run and is unrelated to source generation.Closes #2890.