Bump WolverineFx from 6.24.4 to 6.24.6 - #547
Open
dependabot[bot] wants to merge 1 commit into
Open
Conversation
--- updated-dependencies: - dependency-name: WolverineFx dependency-version: 6.24.6 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.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.
Updated WolverineFx from 6.24.4 to 6.24.6.
Release notes
Sourced from WolverineFx's releases.
6.24.6
A bug-fix release. The headline is a message ordering regression affecting every transport built on
BatchedSender— if you rely on FIFO ordering anywhere, this release matters to you.Highlights
Message ordering restored in
BatchedSender(#3825).BatchedSenderran its serializing stage atEnvironment.ProcessorCount, so envelopes reached the batching block in serialization-completion order rather than enqueue order.This was a silent regression from the switch off TPL Dataflow.
ActionBlockdefaultsMaxDegreeOfParallelismto 1 — ordered by default — and the Channels rewrite raised it without the ordering guarantee being restated anywhere. The block was ordered for years, then quietly wasn't. The practical effect: FIFO ordering was not honored under Azure Service Bus sessions, SQS FIFO message groups, or global partitioning, on every transport that usesBatchedSender. Nothing was lost; messages arrived out of order. Fixed by returning the stage to a degree of parallelism of 1 — everything downstream was already serial.A second, independent defect fell out of the same investigation:
TrackedSession.AllRecordsInOrder()sorted bySessionTime, which isElapsedMilliseconds— whole milliseconds. An entire receive batch ties, and the stable sort then fell back to enumerating a Guid-keyed cache with no relation to real order. Every ordering assertion in the test suite was at the mercy of this. Records now carry a monotonic sequence number.Back-pressure now works on the right number, and says what it is (#3831, jasperfx#632). A latched listener logged exactly one
too busyline and then nothing — forever. An operator watching a queue grow for 40 minutes could not distinguish "still draining" from "wedged". Underneath that, the count aPartitionProcessingByGroupIdendpoint latched and resumed against was wrong: the downstream block holding the backlog was invisible to it, soCountreported zero for work that was really there.BackPressureAgentlogs a periodic warning while a listener stays latched, carrying the queue count and the restart threshold the resume decision is made from.ValueTaskfault, and the listener silently never resumed.BufferedReceiver/DurableReceiverwire the receiving block'sOnErrortoILogger. A terminally-faulted block freezes the queue count and permanently latches the listener; that now logs at Critical instead of vanishing to stderr.A tenanted Azure Service Bus endpoint could not send at all (#3826) — tenanted or untenanted.
TenantedSenderdeliberately does not implementISenderRequiresCallback, but callback registration did not recurse, so aBatchedSenderunderneath it kept a null callback and threwInvalidOperationException: This sender has not been registered.on every batch. The tenanted path now uses inline senders, matching how Redis, MQTT, and Pub/Sub already worked around this.Oracle queue identity round-trip (#3820).
System.Urilowercases the authority component while Oracle uppercases its queue identifiers, soToOracleQueue()resolved a second endpoint over the same physical tables. Also fixes a dead final-attempt error handler: awhenclause that included the loop counter made the descriptive exception at the bottom of the retry loop unreachable.Behavior change worth reading
TrackedSessionnow completes only when all conditions are satisfied, not the first (#3824). This is a public testing API. A tracked session configured with several expectations previously returned as soon as any one of them was met, which means some existing tests were passing vacuously. After upgrading, such a test waits for every condition — and may now fail where it previously passed. That failure is generally revealing a real gap rather than introducing one.Other changes
Countfix above, this carries jasperfx#600/#601 — the application-assembly stack walk could adopt a test-runner assembly and then scan an assembly holding none of your types — and jasperfx#599, whereDatabaseId's escaping now survives aSystem.Uriround trip.EventSubscriptionAgentFamily.DatabaseKeyOfandTenantNeutralKeyOfare now public (#3819).Testing and CI
No runtime behavior changes here, but this is why the fixes above became findable. The
Category=Flakyexclusion list went from 12 tagged classes to zero (#3763) — and several of those tags turned out to have been added in the very commit that introduced the feature they test, hiding working code rather than broken code. Every CI readiness gate now fails loudly instead of warning and continuing; the Kafka gate in particular was a no-op that passed in 0.0s against a broker that would not serve metadata for another 3 seconds (#3814). The retry ledger records why a test flaked rather than only which one (#3787), andCIAzureServiceBuswas sharded three ways on measured per-class durations (#3790).What's Changed
docker compose upso a registry timeout does not redden main by @jeremydmiller in Retrydocker compose upso a registry timeout does not redden main JasperFx/wolverine#3807... (truncated)
6.24.5
Highlights
Multi-database projection & subscription assignment got a major reliability pass. For sharded event stores, Wolverine assigns the agents for projections and subscriptions in groups by database — so connection pools scale with the number of databases rather than nodes × databases:
Durable outbox to SNS/SQS FIFO destinations is fixed (#3793):
EnvelopeSerializernever round-trippedEnvelope.DeduplicationId, so any envelope recovered from durable storage after an outage was re-sent withoutMessageDeduplicationIdand rejected deterministically by a FIFO destination without content-based deduplication — retrying forever or dead-lettering. Also fixed alongside it: the circuit-resume ping could never reach a FIFO destination (a latched sender could never unlatch), and SNS sentMessageDeduplicationIdto standard topics, which AWS rejects. The same fix is merged to the 5.x maintenance branch and will ship in the next 5.40.x release for .NET 8 users.Balanced-mode host shutdown no longer hangs (#3781): stopping a node while agent commands were queued could pay a full agent-batch reply window per queued command — measured at 17+ minutes. Now ~2 minutes on the same reproduction.
Azure Service Bus conventional routing sanitizes entity names (#3786): a handler for an array message type (e.g.
Handle(Foo[])) produced an illegal ASB entity name that broke broker startup for the whole assembly, and the real reason was lost. Names are sanitized and failures now carry the offending name.What's Changed
Full Changelog: JasperFx/wolverine@V6.24.3...V6.24.5
Commits viewable in compare view.
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)