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
<PackageReference Include="Akka.Persistence.MongoDb.Hosting" Version="1.5.55.1" />
<PackageVersion Include="Akka.Persistence.MongoDb.Hosting" Version="1.5.55.1" />
<PackageReference Include="Akka.Persistence.MongoDb.Hosting" />
paket add Akka.Persistence.MongoDb.Hosting --version 1.5.55.1
#r "nuget: Akka.Persistence.MongoDb.Hosting, 1.5.55.1"
#:package Akka.Persistence.MongoDb.Hosting@1.5.55.1
#addin nuget:?package=Akka.Persistence.MongoDb.Hosting&version=1.5.55.1
#tool nuget:?package=Akka.Persistence.MongoDb.Hosting&version=1.5.55.1
Akka Persistence journal and snapshot store backed by MongoDB database.
| Product | Versions 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. |
-
.NETFramework 4.7.2
- Akka.Persistence.Hosting (>= 1.5.55.1)
- Akka.Persistence.MongoDb (>= 1.5.55.1)
-
.NETStandard 2.1
- Akka.Persistence.Hosting (>= 1.5.55.1)
- Akka.Persistence.MongoDb (>= 1.5.55.1)
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)