Skip to content

Commit 384a30e

Browse files
committed
Fix links to spec documents, migrated from rst to md
mongodb/specifications#1520
1 parent 9eff31b commit 384a30e

19 files changed

+20
-20
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,15 +138,15 @@ The test suite references the following environment variables:
138138
[drivers-evergreen-tools](https://github.com/mongodb-labs/drivers-evergreen-tools).
139139
If undefined or inaccessible, tests requiring certificates will be skipped.
140140

141-
The following environment variable is used for [stable API testing](https://github.com/mongodb/specifications/blob/master/source/versioned-api/tests/README.rst):
141+
The following environment variable is used for [stable API testing](https://github.com/mongodb/specifications/blob/master/source/versioned-api/tests/README.md):
142142

143143
* `API_VERSION`: If defined, this value will be used to construct a
144144
[`MongoDB\Driver\ServerApi`](https://www.php.net/manual/en/mongodb-driver-serverapi.construct.php),
145145
which will then be specified as the `serverApi` driver option for
146146
[`MongoDB\Driver\Manager`](https://www.php.net/manual/en/class.mongodb-driver-manager.php)
147147
objects created by the test suite.
148148

149-
The following environment variables are used for [CSFLE testing](https://github.com/mongodb/specifications/blob/master/source/client-side-encryption/tests/README.rst):
149+
The following environment variables are used for [CSFLE testing](https://github.com/mongodb/specifications/blob/master/source/client-side-encryption/tests/README.md):
150150

151151
* `CRYPT_SHARED_LIB_PATH`: If defined, this value will be used to set the
152152
`cryptSharedLibPath` autoEncryption driver option for

tests/causal-consistency/causal-consistency-001.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Causal consistency: new session has no operation time
33
--DESCRIPTION--
44
Causal consistency spec prose test #1
5-
https://github.com/mongodb/specifications/blob/master/source/causal-consistency/causal-consistency.rst#test-plan
5+
https://github.com/mongodb/specifications/blob/master/source/causal-consistency/causal-consistency.md#test-plan
66
--SKIPIF--
77
<?php require __DIR__ . "/../utils/basic-skipif.inc"; ?>
88
<?php skip_if_not_libmongoc_crypto(); ?>

tests/causal-consistency/causal-consistency-002.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Causal consistency: first read in session does not include afterClusterTime
33
--DESCRIPTION--
44
Causal consistency spec prose test #2
5-
https://github.com/mongodb/specifications/blob/master/source/causal-consistency/causal-consistency.rst#test-plan
5+
https://github.com/mongodb/specifications/blob/master/source/causal-consistency/causal-consistency.md#test-plan
66
--SKIPIF--
77
<?php require __DIR__ . "/../utils/basic-skipif.inc"; ?>
88
<?php skip_if_not_libmongoc_crypto(); ?>

tests/causal-consistency/causal-consistency-003.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Causal consistency: first read or write in session updates operationTime
33
--DESCRIPTION--
44
Causal consistency spec prose test #3
5-
https://github.com/mongodb/specifications/blob/master/source/causal-consistency/causal-consistency.rst#test-plan
5+
https://github.com/mongodb/specifications/blob/master/source/causal-consistency/causal-consistency.md#test-plan
66
--SKIPIF--
77
<?php require __DIR__ . "/../utils/basic-skipif.inc"; ?>
88
<?php skip_if_not_libmongoc_crypto(); ?>

tests/causal-consistency/causal-consistency-004.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Causal consistency: first read or write in session updates operationTime (even on error)
33
--DESCRIPTION--
44
Causal consistency spec prose test #3
5-
https://github.com/mongodb/specifications/blob/master/source/causal-consistency/causal-consistency.rst#test-plan
5+
https://github.com/mongodb/specifications/blob/master/source/causal-consistency/causal-consistency.md#test-plan
66
--SKIPIF--
77
<?php require __DIR__ . "/../utils/basic-skipif.inc"; ?>
88
<?php skip_if_not_libmongoc_crypto(); ?>

tests/causal-consistency/causal-consistency-005.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Causal consistency: second read's afterClusterTime uses last reply's operationTime
33
--DESCRIPTION--
44
Causal consistency spec prose test #4 and #5
5-
https://github.com/mongodb/specifications/blob/master/source/causal-consistency/causal-consistency.rst#test-plan
5+
https://github.com/mongodb/specifications/blob/master/source/causal-consistency/causal-consistency.md#test-plan
66
--SKIPIF--
77
<?php require __DIR__ . "/../utils/basic-skipif.inc"; ?>
88
<?php skip_if_not_libmongoc_crypto(); ?>

tests/causal-consistency/causal-consistency-006.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Causal consistency: second read's afterClusterTime uses last reply's operationTime (even on error)
33
--DESCRIPTION--
44
Causal consistency spec prose test #4 and #5
5-
https://github.com/mongodb/specifications/blob/master/source/causal-consistency/causal-consistency.rst#test-plan
5+
https://github.com/mongodb/specifications/blob/master/source/causal-consistency/causal-consistency.md#test-plan
66
--SKIPIF--
77
<?php require __DIR__ . "/../utils/basic-skipif.inc"; ?>
88
<?php skip_if_not_libmongoc_crypto(); ?>

tests/causal-consistency/causal-consistency-007.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Causal consistency: reads in non-causally consistent session never include afterClusterTime
33
--DESCRIPTION--
44
Causal consistency spec prose test #6
5-
https://github.com/mongodb/specifications/blob/master/source/causal-consistency/causal-consistency.rst#test-plan
5+
https://github.com/mongodb/specifications/blob/master/source/causal-consistency/causal-consistency.md#test-plan
66
--SKIPIF--
77
<?php require __DIR__ . "/../utils/basic-skipif.inc"; ?>
88
<?php skip_if_not_libmongoc_crypto(); ?>

tests/causal-consistency/causal-consistency-008.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Causal consistency: reads in causally consistent session never include afterClusterTime for unsupported deployment
33
--DESCRIPTION--
44
Causal consistency spec prose test #7
5-
https://github.com/mongodb/specifications/blob/master/source/causal-consistency/causal-consistency.rst#test-plan
5+
https://github.com/mongodb/specifications/blob/master/source/causal-consistency/causal-consistency.md#test-plan
66
--SKIPIF--
77
<?php require __DIR__ . "/../utils/basic-skipif.inc"; ?>
88
<?php skip_if_not_libmongoc_crypto(); ?>

tests/causal-consistency/causal-consistency-009.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Causal consistency: default read concern includes afterClusterTime but not level
33
--DESCRIPTION--
44
Causal consistency spec prose test #8
5-
https://github.com/mongodb/specifications/blob/master/source/causal-consistency/causal-consistency.rst#test-plan
5+
https://github.com/mongodb/specifications/blob/master/source/causal-consistency/causal-consistency.md#test-plan
66
--SKIPIF--
77
<?php require __DIR__ . "/../utils/basic-skipif.inc"; ?>
88
<?php skip_if_not_libmongoc_crypto(); ?>

0 commit comments

Comments
 (0)