Skip to content

Commit beabf05

Browse files
authored
Update api links for 5.5 link changes (#95)
* Update api links for 5.5 link changes * bump version
1 parent c8471fb commit beabf05

File tree

6 files changed

+16
-15
lines changed

6 files changed

+16
-15
lines changed

snooty.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ sharedinclude_root = "https://raw.githubusercontent.com/10gen/docs-shared/main/"
2424
driver-long = "MongoDB Kotlin Sync Driver"
2525
driver-short = "Kotlin Sync driver"
2626
language = "Kotlin"
27-
version-number = "5.4"
27+
version-number = "5.5"
2828
full-version = "{+version-number+}.0"
2929
version = "v{+version-number+}"
3030
mdb-server = "MongoDB Server"
3131
stable-api = "Stable API"
3232
api-root = "https://mongodb.github.io/mongo-java-driver/{+version-number+}/apidocs"
33-
driver-api = "{+api-root+}/mongodb-driver-kotlin-sync/mongodb-driver-kotlin-sync/com.mongodb.kotlin.client"
34-
core-api = "{+api-root+}/mongodb-driver-core/com/mongodb"
33+
driver-api = "{+api-root+}/driver-kotlin-sync/mongodb-driver-kotlin-sync/com.mongodb.kotlin.client"
34+
core-api = "{+api-root+}/driver-core/com/mongodb"
3535
kotlin-docs = "https://kotlinlang.org"
3636
serialization-version = "1.6.0"
3737
kotlinx-dt-version = "0.6.1"

source/api.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ API Documentation
88
:titlesonly:
99
:maxdepth: 1
1010

11-
{+language+} Sync Driver <{+api-root+}/mongodb-driver-kotlin-sync/index.html>
11+
{+language+} Sync Driver <{+api-root+}/driver-kotlin-sync/index.html>
1212
BSON kotlinx.serialization <{+api-root+}/bson-kotlinx/index.html>
13-
{+language+} Driver Extensions <{+api-root+}/mongodb-driver-kotlin-extensions/index.html>
14-
Driver Core <{+api-root+}/mongodb-driver-core/index.html>
13+
{+language+} Driver Extensions <{+api-root+}/driver-kotlin-extensions/index.html>
14+
Driver Core <{+api-root+}/driver-core/index.html>
1515

16-
- `{+language+} Sync Driver <{+api-root+}/mongodb-driver-kotlin-sync/index.html>`__ -
16+
- `{+language+} Sync Driver <{+api-root+}/driver-kotlin-sync/index.html>`__ -
1717
classes for the current synchronous driver API.
1818
- `BSON kotlinx.serialization <{+api-root+}/bson-kotlinx/index.html>`__ -
1919
classes for encoding and decoding between Kotlin data classes and the BSON data
2020
format using :github:`kotlinx.serialization <Kotlin/kotlinx.serialization>`.
2121
- `{+language+} Driver Extensions
22-
<{+api-root+}/mongodb-driver-kotlin-extensions/index.html>`__ -
22+
<{+api-root+}/driver-kotlin-extensions/index.html>`__ -
2323
classes that extend the core builder classes to support :ref:`data
2424
classes <kotlin-sync-builders-data-classes>`.
25-
- `Driver Core <{+api-root+}/mongodb-driver-core/index.html>`__ - classes that
25+
- `Driver Core <{+api-root+}/driver-core/index.html>`__ - classes that
2626
contain essential driver functionality.

source/builders/builders-data-classes.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,4 +259,4 @@ API Documentation
259259
-----------------
260260

261261
- `{+driver-short+} Extensions
262-
<{+api-root+}/mongodb-driver-kotlin-extensions/index.html>`__
262+
<{+api-root+}/driver-kotlin-extensions/index.html>`__

source/data-formats/codecs.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ For more information about the classes and interfaces in this section, see
252252
the following API documentation:
253253

254254
- `CodecProvider <{+api-root+}/bson/org/bson/codecs/configuration/CodecProvider.html>`__
255-
- `getCodecRegistry() <{+api-root+}/mongodb-driver-sync/com/mongodb/client/MongoCollection.html#getCodecRegistry()>`__
255+
- `getCodecRegistry() <{+core-api+}/MongoClientSettings.html#getCodecRegistry()>`__
256256

257257
BsonTypeClassMap
258258
~~~~~~~~~~~~~~~~
@@ -386,5 +386,6 @@ retrieves data by using the ``Monolight`` class:
386386
For more information about the methods and classes mentioned in this section,
387387
see the following API documentation:
388388

389-
- `withCodecRegistry() <{+api-root+}/mongodb-driver-sync/com/mongodb/client/MongoCollection.html#withCodecRegistry(org.bson.codecs.configuration.CodecRegistry)>`__
390-
- `fromRegistries() <{+api-root+}/bson/org/bson/codecs/configuration/CodecRegistries.html#fromRegistries(org.bson.codecs.configuration.CodecRegistry...)>`__
389+
- `withCodecRegistry() <{+driver-api+}/-mongo-collection/with-codec-registry.html>`__
390+
- `fromRegistries()
391+
<{+api-root+}/bson/org/bson/codecs/configuration/CodecRegistries.html#fromRegistries(org.bson.codecs.configuration.CodecRegistry...)>`__

source/security/enterprise-auth.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ to improve performance.
208208

209209
To cache Kerberos tickets by process, you must specify the ``JAVA_SUBJECT_PROVIDER``
210210
mechanism property and provide a
211-
`KerberosSubjectProvider <https://mongodb.github.io/mongo-java-driver/4.2/apidocs/mongodb-driver-core/com/mongodb/KerberosSubjectProvider.html#%3Cinit%3E()>`__
211+
`KerberosSubjectProvider <{+core-api+}/KerberosSubjectProvider.html>`__
212212
in your ``MongoCredential`` instance. The code to configure the Kotlin driver to cache Kerberos tickets
213213
by process should resemble the following:
214214

source/whats-new.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ improvements, and fixes:
9393
- Support for using builders class methods directly with data class
9494
properties. To learn more, see the :ref:`kotlin-sync-builders-data-classes`
9595
guide. This functionality is supported by the `{+driver-short+}
96-
Extensions package <{+api-root+}/mongodb-driver-kotlin-extensions/index.html>`__
96+
Extensions package <{+api-root+}/driver-kotlin-extensions/index.html>`__
9797
published with this release.
9898

9999
- Implements a *client* bulk write API that allows you to perform write

0 commit comments

Comments
 (0)