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 AkkaHostingVersion from 0.5.1 to 1.0.0 #163

Merged
merged 1 commit into from
Dec 28, 2022

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 28, 2022

Bumps AkkaHostingVersion from 0.5.1 to 1.0.0.
Updates Akka.Cluster.Hosting from 0.5.1 to 1.0.0

Release notes

Sourced from Akka.Cluster.Hosting's releases.

Akka.Hosting v1.0.0

[1.0.0] / 27 December 2022

This 1.0.0 release is the RTM release for Akka.Hosting and contains major API breaking changes with a lot of its API. All current API will be frozen for all future releases and will be backed with our backward compatibility promise.

Change List

General Changes

  • Almost all options properties are changed to value types to allow direct binding to Miscosoft.Extensions.Configuration IConfiguration instance.
  • Implements Nullable on all projects.

Changes To Akka.Hosting

  • The HoconAddMode argument in AddHocon() and AddHoconFile() extension methods are not optional anymore; you will need to declare that your HOCON will to append, prepend, or replace existing HOCON configuration. In almost all cases, unless you're adding a default configuration, you only need to use HoconAddMode.Prepend.

  • ActorRegistry.Get<T> will now throw an ActorRegistryException if no actor with key T has been registered with the ActorRegistry, this is done to make the API more consistent with all other .NET APIs. Use ActorRegistry.TryGet<T> if you do not want this behavior.

  • Better integration with Akka.DependencyInjection. Documentation can be read here

  • Added WithActorAskTimeout() extension method to configure the actor ask timeout settings.

  • Added extended debug logging support for dead letters and actor messages and events.

  • Adds a variation to AddHocon that can convert Microsoft.Extensions.Configuration IConfiguration into HOCON Config instance and adds it to the ActorSystem being configured.

    • All variable name are automatically converted to lower case.
    • All "." (period) in the IConfiguration key will be treated as a HOCON object key separator
    • For environment variable configuration provider:
      • "__" (double underline) will be converted to "." (period).
      • "_" (single underline) will be converted to "-" (dash).
      • If all keys are composed of integer parseable keys, the whole object is treated as an array

    Example:

    JSON configuration:

    {

... (truncated)

Changelog

Sourced from Akka.Cluster.Hosting's changelog.

[1.0.0] / 27 December 2022

This 1.0.0 release is the RTM release for Akka.Hosting and contains major API breaking changes with a lot of its API. All current API will be frozen for all future releases and will be backed with our backward compatibility promise.

Change List

General Changes

  • Almost all options properties are changed to value types to allow direct binding to Miscosoft.Extensions.Configuration IConfiguration instance.
  • Implements Nullable on all projects.

Changes To Akka.Hosting

  • The HoconAddMode argument in AddHocon() and AddHoconFile() extension methods are not optional anymore; you will need to declare that your HOCON will to append, prepend, or replace existing HOCON configuration. In almost all cases, unless you're adding a default configuration, you only need to use HoconAddMode.Prepend.

  • ActorRegistry.Get<T> will now throw an ActorRegistryException if no actor with key T has been registered with the ActorRegistry, this is done to make the API more consistent with all other .NET APIs. Use ActorRegistry.TryGet<T> if you do not want this behavior.

  • Better integration with Akka.DependencyInjection. Documentation can be read here

  • Added WithActorAskTimeout() extension method to configure the actor ask timeout settings.

  • Added extended debug logging support for dead letters and actor messages and events.

  • Adds a variation to AddHocon that can convert Microsoft.Extensions.Configuration IConfiguration into HOCON Config instance and adds it to the ActorSystem being configured.

    • All variable name are automatically converted to lower case.
    • All "." (period) in the IConfiguration key will be treated as a HOCON object key separator
    • For environment variable configuration provider:
      • "__" (double underline) will be converted to "." (period).
      • "_" (single underline) will be converted to "-" (dash).
      • If all keys are composed of integer parseable keys, the whole object is treated as an array

    Example:

    JSON configuration:

    {
       "akka.cluster": {

... (truncated)

Commits
  • 906da90 Update README.md
  • 32e4d3f Add PublicApiGenerator and Verify unit tests (#172)
  • bcf55fd Update RELEASE_NOTES.md for v1.0.0 release (#175)
  • 77c922c added HandOffStopMessage support to Cluster.Sharding APIs (#174)
  • bf2713d added documentation for DI features in Akka.Hosting (#171)
  • aff4b76 Add debug logging options and WithActorAskTimeout() extension method (#173)
  • a91b72d Proper Akka.NET Dependency Injection: IRequiredActor\<TActor> (#170)
  • 40671c2 Better integration with Akka.DependencyInjection (#169)
  • 0754619 [TestKit.Tests] Fix nullable warning code and modernize codes (#163)
  • 57f1e23 [Hosting.Tests] Fix nullable warnings and modernize codes (#167)
  • Additional commits viewable in compare view

Updates Akka.Hosting from 0.5.1 to 1.0.0

Release notes

Sourced from Akka.Hosting's releases.

Akka.Hosting v1.0.0

[1.0.0] / 27 December 2022

This 1.0.0 release is the RTM release for Akka.Hosting and contains major API breaking changes with a lot of its API. All current API will be frozen for all future releases and will be backed with our backward compatibility promise.

Change List

General Changes

  • Almost all options properties are changed to value types to allow direct binding to Miscosoft.Extensions.Configuration IConfiguration instance.
  • Implements Nullable on all projects.

Changes To Akka.Hosting

  • The HoconAddMode argument in AddHocon() and AddHoconFile() extension methods are not optional anymore; you will need to declare that your HOCON will to append, prepend, or replace existing HOCON configuration. In almost all cases, unless you're adding a default configuration, you only need to use HoconAddMode.Prepend.

  • ActorRegistry.Get&lt;T&gt; will now throw an ActorRegistryException if no actor with key T has been registered with the ActorRegistry, this is done to make the API more consistent with all other .NET APIs. Use ActorRegistry.TryGet&lt;T&gt; if you do not want this behavior.

  • Better integration with Akka.DependencyInjection. Documentation can be read here

  • Added WithActorAskTimeout() extension method to configure the actor ask timeout settings.

  • Added extended debug logging support for dead letters and actor messages and events.

  • Adds a variation to AddHocon that can convert Microsoft.Extensions.Configuration IConfiguration into HOCON Config instance and adds it to the ActorSystem being configured.

    • All variable name are automatically converted to lower case.
    • All "." (period) in the IConfiguration key will be treated as a HOCON object key separator
    • For environment variable configuration provider:
      • "__" (double underline) will be converted to "." (period).
      • "_" (single underline) will be converted to "-" (dash).
      • If all keys are composed of integer parseable keys, the whole object is treated as an array

    Example:

    JSON configuration:

    {

... (truncated)

Changelog

Sourced from Akka.Hosting's changelog.

[1.0.0] / 27 December 2022

This 1.0.0 release is the RTM release for Akka.Hosting and contains major API breaking changes with a lot of its API. All current API will be frozen for all future releases and will be backed with our backward compatibility promise.

Change List

General Changes

  • Almost all options properties are changed to value types to allow direct binding to Miscosoft.Extensions.Configuration IConfiguration instance.
  • Implements Nullable on all projects.

Changes To Akka.Hosting

  • The HoconAddMode argument in AddHocon() and AddHoconFile() extension methods are not optional anymore; you will need to declare that your HOCON will to append, prepend, or replace existing HOCON configuration. In almost all cases, unless you're adding a default configuration, you only need to use HoconAddMode.Prepend.

  • ActorRegistry.Get&lt;T&gt; will now throw an ActorRegistryException if no actor with key T has been registered with the ActorRegistry, this is done to make the API more consistent with all other .NET APIs. Use ActorRegistry.TryGet&lt;T&gt; if you do not want this behavior.

  • Better integration with Akka.DependencyInjection. Documentation can be read here

  • Added WithActorAskTimeout() extension method to configure the actor ask timeout settings.

  • Added extended debug logging support for dead letters and actor messages and events.

  • Adds a variation to AddHocon that can convert Microsoft.Extensions.Configuration IConfiguration into HOCON Config instance and adds it to the ActorSystem being configured.

    • All variable name are automatically converted to lower case.
    • All "." (period) in the IConfiguration key will be treated as a HOCON object key separator
    • For environment variable configuration provider:
      • "__" (double underline) will be converted to "." (period).
      • "_" (single underline) will be converted to "-" (dash).
      • If all keys are composed of integer parseable keys, the whole object is treated as an array

    Example:

    JSON configuration:

    {
       "akka.cluster": {

... (truncated)

Commits
  • 906da90 Update README.md
  • 32e4d3f Add PublicApiGenerator and Verify unit tests (#172)
  • bcf55fd Update RELEASE_NOTES.md for v1.0.0 release (#175)
  • 77c922c added HandOffStopMessage support to Cluster.Sharding APIs (#174)
  • bf2713d added documentation for DI features in Akka.Hosting (#171)
  • aff4b76 Add debug logging options and WithActorAskTimeout() extension method (#173)
  • a91b72d Proper Akka.NET Dependency Injection: IRequiredActor\<TActor> (#170)
  • 40671c2 Better integration with Akka.DependencyInjection (#169)
  • 0754619 [TestKit.Tests] Fix nullable warning code and modernize codes (#163)
  • 57f1e23 [Hosting.Tests] Fix nullable warnings and modernize codes (#167)
  • 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 `AkkaHostingVersion` from 0.5.1 to 1.0.0.

Updates `Akka.Cluster.Hosting` from 0.5.1 to 1.0.0
- [Release notes](https://github.com/akkadotnet/Akka.Hosting/releases)
- [Changelog](https://github.com/akkadotnet/Akka.Hosting/blob/dev/RELEASE_NOTES.md)
- [Commits](akkadotnet/Akka.Hosting@0.5.1...1.0.0)

Updates `Akka.Hosting` from 0.5.1 to 1.0.0
- [Release notes](https://github.com/akkadotnet/Akka.Hosting/releases)
- [Changelog](https://github.com/akkadotnet/Akka.Hosting/blob/dev/RELEASE_NOTES.md)
- [Commits](akkadotnet/Akka.Hosting@0.5.1...1.0.0)

---
updated-dependencies:
- dependency-name: Akka.Cluster.Hosting
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Akka.Hosting
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 28, 2022
@Aaronontheweb Aaronontheweb merged commit 6698369 into dev Dec 28, 2022
@Aaronontheweb Aaronontheweb deleted the dependabot/nuget/AkkaHostingVersion-1.0.0 branch December 28, 2022 13:47
@Aaronontheweb
Copy link
Member

@Arkatufus Akka.Hosting v1.0 is merged - is there anything else we need to do to get Akka.HealthCheck out the door?

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.

1 participant