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: README.md
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -4,34 +4,34 @@ Release notes are available [here](https://github.com/mongodb/mongo-java-driver/
4
4
5
5
## Documentation
6
6
7
-
Reference and API documentation is available [here](http://mongodb.github.io/mongo-java-driver/).
7
+
Reference and API documentation for the Java driver is available [here](https://www.mongodb.com/docs/drivers/java/sync/current/).
8
+
9
+
Reference and API documentation for the Kotlin driver is available [here](https://www.mongodb.com/docs/drivers/kotlin/coroutine/current/).
8
10
9
11
## Tutorials / Training
10
12
11
-
For tutorials on how to use the MongoDB Java Driver, please reference MongoDB University's Java offerings [here](https://learn.mongodb.com/catalog?labels=%5B%22Language%22%5D&values=%5B%22Java%22%5D). Additional tutorials, videos, and code examples using the Java Driver can also be found in the [MongoDB Developer Center](https://www.mongodb.com/developer/languages/java/).
13
+
For tutorials on how to use the MongoDB JVM Drivers, please reference [MongoDB University](https://learn.mongodb.com/). Additional tutorials, videos, and code examples using both the Java Driver and the Kotlin Driver can also be found in the [MongoDB Developer Center](https://www.mongodb.com/developer/).
12
14
13
15
## Support / Feedback
14
16
15
-
For issues with, questions about, or feedback for the MongoDB Java driver, please look into
17
+
For issues with, questions about, or feedback for the MongoDB Java and Kotlin drivers, please look into
do not email any of the Java driver developers directly with issues or
19
+
do not email any of the driver developers directly with issues or
18
20
questions - you're more likely to get an answer on the [MongoDB Community Forums](https://community.mongodb.com/tags/c/drivers-odms-connectors/7/java-driver) or [StackOverflow](https://stackoverflow.com/questions/tagged/mongodb+java).
19
21
20
22
At a minimum, please include in your description the exact version of the driver that you are using. If you are having
21
23
connectivity issues, it's often also useful to paste in the line of code where you construct the MongoClient instance,
22
24
along with the values of all parameters that you pass to the constructor. You should also check your application logs for
23
25
any connectivity-related exceptions and post those as well.
24
26
25
-
26
-
27
27
## Bugs / Feature Requests
28
28
29
-
Think you’ve found a bug? Want to see a new feature in the Java driver? Please open a
29
+
Think you’ve found a bug in the Java or Kotlin drivers? Want to see a new feature in the drivers? Please open a
30
30
case in our issue management tool, JIRA:
31
31
32
32
-[Create an account and login](https://jira.mongodb.org).
33
33
- Navigate to [the JAVA project](https://jira.mongodb.org/browse/JAVA).
34
-
- Click **Create Issue** - Please provide as much information as possible about the issue typeand how to reproduce it.
34
+
- Click **Create Issue** - Please provide as much information as possible about the issue type, which driver you are using, and how to reproduce your issue.
35
35
36
36
Bug reports in JIRA for the driver and the Core Server (i.e. SERVER) project are **public**.
37
37
@@ -40,16 +40,16 @@ MongoDB project, please report it according to the [instructions here](https://w
40
40
41
41
## Versioning
42
42
43
-
Major increments (such as 2.x -> 3.x) will occur when break changes are being made to the public API. All methods and
43
+
Major increments (such as 3.x -> 4.x) will occur when break changes are being made to the public API. All methods and
44
44
classes removed in a major release will have been deprecated in a prior release of the previous major release branch, and/or otherwise
45
45
called out in the release notes.
46
46
47
-
Minor 3.x increments (such as 3.1, 3.2, etc) will occur when non-trivial new functionality is added or significant enhancements or bug
47
+
Minor 4.x increments (such as 4.1, 4.2, etc) will occur when non-trivial new functionality is added or significant enhancements or bug
48
48
fixes occur that may have behavioral changes that may affect some edge cases (such as dependence on behavior resulting from a bug). An
49
49
example of an enhancement is a method or class added to support new functionality added to the MongoDB server. Minor releases will
50
50
almost always be binary compatible with prior minor releases from the same major release branch, except as noted below.
51
51
52
-
Patch 3.x.y increments (such as 3.0.0 -> 3.0.1, 3.1.1 -> 3.1.2, etc) will occur for bug fixes only and will always be binary compatible
52
+
Patch 4.x.y increments (such as 4.0.0 -> 4.0.1, 4.1.1 -> 4.1.2, etc) will occur for bug fixes only and will always be binary compatible
53
53
with prior patch releases of the same minor release branch.
0 commit comments