You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/landing/data/releases.toml
+15-4Lines changed: 15 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,11 @@
1
1
current = "3.1.1"
2
2
3
+
[[versions]]
4
+
version = "3.2.0-rc0"
5
+
status = "current"
6
+
docs = "./3.2"
7
+
api = "http://api.mongodb.org/java/3.2"
8
+
3
9
[[versions]]
4
10
version = "3.1.1"
5
11
status = "current"
@@ -11,6 +17,11 @@ current = "3.1.1"
11
17
docs = "./3.0"
12
18
api = "http://api.mongodb.org/java/3.0"
13
19
20
+
[[versions]]
21
+
version = "2.14.0-rc0"
22
+
docs = "./2.14"
23
+
api = "http://api.mongodb.org/java/2.14"
24
+
14
25
[[versions]]
15
26
version = "2.13.3"
16
27
docs = "./2.13"
@@ -19,19 +30,19 @@ current = "3.1.1"
19
30
[[drivers]]
20
31
name = "mongodb-driver"
21
32
description = "The synchronous driver, new in 3.0.<br/>For older versions of the driver or for OSGi-based applications please use the `mongo-java-driver`."
22
-
versions = "3.1.1,3.0.4"
33
+
versions = "3.2.0-rc0,3.1.1,3.0.4"
23
34
24
35
[[drivers]]
25
36
name = "mongo-java-driver"
26
37
description = "An uber jar containing the bson library, the core library and the mongodb-driver.<br/>This artifact is a valid OSGi bundle."
Copy file name to clipboardExpand all lines: docs/reference/content/driver-async/getting-started/quick-tour-admin.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -223,7 +223,7 @@ For more information about text search see the [text index]({{< docsref "/core/i
223
223
## Running a command
224
224
225
225
While not all commands have a specific helper, however you can run any [command]({{< docsref "/reference/command">}})
226
-
by using the [`runCommand()`](http://api.mongodb.org/java/3.1/?com/mongodb/async/client/MongoDatabase.html#runCommand-org.bson.conversions.Bson-com.mongodb.ReadPreference-com.mongodb.async.SingleResultCallback-)
226
+
by using the [`runCommand()`]({{< apiref "com/mongodb/async/client/MongoDatabase.html#runCommand-org.bson.conversions.Bson-com.mongodb.ReadPreference-com.mongodb.async.SingleResultCallback-">}})
227
227
method. Here we call the [buildInfo]({{ docsref "reference/command/buildInfo" }}) command:
Copy file name to clipboardExpand all lines: docs/reference/content/driver/getting-started/quick-tour-admin.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -166,7 +166,7 @@ For more information about text search see the [text index]({{< docsref "/core/i
166
166
## Running a command
167
167
168
168
While not all commands have a specific helper, however you can run any [command]({{< docsref "/reference/command">}})
169
-
by using the [`runCommand()`](http://api.mongodb.org/java/3.1/?com/mongodb/client/MongoDatabase.html#runCommand-org.bson.conversions.Bson-com.mongodb.ReadPreference-)
169
+
by using the [`runCommand()`]({{< apiref "com/mongodb/client/MongoDatabase.html#runCommand-org.bson.conversions.Bson-com.mongodb.ReadPreference-">}})
170
170
method. Here we call the [buildInfo]({{ docsref "reference/command/buildInfo" }}) command:
0 commit comments