Skip to content

Commit 1283bda

Browse files
author
Chris Cho
authored
DOCSP-13990: update java driver links for v4.2 (#714)
* DOCSP-13990: update java driver links for v4.2
1 parent 90442f4 commit 1283bda

10 files changed

+79
-21
lines changed

source/includes/help-links-java.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ How to get help
33

44
- Ask questions on our :community-forum:`MongoDB Community Forums <>`.
55
- Visit our :technical-support:`Support Channels </>`.
6-
- See `Issues & Help <https://mongodb.github.io/mongo-java-driver/4.1/issues-help/>`__.
6+
- See :java-docs:`Issues & Help <issues-help/>`.

source/includes/language-compatibility-table-java-rs.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,18 @@
99
- Java 8
1010
- Java 11 [#backwards-compatible-rs]_
1111

12+
* - 4.2
13+
- |checkmark|
14+
- |checkmark|
15+
- |checkmark|
16+
- |checkmark|
17+
18+
* - 4.1
19+
- |checkmark|
20+
- |checkmark|
21+
- |checkmark|
22+
- |checkmark|
23+
1224
* - 1.13
1325
- |checkmark|
1426
- |checkmark|

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@
1010
- Java 8
1111
- Java 11 [#backwards-compatible]_
1212

13+
* - Version 4.2
14+
-
15+
-
16+
-
17+
- |checkmark|
18+
- |checkmark|
19+
1320
* - Version 4.1
1421
-
1522
-

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

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

12+
* - 4.2
13+
- |checkmark|
14+
- |checkmark|
15+
- |checkmark|
16+
17+
* - 4.1
18+
- |checkmark|
19+
- |checkmark|
20+
- |checkmark|
21+
1222
* - 2.9
1323
- |checkmark|
1424
- |checkmark|

source/includes/mongodb-compatibility-table-java-rs.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,16 @@
1515
- MongoDB 3.0
1616
- MongoDB 2.6
1717

18+
* - 4.2
19+
- |checkmark|
20+
- |checkmark|
21+
- |checkmark|
22+
- |checkmark|
23+
- |checkmark|
24+
- |checkmark|
25+
- |checkmark|
26+
- |checkmark|
27+
1828
* - 4.1
1929
- |checkmark|
2030
- |checkmark|

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,16 @@
1515
- MongoDB 3.0
1616
- MongoDB 2.6
1717

18+
* - Version 4.2
19+
- |checkmark|
20+
- |checkmark|
21+
- |checkmark|
22+
- |checkmark|
23+
- |checkmark|
24+
- |checkmark|
25+
- |checkmark|
26+
- |checkmark|
27+
1828
* - Version 4.1
1929
- |checkmark|
2030
- |checkmark|

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

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

17+
* - 4.2
18+
- |checkmark|
19+
- |checkmark|
20+
- |checkmark|
21+
- |checkmark|
22+
- |checkmark|
23+
- |checkmark|
24+
- |checkmark|
25+
- |checkmark|
26+
1727
* - 4.1
1828
- |checkmark|
1929
- |checkmark|

source/java.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ Introduction
1919

2020
The official MongoDB Java Driver providing both synchronous and asynchronous interaction with MongoDB.
2121

22-
- `Reference Documentation <https://mongodb.github.io/mongo-java-driver/4.1/driver/>`__
22+
- :java-docs:`Reference Documentation <driver/>`
2323

24-
- `Tutorials <https://mongodb.github.io/mongo-java-driver/4.1/driver/tutorials/>`__
24+
- :java-docs:`Tutorials <driver/tutorials/>`
2525

26-
- `API Documentation <https://mongodb.github.io/mongo-java-driver/4.1/apidocs/>`__
26+
- :java-docs:`API Documentation <apidocs/>`
2727

28-
- `What's New <https://mongodb.github.io/mongo-java-driver/4.1/whats-new/>`__
28+
- :java-docs:`What's New <whats-new/>`
2929

3030
- `Source Code <https://github.com/mongodb/mongo-java-driver/>`__
3131

@@ -48,7 +48,7 @@ Installation
4848
------------
4949

5050
The recommended way to get started using one of the drivers in your project is with a dependency
51-
management system. See the `Installation Guide <https://mongodb.github.io/mongo-java-driver/4.1/driver/getting-started/installation/>`__
51+
management system. See the :java-docs:`Installation Guide <driver/getting-started/installation/>`
5252
for more information.
5353

5454

@@ -76,7 +76,7 @@ Connect to MongoDB Atlas
7676
MongoClient mongoClient = MongoClients.create(settings);
7777
MongoDatabase database = mongoClient.getDatabase("test");
7878

79-
See `Connect to MongoDB <https://mongodb.github.io/mongo-java-driver/4.1/driver/tutorials/connect-to-mongodb/>`__
79+
See :java-docs:`Connect to MongoDB <driver/tutorials/connect-to-mongodb/>`
8080
for more ways to connect.
8181

8282

source/reactive-streams.txt

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,22 @@ Introduction
1818
**Java Reactive Streams** is an official Java driver for MongoDB and is the
1919
recommended driver for working with reactive streams in the JVM ecosystem.
2020

21-
- `Reference Documentation <https://mongodb.github.io/mongo-java-driver/4.1/driver-reactive/>`__
21+
- :java-docs:`Reference Documentation <driver-reactive/>`
2222

23-
- `Tutorials <https://mongodb.github.io/mongo-java-driver/4.1/driver-reactive/tutorials/>`__
23+
- :java-docs:`Tutorials <driver-reactive/tutorials/>`
2424

25-
- `API Documentation <https://mongodb.github.io/mongo-java-driver/4.1/apidocs/mongodb-driver-reactivestreams/index.html>`__
25+
- :java-docs:`API Documentation <apidocs/mongodb-driver-reactivestreams/>`
2626

27-
- `What's New <https://mongodb.github.io/mongo-java-driver/4.1/whats-new/>`__
27+
- :java-docs:`What's New <whats-new/>`
2828

29-
- `Source Code
30-
<https://github.com/mongodb/mongo-java-driver-reactivestreams/>`_
29+
- `Source Code <https://github.com/mongodb/mongo-java-driver-reactivestreams/>`__
3130

3231
Installation
3332
------------
3433

3534
The recommended way to get started using the driver in your project is with
3635
a dependency management system.
37-
See the `Installation Guide <https://mongodb.github.io/mongo-java-driver/4.1/driver-reactive/getting-started/installation/>`__
36+
See the :java-docs:`Installation Guide <driver-reactive/getting-started/installation/>`
3837
for more information.
3938

4039
Connect to MongoDB Atlas
@@ -61,7 +60,7 @@ Connect to MongoDB Atlas
6160
MongoClient mongoClient = MongoClients.create(settings);
6261
MongoDatabase database = mongoClient.getDatabase("test");
6362

64-
See `Connect to MongoDB <https://mongodb.github.io/mongo-java-driver/4.1/driver-reactive/tutorials/connect-to-mongodb/>`__
63+
See :java-docs:`Connect to MongoDB <driver-reactive/tutorials/connect-to-mongodb/>`
6564
for more ways to connect.
6665

6766
Compatibility

source/scala.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ This is the officially supported Scala driver for MongoDB.
2222
It's a modern idiomatic Scala driver with asynchronous and non-blocking IO.
2323

2424

25-
- `Reference Documentation <http://mongodb.github.io/mongo-java-driver/4.1/driver-scala/>`__
25+
- :java-docs:`Reference Documentation <driver-scala/>`
2626

27-
- `Tutorials <http://mongodb.github.io/mongo-java-driver/4.1/driver-scala/tutorials/>`__
27+
- :java-docs:`Tutorials <driver-scala/tutorials/>`
2828

29-
- `API Documentation <http://mongodb.github.io/mongo-java-driver/4.1/apidocs/>`__
29+
- :java-docs:`API Documentation <apidocs/>`
3030

31-
- `What's New <https://mongodb.github.io/mongo-java-driver/4.1/whats-new/>`__
31+
- :java-docs:`What's New <whats-new/>`
3232

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

@@ -38,7 +38,7 @@ Installation
3838

3939
The recommended way to get started using the driver in your project is
4040
with a dependency management system like ``sbt`` or ``maven``. See the
41-
`Installation Guide <http://mongodb.github.io/mongo-java-driver/4.1/driver-scala/getting-started/installation/>`__
41+
:java-docs:`Installation Guide <driver-scala/getting-started/installation/>`
4242
for more information.
4343

4444

@@ -59,7 +59,7 @@ Connect to MongoDB Atlas
5959
val db: MongoDatabase = client.getDatabase("test")
6060

6161

62-
See our guide on `Connecting <http://mongodb.github.io/mongo-java-driver/4.1/driver-scala/tutorials/connect-to-mongodb/>`__
62+
See our guide on :java-docs:`Connecting <driver-scala/tutorials/connect-to-mongodb/>`
6363
for more ways to connect.
6464

6565

0 commit comments

Comments
 (0)