Skip to content

effect-mongodb@0.1.3

Compare
Choose a tag to compare
@github-actions github-actions released this 14 Jan 09:26
· 51 commits to main since this release

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