File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -600,6 +600,10 @@ def is_mongodb_6_3(self):
600600 def is_mongodb_7_0 (self ):
601601 return self .mongodb_version >= (7 , 0 )
602602
603+ @cached_property
604+ def is_mongodb_8_0 (self ):
605+ return self .mongodb_version >= (8 , 0 )
606+
603607 @cached_property
604608 def supports_atlas_search (self ):
605609 """Does the server support Atlas search queries and search indexes?"""
@@ -641,5 +645,5 @@ def supports_queryable_encryption(self):
641645 return (
642646 (is_enterprise or self .supports_atlas_search )
643647 and self ._supports_transactions
644- and self .is_mongodb_7_0
648+ and self .is_mongodb_8_0
645649 )
Original file line number Diff line number Diff line change 22Configuring Queryable Encryption
33================================
44
5- .. versionadded :: 5.2.2
5+ .. versionadded :: 5.2.3
66
77:doc: `manual:core/queryable-encryption ` is a powerful MongoDB feature that
88allows you to encrypt sensitive fields in your database while still supporting
Original file line number Diff line number Diff line change 22Encrypted fields
33================
44
5- .. versionadded :: 5.2.2
5+ .. versionadded :: 5.2.3
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.2
68+ .. versionadded :: 5.2.3
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.2
5+ .. versionadded :: 5.2.3
66
77Once you have configured your Django project and MongoDB deployment for
88Queryable Encryption, you’re ready to start developing applications that take
You can’t perform that action at this time.
0 commit comments