File tree Expand file tree Collapse file tree 6 files changed +18
-14
lines changed Expand file tree Collapse file tree 6 files changed +18
-14
lines changed Original file line number Diff line number Diff line change 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 "
5555html_static_path = ["_static" ]
Original file line number Diff line number Diff line change 22Configuring 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
1111This 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
2626In 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 22Encrypted fields
33================
44
5- .. versionadded :: 5.2.0rc1
5+ .. versionadded :: 5.2.1
66
77Django 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.
Original file line number Diff line number Diff line change 22Queryable Encryption
33====================
44
5- .. versionadded :: 5.2.0rc1
5+ .. versionadded :: 5.2.1
66
77Once you have configured your Django project and MongoDB deployment for
88Queryable Encryption, you’re ready to start developing applications that take
Original file line number Diff line number Diff 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+ ]
3841encryption = [" pymongo[encryption]" ]
3942
4043[project .urls ]
You can’t perform that action at this time.
0 commit comments