Akka 0.7.1
| Advisory: https://github.com/advisories/GHSA-gpv5-rp6w-58r8 | Severity: moderate |
See the version list below for details.
dotnet add package Akka --version 0.7.1
NuGet\Install-Package Akka -Version 0.7.1
<PackageReference Include="Akka" Version="0.7.1" />
<PackageVersion Include="Akka" Version="0.7.1" />
<PackageReference Include="Akka" />
paket add Akka --version 0.7.1
#r "nuget: Akka, 0.7.1"
#:package Akka@0.7.1
#addin nuget:?package=Akka&version=0.7.1
#tool nuget:?package=Akka&version=0.7.1
Akka.NET is a port of the popular Java/Scala framework Akka to .NET
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- Newtonsoft.Json (>= 6.0.1)
GitHub repositories (14)
Showing the top 14 popular GitHub repositories that depend on Akka:
| Repository | Stars |
|---|---|
|
neo-project/neo
NEO Smart Economy
|
|
|
petabridge/akka-bootcamp
Self-paced training course to learn Akka.NET fundamentals from scratch
|
|
|
petabridge/akkadotnet-code-samples
Akka.NET professional reference code samples
|
|
|
petabridge/NBench
Performance benchmarking and testing framework for .NET applications :chart_with_upwards_trend:
|
|
|
ThembisileNGQ/Akkatecture
a cqrs and event sourcing framework for dotnet core using akka.net
|
|
|
merken/Prise
A .NET Plugin Framework.
|
|
|
axzxs2001/Asp.NetCoreExperiment
原来所有项目都移动到**OleVersion**目录下进行保留。新的案例装以.net 5.0为主,一部分对以前案例进行升级,一部分将以前的工作经验总结出来,以供大家参考!
|
|
|
Chinchilla-Software-Com/CQRS
A lightweight enterprise Function as a Service (FaaS) framework to write function based serverless and micro-service applications in hybrid multi-datacentre, on-premise and Azure environments.
|
|
|
akkadotnet/Hyperion
Polymorphic serialization for .NET
|
|
|
Aaronontheweb/InMemoryCQRSReplication
Akka.NET Reference Architecture - CQRS + Sharding + In-Memory Replication
|
|
|
superquanter/quanter
从原来的StockTrader迁移过来
|
|
|
petabridge/akka-monitoring
Monitoring system instrumentation for Akka.NET actor systems
|
|
|
Horusiath/AkkaCQRS
Event sourcing example build on Akka.NET with persistence plugin
|
|
|
petabridge/TurboMqtt
The fastest Message Queue Telemetry Transport (MQTT) client for .NET.
|
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 1.0.1 | 2,330 | 4/28/2015 | |
| 1.0.0 | 2,362 | 4/9/2015 | |
| 1.0.0-dev1504032244 | 97 | 4/3/2015 | |
| 0.8.0 | 1,320 | 2/12/2015 | |
| 0.7.1 | 494 | 12/13/2014 | |
| 0.7.0 | 418 | 10/20/2014 | |
| 0.6.4 | 364 | 9/3/2014 | |
| 0.6.3 | 391 | 8/16/2014 | |
| 0.6.2 | 227 | 8/5/2014 | |
| 0.6.1 | 252 | 7/10/2014 | |
| 0.6.0 | 220 | 6/23/2014 | |
| 0.5.8 | 93 | 5/23/2014 | |
| 0.5.2 | 184 | 4/29/2014 | |
| 0.5.0 | 182 | 4/16/2014 | |
| 0.2.1-beta | 76 | 3/22/2014 | |
| 0.2.0-beta | 69 | 3/19/2014 |
__Brand New F# API__. The entire F# API has been updated to give it a more native F# feel while still holding true to the Erlang / Scala conventions used in actor systems. [Read more about the F# API changes](https://github.com/akkadotnet/akka.net/pull/526).
__Multi-Node TestKit (Alpha)__. Not available yet as a NuGet package, but the first pass at the Akka.Remote.TestKit is now available from source, which allow you to test your actor systems running on multiple machines or processes.
A multi-node test looks like this
public class InitialHeartbeatMultiNode1 : InitialHeartbeatSpec
{
}
public class InitialHeartbeatMultiNode2 : InitialHeartbeatSpec
{
}
public class InitialHeartbeatMultiNode3 : InitialHeartbeatSpec
{
}
public abstract class InitialHeartbeatSpec : MultiNodeClusterSpec
The MultiNodeTestRunner looks at this, works out that it needs to create 3 processes to run 3 nodes for the test.
It executes NodeTestRunner in each process to do this passing parameters on the command line. [Read more about the multi-node testkit here](https://github.com/akkadotnet/akka.net/pull/497).
__Breaking Change to the internal api: The `Next` property on `IAtomicCounter<T>` has been changed into the function `Next()`__ This was done as it had side effects, i.e. the value was increased when the getter was called. This makes it very hard to debug as the debugger kept calling the property and causing the value to be increased.
__Akka.Serilog__ `SerilogLogMessageFormatter` has been moved to the namespace `Akka.Logger.Serilog` (it used to be in `Akka.Serilog.Event.Serilog`).
Update your `using` statements from `using Akka.Serilog.Event.Serilog;` to `using Akka.Logger.Serilog;`.
__Breaking Change to the internal api: Changed signatures in the abstract class `SupervisorStrategy`__. The following methods has new signatures: `HandleFailure`, `ProcessFailure`. If you've inherited from `SupervisorStrategy`, `OneForOneStrategy` or `AllForOneStrategy` and overriden the aforementioned methods you need to update their signatures.
__TestProbe can be implicitly casted to ActorRef__. New feature. Tests requring the `ActorRef` of a `TestProbe` can now be simplified:
``` C#
var probe = CreateTestProbe();
var sut = ActorOf<GreeterActor>();
sut.Tell("Akka", probe); // previously probe.Ref was required
probe.ExpectMsg("Hi Akka!");
```
__Bugfix for ConsistentHashableEvenlope__. When using `ConsistentHashableEvenlope` in conjunction with `ConsistentHashRouter`s, `ConsistentHashableEvenlope` now correctly extracts its inner message instead of sending the entire `ConsistentHashableEvenlope` directly to the intended routee.
__Akka.Cluster group routers now work as expected__. New update of Akka.Cluster - group routers now work as expected on cluster deployments. Still working on pool routers. [Read more about Akka.Cluster routers here](https://github.com/akkadotnet/akka.net/pull/489).