Upgrade JasperFx to 2.39.5 - #3837
Merged
Merged
Conversation
Picks up #632, which fixes the Count accounting Wolverine's back-pressure reads: PushUpstream built its BlockSet with an empty 'previous' list, so the downstream block -- the one actually executing the work -- was invisible to the set. Count double-counted the top transform stage and reported ZERO for any backlog held downstream. ShardedExecutionBlock.DeserializeFirst composes exactly that shape for both BufferedReceiver and DurableReceiver, so a PartitionProcessingByGroupId endpoint latched back-pressure against the wrong number and then decided whether to RESUME against that same wrong number. Also in the range: #600/#601 (the app-assembly stack walk could adopt a test runner -- GH-3776/GH-3777) and #599 (DatabaseId escaping surviving a System.Uri round trip). JasperFx.RuntimeCompiler stays on its own 5.x line. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01WHAuhdWS3XeAk16swV9G8m
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.
Bumps
JasperFx,JasperFx.Events,JasperFx.Events.SourceGeneratorandJasperFx.SourceGeneratorfrom 2.37.0 to 2.39.5.JasperFx.RuntimeCompilerstays on its own 5.x line.Why now
The headline is JasperFx/jasperfx#632, which fixes the
Countaccounting Wolverine's back-pressure reads:ShardedExecutionBlock.DeserializeFirstcomposes exactly that shape, for bothBufferedReceiverandDurableReceiver. So aPartitionProcessingByGroupIdendpoint latched back-pressure against the wrong number and then decided whether to resume against that same wrong number — the sharded slots can hold thousands of messages the limits never see.This is the companion to #3831 (merged): that PR made a latched listener say so, this one makes the number it says correct. Both come out of the permanently-latched console ingest listener at CritterWatch#922.
Also in the 2.37.0..2.39.5 range:
CallingAssembly.Find()rendered the stack as text and guessed each frame's assembly by trying toAssembly.Loadprogressively shorter dotted prefixes, which resolved NUnit'snunit.frameworkexactly and missed xUnit'sxunit.v3.coreentirely. This is the JasperFx side of CIPolecat red on main since 1dfdd42a1: bisected to a version-string bump, mechanism unknown #3776/Never adopt a test-runner assembly as the application assembly (GH-3776) #3777. (The GH-3521 application-assembly warning has a hole on one path and fires on healthy hosts on the other #3778, the Wolverine-side twin, is untouched and stays open.)DatabaseId's escaping now survives aSystem.Uriround trip.Verification
dotnet build wolverine.slnx -c ReleaseMartenTests.concurrency_resilient_sharded_processingI confirmed the restore genuinely resolved 2.39.5 rather than reporting a green build off a stale graph — 336 targets on 2.39.5, package present in the local cache.
Four projects still showed 2.37.0 in stale
project.assets.jsonfiles. All four are<Build Project="false" />inwolverine.slnx, so the solution build never touches them. I built them directly anyway, becauseCIHttpAspVersioningruns one of them in CI:Wolverine.Http.AspVersioning.Tests— clean.PolecatIncidentService.Tests— 13 analyzer errors (xUnit1051, VSTHRD103). Pre-existing: I re-ran it against 2.37.0 and got the identical 13, so it is unrelated to this bump. That sample is rotting quietly behind itsBuild=falseflag and deserves its own issue.Not in scope
Marten stays at 9.22.2. Marten 9.22.4 is the release built against JasperFx 2.39.3, but it also floors
Weasel.Postgresql/Weasel.Storageat 9.23.2 while Wolverine directly pins Weasel at 9.23.0 — an NU1605 downgrade that drags a seven-package Weasel bump along with it. Marten 9.22.2's JasperFx floor of 2.37.0 is satisfied by 2.39.5, so the unification is legal as-is. Separate PR.🤖 Generated with Claude Code
https://claude.ai/code/session_01WHAuhdWS3XeAk16swV9G8m