Bump Akka.Streams from 1.5.42 to 1.5.54 #68
Closed
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 Akka.Streams from 1.5.42 to 1.5.54.
Release notes
Sourced from Akka.Streams's releases.
1.5.54
1.5.54 October 17th, 2025
Akka.NET v1.5.54 is a patch release containing important bug fixes for Akka.Streams and Akka.DistributedData.
Bug Fixes:
Fix SourceRef.Source and SinkRef.Sink non-idempotent property bug - Fixes issue #7895 where
ISourceRef<T>.SourceandISinkRef<T>.Sinkproperties created new stage instances on every access, causing race conditions and intermittent subscription timeouts. These properties are now idempotent usingLazy<T>, preventing failures from accidental property access (debugger inspection, logging, serialization frameworks).Fix LWWDictionary.Delta ArgumentNullException when underlying delta is null - Fixes issue #7910 where
LWWDictionary.Deltawould throwArgumentNullExceptionwhen the underlyingORDictionary.Deltawasnull, which is a legitimate state after initialization or callingResetDelta().1 contributor since release 1.5.53
Changes:
This list of changes was auto generated.
1.5.53
1.5.53 October 9th, 2025
Akka.NET v1.5.53 is a security patch containing important fixes for TLS/SSL hostname validation and improved error diagnostics for certificate authentication issues.
Security Fixes:
validate-certificate-hostnameconfiguration option toakka.remote.dot-netty.tcp(defaults tofalsefor backward compatibility) and introduces type-safe validation APIs through the newTlsValidationCallbacksfactory class.Improvements:
1 contributor since release 1.5.52
To see the full set of changes in Akka.NET v1.5.53, click here
Changes:
This list of changes was auto generated.
1.5.52
1.5.52 October 6th, 2025
SECURITY PATCH
Akka.NET v1.5.52 is a security patch containing crucial fixes for enforcing certificate-based authentication using mTLS enforcement. Please see https://getakka.net/articles/remoting/security.html for details on how this works.
Other fixes:
1 contributors since release 1.5.51
To see the full set of changes in Akka.NET v1.5.52, click here
Changes:
ShardedDaemonSets: randomize starting worker index (#7857) (#7874)This list of changes was auto generated.
1.5.51
1.5.51 October 1st, 2025
Akka.NET v1.5.51 is a minor patch containing a remoting bug fix and add required codes to support persistence health check.
2 contributors since release 1.5.50
To see the full set of changes in Akka.NET v1.5.51, click here
Changes:
This list of changes was auto generated.
1.5.50
1.5.50 September 22nd, 2025
Akka.NET v1.5.50 is a minor patch containing a bug fix.
1 contributor since release 1.5.49
To see the full set of changes in Akka.NET v1.5.50, click here
Changes:
This list of changes was auto generated.
1.5.49
1.5.49 September 10th, 2025
Akka.NET v1.5.49 is a minor patch containing several bug fixes.
3 contributors since release 1.5.48
To see the full set of changes in Akka.NET v1.5.49, click here
Changes:
Replicator.ReceiveUnsubscribeboolean logic (#7806) (#7809) [ #7804 ]This list of changes was auto generated.
1.5.48
1.5.48 August 21st, 2025
Akka.NET v1.5.48 is a minor patch containing stability improvement to Akka.TestKit.
2 contributors since release 1.5.47
To see the full set of changes in Akka.NET v1.5.48, click here
Changes:
This list of changes was auto generated.
1.5.47
1.5.47 August 12th, 2025
Akka.NET v1.5.47 is a minor patch containing several stability improvements to Akka.TestKit.
4 contributors since release 1.5.46
To see the full set of changes in Akka.NET v1.5.47, click here
Changes:
See More
This list of changes was auto generated.
1.5.46
1.5.46 July 17th, 2025
Akka.NET v1.5.46 is a minor patch containing a fix for the Akka.IO.Dns extension.
3 contributors since release 1.5.45
To see the full set of changes in Akka.NET v1.5.46, click here
Changes:
This list of changes was auto generated.
1.5.45
1.5.45 July 7th, 2025
Akka.NET v1.5.45 is a minor patch containing bug fixes for Core Akka and Akka.Cluster.Sharding plugin.
ShardingConsumerControllerImplshutdownFailuretoExceptionforAsk<object>Settings.InjectTopLevelFallbackrace conditionSupervision Strategy For Sharding Remembered Entities
SupervisorStrategyproperty toClusterShardingSettings. You can use any type ofSupervisionStrategy, but it is recommended that you inheritShardSupervisionStrategyif you're making your own custom supervision strategy.SupervisionStrategydecisions and stops remembered entities if theSupervisionStrategy.Deciderreturned aDirective.Stopor if there is a maximum restart retry limitation.4 contributors since release 1.5.44
To see the full set of changes in Akka.NET v1.5.45, click here
Changes:
Settings.InjectTopLevelFallbackrace condition (#7721)See More
TreatWarningsAsErrors(#7708)This list of changes was auto generated.
1.5.44
1.5.44 June 19th, 2025
Akka.NET v1.5.44 is a minor patch that contains a bug fix to the Akka.Persistence plugin.
3 contributors since release 1.5.43
To see the full set of changes in Akka.NET v1.5.44, click here.
Changes:
See More
EventSourcedtimer is cancelled when persistent actor is stopped (#7693)RELEASE_NOTES.md(#7688)This list of changes was auto generated.
1.5.43
1.5.43 June 10th, 2025
Akka.NET v1.5.43 contains several bug fixes and also adds new quality of life features.
ReadJournalForAPI methodNew Akka.Analyzer Rules
We've added three new Akka.Analyzer rules, AK2003, AK2004, and AK2005. All of them addresses the same Akka anti-pattern where a
void asyncdelegate is being passed into theReceiveActor.Receive<T>()(AK2003),IDslActor.Receive<T>()(AK2004), andReceivePersistentActor.Command<T>()(AK2005) message handlers.Here are the documentation for each new rules:
4 contributors since release 1.5.42
To see the full set of changes in Akka.NET v1.5.43, click here.
What's Changed
ReadJournalForAPI by @Arkatufus in [Query] Add non-genericReadJournalForAPI akkadotnet/akka.net#7679FilterOnFallbackPortdocumentation by @Arkatufus in AddFilterOnFallbackPortdocumentation akkadotnet/akka.net#7683New Contributors
... (truncated)
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 mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@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)