Skip to content

DOCSP-48677: v5.4 release #88

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

Merged
merged 1 commit into from
Mar 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions config/redirects
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
define: prefix docs/languages/kotlin/kotlin-sync-driver
define: base https://www.mongodb.com/${prefix}
define: versions v5.1 v5.2 v5.3 master
define: versions v5.1 v5.2 v5.3 v5.4 master

symlink: current -> master
symlink: upcoming -> master
symlink: current -> v5.4

# raw: <source file> -> ${base}/<destination>

Expand Down
13 changes: 7 additions & 6 deletions snooty.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name = "kotlin-sync"
title = "Kotlin Sync Driver"

intersphinx = [ "https://www.mongodb.com/docs/manual/objects.inv",
"https://www.mongodb.com/docs/drivers/objects.inv",
"https://www.mongodb.com/docs/atlas/objects.inv"
]
intersphinx = [
"https://www.mongodb.com/docs/manual/objects.inv",
"https://www.mongodb.com/docs/drivers/objects.inv",
"https://www.mongodb.com/docs/atlas/objects.inv",
]

toc_landing_pages = [
"/write-operations",
Expand All @@ -15,7 +16,7 @@ toc_landing_pages = [
"work-with-indexes",
"/data-formats",
"/builders",
"/aggregation"
"/aggregation",
]

sharedinclude_root = "https://raw.githubusercontent.com/10gen/docs-shared/main/"
Expand All @@ -24,7 +25,7 @@ sharedinclude_root = "https://raw.githubusercontent.com/10gen/docs-shared/main/"
driver-long = "MongoDB Kotlin Sync Driver"
driver-short = "Kotlin Sync driver"
language = "Kotlin"
version-number = "5.3"
version-number = "5.4"
full-version = "{+version-number+}.0"
version = "v{+version-number+}"
mdb-server = "MongoDB Server"
Expand Down
4 changes: 2 additions & 2 deletions source/monitoring.txt
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ To monitor command events, create a class that implements the
``MongoClient`` instance.

For more information on MongoDB database commands, see the
:manual:`MongoDB manual entry on database commands </reference/command/>`in
the {+mdb-server+} manual.
:manual:`MongoDB manual entry on database commands
</reference/command/>` in the {+mdb-server+} manual.

.. note:: Internal Commands

Expand Down
11 changes: 11 additions & 0 deletions source/whats-new.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ and features:
the :ref:`MONGODB-OIDC: Kubernetes <kotlin-sync-auth-kubernetes>`
section of the Enterprise Authentication Mechanisms guide

.. replacement:: atlas-query-operators

the `SearchOperator <{+core-api+}/com/mongodb/client/model/search/SearchOperator.html>`__
interface API documentation

.. _kotlin-sync-version-5.3:

What's New in 5.3
Expand Down Expand Up @@ -91,6 +96,12 @@ improvements, and fixes:

.. sharedinclude:: dbx/jvm/v5.2-wn-items.rst

.. replacement:: csot-link

the `MongoClientSettings.Builder.timeout()
<{+core-api+}/com/mongodb/MongoClientSettings.Builder.html#timeout(long,java.util.concurrent.TimeUnit)>`__
API documentation

.. replacement:: avs-index-link

the :ref:`kotlin-sync-search-avs-indexes` guide
Expand Down
9 changes: 9 additions & 0 deletions source/write/transactions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,15 @@ methods described in the preceding section to manually manage the transaction li

.. sharedinclude:: dbx/transactions-parallelism.rst


.. replacement:: driver-specific-content

If you're using {+mdb-server+} v8.0 or later, you can perform
write operations on multiple namespaces within a single
transaction by using bulk write operations. To learn more, see the
:ref:`kotlin-sync-client-bulk-write` section of the Bulk Write
Operations guide.

Additional Information
----------------------

Expand Down
Loading