-
Notifications
You must be signed in to change notification settings - Fork 20
DOCSP-50017 Remove EOL versions #220
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,16 +52,7 @@ Mechanisms | |
Default | ||
~~~~~~~ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. S: Instead of having separate "Default" and "SCRAM-SHA-256" section, I think it makes sense to combine them. I did that in the kotlin sync PR, which should be basically the same. Otherwise if you do want to keep them separate I'd delete the note about server versions from line 105-108 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ahh I forgot to save and commit my auth page changes. But will combine the sections, thanks for the suggestion! |
||
|
||
The default authentication mechanism setting uses one of the following | ||
authentication mechanisms depending on what your MongoDB server supports: | ||
|
||
#. ``SCRAM-SHA-256`` | ||
#. ``SCRAM-SHA-1`` | ||
#. ``MONGODB-CR`` | ||
|
||
Server versions 3.6 and earlier use ``MONGODB-CR`` as the default | ||
mechanism. Newer versions of the server use one of the mechanisms for | ||
which they advertise support. | ||
The default authentication mechanism is ``SCRAM-SHA-256``. | ||
|
||
The following code snippets show how to specify the authentication mechanism, | ||
using the following placeholders: | ||
|
@@ -211,20 +202,6 @@ mechanism: | |
.. literalinclude:: /examples/generated/AuthTest.snippet.scram-sha-1-cred.kt | ||
:language: kotlin | ||
|
||
.. _mongodb-cr-auth-mechanism: | ||
lindseymoore marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
``MONGODB-CR`` | ||
~~~~~~~~~~~~~~ | ||
|
||
``MONGODB-CR`` is a challenge-response authentication mechanism that uses your | ||
username and password to authenticate your user. This authentication | ||
mechanism was deprecated starting in MongoDB 3.6 and is no longer | ||
supported as of MongoDB 4.0. | ||
|
||
You cannot specify this method explicitly; refer to the fallback provided | ||
by the :ref:`default authentication mechanism <default-auth-mechanism>` to | ||
connect using ``MONGODB-CR``. | ||
|
||
.. _mongodb-aws-auth-mechanism: | ||
|
||
``MONGODB-AWS`` | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I: I can't comment on the line directly, but you can remove * :ref:
MONGODB-CR <mongodb-cr-auth-mechanism>
from the list in the overview (and any other references to that ref in the docs)