Skip to content

Commit 58cd0ed

Browse files
committed
CSHARP-3049: Update docs for 2.11.0-beta1
1 parent 9be3c68 commit 58cd0ed

File tree

7 files changed

+47
-14
lines changed

7 files changed

+47
-14
lines changed

Docs/landing/data/releases.toml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
current = "2.10.3"
22

3+
[[versions]]
4+
version = "2.11.0-beta1"
5+
docs = "./2.11/"
6+
api = "./2.11/apidocs"
7+
38
[[versions]]
49
version = "2.10.3"
510
docs = "./2.10/"
@@ -66,32 +71,32 @@ current = "2.10.3"
6671
package = "MongoDB.Driver"
6772
description = "The driver."
6873
dependencies = ".NET Core Driver,.NET BSON Library"
69-
versions = "2.10.3,2.9.3,2.8.1,2.7.3,2.6.1,2.5.1,2.4.4,2.3.0,2.2.4,2.1.1,2.0.2"
74+
versions = "2.11.0-beta1,2.10.3,2.9.3,2.8.1,2.7.3,2.6.1,2.5.1,2.4.4,2.3.0,2.2.4,2.1.1,2.0.2"
7075

7176
[[drivers]]
7277
name = ".NET GridFS"
7378
package = "MongoDB.Driver.GridFS"
7479
description = "The GridFS library."
7580
dependencies = ".NET Driver,.NET Core Driver,.NET BSON Library"
76-
versions = "2.10.3,2.9.3,2.8.1,2.7.3,2.6.1,2.5.1,2.4.4,2.3.0,2.2.4,2.1.1"
81+
versions = "2.11.0-beta1,2.9.3,2.8.1,2.7.3,2.6.1,2.5.1,2.4.4,2.3.0,2.2.4,2.1.1"
7782

7883
[[drivers]]
7984
name = ".NET Core Driver"
8085
package = "MongoDB.Driver.Core"
8186
description = "The core driver."
8287
dependencies = ".NET BSON Library"
83-
versions = "2.10.3,2.9.3,2.8.1,2.7.3,2.6.1,2.5.1,2.4.4,2.3.0,2.2.4,2.1.1,2.0.2"
88+
versions = "2.11.0-beta1,2.10.3,2.9.3,2.8.1,2.7.3,2.6.1,2.5.1,2.4.4,2.3.0,2.2.4,2.1.1,2.0.2"
8489

8590
[[drivers]]
8691
name = ".NET BSON Library"
8792
package = "MongoDB.Bson"
8893
description = "The BSON library."
8994
dependencies = ""
90-
versions = "2.10.3,2.9.3,2.8.1,2.7.3,2.6.1,2.5.1,2.4.4,2.3.0,2.2.4,2.1.1,2.0.2"
95+
versions = "2.11.0-beta1,2.10.3,2.9.3,2.8.1,2.7.3,2.6.1,2.5.1,2.4.4,2.3.0,2.2.4,2.1.1,2.0.2"
9196

9297
[[drivers]]
9398
name = ".NET Legacy Driver"
9499
package = "mongocsharpdriver"
95100
description = "The legacy driver."
96101
dependencies = ".NET Driver,.NET Core Driver,.NET BSON Library"
97-
versions = "2.10.3,2.9.3,2.8.1,2.7.3,2.6.1,2.5.1,2.4.4,2.3.0,2.2.4,2.1.1,2.0.2,1.11"
102+
versions = "2.11.0-beta1,2.10.3,2.9.3,2.8.1,2.7.3,2.6.1,2.5.1,2.4.4,2.3.0,2.2.4,2.1.1,2.0.2,1.11"

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.11"},
23
{"version": "2.10"},
34
{"version": "2.9"},
45
{"version": "2.8"},

Docs/reference/config.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
baseurl = "/mongo-csharp-driver/2.10"
1+
baseurl = "/mongo-csharp-driver/2.11"
22
languageCode = "en-us"
33
title = "MongoDB .NET Driver"
44
theme = "mongodb"
@@ -19,4 +19,4 @@ canonifyurls = false
1919
pre = "<i class='fa fa-github'></i>"
2020
weight = 900
2121
identifier = "githubLink"
22-
url = "https://github.com/mongodb/mongo-csharp-driver/tree/master"
22+
url = "https://github.com/mongodb/mongo-csharp-driver/tree/master"

Docs/reference/content/index.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,12 @@ 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.10.0
13-
14-
{{% note %}}
15-
If you are using unacknowledged writes (also known as w:0 writes) with versions 2.10.0 or 2.10.1 of the driver, we strongly recommend you upgrade to version 2.10.2 as soon as possible, to obtain the fix for a critical issue: https://jira.mongodb.org/browse/CSHARP-2960
16-
{{% /note %}}
12+
## What's new in 2.11.0
1713

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

16+
The main new features in 2.11.0-beta1 support new features in MongoDB 4.4.0.
17+
2018
## Upgrading
2119

2220
If you are coming from the 2.0.x series of the driver, consult the [upgrading]({{< relref "upgrading.md" >}}) documentation on changes.

Docs/reference/content/upgrading.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ title = "Upgrading"
1111

1212
## Breaking Changes
1313

14-
# Backwards compatibility with driver version 2.7.0–2.10.x
14+
### Backwards compatibility with driver version 2.7.0–2.10.x
1515
An application that is unable to contact the OCSP endpoints and/or CRL
1616
distribution points specified in a server's certificate may experience
1717
connectivity issues (e.g. if the application is behind a firewall with

Docs/reference/content/what_is_new.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,35 @@ title = "What's New"
77
identifier = "What's New"
88
pre = "<i class='fa fa-star'></i>"
99
+++
10+
## What's New in 2.11.0-beta1
11+
12+
Some of the changes in 2.11.0-beta1 include:
13+
14+
* Support for all new
15+
[``$meta``](https://docs.mongodb.com/manual/reference/operator/projection/meta/)
16+
projections: `randVal`, `searchScore`, `searchHighlights`,
17+
`geoNearDistance`, `geoNearPoint`, `recordId`, `indexKey` and
18+
`sortKey`
19+
* Support for passing a hint to update commands as well as
20+
`findAndModify` update and replace operations
21+
* Support for `allowDiskUse` on find operations
22+
* Support for `MONGODB-AWS` authentication using Amazon Web Services
23+
(AWS) Identity and Access Management (IAM) credentials
24+
* Support for stapled OCSP (Online Certificate Status Protocol) (macOS only)
25+
26+
Other new additions and updates in this beta include:
27+
28+
* A new target of .NET Standard 2.0
29+
* Support for Snappy compression on .NET Core on Windows (in addition
30+
to existing support on .NET Framework)
31+
* Support for Zstandard compression on Windows on 64-bit platforms
32+
* A new default of enabling certificate revocation checking.
33+
* A new URI option `tlsDisableCertificateRevocationCheck` to disable
34+
certificate revocation checking.
35+
* An expanded list of retryable write errors via the inclusion of
36+
`ExceededTimeLimit`, `LockTimeout` and `ClientDisconnect`
37+
* A new GuidRepresentationMode setting to opt-in to the new V3 GuidRepresentation mode
38+
1039

1140
## What's New in 2.10.0
1241

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.10"
3+
currentVersion = "2.11"
44
highlightTheme = "idea.css"
55
apiUrl = "apidocs/html"

0 commit comments

Comments
 (0)