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.29 to 1.4.32 #236

Merged
merged 2 commits into from
Jan 24, 2022

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 19, 2022

Bumps AkkaVersion from 1.4.29 to 1.4.32.
Updates Akka.TestKit.XUnit2 from 1.4.29 to 1.4.32

Release notes

Sourced from Akka.TestKit.XUnit2's releases.

Akka.NET v1.4.32

1.4.32 January 19 2022

Akka.NET v1.4.32 is a minor release that contains some API improvements. Most of the changes have been aimed at improving our web documentation and code cleanup to modernize some of our code. One big improvement in this version release is the Hyperion serialization update.

Hyperion 0.12.0 introduces a new deserialization security mechanism to allow users to selectively filter allowed types during deserialization to prevent deserialization of untrusted data described here. This new feature is exposed in Akka.NET in HOCON through the new akka.actor.serialization-settings.hyperion.allowed-types settings or programmatically through the new WithTypeFilter method in the HyperionSerializerSetup class.

The simplest way to programmatically describe the type filter is to use the convenience class TypeFilterBuilder:

var typeFilter = TypeFilterBuilder.Create()
    .Include<AllowedClassA>()
    .Include<AllowedClassB>()
    .Build();
var setup = HyperionSerializerSetup.Default
    .WithTypeFilter(typeFilter);

You can also create your own implementation of ITypeFilter and pass an instance of it into the WithTypeFilter method.

For complete documentation, please read the Hyperion readme on filtering types for secure deserialization.

If you want to see the full set of changes made in Akka.NET v1.4.32, click here.

COMMITS LOC+ LOC- AUTHOR
11 1752 511 Aaron Stannard
8 1433 534 Gregorius Soedharmo
3 754 222 Ismael Hamed
2 3 6 Brah McDude
2 227 124 Ebere Abanonu
1 331 331 Sean Killeen
1 1 1 TangkasOka

Changes:

  • f47465d73231445a1d87be3d7d4bff4230bd6548 Merge pull request #5519 from akkadotnet/dev
  • 2ae5dc121ed39f4c3ed9650eb21d4a121a1b3dde Merge branch 'master' into dev
  • 73f7eb206c8bd8b8e2526c760d111df0fb5eb34c Added link to v1.4.32 milestone to RELEASE_NOTES.md
  • 54163d64e5e50f3621e4e1074a5d36425bcc9301 Update RELEASE_NOTES.md for 1.4.32 release (#5518)
  • 93c7031f10c27630b59e17487c6324fcb2d78ead cleaning up async Task internals inside AsyncWriteJournal (#5505)
  • 811ab748a4fa682cecdc2d7a35e13f9d1d583f96 Switch Akka.Cluster.Benchmark persistence benchmark from using SQLite to MemoryJournal to minimize external variable (#5514)
  • 5223ed4f8e1ca9baacc901319e013da1a0465c0d Bump Hyperion to 0.12.0 (#5510)
  • e1c89ccb9881a32768c13bc8c178c64c821a434c Benchmark.NET Akka.Persistence Benchmarks (#5509)
  • 968b0ddb653bbc9cca3a94cd74bad072df0885b6 Added wsl reboot instructions to debugging documentation (#5508)
  • 7cce1a62fc64c35b4d12559d0478c2873e98e5c9 Re-organize Configuration documentation (#5501)

... (truncated)

Changelog

Sourced from Akka.TestKit.XUnit2's changelog.

1.4.32 January 19 2022

Akka.NET v1.4.32 is a minor release that contains some API improvements. Most of the changes have been aimed at improving our web documentation and code cleanup to modernize some of our code. One big improvement in this version release is the Hyperion serialization update.

Hyperion 0.12.0 introduces a new deserialization security mechanism to allow users to selectively filter allowed types during deserialization to prevent deserialization of untrusted data described here. This new feature is exposed in Akka.NET in HOCON through the new akka.actor.serialization-settings.hyperion.allowed-types settings or programmatically through the new WithTypeFilter method in the HyperionSerializerSetup class.

The simplest way to programmatically describe the type filter is to use the convenience class TypeFilterBuilder:

var typeFilter = TypeFilterBuilder.Create()
    .Include<AllowedClassA>()
    .Include<AllowedClassB>()
    .Build();
var setup = HyperionSerializerSetup.Default
    .WithTypeFilter(typeFilter);

You can also create your own implementation of ITypeFilter and pass an instance of it into the WithTypeFilter method.

For complete documentation, please read the Hyperion readme on filtering types for secure deserialization.

If you want to see the full set of changes made in Akka.NET v1.4.32, click here.

COMMITS LOC+ LOC- AUTHOR
11 1752 511 Aaron Stannard
8 1433 534 Gregorius Soedharmo
3 754 222 Ismael Hamed
2 3 6 Brah McDude
2 227 124 Ebere Abanonu
1 331 331 Sean Killeen
1 1 1 TangkasOka

1.4.31 December 20 2021

Akka.NET v1.4.31 is a minor release that contains some bug fixes.

Akka.NET v1.4.30 contained a breaking change that broke binary compatibility with all Akka.DI plugins. Even though those plugins are deprecated that change is not compatible with our SemVer standards and needed to be reverted. We regret the error.

Bug fixes:

COMMITS LOC+ LOC- AUTHOR
1 9 2 Gregorius Soedharmo

1.4.30 December 20 2021

... (truncated)

Commits
  • f47465d Merge pull request #5519 from akkadotnet/dev
  • 2ae5dc1 Merge branch 'master' into dev
  • 73f7eb2 Added link to v1.4.32 milestone to RELEASE_NOTES.md
  • 54163d6 Update RELEASE_NOTES.md for 1.4.32 release (#5518)
  • 93c7031 cleaning up async Task internals inside AsyncWriteJournal (#5505)
  • 811ab74 Switch Akka.Cluster.Benchmark persistence benchmark from using SQLite to Memo...
  • 5223ed4 Bump Hyperion to 0.12.0 (#5510)
  • e1c89cc Benchmark.NET Akka.Persistence Benchmarks (#5509)
  • 968b0dd Added wsl reboot instructions to debugging documentation (#5508)
  • 7cce1a6 Re-organize Configuration documentation (#5501)
  • Additional commits viewable in compare view

Updates Akka.Cluster from 1.4.29 to 1.4.32

Release notes

Sourced from Akka.Cluster's releases.

Akka.NET v1.4.32

1.4.32 January 19 2022

Akka.NET v1.4.32 is a minor release that contains some API improvements. Most of the changes have been aimed at improving our web documentation and code cleanup to modernize some of our code. One big improvement in this version release is the Hyperion serialization update.

Hyperion 0.12.0 introduces a new deserialization security mechanism to allow users to selectively filter allowed types during deserialization to prevent deserialization of untrusted data described here. This new feature is exposed in Akka.NET in HOCON through the new akka.actor.serialization-settings.hyperion.allowed-types settings or programmatically through the new WithTypeFilter method in the HyperionSerializerSetup class.

The simplest way to programmatically describe the type filter is to use the convenience class TypeFilterBuilder:

var typeFilter = TypeFilterBuilder.Create()
    .Include<AllowedClassA>()
    .Include<AllowedClassB>()
    .Build();
var setup = HyperionSerializerSetup.Default
    .WithTypeFilter(typeFilter);

You can also create your own implementation of ITypeFilter and pass an instance of it into the WithTypeFilter method.

For complete documentation, please read the Hyperion readme on filtering types for secure deserialization.

If you want to see the full set of changes made in Akka.NET v1.4.32, click here.

COMMITS LOC+ LOC- AUTHOR
11 1752 511 Aaron Stannard
8 1433 534 Gregorius Soedharmo
3 754 222 Ismael Hamed
2 3 6 Brah McDude
2 227 124 Ebere Abanonu
1 331 331 Sean Killeen
1 1 1 TangkasOka

Changes:

  • f47465d73231445a1d87be3d7d4bff4230bd6548 Merge pull request #5519 from akkadotnet/dev
  • 2ae5dc121ed39f4c3ed9650eb21d4a121a1b3dde Merge branch 'master' into dev
  • 73f7eb206c8bd8b8e2526c760d111df0fb5eb34c Added link to v1.4.32 milestone to RELEASE_NOTES.md
  • 54163d64e5e50f3621e4e1074a5d36425bcc9301 Update RELEASE_NOTES.md for 1.4.32 release (#5518)
  • 93c7031f10c27630b59e17487c6324fcb2d78ead cleaning up async Task internals inside AsyncWriteJournal (#5505)
  • 811ab748a4fa682cecdc2d7a35e13f9d1d583f96 Switch Akka.Cluster.Benchmark persistence benchmark from using SQLite to MemoryJournal to minimize external variable (#5514)
  • 5223ed4f8e1ca9baacc901319e013da1a0465c0d Bump Hyperion to 0.12.0 (#5510)
  • e1c89ccb9881a32768c13bc8c178c64c821a434c Benchmark.NET Akka.Persistence Benchmarks (#5509)
  • 968b0ddb653bbc9cca3a94cd74bad072df0885b6 Added wsl reboot instructions to debugging documentation (#5508)
  • 7cce1a62fc64c35b4d12559d0478c2873e98e5c9 Re-organize Configuration documentation (#5501)

... (truncated)

Changelog

Sourced from Akka.Cluster's changelog.

1.4.32 January 19 2022

Akka.NET v1.4.32 is a minor release that contains some API improvements. Most of the changes have been aimed at improving our web documentation and code cleanup to modernize some of our code. One big improvement in this version release is the Hyperion serialization update.

Hyperion 0.12.0 introduces a new deserialization security mechanism to allow users to selectively filter allowed types during deserialization to prevent deserialization of untrusted data described here. This new feature is exposed in Akka.NET in HOCON through the new akka.actor.serialization-settings.hyperion.allowed-types settings or programmatically through the new WithTypeFilter method in the HyperionSerializerSetup class.

The simplest way to programmatically describe the type filter is to use the convenience class TypeFilterBuilder:

var typeFilter = TypeFilterBuilder.Create()
    .Include<AllowedClassA>()
    .Include<AllowedClassB>()
    .Build();
var setup = HyperionSerializerSetup.Default
    .WithTypeFilter(typeFilter);

You can also create your own implementation of ITypeFilter and pass an instance of it into the WithTypeFilter method.

For complete documentation, please read the Hyperion readme on filtering types for secure deserialization.

If you want to see the full set of changes made in Akka.NET v1.4.32, click here.

COMMITS LOC+ LOC- AUTHOR
11 1752 511 Aaron Stannard
8 1433 534 Gregorius Soedharmo
3 754 222 Ismael Hamed
2 3 6 Brah McDude
2 227 124 Ebere Abanonu
1 331 331 Sean Killeen
1 1 1 TangkasOka

1.4.31 December 20 2021

Akka.NET v1.4.31 is a minor release that contains some bug fixes.

Akka.NET v1.4.30 contained a breaking change that broke binary compatibility with all Akka.DI plugins. Even though those plugins are deprecated that change is not compatible with our SemVer standards and needed to be reverted. We regret the error.

Bug fixes:

COMMITS LOC+ LOC- AUTHOR
1 9 2 Gregorius Soedharmo

1.4.30 December 20 2021

... (truncated)

Commits
  • f47465d Merge pull request #5519 from akkadotnet/dev
  • 2ae5dc1 Merge branch 'master' into dev
  • 73f7eb2 Added link to v1.4.32 milestone to RELEASE_NOTES.md
  • 54163d6 Update RELEASE_NOTES.md for 1.4.32 release (#5518)
  • 93c7031 cleaning up async Task internals inside AsyncWriteJournal (#5505)
  • 811ab74 Switch Akka.Cluster.Benchmark persistence benchmark from using SQLite to Memo...
  • 5223ed4 Bump Hyperion to 0.12.0 (#5510)
  • e1c89cc Benchmark.NET Akka.Persistence Benchmarks (#5509)
  • 968b0dd Added wsl reboot instructions to debugging documentation (#5508)
  • 7cce1a6 Re-organize Configuration documentation (#5501)
  • 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)

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 19, 2022
@CLAassistant
Copy link

CLAassistant commented Jan 19, 2022

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you all sign our Contributor License Agreement before we can accept your contribution.
0 out of 2 committers have signed the CLA.

❌ kodiakhq[bot]
❌ dependabot[bot]
You have signed the CLA already but the status is still pending? Let us recheck it.

Bumps `AkkaVersion` from 1.4.29 to 1.4.32.

Updates `Akka.TestKit.XUnit2` from 1.4.29 to 1.4.32
- [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.29...1.4.32)

Updates `Akka.Cluster` from 1.4.29 to 1.4.32
- [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.29...1.4.32)

---
updated-dependencies:
- dependency-name: Akka.TestKit.XUnit2
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Akka.Cluster
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/nuget/AkkaVersion-1.4.32 branch from 7c1aab9 to c4724e8 Compare January 21, 2022 01:57
Copy link
Member

@Aaronontheweb Aaronontheweb left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@kodiakhq kodiakhq bot merged commit 3ccb1bf into dev Jan 24, 2022
@kodiakhq kodiakhq bot deleted the dependabot/nuget/AkkaVersion-1.4.32 branch January 24, 2022 20:24
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.

2 participants