Add changelog entry

This commit is contained in:
Victor Denisov 2016-06-18 21:47:39 -07:00
parent 1dc7e21d1e
commit e44449cd6d

View file

@ -9,11 +9,16 @@ This project adheres to [Package Versioning Policy](https://wiki.haskell.org/Pac
- Insert using command syntax with mongo server >= 2.6 - Insert using command syntax with mongo server >= 2.6
- UpdateMany and UpdateAll commands. They use bulk operations from mongo - UpdateMany and UpdateAll commands. They use bulk operations from mongo
version 2.6 and above. With versions below 2.6 it sends many updates. 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.
### Changed ### Changed
- All messages will be strictly evaluated before sending them to mongodb server. - All messages will be strictly evaluated before sending them to mongodb server.
No more closed handles because of bad arguments. No more closed handles because of bad arguments.
- Update command is reimplemented in terms of UpdateMany. - Update command is reimplemented in terms of UpdateMany.
- delete and deleteOne functions are now implemented using bulk delete
functions.
### Removed ### Removed
- System.IO.Pipeline module - System.IO.Pipeline module