From 913886777114afe829b70f7114da26b5c6e46040 Mon Sep 17 00:00:00 2001 From: Lindsey Moore Date: Tue, 23 Jul 2024 12:35:41 -0400 Subject: [PATCH 01/13] DOCSP-41125 Stable API --- snooty.toml | 1 + source/connect.txt | 0 source/connect/stable-api.txt | 0 3 files changed, 1 insertion(+) create mode 100644 source/connect.txt create mode 100644 source/connect/stable-api.txt diff --git a/snooty.toml b/snooty.toml index 7f974e88..c03f3d9a 100644 --- a/snooty.toml +++ b/snooty.toml @@ -9,6 +9,7 @@ intersphinx = [ "https://www.mongodb.com/docs/manual/objects.inv", toc_landing_pages = [ "/read", "/indexes", + "/connect", "work-with-indexes", ] diff --git a/source/connect.txt b/source/connect.txt new file mode 100644 index 00000000..e69de29b diff --git a/source/connect/stable-api.txt b/source/connect/stable-api.txt new file mode 100644 index 00000000..e69de29b From d1820ee3acae3a1c147ac89b6be2a0f2cff9a8e2 Mon Sep 17 00:00:00 2001 From: Lindsey Moore Date: Fri, 26 Jul 2024 21:51:31 -0400 Subject: [PATCH 02/13] refs and reminaing --- snooty.toml | 3 +- source/connect/stable-api.txt | 123 ++++++++++++++++++ source/includes/connect/stable-api-options.kt | 16 +++ source/includes/connect/stable-api.kt | 31 +++++ source/includes/connect/text.kt | 0 5 files changed, 172 insertions(+), 1 deletion(-) create mode 100644 source/includes/connect/stable-api-options.kt create mode 100644 source/includes/connect/stable-api.kt create mode 100644 source/includes/connect/text.kt diff --git a/snooty.toml b/snooty.toml index c03f3d9a..eab8d20b 100644 --- a/snooty.toml +++ b/snooty.toml @@ -24,4 +24,5 @@ version = "v{+version-number+}" patch-version-number = "{+version-number+}.0" mdb-server = "MongoDB Server" stable-api = "Stable API" -api = "https://mongodb.github.io/mongo-java-driver/{+version-number+}/apidocs/mongodb-driver-kotlin-sync" \ No newline at end of file +api = "https://mongodb.github.io/mongo-java-driver/{+version-number+}/apidocs/mongodb-driver-kotlin-sync" +core-api = "https://mongodb.github.io/mongo-java-driver/{+version-number+}/apidocs/mongodb-driver-core/com/mongodb" \ No newline at end of file diff --git a/source/connect/stable-api.txt b/source/connect/stable-api.txt index e69de29b..358701bf 100644 --- a/source/connect/stable-api.txt +++ b/source/connect/stable-api.txt @@ -0,0 +1,123 @@ +.. _kotlin-sync-stable-api: + +============== +{+stable-api+} +============== + +.. contents:: On this page + :local: + :backlinks: none + :depth: 2 + :class: singlecol + +.. facet:: + :name: genre + :values: reference + +.. meta:: + :keywords: compatible, backwards, upgrade + +.. note:: + + The {+stable-api+} feature requires {+mdb-server+} 5.0 or later. + +Overview +-------- + +In this guide, you can learn how to specify **{+stable-api+}** compatibility when +connecting to a MongoDB deployment. + +The {+stable-api+} feature forces the server to run operations with behaviors compatible +with the API version you specify. When you update either your driver or server, +the API version changes, which can change the way these operations behave. +Using the {+stable-api+} ensures consistent responses from the server and +provides long-term API stability for your application. + +The following sections describe how you can enable and customize {+stable-api+} for +your MongoDB client. For more information about the {+stable-api+}, including a list of +the commands it supports, see :manual:`Stable API ` in the +{+mdb-server+} manual. + +Enable the {+stable-api+} +------------------------- + +To enable the {+stable-api+}, perform the following steps: + +1. Construct a ``ServerApi`` object and specify a {+stable-api+} version. You must use + a {+stable-api+} version defined in the ``ServerApiVersion`` enum. +#. Construct a ``MongoClientSettings`` object using the ``MongoClientSettings.Builder`` class. +#. Instantiate a ``MongoClient`` using the ``MongoClient.create()`` method and + pass your ``MongoClientSettings`` instance as a parameter. + +The following code example shows how to specify {+stable-api+} version 1: + +.. literalinclude:: /includes/connect/stable-api.kt + :start-after: start-enable-stable-api + :end-before: end-enable-stable-api + :language: kotlin + :copyable: + :dedent: + +Once you create a ``MongoClient`` instance with +a specified API version, all commands you run with the client use the specified +version. If you need to run commands using more than one version of the +{+stable-api+}, create a new ``MongoClient``. + +.. _stable-api-options: + +Configure the {+stable-api+} +---------------------------- + +The following table describes the parameters of the ``ServerApi`` class. You can use these +parameters to customize the behavior of the {+stable-api+}. + +.. list-table:: + :header-rows: 1 + :stub-columns: 1 + :widths: 25,75 + + * - Option Name + - Description + + * - strict + - | **Optional**. When ``True``, if you call a command that isn't part of + the declared API version, the driver raises an exception. + | + | Default: **False** + + * - deprecationErrors + - | **Optional**. When ``True``, if you call a command that is deprecated in the + declared API version, the driver raises an exception. + | + | Default: **False** + +The following code example shows how you can set the two options on an instance of ``ServerApi`` +by chaining methods on the ``ServerApi.Builder``: + +.. literalinclude:: /includes/connect/stable-api-options.kt + :start-after: start-stable-api-options + :end-before: end-stable-api-options + :language: kotlin + :copyable: + :dedent: + +Troubleshooting +--------------- + +.. include:: /includes/troubleshooting/stable-api.rst + +API Documentation +----------------- + +For more information about using the {+stable-api+} with {+driver-short+}, see the +following API documentation: + +- `ServerApi <{+core-api+/ServerApi.html}>`__ +- `ServerApi.Builder <{+core-api+}/ServerApi.Builder.html>`__ +- `ServerApiVersion <{+core-api+}/ServerApiVersion.html>`__ +- `ServerAddress <{+core-api+}/ServerAddress.html>`__ +- `MongoClientSettings <{+core-api+}/MongoClientSettings.html>`__ +- `MongoClientSettings.Builder <{+core-api+}/MongoClientSettings.Builder.html>`__ +- `MongoClient.create() <{+api+}/mongodb-driver-kotlin-sync/com.mongodb.kotlin.client/-mongo-client/-factory/create.html>`__ +- `MongoClient <{+api+}/mongodb-driver-kotlin-sync/mongodb-driver-kotlin-sync/com.mongodb.kotlin.client/-mongo-client/index.html>`__ + diff --git a/source/includes/connect/stable-api-options.kt b/source/includes/connect/stable-api-options.kt new file mode 100644 index 00000000..c5308ec0 --- /dev/null +++ b/source/includes/connect/stable-api-options.kt @@ -0,0 +1,16 @@ +import com.mongodb.ConnectionString +import com.mongodb.MongoClientSettings +import com.mongodb.client.model.* +import com.mongodb.kotlin.client.* +import org.bson.Document + +fun main() { + + // start-stable-api-options + val serverApi = ServerApi.builder() + .version(ServerApiVersion.V1) + .strict(true) + .deprecationErrors(true) + .build() + // end-stable-api-options +} \ No newline at end of file diff --git a/source/includes/connect/stable-api.kt b/source/includes/connect/stable-api.kt new file mode 100644 index 00000000..6b1de046 --- /dev/null +++ b/source/includes/connect/stable-api.kt @@ -0,0 +1,31 @@ +import com.mongodb.ConnectionString +import com.mongodb.MongoClientSettings +import com.mongodb.client.model.* +import com.mongodb.kotlin.client.* +import org.bson.Document + +fun main() { + + // start-enable-stable-api + val serverApi = ServerApi.builder() + .version(ServerApiVersion.V1) + .build() + + // Replace the uri string placeholder with your MongoDB deployment's connection string + val uri = "" + + val settings = MongoClientSettings.builder() + .applyConnectionString(ConnectionString(uri)) + .serverApi(serverApi) + .build() + + val client = MongoClient.create(settings) + // end-enable-stable-api + + val serverApi = ServerApi.builder() + .version(ServerApiVersion.V1) + .strict(true) + .deprecationErrors(true) + .build() + +} \ No newline at end of file diff --git a/source/includes/connect/text.kt b/source/includes/connect/text.kt new file mode 100644 index 00000000..e69de29b From 3f8851137192dea42c12c80d6fdd74d50a1e0f2f Mon Sep 17 00:00:00 2001 From: Lindsey Moore Date: Mon, 29 Jul 2024 10:53:52 -0400 Subject: [PATCH 03/13] connect page --- source/connect.txt | 26 ++++++++++++++++++++++++++ source/includes/connect/text.kt | 0 2 files changed, 26 insertions(+) delete mode 100644 source/includes/connect/text.kt diff --git a/source/connect.txt b/source/connect.txt index e69de29b..5db1f4c1 100644 --- a/source/connect.txt +++ b/source/connect.txt @@ -0,0 +1,26 @@ +.. _kotlin-sync-connect: + +================== +Connect to MongoDB +================== + +.. contents:: On this page + :local: + :backlinks: none + :depth: 2 + :class: singlecol + +.. facet:: + :name: genre + :values: reference + +.. meta:: + :description: Learn how to use the Kotlin Sync driver to connect to MongoDB. + :keywords: client, ssl, tls, localhost + +.. toctree:: + :titlesonly: + :maxdepth: 1 + + /connect/stable-api + diff --git a/source/includes/connect/text.kt b/source/includes/connect/text.kt deleted file mode 100644 index e69de29b..00000000 From 051188e329de6ca6295c941f8bb3d1cba2f9361d Mon Sep 17 00:00:00 2001 From: Lindsey Moore Date: Mon, 29 Jul 2024 11:14:36 -0400 Subject: [PATCH 04/13] snooty --- snooty.toml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/snooty.toml b/snooty.toml index 8862a81d..9e09acc1 100644 --- a/snooty.toml +++ b/snooty.toml @@ -28,10 +28,4 @@ version = "v{+version-number+}" mdb-server = "MongoDB Server" stable-api = "Stable API" api = "https://mongodb.github.io/mongo-java-driver/{+version-number+}/apidocs/mongodb-driver-kotlin-sync" -<<<<<<< HEAD core-api = "https://mongodb.github.io/mongo-java-driver/{+version-number+}/apidocs/mongodb-driver-core/com/mongodb" -======= -java-api = "https://mongodb.github.io/mongo-java-driver/{+version-number+}" -core-api = "{+java-api+}/apidocs/mongodb-driver-core/" -kotlin-docs = "https://kotlinlang.org" ->>>>>>> refs/remotes/upstream/master From dd99271918cfc1f42bb6d3b67b348b9c18d631a0 Mon Sep 17 00:00:00 2001 From: Lindsey Moore Date: Mon, 29 Jul 2024 11:28:13 -0400 Subject: [PATCH 05/13] toc --- source/connect.txt | 9 +++++---- source/connect/stable-api.txt | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/source/connect.txt b/source/connect.txt index 288ad111..e1a34974 100644 --- a/source/connect.txt +++ b/source/connect.txt @@ -18,9 +18,11 @@ Connect to MongoDB :description: Learn how to use the Kotlin Sync driver to connect to MongoDB. :keywords: client, ssl, tls, localhost -.. .. toctree:: -.. :titlesonly: -.. :maxdepth: 1 +.. toctree:: + :titlesonly: + :maxdepth: 1 + + /connect/stable-api .. .. /connect/mongoclient .. /connect/connection-targets @@ -28,7 +30,6 @@ Connect to MongoDB .. /connect/tls .. /connect/network-compression .. /connect/server-selection -.. /connect/stable-api .. /connect/csot Overview diff --git a/source/connect/stable-api.txt b/source/connect/stable-api.txt index 358701bf..e84fd301 100644 --- a/source/connect/stable-api.txt +++ b/source/connect/stable-api.txt @@ -60,7 +60,7 @@ The following code example shows how to specify {+stable-api+} version 1: Once you create a ``MongoClient`` instance with a specified API version, all commands you run with the client use the specified -version. If you need to run commands using more than one version of the +version. If you must run commands using more than one version of the {+stable-api+}, create a new ``MongoClient``. .. _stable-api-options: From 9af64661abece7b9240407b919ddae6c999d8599 Mon Sep 17 00:00:00 2001 From: Lindsey Moore Date: Mon, 29 Jul 2024 11:33:27 -0400 Subject: [PATCH 06/13] troubleshooting --- source/connect/stable-api.txt | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/source/connect/stable-api.txt b/source/connect/stable-api.txt index e84fd301..5b35ba90 100644 --- a/source/connect/stable-api.txt +++ b/source/connect/stable-api.txt @@ -104,7 +104,20 @@ by chaining methods on the ``ServerApi.Builder``: Troubleshooting --------------- -.. include:: /includes/troubleshooting/stable-api.rst +Unrecognized field 'apiVersion' on server +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +{+driver-short+} raises this exception if you specify an API version and connect to a +MongoDB server that doesn't support the {+stable-api+}. Ensure you're connecting to a +deployment running {+mdb-server+} v5.0 or later. + +Provided apiStrict:true, but the command count is not in API Version +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +{+driver-short+} raises this exception if your ``MongoClient`` runs an operation that +isn't in the {+stable-api+} version you specified. To avoid this error, use an alternative +operation supported by the specified {+stable-api+} version, or set the ``strict`` +option to ``False`` when constructing your ``ServerApi`` object. API Documentation ----------------- From 714b794c570c357c3f4b298f90d11fda1cc762ef Mon Sep 17 00:00:00 2001 From: Lindsey Moore Date: Mon, 29 Jul 2024 14:26:52 -0400 Subject: [PATCH 07/13] broken links --- snooty.toml | 2 ++ source/connect/stable-api.txt | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/snooty.toml b/snooty.toml index 9e09acc1..f8592a34 100644 --- a/snooty.toml +++ b/snooty.toml @@ -28,4 +28,6 @@ version = "v{+version-number+}" mdb-server = "MongoDB Server" stable-api = "Stable API" api = "https://mongodb.github.io/mongo-java-driver/{+version-number+}/apidocs/mongodb-driver-kotlin-sync" +java-api = "https://mongodb.github.io/mongo-java-driver/{+version-number+}" +kotlin-docs = "https://kotlinlang.org" core-api = "https://mongodb.github.io/mongo-java-driver/{+version-number+}/apidocs/mongodb-driver-core/com/mongodb" diff --git a/source/connect/stable-api.txt b/source/connect/stable-api.txt index 5b35ba90..031444b1 100644 --- a/source/connect/stable-api.txt +++ b/source/connect/stable-api.txt @@ -125,12 +125,12 @@ API Documentation For more information about using the {+stable-api+} with {+driver-short+}, see the following API documentation: -- `ServerApi <{+core-api+/ServerApi.html}>`__ +- `ServerApi <{+core-api+}/ServerApi.html>`__ - `ServerApi.Builder <{+core-api+}/ServerApi.Builder.html>`__ - `ServerApiVersion <{+core-api+}/ServerApiVersion.html>`__ - `ServerAddress <{+core-api+}/ServerAddress.html>`__ - `MongoClientSettings <{+core-api+}/MongoClientSettings.html>`__ - `MongoClientSettings.Builder <{+core-api+}/MongoClientSettings.Builder.html>`__ - `MongoClient.create() <{+api+}/mongodb-driver-kotlin-sync/com.mongodb.kotlin.client/-mongo-client/-factory/create.html>`__ -- `MongoClient <{+api+}/mongodb-driver-kotlin-sync/mongodb-driver-kotlin-sync/com.mongodb.kotlin.client/-mongo-client/index.html>`__ +- `MongoClient <{+api+}/mongodb-driver-kotlin-sync/com.mongodb.kotlin.client/-mongo-client/index.html>`__ From 922fde56a605dbdbe97d9e531906bd9a5c5dced3 Mon Sep 17 00:00:00 2001 From: Lindsey Moore Date: Mon, 29 Jul 2024 14:31:01 -0400 Subject: [PATCH 08/13] remaining comments --- source/connect/stable-api.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/connect/stable-api.txt b/source/connect/stable-api.txt index 031444b1..936063cb 100644 --- a/source/connect/stable-api.txt +++ b/source/connect/stable-api.txt @@ -107,14 +107,14 @@ Troubleshooting Unrecognized field 'apiVersion' on server ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -{+driver-short+} raises this exception if you specify an API version and connect to a +The {+driver-short+} raises this exception if you specify an API version and connect to a MongoDB server that doesn't support the {+stable-api+}. Ensure you're connecting to a deployment running {+mdb-server+} v5.0 or later. Provided apiStrict:true, but the command count is not in API Version ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -{+driver-short+} raises this exception if your ``MongoClient`` runs an operation that +The {+driver-short+} raises this exception if your ``MongoClient`` runs an operation that isn't in the {+stable-api+} version you specified. To avoid this error, use an alternative operation supported by the specified {+stable-api+} version, or set the ``strict`` option to ``False`` when constructing your ``ServerApi`` object. @@ -131,6 +131,6 @@ following API documentation: - `ServerAddress <{+core-api+}/ServerAddress.html>`__ - `MongoClientSettings <{+core-api+}/MongoClientSettings.html>`__ - `MongoClientSettings.Builder <{+core-api+}/MongoClientSettings.Builder.html>`__ -- `MongoClient.create() <{+api+}/mongodb-driver-kotlin-sync/com.mongodb.kotlin.client/-mongo-client/-factory/create.html>`__ - `MongoClient <{+api+}/mongodb-driver-kotlin-sync/com.mongodb.kotlin.client/-mongo-client/index.html>`__ +- `MongoClient.create() <{+api+}/mongodb-driver-kotlin-sync/com.mongodb.kotlin.client/-mongo-client/-factory/create.html>`__ From abcfc8395d703907f931b3a4e5f8c6951967a792 Mon Sep 17 00:00:00 2001 From: Lindsey Moore Date: Mon, 29 Jul 2024 17:00:53 -0400 Subject: [PATCH 09/13] links --- snooty.toml | 2 +- source/connect/stable-api.txt | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/snooty.toml b/snooty.toml index f8592a34..30567248 100644 --- a/snooty.toml +++ b/snooty.toml @@ -30,4 +30,4 @@ stable-api = "Stable API" api = "https://mongodb.github.io/mongo-java-driver/{+version-number+}/apidocs/mongodb-driver-kotlin-sync" java-api = "https://mongodb.github.io/mongo-java-driver/{+version-number+}" kotlin-docs = "https://kotlinlang.org" -core-api = "https://mongodb.github.io/mongo-java-driver/{+version-number+}/apidocs/mongodb-driver-core/com/mongodb" +core-api = "{+java-api+}/apidocs/mongodb-driver-core/" \ No newline at end of file diff --git a/source/connect/stable-api.txt b/source/connect/stable-api.txt index 936063cb..8f38626b 100644 --- a/source/connect/stable-api.txt +++ b/source/connect/stable-api.txt @@ -125,12 +125,12 @@ API Documentation For more information about using the {+stable-api+} with {+driver-short+}, see the following API documentation: -- `ServerApi <{+core-api+}/ServerApi.html>`__ -- `ServerApi.Builder <{+core-api+}/ServerApi.Builder.html>`__ -- `ServerApiVersion <{+core-api+}/ServerApiVersion.html>`__ -- `ServerAddress <{+core-api+}/ServerAddress.html>`__ -- `MongoClientSettings <{+core-api+}/MongoClientSettings.html>`__ -- `MongoClientSettings.Builder <{+core-api+}/MongoClientSettings.Builder.html>`__ +- `ServerApi <{+core-api+}com/mongodb/ServerApi.html>`__ +- `ServerApi.Builder <{+core-api+}com/mongodb/ServerApi.Builder.html>`__ +- `ServerApiVersion <{+core-api+}com/mongodb/ServerApiVersion.html>`__ +- `ServerAddress <{+core-api+}com/mongodb/ServerAddress.html>`__ +- `MongoClientSettings <{+core-api+}com/mongodb/MongoClientSettings.html>`__ +- `MongoClientSettings.Builder <{+core-api+}com/mongodb/MongoClientSettings.Builder.html>`__ - `MongoClient <{+api+}/mongodb-driver-kotlin-sync/com.mongodb.kotlin.client/-mongo-client/index.html>`__ - `MongoClient.create() <{+api+}/mongodb-driver-kotlin-sync/com.mongodb.kotlin.client/-mongo-client/-factory/create.html>`__ From 3c94f51a6bfdfae79d612e1d8748e0765acc90d3 Mon Sep 17 00:00:00 2001 From: Lindsey Moore Date: Mon, 29 Jul 2024 17:07:53 -0400 Subject: [PATCH 10/13] revert snooty --- snooty.toml | 5 ++--- source/connect/stable-api.txt | 1 - 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/snooty.toml b/snooty.toml index 30567248..9054883f 100644 --- a/snooty.toml +++ b/snooty.toml @@ -11,7 +11,6 @@ toc_landing_pages = [ "/read", "/connect", "/indexes", - "/connect", "work-with-indexes", "/data-formats" ] @@ -29,5 +28,5 @@ mdb-server = "MongoDB Server" stable-api = "Stable API" api = "https://mongodb.github.io/mongo-java-driver/{+version-number+}/apidocs/mongodb-driver-kotlin-sync" java-api = "https://mongodb.github.io/mongo-java-driver/{+version-number+}" -kotlin-docs = "https://kotlinlang.org" -core-api = "{+java-api+}/apidocs/mongodb-driver-core/" \ No newline at end of file +core-api = "{+java-api+}/apidocs/mongodb-driver-core/" +kotlin-docs = "https://kotlinlang.org" \ No newline at end of file diff --git a/source/connect/stable-api.txt b/source/connect/stable-api.txt index 8f38626b..9c17b6e3 100644 --- a/source/connect/stable-api.txt +++ b/source/connect/stable-api.txt @@ -133,4 +133,3 @@ following API documentation: - `MongoClientSettings.Builder <{+core-api+}com/mongodb/MongoClientSettings.Builder.html>`__ - `MongoClient <{+api+}/mongodb-driver-kotlin-sync/com.mongodb.kotlin.client/-mongo-client/index.html>`__ - `MongoClient.create() <{+api+}/mongodb-driver-kotlin-sync/com.mongodb.kotlin.client/-mongo-client/-factory/create.html>`__ - From 77d90bb8e9da27205db41f8fd850bf2765d109b5 Mon Sep 17 00:00:00 2001 From: Lindsey Moore Date: Mon, 29 Jul 2024 17:11:02 -0400 Subject: [PATCH 11/13] spacing --- snooty.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snooty.toml b/snooty.toml index 9054883f..a952ef45 100644 --- a/snooty.toml +++ b/snooty.toml @@ -29,4 +29,4 @@ stable-api = "Stable API" api = "https://mongodb.github.io/mongo-java-driver/{+version-number+}/apidocs/mongodb-driver-kotlin-sync" java-api = "https://mongodb.github.io/mongo-java-driver/{+version-number+}" core-api = "{+java-api+}/apidocs/mongodb-driver-core/" -kotlin-docs = "https://kotlinlang.org" \ No newline at end of file +kotlin-docs = "https://kotlinlang.org" From 14901275fa31d595c1b17b5190f0155182f24274 Mon Sep 17 00:00:00 2001 From: Lindsey Moore Date: Tue, 30 Jul 2024 15:51:58 -0400 Subject: [PATCH 12/13] remove unnecessary quick-reference --- source/quick-reference.txt | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 source/quick-reference.txt diff --git a/source/quick-reference.txt b/source/quick-reference.txt deleted file mode 100644 index 95db7041..00000000 --- a/source/quick-reference.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _kotlin-sync-quick-reference: - -=============== -Quick Reference -=============== - -.. TODO \ No newline at end of file From 043ca4881337b0ad684a0bfbcafcd02b4a4eb410 Mon Sep 17 00:00:00 2001 From: Lindsey Moore Date: Tue, 30 Jul 2024 16:03:26 -0400 Subject: [PATCH 13/13] remove quick-ref from landing --- source/index.txt | 6 ------ 1 file changed, 6 deletions(-) diff --git a/source/index.txt b/source/index.txt index d4e5834b..e5422311 100644 --- a/source/index.txt +++ b/source/index.txt @@ -62,12 +62,6 @@ What's New For a list of new features and changes in each version, see the :ref:`What's New ` section. -Quick Reference ---------------- - -See driver syntax examples for common MongoDB commands in the -:ref:`Quick Reference ` section. - Write Data to MongoDB ---------------------