Skip to content

Commit b316340

Browse files
committed
Updated documentation for 2.17.0.
1 parent c20aaf7 commit b316340

File tree

7 files changed

+32
-7
lines changed

7 files changed

+32
-7
lines changed

Docs/landing/data/releases.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1-
current = "2.16.1"
1+
current = "2.17.0"
22

33
[[versions]]
4-
version = "2.16.1"
4+
version = "2.17.0"
55
status = "current"
6+
docs = "./2.17/"
7+
api = "./2.17/apidocs"
8+
9+
[[versions]]
10+
version = "2.16.1"
611
docs = "./2.16/"
712
api = "./2.16/apidocs"
813

Docs/landing/static/versions.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[
2+
{"version": "2.17"},
23
{"version": "2.16"},
34
{"version": "2.15"},
45
{"version": "2.14"},

Docs/reference/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
baseurl = "/mongo-csharp-driver/2.16"
1+
baseurl = "/mongo-csharp-driver/2.17"
22
languageCode = "en-us"
33
title = "MongoDB .NET Driver"
44
theme = "mongodb"

Docs/reference/content/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ type = "index"
99

1010
The [Getting Started]({{< relref "getting_started\index.md" >}}) guide contains information about system requirements, installation, and a simple tutorial to get up and running quickly.
1111

12-
## What's new in 2.16.0
12+
## What's new in 2.17.0
1313

1414
The [What's New]({{< relref "what_is_new.md" >}}) section contains the major new features of the driver.
1515

Docs/reference/content/upgrading.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,18 @@ title = "Upgrading"
1111

1212
## Breaking Changes
1313

14-
### Backwards compatibility with driver version 2.7.0–2.15.x
14+
### Backwards compatibility with driver version 2.7.0–2.16.x
1515

16-
Starting from 2.15.0, feature detection is implemented through maxWireVersion
16+
Driver versions 2.13.0 to 2.15.X changed `EstimatedDocumentCount` to use
17+
the `$collStats` aggregation stage instead of the `count` command. This
18+
unintentionally broke estimated document counts on views. 2.16.0 and later
19+
switched back to using the `count` command. Unfortunately MongoDB 5.0.0-5.0.8
20+
do not include the `count` command in Stable API v1. If you are using the
21+
Stable API with `EstimatedDocumentCount`, you must upgrade to server version
22+
5.0.9+ or set `strict: false` when configuring `ServerApi` to avoid encountering
23+
errors.
24+
25+
Starting from 2.15.0, feature detection is implemented through maxWireVersion
1726
instead of buildInfo. This should have no user-visible impact.
1827

1928
Driver version 2.14.0 and later only supports MongoDB 3.6+. It cannot connect to

Docs/reference/content/what_is_new.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ title = "What's New"
88
pre = "<i class='fa fa-star'></i>"
99
+++
1010

11+
## What's New in 2.17.0
12+
13+
The main new features in 2.17.0 include:
14+
15+
* Support for MongoDB server version 6.0.0 GA
16+
* [BETA] Support for Queryable Encryption
17+
* LINQ3 bug fixes and improvements
18+
* Add arbitrary aggregation stages to LINQ queries using `IMongoQueryable.AppendStage()` method (LINQ3)
19+
* Support for `$topN` and related accumulators in `$group` aggregation stage
20+
1121
## What's New in 2.16.0
1222

1323
The main new features in 2.16.0 include:

Docs/reference/data/mongodb.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
githubRepo = "mongo-csharp-driver"
22
githubBranch = "master"
3-
currentVersion = "2.16"
3+
currentVersion = "2.17"
44
highlightTheme = "idea.css"
55
apiUrl = "apidocs/html"

0 commit comments

Comments
 (0)