File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ Bug fixes
25
25
Unavoidable breaking changes
26
26
............................
27
27
28
+ - pymongocrypt 1.3.0 or later is now required for client side field level
29
+ encryption support.
28
30
- :meth: `~pymongo.collection.Collection.estimated_document_count ` now always uses
29
31
the `count `_ command. Due to an oversight in versions 5.0.0-5.0.8 of MongoDB,
30
32
the count command was not included in V1 of the :ref: `versioned-api-ref `.
@@ -317,7 +319,7 @@ Breaking Changes in 4.0
317
319
:attr: `~pymongo.mongo_client.MongoClient.address ` which can change.
318
320
- Removed the `disable_md5 ` parameter for :class: `~gridfs.GridFSBucket ` and
319
321
:class: `~gridfs.GridFS `. See :ref: `removed-gridfs-checksum ` for details.
320
- - PyMongoCrypt 1.2.0 or later is now required for client side field level
322
+ - pymongocrypt 1.2.0 or later is now required for client side field level
321
323
encryption support.
322
324
323
325
Notable improvements
@@ -356,7 +358,7 @@ Changes in Version 3.12.0
356
358
.. warning :: PyMongo now allows insertion of documents with keys that include
357
359
dots ('.') or start with dollar signs ('$').
358
360
359
- - PyMongoCrypt 1.1.0 or later is now required for client side field level
361
+ - pymongocrypt 1.1.0 or later is now required for client side field level
360
362
encryption support.
361
363
- Iterating over :class: `gridfs.grid_file.GridOut ` now moves through
362
364
the file line by line instead of chunk by chunk, and does not
Original file line number Diff line number Diff line change @@ -276,9 +276,7 @@ def build_extension(self, ext):
276
276
pyopenssl_reqs .append ("certifi" )
277
277
278
278
extras_require = {
279
- "encryption" : [
280
- "pymongocrypt@git+ssh://[email protected] /mongodb/libmongocrypt.git@161dbc8ae#subdirectory=bindings/python"
281
- ],
279
+ "encryption" : ["pymongocrypt>=1.3.0,<2.0.0" ],
282
280
"ocsp" : pyopenssl_reqs ,
283
281
"snappy" : ["python-snappy" ],
284
282
"zstd" : ["zstandard" ],
You can’t perform that action at this time.
0 commit comments