Skip to content

Commit eb569fb

Browse files
committed
Add basic reference documentation for the 4.1 release
1 parent 3327634 commit eb569fb

File tree

3 files changed

+38
-17
lines changed

3 files changed

+38
-17
lines changed

docs/landing/data/releases.toml

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

3+
[[versions]]
4+
version = "4.1.0-beta1"
5+
docs = "./4.1"
6+
api = "./4.1/apidocs"
7+
38
[[versions]]
49
version = "4.0.2"
510
docs = "./4.0"

docs/reference/content/upgrading.md

Lines changed: 24 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ title = "Upgrade Considerations"
77
pre = "<i class='fa fa-level-up'></i>"
88
+++
99

10+
# Upgrading to the 4.1 Driver
11+
12+
The 4.1 release is a minor release as per the definition of [semantic versioning](https://semver.org). As such, there are no breaking
13+
changes in this release for users upgrading from the 4.0 release. Please see the upgrading guide for the 4.0 driver (just below) if you
14+
plan to upgrade directly from a 3.x release of the driver.
15+
1016
# Upgrading to the 4.0 Driver
1117

1218
## Upgrading from the 3.12 Java driver
@@ -74,20 +80,21 @@ The minimum JVM is Java 8.
7480

7581
The following table specifies the compatibility of the MongoDB Java driver for use with a specific version of MongoDB.
7682

77-
|Java Driver Version|MongoDB 2.6|MongoDB 3.0 |MongoDB 3.2|MongoDB 3.4|MongoDB 3.6|MongoDB 4.0|MongoDB 4.2|
78-
|-------------------|-----------|------------|-----------|-----------|-----------|-----------|-----------|
79-
|Version 4.0 ||||||||
80-
|Version 3.12 ||||||||
81-
|Version 3.11 ||||||||
82-
|Version 3.10 ||||||| |
83-
|Version 3.9 ||||||| |
84-
|Version 3.9 ||||||| |
85-
|Version 3.8 ||||||| |
86-
|Version 3.7 |||||| | |
87-
|Version 3.6 |||||| | |
88-
|Version 3.5 ||||| | | |
89-
|Version 3.4 ||||| | | |
90-
|Version 3.3 |||| | | | |
91-
|Version 3.2 |||| | | | |
92-
|Version 3.1 ||| | | | | |
93-
|Version 3.0 ||| | | | | |
83+
|Java Driver Version|MongoDB 2.6|MongoDB 3.0 |MongoDB 3.2|MongoDB 3.4|MongoDB 3.6|MongoDB 4.0|MongoDB 4.2|MongoDB 4.4|
84+
|-------------------|-----------|------------|-----------|-----------|-----------|-----------|-----------|-----------|
85+
|Version 4.1 |||||||||
86+
|Version 4.0 |||||||| |
87+
|Version 3.12 |||||||| |
88+
|Version 3.11 |||||||| |
89+
|Version 3.10 ||||||| | |
90+
|Version 3.9 ||||||| | |
91+
|Version 3.9 ||||||| | |
92+
|Version 3.8 ||||||| | |
93+
|Version 3.7 |||||| | | |
94+
|Version 3.6 |||||| | | |
95+
|Version 3.5 ||||| | | | |
96+
|Version 3.4 ||||| | | | |
97+
|Version 3.3 |||| | | | | |
98+
|Version 3.2 |||| | | | | |
99+
|Version 3.1 ||| | | | | | |
100+
|Version 3.0 ||| | | | | | |

docs/reference/content/whats-new.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ title = "What's New"
77
pre = "<i class='fa fa-level-up'></i>"
88
+++
99

10+
# What's new in 4.1
11+
12+
This release fully supports all MongoDB releases from versions 2.6 to 4.4. Key new features of the 4.1 Java driver release include:
13+
14+
* Update and delete operations support index hinting.
15+
* The find operation supports allowDiskUse for sorts that require too much memory to execute in RAM.
16+
* Authentication supports the MONGODB-AWS mechanism using Amazon Web Services (AWS) Identity and Access Management (IAM) credentials.
17+
* Authentication requires fewer round trips to the server, resulting in faster connection setup.
18+
1019
# What's new in 4.0
1120

1221
This release adds no new features but, as a major release, contains breaking changes that may affect your application. Please consult the

0 commit comments

Comments
 (0)