Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkatufus committed Dec 15, 2021
2 parents 66a1e88 + c3ecfe7 commit 8c1942c
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 17 deletions.
5 changes: 5 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 1.4.29 December 15 2021 ###
- Upgraded to [Akka.NET v1.4.29](https://github.com/akkadotnet/akka.net/releases/tag/1.4.29)
- [Upgraded Npgsql to 5.0.10](https://github.com/akkadotnet/Akka.Persistence.PostgreSql/pull/106)


### 1.4.25 September 9 2021 ###
- Upgraded to [Akka.NET v1.4.25](https://github.com/akkadotnet/akka.net/releases/tag/1.4.25)

Expand Down
4 changes: 2 additions & 2 deletions build-system/pr-validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
parameters:
name: 'linux_pr'
displayName: 'Linux PR Validation'
vmImage: 'ubuntu-16.04'
vmImage: 'ubuntu-20.04'
scriptFileName: './build.sh'
scriptArgs: RunTestsNetCore
outputDirectory: 'TestResults'
artifactName: 'net_core_tests-$(Build.BuildId)'
artifactName: 'net_core_tests-$(Build.BuildId)'
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
namespace Akka.Persistence.PostgreSql.Tests.Query
{
[Collection("PostgreSqlSpec")]
public class PostgreSqlCurrentAllEventsSpec : AllEventsSpec
public class PostgreSqlCurrentAllEventsSpec : CurrentAllEventsSpec
{
private static Config Initialize(PostgresFixture fixture)
{
Expand Down Expand Up @@ -50,4 +50,4 @@ protected override void Dispose(bool disposing)
DbUtils.Clean();
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -153,15 +153,6 @@ protected override void WriteEvent(DbCommand command, IPersistentRepresentation

command.Parameters.Add(new NpgsqlParameter("@Payload", serializationResult.DbType) { Value = serializationResult.Payload });

if (serializer != null)
{
AddParameter(command, "@SerializerId", DbType.Int32, serializer.Identifier);
}
else
{
AddParameter(command, "@SerializerId", DbType.Int32, DBNull.Value);
}

if (tags.Count != 0)
{
var tagBuilder = new StringBuilder(";", tags.Sum(x => x.Length) + tags.Count + 1);
Expand Down Expand Up @@ -286,4 +277,4 @@ public PostgreSqlQueryConfiguration(
};
}
}
}
}
6 changes: 3 additions & 3 deletions src/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
<PropertyGroup>
<XunitVersion>2.4.1</XunitVersion>
<XunitRunnerVersion>2.4.3</XunitRunnerVersion>
<AkkaVersion>1.4.25</AkkaVersion>
<PostgresVersion>5.0.7</PostgresVersion>
<AkkaVersion>1.4.29</AkkaVersion>
<PostgresVersion>6.0.1</PostgresVersion>
<NetStandardLibVersion>netstandard2.0</NetStandardLibVersion>
<NetFrameworkVersion>net45</NetFrameworkVersion>
<TestSdkVersion>16.11.0</TestSdkVersion>
<TestSdkVersion>17.0.0</TestSdkVersion>
<NetCoreTestVersion>netcoreapp3.1</NetCoreTestVersion>
<NetFrameworkTestVersion>net471</NetFrameworkTestVersion>
</PropertyGroup>
Expand Down

0 comments on commit 8c1942c

Please sign in to comment.