Skip to content

Commit ec80a01

Browse files
authored
Update RELEASE_NOTES.md for 1.5.32 release (#398)
1 parent 06524cd commit ec80a01

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

RELEASE_NOTES.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
#### 1.5.32 December 23rd 2024 ####
2+
3+
* [Bump Akka.NET to 1.5.32](https://github.com/akkadotnet/akka.net/releases/tag/1.5.32)
4+
* [Bump Akka.Persistence.Hosting to 1.5.32](https://github.com/akkadotnet/Akka.Hosting/releases/tag/1.5.32)
5+
* [Bump MongoDB.Driver to 3.0.0](https://github.com/akkadotnet/Akka.Persistence.MongoDB/pull/395)
6+
7+
**Breaking Change Notice**
8+
9+
Due to breaking changes in MongoDb.Driver v3.0.0, from this point forward, Akka.Persistence.MongoDb releases **WILL NOT** support:
10+
* MongoDb server v3.6 and earlier
11+
* Projects that targets .NET Core 2.x and lower
12+
* Projects that targets .NET Framework 2.7.1 and lower
13+
* LINQ2 provider
14+
* TLS 1.0 and 1.1
15+
16+
**Driver Behavior Change And Workaround**
17+
18+
There is a behavior change in `MongoDb.Driver` v3.0.0 where it would use the DNS resolved server host address when it actually tries to connect to the server. This is problematic if your application lives inside a container and hard code your MongoDb server address inside the connection string.
19+
20+
Example:
21+
* Server address used in connection string: "host.docker.internal:27017"
22+
* Actual server address being used in MongoDb connection: "127.0.0.1:27017"
23+
24+
The workaround is to add "directConnection=true" in your connection string.
25+
26+
**`MongoDb.Driver` Upgrade Advisories**
27+
28+
`MongoDb.Driver` 3.0.0 release note: https://github.com/mongodb/mongo-csharp-driver/releases/tag/v3.0.0
29+
30+
`MongoDb.Driver` 3.0.0 Upgrade advisory: https://www.mongodb.com/docs/drivers/csharp/v3.0/upgrade/v3/
31+
132
#### 1.5.32-beta1 December 5th 2024 ####
233

334
* [Bump Akka.NET to 1.5.32](https://github.com/akkadotnet/akka.net/releases/tag/1.5.32)

0 commit comments

Comments
 (0)