Skip to content

Commit

Permalink
added v1.4.1 final release notes (#4323)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaronontheweb authored Mar 11, 2020
1 parent 70f37ec commit bedc54c
Show file tree
Hide file tree
Showing 2 changed files with 88 additions and 3 deletions.
48 changes: 48 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,51 @@
#### 1.4.1 March 11 2020 ####
**Major release for Akka.NET 1.4**

Akka.NET v1.4 is a non-breaking upgrade for all Akka.NET v1.3 and earlier users. It introduces many new features, all of which can be found in our ["What's new in Akka.NET v1.4" page](https://getakka.net/community/whats-new/akkadotnet-v1.4.html).

Major changes include:

* Akka.Cluster.Sharding and Akka.DistributedData are now out of beta status and are treated as mature modules.
* Akka.Remote's performance has significantly increased as a function of our new batching mode (see the numbers) - which is tunable via HOCON configuration to best support your needs. [Learn how to performance optimize Akka.Remote here](https://getakka.net/articles/remoting/performance.html).
* Added new Akka.Cluster.Metrics module to measure and broadcast the performance of each node, also includes some routers that can use this information to direct traffic to the "least busy" nodes.
* Added [Stream References to Akka.Streams](https://getakka.net/articles/streams/streamrefs.html), a feature which allows Akka.Streams graphs to span across the network.
* Moved from .NET Standard 1.6 to .NET Standard 2.0 and dropped support for all versions of .NET Framework that aren't supported by .NET Standard 2.0 - this means issues caused by our polyfills (i.e. SerializableAttribute) should be fully resolved now.
* Moved onto modern C# best practices, such as changing our APIs to support `System.ValueTuple` over regular tuples.

And hundreds of other fixes and improvements. See the full set of changes for Akka.NET v1.4 here:

* [Akka.NET v1.4 Milestone](https://github.com/akkadotnet/akka.net/milestone/17)
* [Akka.NET v1.4.1 Milestone](https://github.com/akkadotnet/akka.net/milestone/33)

| COMMITS | LOC+ | LOC- | AUTHOR |
| --- | --- | --- | --- |
| 199 | 41324 | 26885 | Aaron Stannard |
| 46 | 63 | 63 | dependabot-preview[bot] |
| 34 | 16800 | 6804 | Igor Fedchenko |
| 13 | 11671 | 1059 | Bartosz Sypytkowski |
| 10 | 802 | 317 | Ismael Hamed |
| 7 | 1876 | 362 | zbynek001 |
| 6 | 897 | 579 | Sean Gilliam |
| 5 | 95 | 986 | cptjazz |
| 5 | 4837 | 51 | Valdis Zobēla |
| 5 | 407 | 95 | Jonathan Nagy |
| 5 | 116 | 14 | Andre Loker |
| 3 | 992 | 77 | Gregorius Soedharmo |
| 3 | 2 | 2 | Arjen Smits |
| 2 | 7 | 7 | jdsartori |
| 2 | 4 | 6 | Onur Gumus |
| 2 | 15 | 1 | Kaiwei Li |
| 1 | 65 | 47 | Ondrej Pialek |
| 1 | 62 | 15 | Mathias Feitzinger |
| 1 | 3 | 3 | Abi |
| 1 | 3 | 1 | jg11jg |
| 1 | 18 | 16 | Peter Huang |
| 1 | 1 | 2 | Maciej Wódke |
| 1 | 1 | 1 | Wessel Kranenborg |
| 1 | 1 | 1 | Greatsamps |
| 1 | 1 | 1 | Christoffer Jedbäck |
| 1 | 1 | 1 | Andre |

#### 1.4.1-rc3 March 10 2020 ####
**Stable release candidate for Akka.NET 1.4**

Expand Down
43 changes: 40 additions & 3 deletions src/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,46 @@
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<PropertyGroup>
<PackageReleaseNotes>Stable release candidate for Akka.NET 1.4**
In Akka.NET v1.4.1-rc2 we rolled back all of the stand-alone HOCON additions and made Akka.NET v1.4 non-breaking.
[Akka.Persistence.Sql.Common: Fix, unsealed `JournalSettings` and `SnapshotStoreSettings` classes](https://github.com/akkadotnet/akka.net/pull/4319)</PackageReleaseNotes>
<PackageReleaseNotes>Major release for Akka.NET 1.4**
Akka.NET v1.4 is a non-breaking upgrade for all Akka.NET v1.3 and earlier users. It introduces many new features, all of which can be found in our ["What's new in Akka.NET v1.4" page](https://getakka.net/community/whats-new/akkadotnet-v1.4.html).
Major changes include:
Akka.Cluster.Sharding and Akka.DistributedData are now out of beta status and are treated as mature modules.
Akka.Remote's performance has significantly increased as a function of our new batching mode (see the numbers) - which is tunable via HOCON configuration to best support your needs. [Learn how to performance optimize Akka.Remote here](https://getakka.net/articles/remoting/performance.html).
Added new Akka.Cluster.Metrics module to measure and broadcast the performance of each node, also includes some routers that can use this information to direct traffic to the "least busy" nodes.
Added [Stream References to Akka.Streams](https://getakka.net/articles/streams/streamrefs.html), a feature which allows Akka.Streams graphs to span across the network.
Moved from .NET Standard 1.6 to .NET Standard 2.0 and dropped support for all versions of .NET Framework that aren't supported by .NET Standard 2.0 - this means issues caused by our polyfills (i.e. SerializableAttribute) should be fully resolved now.
Moved onto modern C# best practices, such as changing our APIs to support `System.ValueTuple` over regular tuples.
And hundreds of other fixes and improvements. See the full set of changes for Akka.NET v1.4 here:
[Akka.NET v1.4 Milestone](https://github.com/akkadotnet/akka.net/milestone/17)
[Akka.NET v1.4.1 Milestone](https://github.com/akkadotnet/akka.net/milestone/33)
| COMMITS | LOC+ | LOC- | AUTHOR |
| --- | --- | --- | --- |
| 199 | 41324 | 26885 | Aaron Stannard |
| 46 | 63 | 63 | dependabot-preview[bot] |
| 34 | 16800 | 6804 | Igor Fedchenko |
| 13 | 11671 | 1059 | Bartosz Sypytkowski |
| 10 | 802 | 317 | Ismael Hamed |
| 7 | 1876 | 362 | zbynek001 |
| 6 | 897 | 579 | Sean Gilliam |
| 5 | 95 | 986 | cptjazz |
| 5 | 4837 | 51 | Valdis Zobēla |
| 5 | 407 | 95 | Jonathan Nagy |
| 5 | 116 | 14 | Andre Loker |
| 3 | 992 | 77 | Gregorius Soedharmo |
| 3 | 2 | 2 | Arjen Smits |
| 2 | 7 | 7 | jdsartori |
| 2 | 4 | 6 | Onur Gumus |
| 2 | 15 | 1 | Kaiwei Li |
| 1 | 65 | 47 | Ondrej Pialek |
| 1 | 62 | 15 | Mathias Feitzinger |
| 1 | 3 | 3 | Abi |
| 1 | 3 | 1 | jg11jg |
| 1 | 18 | 16 | Peter Huang |
| 1 | 1 | 2 | Maciej Wódke |
| 1 | 1 | 1 | Wessel Kranenborg |
| 1 | 1 | 1 | Greatsamps |
| 1 | 1 | 1 | Christoffer Jedbäck |
| 1 | 1 | 1 | Andre |</PackageReleaseNotes>
</PropertyGroup>
<!-- SourceLink support for all Akka.NET projects -->
<ItemGroup>
Expand Down

0 comments on commit bedc54c

Please sign in to comment.