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
+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
@@ -302,7 +302,7 @@ We encourage and would happily accept contributions in the form of GitHub pull r
302
302
303
303
## Running the tests
304
304
### Integration and unit tests
305
-
In order to run the tests (which are mostly integration tests), you must have access to a MongoDB deployment. You may specify a [MongoDB connection string](https://docs.mongodb.com/manual/reference/connection-string/) in the `MONGODB_URI` environment variable, and the tests will use it to connect to the deployment. If `MONGODB_URI` is unset, the tests will attempt to connect to a local deployment on port 27017.
305
+
In order to run the tests (which are mostly integration tests), you must have access to a MongoDB deployment. You may specify a [MongoDB connection string](https://www.mongodb.com/docs/manual/reference/connection-string/) in the `MONGODB_URI` environment variable, and the tests will use it to connect to the deployment. If `MONGODB_URI` is unset, the tests will attempt to connect to a local deployment on port 27017.
306
306
307
307
**Note:** The integration tests will clear out the databases/collections they need to use, but they do not clean up after themselves.
Copy file name to clipboardExpand all lines: src/change_stream/mod.rs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -71,8 +71,8 @@ use crate::{
71
71
/// # }
72
72
/// ```
73
73
///
74
-
/// See the documentation [here](https://docs.mongodb.com/manual/changeStreams) for more
75
-
/// details. Also see the documentation on [usage recommendations](https://docs.mongodb.com/manual/administration/change-streams-production-recommendations/).
74
+
/// See the documentation [here](https://www.mongodb.com/docs/manual/changeStreams) for more
75
+
/// details. Also see the documentation on [usage recommendations](https://www.mongodb.com/docs/manual/administration/change-streams-production-recommendations/).
76
76
#[derive(Derivative)]
77
77
#[derivative(Debug)]
78
78
pubstructChangeStream<T>
@@ -111,7 +111,7 @@ where
111
111
/// change.
112
112
///
113
113
/// See the documentation
114
-
/// [here](https://docs.mongodb.com/manual/changeStreams/#change-stream-resume-token) for more
114
+
/// [here](https://www.mongodb.com/docs/manual/changeStreams/#change-stream-resume-token) for more
/// collection is dropped and recreated or newly renamed, `start_after` should be set instead.
39
39
/// `resume_after` and `start_after` cannot be set simultaneously.
40
40
///
41
-
/// For more information on resuming a change stream see the documentation [here](https://docs.mongodb.com/manual/changeStreams/#change-stream-resume-after)
41
+
/// For more information on resuming a change stream see the documentation [here](https://www.mongodb.com/docs/manual/changeStreams/#change-stream-resume-after)
Copy file name to clipboardExpand all lines: src/client/auth/mod.rs
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -46,23 +46,23 @@ pub enum AuthMechanism {
46
46
47
47
/// The SCRAM-SHA-1 mechanism as defined in [RFC 5802](http://tools.ietf.org/html/rfc5802).
48
48
///
49
-
/// See the [MongoDB documentation](https://docs.mongodb.com/manual/core/security-scram/) for more information.
49
+
/// See the [MongoDB documentation](https://www.mongodb.com/docs/manual/core/security-scram/) for more information.
50
50
ScramSha1,
51
51
52
52
/// The SCRAM-SHA-256 mechanism which extends [RFC 5802](http://tools.ietf.org/html/rfc5802) and is formally defined in [RFC 7677](https://tools.ietf.org/html/rfc7677).
53
53
///
54
-
/// See the [MongoDB documentation](https://docs.mongodb.com/manual/core/security-scram/) for more information.
54
+
/// See the [MongoDB documentation](https://www.mongodb.com/docs/manual/core/security-scram/) for more information.
55
55
ScramSha256,
56
56
57
57
/// The MONGODB-X509 mechanism based on the usage of X.509 certificates to validate a client
58
58
/// where the distinguished subject name of the client certificate acts as the username.
59
59
///
60
-
/// See the [MongoDB documentation](https://docs.mongodb.com/manual/core/security-x.509/) for more information.
60
+
/// See the [MongoDB documentation](https://www.mongodb.com/docs/manual/core/security-x.509/) for more information.
61
61
MongoDbX509,
62
62
63
63
/// Kerberos authentication mechanism as defined in [RFC 4752](http://tools.ietf.org/html/rfc4752).
64
64
///
65
-
/// See the [MongoDB documentation](https://docs.mongodb.com/manual/core/kerberos/) for more information.
65
+
/// See the [MongoDB documentation](https://www.mongodb.com/docs/manual/core/kerberos/) for more information.
66
66
///
67
67
/// Note: This mechanism is not currently supported by this driver but will be in the future.
68
68
Gssapi,
@@ -72,7 +72,7 @@ pub enum AuthMechanism {
72
72
/// Since the credentials are stored outside of MongoDB, the "$external" database must be used
73
73
/// for authentication.
74
74
///
75
-
/// See the [MongoDB documentation](https://docs.mongodb.com/manual/core/security-ldap/#ldap-proxy-authentication) for more information on LDAP authentication.
75
+
/// See the [MongoDB documentation](https://www.mongodb.com/docs/manual/core/security-ldap/#ldap-proxy-authentication) for more information on LDAP authentication.
76
76
Plain,
77
77
78
78
/// MONGODB-AWS authenticates using AWS IAM credentials (an access key ID and a secret access
@@ -676,7 +676,7 @@ impl Serialize for ClientOptions {
676
676
677
677
/// Contains the options that can be set via a MongoDB connection string.
678
678
///
679
-
/// The format of a MongoDB connection string is described [here](https://docs.mongodb.com/manual/reference/connection-string/#connection-string-formats).
679
+
/// The format of a MongoDB connection string is described [here](https://www.mongodb.com/docs/manual/reference/connection-string/#connection-string-formats).
680
680
#[derive(Debug,Default,PartialEq)]
681
681
#[non_exhaustive]
682
682
pubstructConnectionString{
@@ -1000,7 +1000,7 @@ impl ClientOptions {
1000
1000
/// In the case that "mongodb+srv" is used, SRV and TXT record lookups will be done as
1001
1001
/// part of this method.
1002
1002
///
1003
-
/// The format of a MongoDB connection string is described [here](https://docs.mongodb.com/manual/reference/connection-string/#connection-string-formats).
1003
+
/// The format of a MongoDB connection string is described [here](https://www.mongodb.com/docs/manual/reference/connection-string/#connection-string-formats).
1004
1004
///
1005
1005
/// Note that [default_database](ClientOptions::default_database) will be set from
1006
1006
/// `/defaultauthdb` in connection string.
@@ -1071,7 +1071,7 @@ impl ClientOptions {
1071
1071
/// In the case that "mongodb+srv" is used, SRV and TXT record lookups will be done using the
1072
1072
/// provided `ResolverConfig` as part of this method.
1073
1073
///
1074
-
/// The format of a MongoDB connection string is described [here](https://docs.mongodb.com/manual/reference/connection-string/#connection-string-formats).
1074
+
/// The format of a MongoDB connection string is described [here](https://www.mongodb.com/docs/manual/reference/connection-string/#connection-string-formats).
1075
1075
///
1076
1076
/// See the docstring on `ClientOptions::parse` for information on how the various URI options
0 commit comments