Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump AkkaVersion from 1.4.21 to 1.4.23 #246

Merged
merged 1 commit into from Aug 11, 2021

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 10, 2021

Bumps AkkaVersion from 1.4.21 to 1.4.23.
Updates Akka from 1.4.21 to 1.4.23

Release notes

Sourced from Akka's releases.

Akka.NET v1.4.23

1.4.23 August 09 2021

Maintenance Release for Akka.NET 1.4

Akka.NET v1.4.23 is designed to patch an issue that occurs on Linux machines using Akka.Cluster.Sharding with akka.cluster.sharding.state-store-mode=ddata and akka.cluster.sharding.remember-entities=on: "System.DllNotFoundException: Unable to load shared library 'lmdb' or one of its dependencies"

In Akka.NET v1.4.21 we added built-in support for Akka.DistributedData.LightningDb for use with the remember-entities setting, but we never received any reports about this issue until shortly after v1.4.22 was released. Fundamentally, the problem was that our downstream dependency, Lightning.NET, doesn't include any of the necessary Linux native binaries in their distributions currently. So in the meantime, we've published our own "vendored" distribution of Lightning.NET to NuGet until a new official one is released that includes these binaries.

There are some other small fixes included in Akka.NET v1.4.23 and you can read about them here.

COMMITS LOC+ LOC- AUTHOR
8 136 2803 Aaron Stannard
2 61 3 Gregorius Soedharmo

Changes:

  • be40344569f9dc3577a813c196d7f598827b9029 Merge pull request #5189 from akkadotnet/dev
  • d572faec7378a50951132b5cdce1d9c46d55e92d added v1.4.23 release notes (#5188)
  • 6b4a9138a6907cfa5059e85786ffb17fd182b55d use Failure to programmatically cancel Ask (#5187) [ #3019 ]
  • 0673dc3e2bb08b7a9b39f9aefc065d2b657d9a73 move Akka.DistributedData.LightningDb onto vendored package (#5180)
  • 0bd23c981ead97c03363bdf7e785afd84f0a1f38 fix MNTR local build for .NET 5 (#5177)
  • 7997b586ae6c546d157de101eb61394f62dedc14 Add remember entities storage type documentation (#5179)
  • f58c5fe74d6aaa20485d41adde783076c51d9b0e Revert "Remove LightningDB reference in cluster sharding, make ddata non-durable as default (#5175)" (#5178)
  • c851ef496b2f57675f480f981b4019e61c235d44 Remove LightningDB reference in cluster sharding, make ddata non-durable as default (#5175)
  • 5a7ece812bca29014763f7dfe98684439b3c8aae Pruned RELEASE_NOTES.md (#5176)
  • b7dd4b77f33a4cd2a33cc267d2821195380cc511 fix RemoteActorRefProvider.CreateRemoteRef signature to return IInternalActorRef (#5173)
  • 00a8517aa9cf10c9d55f08d185cf0c8ed89381e8 Merge pull request #5172 from Aaronontheweb/remote/RemoteActorRefProvider-cleanup
  • 7f751f35e24e03cac8f6628ccf7e78d735cb7d9a Added v1.4.23 placeholder

This list of changes was auto generated.

Akka.NET v1.4.22

1.4.22 August 05 2021

Maintenance Release for Akka.NET 1.4

Akka.NET v1.4.22 is a fairly large release that includes an assortment of performance and bug fixes.

Performance Fixes Akka.NET v1.4.22 includes a significant performance improvement for Ask<T>, which now requires 1 internal await operation instead of 3:

Before

Method Iterations Mean Error StdDev Gen 0 Gen 1 Gen 2 Allocated
RequestResponseActorSelection 10000 83.313 ms 0.7553 ms 0.7065 ms 4666.6667 - - 19 MB
CreateActorSelection 10000 5.572 ms 0.1066 ms 0.1140 ms 953.1250 - - 4 MB

... (truncated)

Changelog

Sourced from Akka's changelog.

1.4.23 August 09 2021

Maintenance Release for Akka.NET 1.4

Akka.NET v1.4.23 is designed to patch an issue that occurs on Linux machines using Akka.Cluster.Sharding with akka.cluster.sharding.state-store-mode=ddata and akka.cluster.sharding.remember-entities=on: "System.DllNotFoundException: Unable to load shared library 'lmdb' or one of its dependencies"

In Akka.NET v1.4.21 we added built-in support for Akka.DistributedData.LightningDb for use with the remember-entities setting, but we never received any reports about this issue until shortly after v1.4.22 was released. Fundamentally, the problem was that our downstream dependency, Lightning.NET, doesn't include any of the necessary Linux native binaries in their distributions currently. So in the meantime, we've published our own "vendored" distribution of Lightning.NET to NuGet until a new official one is released that includes these binaries.

There are some other small fixes included in Akka.NET v1.4.23 and you can read about them here.

COMMITS LOC+ LOC- AUTHOR
8 136 2803 Aaron Stannard
2 61 3 Gregorius Soedharmo

1.4.22 August 05 2021

Maintenance Release for Akka.NET 1.4

Akka.NET v1.4.22 is a fairly large release that includes an assortment of performance and bug fixes.

Performance Fixes Akka.NET v1.4.22 includes a significant performance improvement for Ask<T>, which now requires 1 internal await operation instead of 3:

Before

Method Iterations Mean Error StdDev Gen 0 Gen 1 Gen 2 Allocated
RequestResponseActorSelection 10000 83.313 ms 0.7553 ms 0.7065 ms 4666.6667 - - 19 MB
CreateActorSelection 10000 5.572 ms 0.1066 ms 0.1140 ms 953.1250 - - 4 MB

After

Method Iterations Mean Error StdDev Gen 0 Gen 1 Gen 2 Allocated
RequestResponseActorSelection 10000 71.216 ms 0.9885 ms 0.9246 ms 4285.7143 - - 17 MB
CreateActorSelection 10000 5.462 ms 0.0495 ms 0.0439 ms 953.1250 - - 4 MB

Bug Fixes and Improvements

... (truncated)

Commits
  • be40344 Merge pull request #5189 from akkadotnet/dev
  • d572fae added v1.4.23 release notes (#5188)
  • 6b4a913 use Failure to programmatically cancel Ask (#5187)
  • 0673dc3 move Akka.DistributedData.LightningDb onto vendored package (#5180)
  • 0bd23c9 fix MNTR local build for .NET 5 (#5177)
  • 7997b58 Add remember entities storage type documentation (#5179)
  • f58c5fe Revert "Remove LightningDB reference in cluster sharding, make ddata non-dura...
  • c851ef4 Remove LightningDB reference in cluster sharding, make ddata non-durable as d...
  • 5a7ece8 Pruned RELEASE_NOTES.md (#5176)
  • b7dd4b7 fix RemoteActorRefProvider.CreateRemoteRef signature to return IInternalActor...
  • Additional commits viewable in compare view

Updates Akka.Serialization.Hyperion from 1.4.21 to 1.4.23

Release notes

Sourced from Akka.Serialization.Hyperion's releases.

Akka.NET v1.4.23

1.4.23 August 09 2021

Maintenance Release for Akka.NET 1.4

Akka.NET v1.4.23 is designed to patch an issue that occurs on Linux machines using Akka.Cluster.Sharding with akka.cluster.sharding.state-store-mode=ddata and akka.cluster.sharding.remember-entities=on: "System.DllNotFoundException: Unable to load shared library 'lmdb' or one of its dependencies"

In Akka.NET v1.4.21 we added built-in support for Akka.DistributedData.LightningDb for use with the remember-entities setting, but we never received any reports about this issue until shortly after v1.4.22 was released. Fundamentally, the problem was that our downstream dependency, Lightning.NET, doesn't include any of the necessary Linux native binaries in their distributions currently. So in the meantime, we've published our own "vendored" distribution of Lightning.NET to NuGet until a new official one is released that includes these binaries.

There are some other small fixes included in Akka.NET v1.4.23 and you can read about them here.

COMMITS LOC+ LOC- AUTHOR
8 136 2803 Aaron Stannard
2 61 3 Gregorius Soedharmo

Changes:

  • be40344569f9dc3577a813c196d7f598827b9029 Merge pull request #5189 from akkadotnet/dev
  • d572faec7378a50951132b5cdce1d9c46d55e92d added v1.4.23 release notes (#5188)
  • 6b4a9138a6907cfa5059e85786ffb17fd182b55d use Failure to programmatically cancel Ask (#5187) [ #3019 ]
  • 0673dc3e2bb08b7a9b39f9aefc065d2b657d9a73 move Akka.DistributedData.LightningDb onto vendored package (#5180)
  • 0bd23c981ead97c03363bdf7e785afd84f0a1f38 fix MNTR local build for .NET 5 (#5177)
  • 7997b586ae6c546d157de101eb61394f62dedc14 Add remember entities storage type documentation (#5179)
  • f58c5fe74d6aaa20485d41adde783076c51d9b0e Revert "Remove LightningDB reference in cluster sharding, make ddata non-durable as default (#5175)" (#5178)
  • c851ef496b2f57675f480f981b4019e61c235d44 Remove LightningDB reference in cluster sharding, make ddata non-durable as default (#5175)
  • 5a7ece812bca29014763f7dfe98684439b3c8aae Pruned RELEASE_NOTES.md (#5176)
  • b7dd4b77f33a4cd2a33cc267d2821195380cc511 fix RemoteActorRefProvider.CreateRemoteRef signature to return IInternalActorRef (#5173)
  • 00a8517aa9cf10c9d55f08d185cf0c8ed89381e8 Merge pull request #5172 from Aaronontheweb/remote/RemoteActorRefProvider-cleanup
  • 7f751f35e24e03cac8f6628ccf7e78d735cb7d9a Added v1.4.23 placeholder

This list of changes was auto generated.

Akka.NET v1.4.22

1.4.22 August 05 2021

Maintenance Release for Akka.NET 1.4

Akka.NET v1.4.22 is a fairly large release that includes an assortment of performance and bug fixes.

Performance Fixes Akka.NET v1.4.22 includes a significant performance improvement for Ask<T>, which now requires 1 internal await operation instead of 3:

Before

Method Iterations Mean Error StdDev Gen 0 Gen 1 Gen 2 Allocated
RequestResponseActorSelection 10000 83.313 ms 0.7553 ms 0.7065 ms 4666.6667 - - 19 MB
CreateActorSelection 10000 5.572 ms 0.1066 ms 0.1140 ms 953.1250 - - 4 MB

... (truncated)

Changelog

Sourced from Akka.Serialization.Hyperion's changelog.

1.4.23 August 09 2021

Maintenance Release for Akka.NET 1.4

Akka.NET v1.4.23 is designed to patch an issue that occurs on Linux machines using Akka.Cluster.Sharding with akka.cluster.sharding.state-store-mode=ddata and akka.cluster.sharding.remember-entities=on: "System.DllNotFoundException: Unable to load shared library 'lmdb' or one of its dependencies"

In Akka.NET v1.4.21 we added built-in support for Akka.DistributedData.LightningDb for use with the remember-entities setting, but we never received any reports about this issue until shortly after v1.4.22 was released. Fundamentally, the problem was that our downstream dependency, Lightning.NET, doesn't include any of the necessary Linux native binaries in their distributions currently. So in the meantime, we've published our own "vendored" distribution of Lightning.NET to NuGet until a new official one is released that includes these binaries.

There are some other small fixes included in Akka.NET v1.4.23 and you can read about them here.

COMMITS LOC+ LOC- AUTHOR
8 136 2803 Aaron Stannard
2 61 3 Gregorius Soedharmo

1.4.22 August 05 2021

Maintenance Release for Akka.NET 1.4

Akka.NET v1.4.22 is a fairly large release that includes an assortment of performance and bug fixes.

Performance Fixes Akka.NET v1.4.22 includes a significant performance improvement for Ask<T>, which now requires 1 internal await operation instead of 3:

Before

Method Iterations Mean Error StdDev Gen 0 Gen 1 Gen 2 Allocated
RequestResponseActorSelection 10000 83.313 ms 0.7553 ms 0.7065 ms 4666.6667 - - 19 MB
CreateActorSelection 10000 5.572 ms 0.1066 ms 0.1140 ms 953.1250 - - 4 MB

After

Method Iterations Mean Error StdDev Gen 0 Gen 1 Gen 2 Allocated
RequestResponseActorSelection 10000 71.216 ms 0.9885 ms 0.9246 ms 4285.7143 - - 17 MB
CreateActorSelection 10000 5.462 ms 0.0495 ms 0.0439 ms 953.1250 - - 4 MB

Bug Fixes and Improvements

... (truncated)

Commits
  • be40344 Merge pull request #5189 from akkadotnet/dev
  • d572fae added v1.4.23 release notes (#5188)
  • 6b4a913 use Failure to programmatically cancel Ask (#5187)
  • 0673dc3 move Akka.DistributedData.LightningDb onto vendored package (#5180)
  • 0bd23c9 fix MNTR local build for .NET 5 (#5177)
  • 7997b58 Add remember entities storage type documentation (#5179)
  • f58c5fe Revert "Remove LightningDB reference in cluster sharding, make ddata non-dura...
  • c851ef4 Remove LightningDB reference in cluster sharding, make ddata non-durable as d...
  • 5a7ece8 Pruned RELEASE_NOTES.md (#5176)
  • b7dd4b7 fix RemoteActorRefProvider.CreateRemoteRef signature to return IInternalActor...
  • Additional commits viewable in compare view

Updates Akka.TestKit.Xunit2 from 1.4.21 to 1.4.23

Release notes

Sourced from Akka.TestKit.Xunit2's releases.

Akka.NET v1.4.23

1.4.23 August 09 2021

Maintenance Release for Akka.NET 1.4

Akka.NET v1.4.23 is designed to patch an issue that occurs on Linux machines using Akka.Cluster.Sharding with akka.cluster.sharding.state-store-mode=ddata and akka.cluster.sharding.remember-entities=on: "System.DllNotFoundException: Unable to load shared library 'lmdb' or one of its dependencies"

In Akka.NET v1.4.21 we added built-in support for Akka.DistributedData.LightningDb for use with the remember-entities setting, but we never received any reports about this issue until shortly after v1.4.22 was released. Fundamentally, the problem was that our downstream dependency, Lightning.NET, doesn't include any of the necessary Linux native binaries in their distributions currently. So in the meantime, we've published our own "vendored" distribution of Lightning.NET to NuGet until a new official one is released that includes these binaries.

There are some other small fixes included in Akka.NET v1.4.23 and you can read about them here.

COMMITS LOC+ LOC- AUTHOR
8 136 2803 Aaron Stannard
2 61 3 Gregorius Soedharmo

Changes:

  • be40344569f9dc3577a813c196d7f598827b9029 Merge pull request #5189 from akkadotnet/dev
  • d572faec7378a50951132b5cdce1d9c46d55e92d added v1.4.23 release notes (#5188)
  • 6b4a9138a6907cfa5059e85786ffb17fd182b55d use Failure to programmatically cancel Ask (#5187) [ #3019 ]
  • 0673dc3e2bb08b7a9b39f9aefc065d2b657d9a73 move Akka.DistributedData.LightningDb onto vendored package (#5180)
  • 0bd23c981ead97c03363bdf7e785afd84f0a1f38 fix MNTR local build for .NET 5 (#5177)
  • 7997b586ae6c546d157de101eb61394f62dedc14 Add remember entities storage type documentation (#5179)
  • f58c5fe74d6aaa20485d41adde783076c51d9b0e Revert "Remove LightningDB reference in cluster sharding, make ddata non-durable as default (#5175)" (#5178)
  • c851ef496b2f57675f480f981b4019e61c235d44 Remove LightningDB reference in cluster sharding, make ddata non-durable as default (#5175)
  • 5a7ece812bca29014763f7dfe98684439b3c8aae Pruned RELEASE_NOTES.md (#5176)
  • b7dd4b77f33a4cd2a33cc267d2821195380cc511 fix RemoteActorRefProvider.CreateRemoteRef signature to return IInternalActorRef (#5173)
  • 00a8517aa9cf10c9d55f08d185cf0c8ed89381e8 Merge pull request #5172 from Aaronontheweb/remote/RemoteActorRefProvider-cleanup
  • 7f751f35e24e03cac8f6628ccf7e78d735cb7d9a Added v1.4.23 placeholder

This list of changes was auto generated.

Akka.NET v1.4.22

1.4.22 August 05 2021

Maintenance Release for Akka.NET 1.4

Akka.NET v1.4.22 is a fairly large release that includes an assortment of performance and bug fixes.

Performance Fixes Akka.NET v1.4.22 includes a significant performance improvement for Ask<T>, which now requires 1 internal await operation instead of 3:

Before

Method Iterations Mean Error StdDev Gen 0 Gen 1 Gen 2 Allocated
RequestResponseActorSelection 10000 83.313 ms 0.7553 ms 0.7065 ms 4666.6667 - - 19 MB
CreateActorSelection 10000 5.572 ms 0.1066 ms 0.1140 ms 953.1250 - - 4 MB

... (truncated)

Changelog

Sourced from Akka.TestKit.Xunit2's changelog.

1.4.23 August 09 2021

Maintenance Release for Akka.NET 1.4

Akka.NET v1.4.23 is designed to patch an issue that occurs on Linux machines using Akka.Cluster.Sharding with akka.cluster.sharding.state-store-mode=ddata and akka.cluster.sharding.remember-entities=on: "System.DllNotFoundException: Unable to load shared library 'lmdb' or one of its dependencies"

In Akka.NET v1.4.21 we added built-in support for Akka.DistributedData.LightningDb for use with the remember-entities setting, but we never received any reports about this issue until shortly after v1.4.22 was released. Fundamentally, the problem was that our downstream dependency, Lightning.NET, doesn't include any of the necessary Linux native binaries in their distributions currently. So in the meantime, we've published our own "vendored" distribution of Lightning.NET to NuGet until a new official one is released that includes these binaries.

There are some other small fixes included in Akka.NET v1.4.23 and you can read about them here.

COMMITS LOC+ LOC- AUTHOR
8 136 2803 Aaron Stannard
2 61 3 Gregorius Soedharmo

1.4.22 August 05 2021

Maintenance Release for Akka.NET 1.4

Akka.NET v1.4.22 is a fairly large release that includes an assortment of performance and bug fixes.

Performance Fixes Akka.NET v1.4.22 includes a significant performance improvement for Ask<T>, which now requires 1 internal await operation instead of 3:

Before

Method Iterations Mean Error StdDev Gen 0 Gen 1 Gen 2 Allocated
RequestResponseActorSelection 10000 83.313 ms 0.7553 ms 0.7065 ms 4666.6667 - - 19 MB
CreateActorSelection 10000 5.572 ms 0.1066 ms 0.1140 ms 953.1250 - - 4 MB

After

Method Iterations Mean Error StdDev Gen 0 Gen 1 Gen 2 Allocated
RequestResponseActorSelection 10000 71.216 ms 0.9885 ms 0.9246 ms 4285.7143 - - 17 MB
CreateActorSelection 10000 5.462 ms 0.0495 ms 0.0439 ms 953.1250 - - 4 MB

Bug Fixes and Improvements

... (truncated)

Commits
  • be40344 Merge pull request #5189 from akkadotnet/dev
  • d572fae added v1.4.23 release notes (#5188)
  • 6b4a913 use Failure to programmatically cancel Ask (#5187)
  • 0673dc3 move Akka.DistributedData.LightningDb onto vendored package (#5180)
  • 0bd23c9 fix MNTR local build for .NET 5 (#5177)
  • 7997b58 Add remember entities storage type documentation (#5179)
  • f58c5fe Revert "Remove LightningDB reference in cluster sharding, make ddata non-dura...
  • c851ef4 Remove LightningDB reference in cluster sharding, make ddata non-durable as d...
  • 5a7ece8 Pruned RELEASE_NOTES.md (#5176)
  • b7dd4b7 fix RemoteActorRefProvider.CreateRemoteRef signature to return IInternalActor...
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps `AkkaVersion` from 1.4.21 to 1.4.23.

Updates `Akka` from 1.4.21 to 1.4.23
- [Release notes](https://github.com/akkadotnet/akka.net/releases)
- [Changelog](https://github.com/akkadotnet/akka.net/blob/dev/RELEASE_NOTES.md)
- [Commits](akkadotnet/akka.net@1.4.21...1.4.23)

Updates `Akka.Serialization.Hyperion` from 1.4.21 to 1.4.23
- [Release notes](https://github.com/akkadotnet/akka.net/releases)
- [Changelog](https://github.com/akkadotnet/akka.net/blob/dev/RELEASE_NOTES.md)
- [Commits](akkadotnet/akka.net@1.4.21...1.4.23)

Updates `Akka.TestKit.Xunit2` from 1.4.21 to 1.4.23
- [Release notes](https://github.com/akkadotnet/akka.net/releases)
- [Changelog](https://github.com/akkadotnet/akka.net/blob/dev/RELEASE_NOTES.md)
- [Commits](akkadotnet/akka.net@1.4.21...1.4.23)

---
updated-dependencies:
- dependency-name: Akka
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Akka.Serialization.Hyperion
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Akka.TestKit.Xunit2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 10, 2021
@Aaronontheweb Aaronontheweb merged commit 8868f5e into dev Aug 11, 2021
@Aaronontheweb Aaronontheweb deleted the dependabot/nuget/AkkaVersion-1.4.23 branch August 11, 2021 19:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant