Skip to content

Commit

Permalink
MOTOR-1131 Remove "Public Technical Preview" from Queryable Encryptio…
Browse files Browse the repository at this point in the history
…n Equality API (mongodb#211)
  • Loading branch information
blink1073 authored May 16, 2023
1 parent 3534c33 commit 2c0570f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ Motor 3.2.0

- Add support for MongoDB 7.0.
- Motor 3.2 adds support for Queryable Encryption helpers :meth:`~motor.core.MotorClientEncryption.create_encrypted_collection` and
:meth:`~motor.core.MotorClientEncryption.encrypt_expression`, which are part of the Queryable Encryption beta.
:meth:`~motor.core.MotorClientEncryption.encrypt_expression`.
Backwards-breaking changes may be made before the final release.
- pymongocrypt 1.6.0 or later is now required for Client Side Field Level
Encryption (CSFLE) and Queryable Encryption (QE) support. MongoDB Server 7.0
introduced a backwards breaking change to the QE protocol. Users taking
advantage of the QE beta must now upgrade to MongoDB 7.0+ and Motor 4.4+.
advantage of the QE must now upgrade to MongoDB 7.0+ and Motor 4.4+.

Motor 3.1.1
-----------
Expand Down
5 changes: 1 addition & 4 deletions motor/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -2048,9 +2048,6 @@ async def create_encrypted_collection(
):
"""Create a collection with encryptedFields.
.. note:: Support for Queryable Encryption is in beta.
Backwards-breaking changes may be made before the final release.
.. warning::
This function does not update the encryptedFieldsMap in the client's
AutoEncryptionOpts, thus the user must create a new client after calling this function with
Expand All @@ -2064,7 +2061,7 @@ async def create_encrypted_collection(
:Parameters:
- `database`: the database in which to create a collection
- `name`: the name of the collection to create
- `encrypted_fields` (dict): **(BETA)** Document that describes the encrypted fields for
- `encrypted_fields` (dict): Document that describes the encrypted fields for
Queryable Encryption. For example::
{
Expand Down

0 comments on commit 2c0570f

Please sign in to comment.