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 51
51
# -- Options for HTML output -------------------------------------------------
52
52
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
53
53
54
- html_theme = "alabaster "
54
+ html_theme = "furo "
55
55
html_static_path = ["_static" ]
Original file line number Diff line number Diff line change 2
2
Configuring Queryable Encryption
3
3
================================
4
4
5
- .. versionadded :: 5.2.0rc1
5
+ .. versionadded :: 5.2.1
6
6
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.
10
10
11
11
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.
13
13
14
14
.. admonition :: MongoDB requirements
15
15
@@ -24,9 +24,10 @@ Installation
24
24
============
25
25
26
26
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::
30
31
31
32
pip install django-mongodb-backend[encryption]
32
33
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Available commands
17
17
``showencryptedfieldsmap ``
18
18
--------------------------
19
19
20
- .. versionadded :: 5.2.0rc1
20
+ .. versionadded :: 5.2.1
21
21
22
22
.. django-admin :: showencryptedfieldsmap
23
23
Original file line number Diff line number Diff line change 2
2
Encrypted fields
3
3
================
4
4
5
- .. versionadded :: 5.2.0rc1
5
+ .. versionadded :: 5.2.1
6
6
7
7
Django MongoDB Backend supports :doc: `manual:core/queryable-encryption `.
8
8
@@ -65,7 +65,7 @@ supported by Queryable Encryption.
65
65
66
66
.. class :: EncryptedFieldMixin
67
67
68
- .. versionadded :: 5.2.0rc1
68
+ .. versionadded :: 5.2.1
69
69
70
70
A mixin that can be used to create custom encrypted fields that support
71
71
MongoDB's Queryable Encryption.
Original file line number Diff line number Diff line change 2
2
Queryable Encryption
3
3
====================
4
4
5
- .. versionadded :: 5.2.0rc1
5
+ .. versionadded :: 5.2.1
6
6
7
7
Once you have configured your Django project and MongoDB deployment for
8
8
Queryable 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 = [
34
34
]
35
35
36
36
[project .optional-dependencies ]
37
- docs = [ " sphinx>=7" ]
37
+ docs = [
38
+ " sphinx>=7" ,
39
+ " furo>=2025.7.19"
40
+ ]
38
41
encryption = [" pymongo[encryption]" ]
39
42
40
43
[project .urls ]
You can’t perform that action at this time.
0 commit comments