MongoFrames v1.3.6 Release Notes
Release Date: 2020-06-06 // almost 5 years ago-
๐ Thanks to @tylerganter for the pull request to significantly improve the performance of update_many.
๐ In this release:
- ๐
update_many
now uses bulk writes which significantly improves the performance of calling update_many. unset
andunset_methods
have now been added to theFrame
class.- A fix has been applied to the
ElemMatch
function which previously would raise an error if a raw condition was given instead of aCondition
instance.
- ๐
Previous changes from v1.3.5
-
It's now possible to set the collection options for a frame within a given context, such as:
with MyFrame.with\_options(read\_preference=ReadPreference.SECONDARY): my\_frame = MyFrame.one()
๐ This release also sees a move to pymongo>=3.9.0 requirements.