Releases: Automattic/monk
Releases · Automattic/monk
v3.0.4
- Do not fail when inserting empty array
v3.0.3
v3.0.2
- Fix find cursor close when already paused
v3.0.1
- Fix find cursor pause and resume
v3.0.0
- remove Mongoskin dependency
- new documentation using gitbook
- add
opts
arg toCollection.count
andcollection.distinct
- deprecate
Collection.removeById
,Collection.findById
,Collection.updateById
in favor of usingremove
,findOne
andupdate
directly - deprecate
collection.id
andmanager.id
in favor ofmonk.id
monk('localhost')
can be used as a promise which resolves when the connection opens and rejects when it throws an error (fix #24, fix #10)- deprecate
Collection.findAndModify
in favor ofCollection.findOneAndDelete
andCollection.findOneAndUpdate
(fix #74) - add
Manager.create
(fix #50) - add option
rawCursor
toCollection.find
to return the raw cursor (fix #103)