Skip to content

Commit 9c8e8a7

Browse files
committed
Release 4.1.3
1 parent cd6e3de commit 9c8e8a7

6 files changed

Lines changed: 27 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,27 @@ The `Unreleased` section name is replaced by the expected version of next releas
1010

1111
### Changed
1212

13-
- .NET 10 SDK update & build optimizations; Docker image update to MSSQL 2025
14-
- Docker image update to EventStoreDB 23.10.8 without certs or TLS (but retaining 3-node cluster) [#493](https://github.com/jet/equinox/pull/493)
15-
- `Equinox.CosmosStore`: Update `Microsoft.Azure.Cosmos` to >= `3.58.0` to remove transitive vulnerable default [#489](https://github.com/jet/equinox/pull/489)
1613
- `Equinox.DynamoStore`: Update `AWSSDK` dependencies to 4.x (knock-on effect of updating `FSharp.AWS.DynamoDB` dependency to `0.13.0-beta`) [#480](https://github.com/jet/equinox/pull/480) :pray: [@njlr](https://github.com/njlr)
17-
- `Equinox.SqlStreamStore.MsSql`: Update `System.IdentityModel.Tokens.Jwt` to remove transitive vulnerable defaults [#489](https://github.com/jet/equinox/pull/489)
18-
- `Equinox.EventStore`: Correct handling for `WrongExpectedVersion` when stream empty [#493](https://github.com/jet/equinox/pull/493)
19-
- `Equinox.MessageDb`: Provide additional constructors that accept an `NpgsqlDataSource` [#496](https://github.com/jet/equinox/pull/496)
2014

2115
### Added
2216

2317
- `Equinox.CosmosStore.Linq`: Add LINQ querying support for Indexed `u`nfolds [#450](https://github.com/jet/equinox/pull/450)
2418

19+
<a name="4.1.3"></a>
20+
## [4.1.3] - 2026-05-01
21+
22+
### Added
23+
24+
- `Equinox.MessageDb`: Provide additional constructors that accept an `NpgsqlDataSource` [#496](https://github.com/jet/equinox/pull/496) :pray: [@njlr](https://github.com/njlr)
25+
26+
### Changed
27+
28+
- .NET 10 SDK update & build optimizations; Docker image update to MSSQL 2025
29+
- Docker image update to EventStoreDB 23.10.8 without certs or TLS (but retaining 3-node cluster) [#493](https://github.com/jet/equinox/pull/493)
30+
- `Equinox.CosmosStore`: Update `Microsoft.Azure.Cosmos` to >= `3.58.0` to remove transitive vulnerable default [#489](https://github.com/jet/equinox/pull/489)
31+
- `Equinox.EventStore`: Correct handling for `WrongExpectedVersion` when stream empty [#493](https://github.com/jet/equinox/pull/493)
32+
- `Equinox.SqlStreamStore.MsSql`: Update `System.IdentityModel.Tokens.Jwt` to remove transitive vulnerable defaults [#489](https://github.com/jet/equinox/pull/489)
33+
2534
<a name="4.1.2"></a>
2635
## [4.1.2] - 2026-02-04
2736

@@ -833,7 +842,8 @@ The `Unreleased` section name is replaced by the expected version of next releas
833842

834843
(For information pertaining to earlier releases, see release notes in https://github.com/jet/equinox/releases and/or can someone please add it!)
835844

836-
[Unreleased]: https://github.com/jet/equinox/compare/4.1.2...HEAD
845+
[Unreleased]: https://github.com/jet/equinox/compare/4.1.3...HEAD
846+
[4.1.3]: https://github.com/jet/equinox/compare/4.1.2...4.1.3
837847
[4.1.2]: https://github.com/jet/equinox/compare/4.1.1...4.1.2
838848
[4.1.1]: https://github.com/jet/equinox/compare/4.1.0...4.1.1
839849
[4.1.0]: https://github.com/jet/equinox/compare/4.0.4...4.1.0

src/Equinox.DynamoStore/Equinox.DynamoStore.fsproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
55
<PackageValidationBaselineVersion>4.0.0</PackageValidationBaselineVersion>
6+
<!-- Inhibit NU5104 A stable release of a package should not have a prerelease dependency (all releases are -beta to date) -->
7+
<NoWarn>$NoWarn);NU5104</NoWarn>
68
</PropertyGroup>
79

810
<ItemGroup>

src/Equinox.SqlStreamStore.MsSql/Equinox.SqlStreamStore.MsSql.fsproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
55
<PackageValidationBaselineVersion>4.0.0</PackageValidationBaselineVersion>
6+
<!-- Inhibit NU5104 A stable release of a package should not have a prerelease dependency (final release) -->
7+
<NoWarn>$NoWarn);NU5104</NoWarn>
68
</PropertyGroup>
79

810
<ItemGroup>

src/Equinox.SqlStreamStore.MySql/Equinox.SqlStreamStore.MySql.fsproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
55
<PackageValidationBaselineVersion>4.0.0</PackageValidationBaselineVersion>
6+
<!-- Inhibit NU5104 A stable release of a package should not have a prerelease dependency (final release) -->
7+
<NoWarn>$NoWarn);NU5104</NoWarn>
68
</PropertyGroup>
79

810
<ItemGroup>

src/Equinox.SqlStreamStore.Postgres/Equinox.SqlStreamStore.Postgres.fsproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
55
<PackageValidationBaselineVersion>4.0.0</PackageValidationBaselineVersion>
6+
<!-- Inhibit NU5104 A stable release of a package should not have a prerelease dependency (final release) -->
7+
<NoWarn>$NoWarn);NU5104</NoWarn>
68
</PropertyGroup>
79

810
<ItemGroup>

src/Equinox.SqlStreamStore/Equinox.SqlStreamStore.fsproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
55
<PackageValidationBaselineVersion>4.0.0</PackageValidationBaselineVersion>
6+
<!-- Inhibit NU5104 A stable release of a package should not have a prerelease dependency (final release) -->
7+
<NoWarn>$NoWarn);NU5104</NoWarn>
68
</PropertyGroup>
79

810
<ItemGroup>

0 commit comments

Comments
 (0)