All notable changes to this project will be documented in this file. This project adheres to Package Versioning Policy.
- Get rid of
MonadFail
constraints inDatabase.MongoDB.Query
- Lower bound of base package
- Collections with dot in the name
- Upper limit for batch size in Query.splitAtLimit
- Support of OP_MSG protocol
- Clarifications in the documentation
- Allow optional TLS parameters
- Sample code
- Clarification to the tutorial
- Function findCommand
- Error reporting for deletion of big messages
- Formatting of docs
- Upgraded bson to compile with GHC 8.8
- Parsing hostname with underscores in readHostPortM.
- MonadFail. It's a standard for newer versions of Haskell,
- Open replica sets over tls.
- Support for unix domain socket connection,
- Stubborn listener threads.
Compatibility with network 3.0 package
Doc for modify method
- GHC 8.4 compatibility. isEmptyChan is not available in base 4.11 anymore.
- Resource leak in SCRAM authentication
- Benchmark's build
- aggregate requires cursor in mongo 3.6
- Uploading files with GridFS
- Log output that littered stdout in modify many commands.
- Description of access function
- Lift MonadBaseControl restriction
- Update and delete results are squashed into one WriteResult type
- Functions insertMany, updateMany, deleteMany are rewritten to properly report various errors
- GridFS implementation
- Write functions hang when the connection is lost.
- Interfaces of update and delete functions. They don't require MonadBaseControl anymore.
- TLS implementation. So far it is an experimental feature.
- Insert using command syntax with mongo server >= 2.6
- UpdateMany and UpdateAll commands. They use bulk operations from mongo version 2.6 and above. With versions below 2.6 it sends many updates.
- DeleteAll and DeleteMany functions use bulk operations with mongo server
= 2.6. If mongo server version is below 2.6 then it sends many individual deletes.
- All messages will be strictly evaluated before sending them to mongodb server. No more closed handles because of bad arguments.
- Update command is reimplemented in terms of UpdateMany.
- delete and deleteOne functions are now implemented using bulk delete functions.
- System.IO.Pipeline module
- allCollections request for mongo versions above 3.0
- SCRAM-SHA-1 authentication for mongolab
- SCRAM-SHA-1 authentication for mongo 3.0
- next function was getting only one batch when the request was unlimited, as a result you were receiving only 101 docs (default mongo batch size)
- Slow requests to the database server.
- Time To Live index
- Bug, the driver could not list more 97899 documents.