diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 92f4faa..7fbd56b 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,8 +1,3 @@ -#### 0.2.1 March 20th 2019 #### -**Added startup log information option** - -Added configuration option to turn on log information which displays Readiness/Liveness configuration success. It will also display whether it is set to have a File or TCP transport. It will then display the file name which will but written out or the TCP port that will be used. - -**Log information for Liveness/Readiness transport** - -Added configuration option to turn on Liveness/Radiness transport info event logs. +#### 0.3-rc1 March 3rd 2020 #### +**Bumped Akka version** +Bumped Akka version to 1.4.1-rc1 \ No newline at end of file diff --git a/src/Akka.HealthCheck.Persistence.Tests/AkkaPersistenceLivenessProbeProviderSettingsTest.cs b/src/Akka.HealthCheck.Persistence.Tests/AkkaPersistenceLivenessProbeProviderSettingsTest.cs index 35daa84..519229c 100644 --- a/src/Akka.HealthCheck.Persistence.Tests/AkkaPersistenceLivenessProbeProviderSettingsTest.cs +++ b/src/Akka.HealthCheck.Persistence.Tests/AkkaPersistenceLivenessProbeProviderSettingsTest.cs @@ -19,10 +19,11 @@ public AkkaPersistenceLivenessProbeProviderSettingsTest(ITestOutputHelper helper { } public static string HoconString = @" - akka.healthcheck{ + akka.healthcheck{ liveness{ provider = ""Akka.HealthCheck.Persistence.AkkaPersistenceLivenessProbeProvider, Akka.HealthCheck.Persistence"" -}} }"; + } + }"; [Fact(DisplayName = " ActorSystem should correcly load AkkaPersistenceLivenessProbeProvider from HOCON configuration")] diff --git a/src/Akka.HealthCheck.Tests/AkkaHealthCheckIntegrationSpec.cs b/src/Akka.HealthCheck.Tests/AkkaHealthCheckIntegrationSpec.cs index 8cbab65..567c538 100644 --- a/src/Akka.HealthCheck.Tests/AkkaHealthCheckIntegrationSpec.cs +++ b/src/Akka.HealthCheck.Tests/AkkaHealthCheckIntegrationSpec.cs @@ -18,6 +18,7 @@ using FluentAssertions; using Xunit; using Xunit.Abstractions; +using Hocon; namespace Akka.HealthCheck.Tests { diff --git a/src/Akka.HealthCheck.Tests/AkkaHealthCheckSpecs.cs b/src/Akka.HealthCheck.Tests/AkkaHealthCheckSpecs.cs index 5dc1575..d7e2f3e 100644 --- a/src/Akka.HealthCheck.Tests/AkkaHealthCheckSpecs.cs +++ b/src/Akka.HealthCheck.Tests/AkkaHealthCheckSpecs.cs @@ -12,6 +12,7 @@ using Akka.HealthCheck.Readiness; using FluentAssertions; using Xunit; +using Hocon; namespace Akka.HealthCheck.Tests { diff --git a/src/Akka.HealthCheck.Tests/Configuration/HealthCheckSettingsSpecs.cs b/src/Akka.HealthCheck.Tests/Configuration/HealthCheckSettingsSpecs.cs index f679f11..bfccf9f 100644 --- a/src/Akka.HealthCheck.Tests/Configuration/HealthCheckSettingsSpecs.cs +++ b/src/Akka.HealthCheck.Tests/Configuration/HealthCheckSettingsSpecs.cs @@ -13,6 +13,7 @@ using Akka.HealthCheck.Transports.Sockets; using FluentAssertions; using Xunit; +using Hocon; namespace Akka.HealthCheck.Tests.Configuration { diff --git a/src/Akka.HealthCheck.Tests/LiveNessProbeSpecBase.cs b/src/Akka.HealthCheck.Tests/LiveNessProbeSpecBase.cs index 2198582..0d2696f 100644 --- a/src/Akka.HealthCheck.Tests/LiveNessProbeSpecBase.cs +++ b/src/Akka.HealthCheck.Tests/LiveNessProbeSpecBase.cs @@ -11,6 +11,7 @@ using FluentAssertions; using Xunit; using Xunit.Abstractions; +using Hocon; namespace Akka.HealthCheck.Tests { diff --git a/src/Akka.HealthCheck.Tests/ReadinessProbeSpecBase.cs b/src/Akka.HealthCheck.Tests/ReadinessProbeSpecBase.cs index 34492bf..54c2e04 100644 --- a/src/Akka.HealthCheck.Tests/ReadinessProbeSpecBase.cs +++ b/src/Akka.HealthCheck.Tests/ReadinessProbeSpecBase.cs @@ -11,6 +11,7 @@ using FluentAssertions; using Xunit; using Xunit.Abstractions; +using Hocon; namespace Akka.HealthCheck.Tests { diff --git a/src/Akka.HealthCheck/Configuration/HealthCheckSettings.cs b/src/Akka.HealthCheck/Configuration/HealthCheckSettings.cs index 6ca1d43..dc40227 100644 --- a/src/Akka.HealthCheck/Configuration/HealthCheckSettings.cs +++ b/src/Akka.HealthCheck/Configuration/HealthCheckSettings.cs @@ -12,6 +12,7 @@ using Akka.HealthCheck.Transports; using Akka.HealthCheck.Transports.Files; using Akka.HealthCheck.Transports.Sockets; +using Hocon; namespace Akka.HealthCheck.Configuration { diff --git a/src/common.props b/src/common.props index dac85e5..892312b 100644 --- a/src/common.props +++ b/src/common.props @@ -2,8 +2,9 @@ Copyright © 2015-2019 Petabridge® Petabridge - 0.1.0 - Initial release of Akka.HealthCheck and Akka.HealthCheck.Cluster. These packages are designed to make it possible to automatically and simply pass on information about the health of your Akka.NET applications to external application management and monitoring systems such as K8s, AWS, Azure, and so forth. + 0.3 + Bumped Akka version** +Bumped Akka version to 1.4.1-rc1 https://petabridge.com/images/logo.png https://github.com/petabridge/akkadotnet-healthcheck https://github.com/petabridge/akkadotnet-healthchec/blob/master/LICENSE @@ -13,6 +14,6 @@ 1.2.2 2.4.1 16.5.0 - 1.3.17 + 1.4.1-rc1 \ No newline at end of file