Akka.Serialization.TestKit
1.4.15-beta
Prefix Reserved
See the version list below for details.
dotnet add package Akka.Serialization.TestKit --version 1.4.15-beta
NuGet\Install-Package Akka.Serialization.TestKit -Version 1.4.15-beta
<PackageReference Include="Akka.Serialization.TestKit" Version="1.4.15-beta" />
<PackageVersion Include="Akka.Serialization.TestKit" Version="1.4.15-beta" />
<PackageReference Include="Akka.Serialization.TestKit" />
paket add Akka.Serialization.TestKit --version 1.4.15-beta
#r "nuget: Akka.Serialization.TestKit, 1.4.15-beta"
#:package Akka.Serialization.TestKit@1.4.15-beta
#addin nuget:?package=Akka.Serialization.TestKit&version=1.4.15-beta&prerelease
#tool nuget:?package=Akka.Serialization.TestKit&version=1.4.15-beta&prerelease
Serialization TestKit for Akka.NET
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 is compatible. 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.1 is compatible. |
| .NET Framework | net471 is compatible. net472 was computed. net48 was computed. net481 was computed. |
-
.NETCoreApp 3.1
- Akka.Tests.Shared.Internals (>= 1.4.15)
-
.NETFramework 4.7.1
- Akka.Tests.Shared.Internals (>= 1.4.15)
-
net5.0
- Akka.Tests.Shared.Internals (>= 1.4.15)
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.65-beta | 42 | 4/10/2026 |
| 1.5.64-beta | 48 | 3/31/2026 |
| 1.5.63-beta | 44 | 3/23/2026 |
| 1.5.62-beta | 58 | 3/3/2026 |
| 1.5.61-beta | 57 | 2/26/2026 |
| 1.5.60-beta | 56 | 2/10/2026 |
| 1.5.59-beta | 56 | 1/26/2026 |
| 1.5.58-beta | 68 | 1/8/2026 |
| 1.5.57-beta2-beta | 635 | 12/3/2025 |
| 1.5.57-beta1-beta | 641 | 12/2/2025 |
| 1.5.57-beta | 398 | 12/11/2025 |
| 1.5.56-beta | 155 | 11/25/2025 |
| 1.5.55-beta | 157 | 10/26/2025 |
| 1.5.54-beta | 108 | 10/17/2025 |
| 1.5.53-beta | 143 | 10/10/2025 |
| 1.5.52-beta | 157 | 10/6/2025 |
| 1.5.51-beta | 164 | 10/1/2025 |
| 1.5.50-beta | 178 | 9/22/2025 |
| 1.5.49-beta | 154 | 9/10/2025 |
| 1.4.15-beta | 373 | 1/20/2021 |
Maintenance Release for Akka.NET 1.4**
Akka.NET v1.4.15 introduces a new module, Akka.DependencyInjection, which will replace Akka.DI.Core and all of the libraries which depend on it. This seemed like the easiest way to preserve backwards compatibility - simple deprecate the old package and replace it with a new one.
So what does Akka.DependencyInjection do differently than Akka.DI.Core?
1. **Allows users to pass in an [`IServiceProvider`](https://docs.microsoft.com/en-us/dotnet/api/system.iserviceprovider) into the `ActorSystem` before the latter is created, via [a new kind of programmatic configuration `Setup` that was introduced in Akka.NET v1.4](https://getakka.net/articles/concepts/configuration.html#programmatic-configuration-with-setup)**. This ensures that the `IServiceProvider` is immutable within an `ActorSystem`, a problem that we have currently with Akka.DI.Core.
2. **Makes it easy to access the `IServiceProvider` via the `Akka.DependencyInjection.ServiceProvider.For(ActorSystem)` method**, which is what we can use to get access to the service provider in order to consume required services inside our actors.
3. **Makes it possible to dependency inject some parameters will dynamically specifying some others**, something that users have been asking for since 2015.
To see a full example of how to use Akka.DependencyInjection in concert with Microsoft.Extensions.DependencyInjection, please see https://getakka.net/articles/actors/dependency-injection.html
Other changes:
[Akka: Add `WithConfigFallback` quality of life helper method to `BootstrapSetup`](https://github.com/akkadotnet/akka.net/pull/4714)
[Akka.MultiNodeTestRunner: Provide .NET 5.0 support for MultiNode TestKit](https://github.com/akkadotnet/akka.net/issues/4602)
To see the [full set of fixes in Akka.NET v1.4.15, please see the milestone on Github](https://github.com/akkadotnet/akka.net/milestone/46).
| COMMITS | LOC+ | LOC- | AUTHOR |
| --- | --- | --- | --- |
| 8 | 5351 | 4004 | Aaron Stannard |
| 3 | 5 | 5 | dependabot-preview[bot] |
| 2 | 369 | 170 | Ebere Abanonu |
| 1 | 7 | 0 | Gregorius Soedharmo |