Skip to content

Commit bc721be

Browse files
committed
(DOCSP-8039) - updates driver versions
1 parent 5ac1951 commit bc721be

11 files changed

+92
-14
lines changed

conf.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@
7272
'java-docs-latest': ('http://mongodb.github.io/mongo-java-driver/3.12/%s', ''),
7373
'kafka-21-javadoc': ('https://kafka.apache.org/21/javadoc/org/apache/kafka%s', ''),
7474
'csharp-docs-latest': ('http://mongodb.github.io/mongo-csharp-driver/2.10%s', ''),
75+
'node-docs-latest': ('http://mongodb.github.io/node-mongodb-native/3.4%s', ''),
76+
'scala-docs-latest': ('http://mongodb.github.io/mongo-scala-driver/2.8%s', ''),
7577
'aws-docs': ('https://docs.aws.amazon.com/%s', ''),
7678
'wikipedia': ('https://en.wikipedia.org/wiki/%s', ''),
7779
'community-support': ('https://www.mongodb.com/community-support-resources%s', ''),

source/drivers/go.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ to install the dependency in your project:
3838

3939
.. code-block:: go
4040

41-
dep ensure -add "go.mongodb.org/mongo-driver/mongo@~1.0.0"
41+
dep ensure -add "go.mongodb.org/mongo-driver/mongo"
4242

4343

4444
See `Installation <https://github.com/mongodb/mongo-go-driver#installation>`__

source/drivers/node.txt

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,15 @@ Introduction
1717

1818
The official MongoDB Node.js driver provides both callback-based and Promise-based
1919
interaction with MongoDB, allowing applications to take full advantage of the new
20-
features in ES6. The 2.x series of the driver is powered by a brand new core
21-
driver and BSON library.
20+
features in ES6.
2221

23-
- `Tutorials <http://mongodb.github.io/node-mongodb-native/3.2/tutorials/main/>`__
22+
- :node-docs-latest:`Tutorials </tutorials/main/>`
2423

25-
- `Usage Guide <http://mongodb.github.io/node-mongodb-native/3.2/reference/main/>`__
24+
- :node-docs-latest:`Usage Guide </reference/main/>`
2625

27-
- `API Reference <http://mongodb.github.io/node-mongodb-native/3.2/api/>`_
26+
- :node-docs-latest:`API Reference </api/>`
2827

29-
- `Changelog <http://mongodb.github.io/node-mongodb-native/3.2/upgrade-migration/main/>`__
28+
- :node-docs-latest:`Changelog </upgrade-migration/main/>`
3029

3130
- `Source Code <https://github.com/mongodb/node-mongodb-native>`__
3231

@@ -40,14 +39,13 @@ Take the free online course taught by MongoDB
4039
.. figure:: /figures/M220JS_hero.jpg
4140

4241
- `M220JS: MongoDB for JavaScript Developers <https://university.mongodb.com/courses/M220JS/about>`__
43-
44-
Learn the essentials of Node.js application development with MongoDB.
42+
Learn the essentials of Node.js application development with MongoDB.
4543

4644

4745
Installation
4846
------------
4947

50-
The recommended way to get started using the Node.js 2.0 driver is by using
48+
The recommended way to get started using the Node.js driver is by using
5149
`NPM (Node Package Manager) <https://www.npmjs.com/>`__ to install the dependency in your project.
5250

5351
After you’ve created your project with ``npm init``, you can install the MongoDB driver and its dependencies

source/drivers/scala.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ This is the officially supported Scala driver for MongoDB.
2121

2222
It's a modern idiomatic Scala driver with asynchronous and non-blocking IO.
2323

24-
- `Getting Started <http://mongodb.github.io/mongo-scala-driver/2.6/getting-started/>`__
24+
- :scala-docs-latest:`Getting Started </getting-started/>`
2525

26-
- `Usage Guide <http://mongodb.github.io/mongo-scala-driver/2.6/reference/>`__
26+
- :scala-docs-latest:`Usage Guide </reference/>`
2727

28-
- `API Reference <http://mongodb.github.io/mongo-scala-driver/2.6/scaladoc/>`_
28+
- :scala-docs-latest:`API Reference </scaladoc/>`
2929

30-
- `Changelog <http://mongodb.github.io/mongo-scala-driver/2.6/changelog/>`__
30+
- :scala-docs-latest:`Changelog </changelog/>`
3131

3232
- `Source Code <http://github.com/mongodb/mongo-scala-driver>`__
3333

source/includes/language-compatibility-table-csharp.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,20 @@
1717
- .NET Core 2.1
1818
- .NET Core 2.2
1919

20+
* - Version 2.10
21+
-
22+
-
23+
- |checkmark|
24+
- |checkmark|
25+
- |checkmark|
26+
- |checkmark|
27+
- |checkmark|
28+
- |checkmark|
29+
- |checkmark|
30+
- |checkmark|
31+
- |checkmark|
32+
33+
2034
* - Version 2.9
2135
-
2236
-

source/includes/language-compatibility-table-node.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,17 @@
1111
- Node.js v6.X.X
1212
- Node.js v8.X.X
1313
- Node.js v10.x.x
14+
- Node.js v12.x.x
15+
16+
* - 3.4.X
17+
-
18+
-
19+
-
20+
- |checkmark|
21+
- |checkmark|
22+
- |checkmark|
23+
- |checkmark|
24+
- |checkmark|
1425

1526
* - 3.3.X
1627
-
@@ -20,6 +31,7 @@
2031
- |checkmark|
2132
- |checkmark|
2233
- |checkmark|
34+
- |checkmark|
2335

2436
* - 3.2.X
2537
-
@@ -29,6 +41,7 @@
2941
- |checkmark|
3042
- |checkmark|
3143
- |checkmark|
44+
- |checkmark|
3245

3346
* - 3.1.X
3447
-
@@ -38,6 +51,7 @@
3851
- |checkmark|
3952
- |checkmark|
4053
- |checkmark|
54+
- |checkmark|
4155

4256
* - 3.0.X
4357
-
@@ -47,6 +61,7 @@
4761
- |checkmark|
4862
- |checkmark|
4963
- |checkmark|
64+
- |checkmark|
5065

5166
* - 2.2.X
5267
- |checkmark|
@@ -56,6 +71,7 @@
5671
- |checkmark|
5772
- |checkmark|
5873
-
74+
-
5975

6076
* - 2.1.X
6177
- |checkmark|
@@ -65,6 +81,7 @@
6581
- |checkmark|
6682
- |checkmark|
6783
-
84+
-
6885

6986
* - 2.0.X
7087
- |checkmark|
@@ -74,6 +91,7 @@
7491
- |checkmark|
7592
- |checkmark|
7693
-
94+
-
7795

7896
* - >=1.4.18
7997
- |checkmark|
@@ -83,6 +101,7 @@
83101
-
84102
-
85103
-
104+
-
86105

87106
* - 1.4.X
88107
- |checkmark|
@@ -92,3 +111,4 @@
92111
-
93112
-
94113
-
114+
-

source/includes/language-compatibility-table-scala.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@
99
- Scala 2.12
1010
- Scala 2.11
1111

12+
* - 2.8
13+
- |checkmark|
14+
- |checkmark|
15+
- |checkmark|
16+
17+
1218
* - 2.7
1319
- |checkmark|
1420
- |checkmark|

source/includes/mongodb-compatibility-table-csharp.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,15 @@
1414
- MongoDB 3.0
1515
- MongoDB 2.6
1616

17+
* - Version 2.10
18+
- |checkmark|
19+
- |checkmark|
20+
- |checkmark|
21+
- |checkmark|
22+
- |checkmark|
23+
- |checkmark|
24+
- |checkmark|
25+
1726
* - Version 2.9
1827
- |checkmark|
1928
- |checkmark|

source/includes/mongodb-compatibility-table-go.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,15 @@
1212
- MongoDB 3.0
1313
- MongoDB 2.6
1414

15+
* - 1.2
16+
- |checkmark|
17+
- |checkmark|
18+
- |checkmark|
19+
- |checkmark|
20+
- |checkmark|
21+
- |checkmark|
22+
- |checkmark|
23+
1524
* - 1.1
1625
- |checkmark|
1726
- |checkmark|

source/includes/mongodb-compatibility-table-node.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,16 @@
1212
- MongoDB 3.0
1313
- MongoDB 2.6
1414

15+
* - >= 3.4
16+
- |checkmark|
17+
- |checkmark|
18+
- |checkmark|
19+
- |checkmark|
20+
- |checkmark|
21+
- |checkmark|
22+
- |checkmark|
23+
24+
1525
* - >= 3.3
1626
- |checkmark|
1727
- |checkmark|

0 commit comments

Comments
 (0)