Skip to content

Commit 80d5419

Browse files
committed
Doc updates
1 parent 8fab5b0 commit 80d5419

File tree

6 files changed

+18
-14
lines changed

6 files changed

+18
-14
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@
5151
# -- Options for HTML output -------------------------------------------------
5252
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
5353

54-
html_theme = "alabaster"
54+
html_theme = "furo"
5555
html_static_path = ["_static"]

docs/source/howto/queryable-encryption.rst

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
Configuring Queryable Encryption
33
================================
44

5-
.. versionadded:: 5.2.0rc1
5+
.. versionadded:: 5.2.1
66

7-
Queryable Encryption is a powerful MongoDB feature that enables you to encrypt
8-
sensitive fields in your database while still allowing queries on that
9-
encrypted data.
7+
:doc:`manual:core/queryable-encryption` is a powerful MongoDB feature that
8+
allows you to encrypt sensitive fields in your database while still supporting
9+
queries on that encrypted data.
1010

1111
This section will guide you through the process of configuring Queryable
12-
Encryption in your Django project using the Django MongoDB Backend.
12+
Encryption in your Django project.
1313

1414
.. admonition:: MongoDB requirements
1515

@@ -24,9 +24,10 @@ Installation
2424
============
2525

2626
In addition to the :doc:`installation </intro/install>` and :doc:`configuration
27-
</intro/configure>` steps for Django MongoDB Backend, enabling Queryable
28-
Encryption requires support for encryption and a Key Management Service (KMS).
29-
You can install these additional dependencies with the following command::
27+
</intro/configure>` steps for Django MongoDB Backend, Queryable
28+
Encryption requires encryption support and a Key Management Service (KMS).
29+
30+
You can install encryption support with the following command::
3031

3132
pip install django-mongodb-backend[encryption]
3233

docs/source/ref/django-admin.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Available commands
1717
``showencryptedfieldsmap``
1818
--------------------------
1919

20-
.. versionadded:: 5.2.0rc1
20+
.. versionadded:: 5.2.1
2121

2222
.. django-admin:: showencryptedfieldsmap
2323

docs/source/ref/models/encrypted-fields.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Encrypted fields
33
================
44

5-
.. versionadded:: 5.2.0rc1
5+
.. versionadded:: 5.2.1
66

77
Django MongoDB Backend supports :doc:`manual:core/queryable-encryption`.
88

@@ -65,7 +65,7 @@ supported by Queryable Encryption.
6565

6666
.. class:: EncryptedFieldMixin
6767

68-
.. versionadded:: 5.2.0rc1
68+
.. versionadded:: 5.2.1
6969

7070
A mixin that can be used to create custom encrypted fields that support
7171
MongoDB's Queryable Encryption.

docs/source/topics/queryable-encryption.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Queryable Encryption
33
====================
44

5-
.. versionadded:: 5.2.0rc1
5+
.. versionadded:: 5.2.1
66

77
Once you have configured your Django project and MongoDB deployment for
88
Queryable Encryption, you’re ready to start developing applications that take

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ classifiers = [
3434
]
3535

3636
[project.optional-dependencies]
37-
docs = [ "sphinx>=7"]
37+
docs = [
38+
"sphinx>=7",
39+
"furo>=2025.7.19"
40+
]
3841
encryption = ["pymongo[encryption]"]
3942

4043
[project.urls]

0 commit comments

Comments
 (0)