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

v0.3.0-RC1 Release #53

Merged
merged 12 commits into from
Mar 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<ItemGroup>
<PackageReference Include="akka.persistence.sqlite" Version="$(AkkaVersion)" />
<PackageReference Include="Akka.TestKit.Xunit" Version="$(AkkaVersion)" />
<PackageReference Include="FluentAssertions" Version="5.6.0" />
<PackageReference Include="FluentAssertions" Version="5.10.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(TestSdkVersion)" />
<PackageReference Include="xunit" Version="$(XunitVersion)" />
<PackageReference Include="xunit.runner.visualstudio" Version="$(XunitVersion)" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
Expand Down
2 changes: 1 addition & 1 deletion src/Akka.HealthCheck.Tests/Akka.HealthCheck.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<ItemGroup>
<PackageReference Include="Akka.TestKit.Xunit" Version="$(AkkaVersion)" />
<PackageReference Include="FluentAssertions" Version="5.6.0" />
<PackageReference Include="FluentAssertions" Version="5.10.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(TestSdkVersion)" />
<PackageReference Include="xunit" Version="$(XunitVersion)" />
<PackageReference Include="xunit.runner.visualstudio" Version="$(XunitVersion)" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
using FluentAssertions;
using Xunit;
using Xunit.Abstractions;
using Hocon;

namespace Akka.HealthCheck.Tests
{
Expand Down
1 change: 1 addition & 0 deletions src/Akka.HealthCheck.Tests/AkkaHealthCheckSpecs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
using Akka.HealthCheck.Readiness;
using FluentAssertions;
using Xunit;
using Hocon;

namespace Akka.HealthCheck.Tests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
using Akka.HealthCheck.Transports.Sockets;
using FluentAssertions;
using Xunit;
using Hocon;

namespace Akka.HealthCheck.Tests.Configuration
{
Expand Down
1 change: 1 addition & 0 deletions src/Akka.HealthCheck.Tests/LiveNessProbeSpecBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
using FluentAssertions;
using Xunit;
using Xunit.Abstractions;
using Hocon;

namespace Akka.HealthCheck.Tests
{
Expand Down
1 change: 1 addition & 0 deletions src/Akka.HealthCheck.Tests/ReadinessProbeSpecBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
using FluentAssertions;
using Xunit;
using Xunit.Abstractions;
using Hocon;

namespace Akka.HealthCheck.Tests
{
Expand Down
1 change: 1 addition & 0 deletions src/Akka.HealthCheck/Configuration/HealthCheckSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
using Akka.HealthCheck.Transports;
using Akka.HealthCheck.Transports.Files;
using Akka.HealthCheck.Transports.Sockets;
using Hocon;

namespace Akka.HealthCheck.Configuration
{
Expand Down
9 changes: 5 additions & 4 deletions src/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
<PropertyGroup>
<Copyright>Copyright © 2015-2019 Petabridge®</Copyright>
<Authors>Petabridge</Authors>
<VersionPrefix>0.1.0</VersionPrefix>
<PackageReleaseNotes>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.</PackageReleaseNotes>
<VersionPrefix>0.3</VersionPrefix>
<PackageReleaseNotes>Bumped Akka version**
Bumped Akka version to 1.4.1-rc1</PackageReleaseNotes>
<PackageIconUrl>https://petabridge.com/images/logo.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/petabridge/akkadotnet-healthcheck</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/petabridge/akkadotnet-healthchec/blob/master/LICENSE</PackageLicenseUrl>
Expand All @@ -12,7 +13,7 @@
<PropertyGroup>
<NBenchVersion>1.2.2</NBenchVersion>
<XunitVersion>2.4.1</XunitVersion>
<TestSdkVersion>15.9.0</TestSdkVersion>
<AkkaVersion>1.3.12</AkkaVersion>
<TestSdkVersion>16.5.0</TestSdkVersion>
<AkkaVersion>1.4.1-rc1</AkkaVersion>
</PropertyGroup>
</Project>