Skip to content

Commit 786bb9b

Browse files
Merge pull request #5842 from akkadotnet/dev
v1.4.37 Release
2 parents 85d7b89 + a42fa87 commit 786bb9b

File tree

6 files changed

+31
-6
lines changed

6 files changed

+31
-6
lines changed

RELEASE_NOTES.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
#### 1.4.37 April 14 2022 ####
2+
Akka.NET v1.4.37 is a minor release that contains some minor bug fixes.
3+
4+
* [Persistence.Query: Change AllEvents query failure log severity from Debug to Error](https://github.com/akkadotnet/akka.net/pull/5835)
5+
* [Coordination: Harden LeaseProvider instance Activator exception handling](https://github.com/akkadotnet/akka.net/pull/5838)
6+
* [Akka: Make ActorSystemImpl.Abort skip the CoordinatedShutdown check](https://github.com/akkadotnet/akka.net/pull/5839)
7+
8+
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).
9+
10+
| COMMITS | LOC+ | LOC- | AUTHOR |
11+
|---------|------|------|---------------------|
12+
| 3 | 15 | 4 | Gregorius Soedharmo |
13+
| 1 | 2 | 2 | dependabot[bot] |
14+
115
#### 1.4.36 April 4 2022 ####
216
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.
317

src/contrib/persistence/Akka.Persistence.Query.Sql/AllEventsPublisher.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ protected bool Replaying( object message )
127127
ReceiveRecoverySuccess(success.HighestSequenceNr);
128128
return true;
129129
case EventReplayFailure failure:
130-
Log.Debug("event replay failed, due to [{0}]", failure.Cause.Message);
130+
Log.Error(failure.Cause, "event replay failed, due to [{0}]", failure.Cause.Message);
131131
Buffer.DeliverBuffer(TotalDemand);
132132
OnErrorThenStop(failure.Cause);
133133
return true;

src/contrib/persistence/Akka.Persistence.Sqlite/Akka.Persistence.Sqlite.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</ItemGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Microsoft.Data.SQLite" Version="5.0.11" />
19+
<PackageReference Include="Microsoft.Data.SQLite" Version="6.0.4" />
2020
</ItemGroup>
2121

2222
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">

src/core/Akka.Coordination/LeaseProvider.cs

+13-2
Original file line numberDiff line numberDiff line change
@@ -141,12 +141,12 @@ public Lease GetLease(string leaseName, string configPath, string ownerName)
141141
{
142142
return (Lease)Activator.CreateInstance(leaseType, settings, _system);
143143
}
144-
catch
144+
catch(MissingMethodException)
145145
{
146146
return (Lease)Activator.CreateInstance(leaseType, settings);
147147
}
148148
}
149-
catch (Exception ex)
149+
catch (MissingMethodException ex)
150150
{
151151
Log.Error(
152152
ex,
@@ -159,6 +159,17 @@ public Lease GetLease(string leaseName, string configPath, string ownerName)
159159

160160
throw;
161161
}
162+
catch(Exception ex)
163+
{
164+
Log.Error(
165+
ex,
166+
"Failed to instantiate lease class [{2}] for leaseName [{0}], configPath [{1}].",
167+
settings.LeaseName,
168+
configPath,
169+
leaseType);
170+
171+
throw;
172+
}
162173
});
163174
}
164175
}

src/core/Akka/Actor/Internal/ActorSystemImpl.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ public override IActorRef SystemActorOf<TActor>(string name = null)
199199
public override void Abort()
200200
{
201201
Aborting = true;
202-
Terminate();
202+
FinalTerminate(); // Skip CoordinatedShutdown check and aggressively shutdown the ActorSystem
203203
}
204204

205205
/// <summary>Starts this system</summary>

src/examples/Akka.Persistence.Custom/Akka.Persistence.Custom.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Microsoft.Data.SQLite" Version="5.0.11" />
9+
<PackageReference Include="Microsoft.Data.SQLite" Version="6.0.4" />
1010
</ItemGroup>
1111

1212
<ItemGroup>

0 commit comments

Comments
 (0)