Skip to content

Commit

Permalink
Bump versions (#58)
Browse files Browse the repository at this point in the history
* Updated packages

* Added release notes and bumped package version
  • Loading branch information
MattiasJakobsson authored Oct 14, 2024
1 parent 461dec5 commit 2974f64
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 17 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<Copyright>Copyright © 2013-2024 Akka.NET Project</Copyright>
<NoWarn>$(NoWarn);CS1591;NU1701;CA1707;</NoWarn>
<VersionPrefix>1.5.26</VersionPrefix>
<VersionPrefix>1.5.30</VersionPrefix>
<Authors>Akka.NET Team</Authors>
<PackageProjectUrl>https://github.com/akkadotnet/Akka.Persistence.EventStore</PackageProjectUrl>
<PackageReleaseNotes>Serialization changes to match 1.4 API
Expand Down
24 changes: 12 additions & 12 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<Project>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<AkkaVersion>1.5.26</AkkaVersion>
<EventStoreVersion>23.3.3</EventStoreVersion>
<XunitVersion>2.8.1</XunitVersion>
<TestSdkVersion>17.10.0</TestSdkVersion>
<AkkaVersion>1.5.30</AkkaVersion>
<EventStoreVersion>23.3.5</EventStoreVersion>
<XunitVersion>2.9.2</XunitVersion>
<TestSdkVersion>17.11.1</TestSdkVersion>
</PropertyGroup>
<!-- Akka.NET Package Versions -->
<ItemGroup>
<PackageVersion Include="Akka.Persistence.Hosting" Version="1.5.25" />
<PackageVersion Include="Akka.Persistence.Hosting" Version="1.5.30" />
<PackageVersion Include="Akka" Version="$(AkkaVersion)" />
<PackageVersion Include="Akka.Persistence" Version="$(AkkaVersion)" />
<PackageVersion Include="Akka.Persistence.Query" Version="$(AkkaVersion)" />
<PackageVersion Include="Akka.Persistence.TestKit.Xunit2" Version="1.5.26" />
<PackageVersion Include="Akka.Persistence.TestKit.Xunit2" Version="1.5.30" />
</ItemGroup>
<!-- EventStore Package Versions -->
<ItemGroup>
Expand All @@ -23,22 +23,22 @@
<!-- Testing Utilities -->
<ItemGroup>
<PackageVersion Include="Akka.Persistence.TCK" Version="$(AkkaVersion)" />
<PackageVersion Include="Akka.Hosting.TestKit" Version="1.5.25" />
<PackageVersion Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
<PackageVersion Include="Akka.Hosting.TestKit" Version="1.5.30" />
<PackageVersion Include="Microsoft.Extensions.Configuration.Json" Version="8.0.1" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="$(TestSdkVersion)" />
<PackageVersion Include="xunit" Version="$(XunitVersion)" />
<PackageVersion Include="xunit.runner.visualstudio" Version="$(XunitVersion)">
<PackageVersion Include="xunit.runner.visualstudio" Version="2.8.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageVersion>
<PackageVersion Include="FluentAssertions" Version="6.12.0" />
<PackageVersion Include="FluentAssertions" Version="6.12.1" />
<PackageVersion Include="Docker.DotNet" Version="3.125.15" />
<PackageVersion Include="BenchmarkDotNet" Version="0.13.12" />
<PackageVersion Include="BenchmarkDotNet" Version="0.14.0" />
<PackageVersion Include="JetBrains.dotMemoryUnit" Version="3.2.20220510" />
</ItemGroup>
<ItemGroup>
<GlobalPackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="all" />
<PackageVersion Include="JetBrains.Annotations" Version="2023.3.0" />
<PackageVersion Include="JetBrains.Annotations" Version="2024.2.0" />
<PackageVersion Include="NuGet.Frameworks" Version="6.9.1" />
</ItemGroup>
</Project>
6 changes: 6 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#### 1.5.30 October 14, 2024 ####
Upgrade Akka to version 1.5.30
Upgrade EventStore to version 23.3.5
[Added a message adapter for System.Text.Json](https://github.com/akkadotnet/Akka.Persistence.EventStore/pull/54)
[Added support for a writer uuid](https://github.com/akkadotnet/Akka.Persistence.EventStore/pull/55)

#### 1.5.25 June 28 2024 ####
Upgrade Akka to version 1.5.26
[Fix for an issue](https://github.com/akkadotnet/Akka.Persistence.EventStore/pull/45) where tagged query would fail if some matching
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,23 @@ public sealed class EventStoreSnapshotStoreSpec : SnapshotStoreSpec
{
// TODO: hack. Replace when https://github.com/akkadotnet/akka.net/issues/3811
protected override bool SupportsSerialization => false;

public EventStoreSnapshotStoreSpec(EventStoreContainer eventStoreContainer)
: base(EventStoreConfiguration.Build(eventStoreContainer, "es-snapshot-spec"), nameof(EventStoreSnapshotStoreSpec))
: base(EventStoreConfiguration.Build(eventStoreContainer, "es-snapshot-spec"),
nameof(EventStoreSnapshotStoreSpec))
{
Initialize();
}


[Fact(Skip = "Not supported by EventStore, it has simpler retention policy")]
public override void SnapshotStore_should_delete_a_single_snapshot_identified_by_SequenceNr_in_snapshot_metadata()
{

}

[Fact(Skip = "Not supported by EventStore, it has simpler retention policy")]
public override void
SnapshotStore_should_delete_a_single_snapshot_identified_by_SequenceNr_in_snapshot_metadata_if_timestamp_is_MinValue()
{
}
}

0 comments on commit 2974f64

Please sign in to comment.