Skip to content

Commit 2439cbb

Browse files
authored
Merge pull request #1033 from eventflow/prepare-release
v1: Prepare next alpha release
2 parents 2b100fb + ed8791d commit 2439cbb

File tree

5 files changed

+13
-3
lines changed

5 files changed

+13
-3
lines changed

.github/workflows/release.yml

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77
jobs:
88
build:
99
runs-on: ubuntu-20.04
10+
11+
environment:
12+
name: release
13+
1014
env:
1115
HELPZ_POSTGRESQL_PASS: Password12!
1216
EVENTFLOW_MSSQL_SERVER: 127.0.0.1,1433

RELEASE_NOTES.md

+7
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ https://github.com/eventflow/EventFlow/blob/develop-v1/MIGRATION_GUIDE.md
99
and it will get fixed asap. EventFlow would be where it is today without the grate community
1010
contributions that it have received over the years)
1111

12+
Changes since last 1.x pre-release, `1.0.5003-alpha`
13+
14+
* New: .NET 8 support
15+
* New: Enable `IEventStore` to load events to a given sequence number (thanks @SeWaS)
16+
* New: `EventFlow.Hangfire` now part of the v1 release cycle (thanks @nicolaj-hartmann)
17+
* Fix/breaking: Switch from `System.Data.SqlClient` to `Microsoft.Data.SqlClient` (thanks @janrybka)
18+
1219
Changes since last 1.x pre-release, `1.0.5002-alpha`
1320

1421
* New: Read model rebuilder can be done across multiple read model types. The piping of events

Source/EventFlow.EntityFramework.Tests/EventFlow.EntityFramework.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.5" />
1111
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.5" />
1212
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
13-
<PackageReference Include="Npgsql" Version="4.1.3.1" />
13+
<PackageReference Include="Npgsql" Version="4.1.14" />
1414
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="3.1.4" />
1515
<PackageReference Include="NUnit" Version="3.12.0" />
1616
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />

Source/EventFlow.PostgreSql.Tests/EventFlow.PostgreSql.Tests.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
<ItemGroup>
2222
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
23-
<PackageReference Include="Npgsql" Version="4.0.2" />
2423
<PackageReference Include="NUnit" Version="3.13.2" />
2524
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
2625
</ItemGroup>

Source/EventFlow.PostgreSql/EventFlow.PostgreSql.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<ItemGroup>
2828
<PackageReference Include="dbup-postgresql" Version="4.1.0" />
2929
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
30-
<PackageReference Include="Npgsql" Version="4.0.2" />
30+
<PackageReference Include="Npgsql" Version="4.1.14" />
3131
</ItemGroup>
3232

3333
<ItemGroup>

0 commit comments

Comments
 (0)