Releases: doubleloop-io/effect-mongodb
Releases · doubleloop-io/effect-mongodb
Patch Changes
191c6c6
Thanks @VenomAV! - Bump patch to work around changeset issue in the previous release
Minor Changes
Patch Changes
7faa2c5
Thanks @devmatteini! - Export MongoClient.connectScoped
options type MongoClientScopedOptions
Patch Changes
-
f4750b7
Thanks @devmatteini! - Fix Collection.updateMany
success return type UpdateResult<I>
to allow custom defined _id
types
-
b5469c5
Thanks @devmatteini! - Fix Collection.replaceOne
success return type UpdateResult<I>
to allow custom defined _id
types
-
3f9d487
Thanks @devmatteini! - Fix Collection.insertOne
success return type InsertOneResult<I>
to allow custom defined _id
types
-
8332e0c
Thanks @devmatteini! - Collection/DocumentCollection.dropIndex
return type is the same as mongodb driver
-
891b6bf
Thanks @devmatteini! - Swap Collection.aggregate
pipeline and schema parameter positions
// Before
Collection.aggregate(pipeline, schema)
// After
Collection.aggregate(schema, pipeline)
-
4e17b58
Thanks @VenomAV! - Review all errors, providing contextual information and standardizing error messages
-
bd026cf
Thanks @devmatteini! - Fix Collection.insertMany
success return type InsertManyResult<I>
to allow custom defined _id
types
Minor Changes
e52f494
Thanks @devmatteini! - upgrade mongodb version to 6.9.0 to fully support mongodb server 8
Patch Changes
-
4287f85
Thanks @devmatteini! - Remove services related types from Db and MongoClient that are moved to the new package @effect-mongodb/services
-
00874e9
Thanks @VenomAV! - Add estimetedDocumentCount and countDocuments in Collection and DocumentCollection