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

v1.4.37 Release #5842

Merged
merged 5 commits into from
Apr 14, 2022
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
14 changes: 14 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
#### 1.4.37 April 14 2022 ####
Akka.NET v1.4.37 is a minor release that contains some minor bug fixes.

* [Persistence.Query: Change AllEvents query failure log severity from Debug to Error](https://github.com/akkadotnet/akka.net/pull/5835)
* [Coordination: Harden LeaseProvider instance Activator exception handling](https://github.com/akkadotnet/akka.net/pull/5838)
* [Akka: Make ActorSystemImpl.Abort skip the CoordinatedShutdown check](https://github.com/akkadotnet/akka.net/pull/5839)

If you want to see the [full set of changes made in Akka.NET v1.4.37, click here](https://github.com/akkadotnet/akka.net/milestone/68?closed=1).

| COMMITS | LOC+ | LOC- | AUTHOR |
|---------|------|------|---------------------|
| 3 | 15 | 4 | Gregorius Soedharmo |
| 1 | 2 | 2 | dependabot[bot] |

#### 1.4.36 April 4 2022 ####
Akka.NET v1.4.36 is a minor release that contains some bug fixes. Most of the changes have been aimed at improving our web documentation and code cleanup to modernize some of our code.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ protected bool Replaying( object message )
ReceiveRecoverySuccess(success.HighestSequenceNr);
return true;
case EventReplayFailure failure:
Log.Debug("event replay failed, due to [{0}]", failure.Cause.Message);
Log.Error(failure.Cause, "event replay failed, due to [{0}]", failure.Cause.Message);
Buffer.DeliverBuffer(TotalDemand);
OnErrorThenStop(failure.Cause);
return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Data.SQLite" Version="5.0.11" />
<PackageReference Include="Microsoft.Data.SQLite" Version="6.0.4" />
</ItemGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
Expand Down
15 changes: 13 additions & 2 deletions src/core/Akka.Coordination/LeaseProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -141,12 +141,12 @@ public Lease GetLease(string leaseName, string configPath, string ownerName)
{
return (Lease)Activator.CreateInstance(leaseType, settings, _system);
}
catch
catch(MissingMethodException)
{
return (Lease)Activator.CreateInstance(leaseType, settings);
}
}
catch (Exception ex)
catch (MissingMethodException ex)
{
Log.Error(
ex,
Expand All @@ -159,6 +159,17 @@ public Lease GetLease(string leaseName, string configPath, string ownerName)

throw;
}
catch(Exception ex)
{
Log.Error(
ex,
"Failed to instantiate lease class [{2}] for leaseName [{0}], configPath [{1}].",
settings.LeaseName,
configPath,
leaseType);

throw;
}
});
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/core/Akka/Actor/Internal/ActorSystemImpl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public override IActorRef SystemActorOf<TActor>(string name = null)
public override void Abort()
{
Aborting = true;
Terminate();
FinalTerminate(); // Skip CoordinatedShutdown check and aggressively shutdown the ActorSystem
}

/// <summary>Starts this system</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Data.SQLite" Version="5.0.11" />
<PackageReference Include="Microsoft.Data.SQLite" Version="6.0.4" />
</ItemGroup>

<ItemGroup>
Expand Down