Skip to content

Commit

Permalink
Merge pull request #1033 from eventflow/prepare-release
Browse files Browse the repository at this point in the history
v1: Prepare next alpha release
  • Loading branch information
rasmus authored May 23, 2024
2 parents 2b100fb + ed8791d commit 2439cbb
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
jobs:
build:
runs-on: ubuntu-20.04

environment:
name: release

env:
HELPZ_POSTGRESQL_PASS: Password12!
EVENTFLOW_MSSQL_SERVER: 127.0.0.1,1433
Expand Down
7 changes: 7 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ https://github.com/eventflow/EventFlow/blob/develop-v1/MIGRATION_GUIDE.md
and it will get fixed asap. EventFlow would be where it is today without the grate community
contributions that it have received over the years)

Changes since last 1.x pre-release, `1.0.5003-alpha`

* New: .NET 8 support
* New: Enable `IEventStore` to load events to a given sequence number (thanks @SeWaS)
* New: `EventFlow.Hangfire` now part of the v1 release cycle (thanks @nicolaj-hartmann)
* Fix/breaking: Switch from `System.Data.SqlClient` to `Microsoft.Data.SqlClient` (thanks @janrybka)

Changes since last 1.x pre-release, `1.0.5002-alpha`

* New: Read model rebuilder can be done across multiple read model types. The piping of events
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.5" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
<PackageReference Include="Npgsql" Version="4.1.3.1" />
<PackageReference Include="Npgsql" Version="4.1.14" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="3.1.4" />
<PackageReference Include="NUnit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
<PackageReference Include="Npgsql" Version="4.0.2" />
<PackageReference Include="NUnit" Version="3.13.2" />
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Source/EventFlow.PostgreSql/EventFlow.PostgreSql.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<ItemGroup>
<PackageReference Include="dbup-postgresql" Version="4.1.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="Npgsql" Version="4.0.2" />
<PackageReference Include="Npgsql" Version="4.1.14" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 2439cbb

Please sign in to comment.