Skip to content

Commit c20aaf7

Browse files
committed
Added Release Notes for 2.17.0.
1 parent fc1602e commit c20aaf7

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# .NET Driver Version 2.17.0 Release Notes
2+
3+
This is the general availability release for the 2.17.0 version of the driver.
4+
5+
The main new features in 2.17.0 include:
6+
7+
* Support for MongoDB server version 6.0.0 GA
8+
* [BETA] Support for Queryable Encryption
9+
* LINQ3 bug fixes and improvements
10+
* Add arbitrary aggregation stages to LINQ queries using `IMongoQueryable.AppendStage()` method (LINQ3)
11+
* Support for `$topN` and related accumulators in `$group` aggregation stage
12+
13+
### EstimatedDocumentCount and Stable API
14+
15+
`EstimatedDocumentCount` is implemented using the `count` server command. Due to an oversight in versions
16+
5.0.0-5.0.8 of MongoDB, the `count` command, which `EstimatedDocumentCount` uses in its implementation,
17+
was not included in v1 of the Stable API. If you are using the Stable API with `EstimatedDocumentCount`,
18+
you must upgrade to server version 5.0.9+ or set `strict: false` when configuring `ServerApi` to avoid
19+
encountering errors.
20+
21+
For more information about the Stable API see:
22+
23+
https://mongodb.github.io/mongo-csharp-driver/2.16/reference/driver/stable_api/
24+
25+
An online version of these release notes is available at:
26+
27+
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.17.0.md
28+
29+
The full list of JIRA issues resolved in this release is available at:
30+
31+
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.17.0%20ORDER%20BY%20key%20ASC
32+
33+
Documentation on the .NET driver can be found at:
34+
35+
https://mongodb.github.io/mongo-csharp-driver/
36+

0 commit comments

Comments
 (0)