Akka.Persistence.MongoDb.Hosting 1.5.55.1

Prefix Reserved
dotnet add package Akka.Persistence.MongoDb.Hosting --version 1.5.55.1
                    
NuGet\Install-Package Akka.Persistence.MongoDb.Hosting -Version 1.5.55.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Akka.Persistence.MongoDb.Hosting" Version="1.5.55.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Akka.Persistence.MongoDb.Hosting" Version="1.5.55.1" />
                    
Directory.Packages.props
<PackageReference Include="Akka.Persistence.MongoDb.Hosting" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Akka.Persistence.MongoDb.Hosting --version 1.5.55.1
                    
#r "nuget: Akka.Persistence.MongoDb.Hosting, 1.5.55.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Akka.Persistence.MongoDb.Hosting@1.5.55.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Akka.Persistence.MongoDb.Hosting&version=1.5.55.1
                    
Install as a Cake Addin
#tool nuget:?package=Akka.Persistence.MongoDb.Hosting&version=1.5.55.1
                    
Install as a Cake Tool

Akka Persistence journal and snapshot store backed by MongoDB database.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.5.55.1 274 10/29/2025
1.5.55 173 10/27/2025
1.5.53 183 10/15/2025
1.5.42 3,155 5/22/2025
1.5.41-beta1 134 4/4/2025
1.5.40 586 3/27/2025
1.5.37 1,500 1/24/2025
1.5.32 682 12/23/2024
1.5.32-beta1 115 12/6/2024
1.5.31 510 12/4/2024
1.5.30 3,031 10/3/2024
1.5.29 192 10/1/2024
1.5.28 5,368 9/11/2024
1.5.26 4,064 7/15/2024
1.5.12.1 3,410 9/15/2023
1.5.12 503 8/10/2023
1.5.0.2 225 9/18/2023
1.5.0.1 238 9/15/2023

**Improved API**

This release introduces the simplified Akka.Hosting 1.5.55.1 API for connectivity health checks, eliminating redundant parameter passing:

**New Simplified API (Recommended):**
```csharp
journalBuilder: journal =>
{
   journal.WithConnectivityCheck(); // Options automatically accessed from builder
}
```

**Previous API (Still Supported):**
```csharp
journalBuilder: journal =>
{
   journal.WithConnectivityCheck(journalOptions); // Explicit parameter passing
}
```

The new API automatically accesses options from `builder.Options`, making the code cleaner and less error-prone. The previous API is marked as `[Obsolete]` but remains functional for backward compatibility.

* Update `WithConnectivityCheck()` extension methods to use simplified Akka.Hosting 1.5.55.1 API pattern
* Upgraded to [Akka.Hosting 1.5.55.1](https://github.com/akkadotnet/Akka.Hosting/releases/tag/1.5.55.1)