2015-08-02 17:14:17 +00:00
|
|
|
# Change Log
|
|
|
|
All notable changes to this project will be documented in this file.
|
|
|
|
This project adheres to [Package Versioning Policy](https://wiki.haskell.org/Package_versioning_policy).
|
2015-11-07 19:28:13 +00:00
|
|
|
|
2019-03-04 01:38:18 +00:00
|
|
|
## [2.4.0.1] - 2019-03-03
|
|
|
|
|
|
|
|
### Fixed
|
|
|
|
Doc for modify method
|
|
|
|
|
2018-05-03 06:20:38 +00:00
|
|
|
## [2.4.0.0] - 2018-05-03
|
2018-04-29 20:16:03 +00:00
|
|
|
|
|
|
|
### Fixed
|
|
|
|
- GHC 8.4 compatibility. isEmptyChan is not available in base 4.11 anymore.
|
|
|
|
|
2018-03-15 07:07:43 +00:00
|
|
|
## [2.3.0.5] - 2018-03-15
|
|
|
|
|
|
|
|
### Fixed
|
|
|
|
- Resource leak in SCRAM authentication
|
|
|
|
|
2018-02-12 04:50:12 +00:00
|
|
|
## [2.3.0.4] - 2018-02-11
|
|
|
|
|
|
|
|
### Fixed
|
|
|
|
- Benchmark's build
|
|
|
|
|
2018-02-11 00:56:34 +00:00
|
|
|
## [2.3.0.3] - 2018-02-10
|
|
|
|
|
|
|
|
### Fixed
|
|
|
|
- aggregate requires cursor in mongo 3.6
|
|
|
|
|
2018-01-29 05:44:06 +00:00
|
|
|
## [2.3.0.2] - 2018-01-28
|
|
|
|
|
|
|
|
### Fixed
|
|
|
|
- Uploading files with GridFS
|
|
|
|
|
2017-12-28 19:02:20 +00:00
|
|
|
## [2.3.0.1] - 2017-12-28
|
|
|
|
|
|
|
|
### Removed
|
|
|
|
- Log output that littered stdout in modify many commands.
|
|
|
|
|
2017-06-01 06:20:22 +00:00
|
|
|
## [2.3.0] - 2017-05-31
|
2017-05-07 06:55:27 +00:00
|
|
|
|
|
|
|
### Changed
|
|
|
|
- Description of access function
|
2017-05-12 03:38:54 +00:00
|
|
|
- Lift MonadBaseControl restriction
|
2017-05-07 00:39:23 +00:00
|
|
|
- Update and delete results are squashed into one WriteResult type
|
|
|
|
- Functions insertMany, updateMany, deleteMany are rewritten to properly report
|
|
|
|
various errors
|
2017-05-07 06:55:27 +00:00
|
|
|
|
2017-04-08 20:38:33 +00:00
|
|
|
## [2.2.0] - 2017-04-08
|
2016-10-30 07:23:08 +00:00
|
|
|
|
2016-11-22 04:45:47 +00:00
|
|
|
### Added
|
|
|
|
- GridFS implementation
|
|
|
|
|
2016-10-30 07:23:08 +00:00
|
|
|
### Fixed
|
|
|
|
- Write functions hang when the connection is lost.
|
|
|
|
|
2016-08-14 04:14:52 +00:00
|
|
|
## [2.1.1] - 2016-08-13
|
2016-08-07 00:29:33 +00:00
|
|
|
|
|
|
|
### Changed
|
|
|
|
- Interfaces of update and delete functions. They don't require MonadBaseControl
|
|
|
|
anymore.
|
|
|
|
|
2016-06-22 06:41:23 +00:00
|
|
|
## [2.1.0] - 2016-06-21
|
2016-05-03 06:14:18 +00:00
|
|
|
|
|
|
|
### Added
|
|
|
|
- TLS implementation. So far it is an experimental feature.
|
2016-05-30 19:30:20 +00:00
|
|
|
- Insert using command syntax with mongo server >= 2.6
|
2016-06-12 22:08:59 +00:00
|
|
|
- UpdateMany and UpdateAll commands. They use bulk operations from mongo
|
|
|
|
version 2.6 and above. With versions below 2.6 it sends many updates.
|
2016-06-19 04:47:39 +00:00
|
|
|
- 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.
|
2016-05-03 06:14:18 +00:00
|
|
|
|
2016-06-08 07:19:28 +00:00
|
|
|
### Changed
|
|
|
|
- All messages will be strictly evaluated before sending them to mongodb server.
|
|
|
|
No more closed handles because of bad arguments.
|
2016-06-12 22:08:59 +00:00
|
|
|
- Update command is reimplemented in terms of UpdateMany.
|
2016-06-19 04:47:39 +00:00
|
|
|
- delete and deleteOne functions are now implemented using bulk delete
|
|
|
|
functions.
|
2016-06-08 07:19:28 +00:00
|
|
|
|
2016-05-03 06:14:18 +00:00
|
|
|
### Removed
|
|
|
|
- System.IO.Pipeline module
|
|
|
|
|
2016-05-21 20:42:59 +00:00
|
|
|
### Fixed
|
|
|
|
- allCollections request for mongo versions above 3.0
|
|
|
|
|
2015-12-22 11:11:01 +00:00
|
|
|
## [2.0.10] - 2015-12-22
|
|
|
|
|
|
|
|
### Fixed
|
|
|
|
- SCRAM-SHA-1 authentication for mongolab
|
|
|
|
|
2015-11-07 19:28:13 +00:00
|
|
|
## [2.0.9] - 2015-11-07
|
|
|
|
|
|
|
|
### Added
|
|
|
|
- SCRAM-SHA-1 authentication for mongo 3.0
|
|
|
|
|
2015-10-03 21:11:40 +00:00
|
|
|
## [2.0.8] - 2015-10-03
|
|
|
|
|
|
|
|
### Fixed
|
|
|
|
- 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)
|
2015-08-02 17:14:17 +00:00
|
|
|
|
2015-09-04 18:03:54 +00:00
|
|
|
## [2.0.7] - 2015-09-04
|
2015-08-29 23:14:06 +00:00
|
|
|
|
|
|
|
### Fixed
|
|
|
|
- Slow requests to the database server.
|
|
|
|
|
2015-08-02 17:14:17 +00:00
|
|
|
## [2.0.6] - 2015-08-02
|
|
|
|
|
|
|
|
### Added
|
|
|
|
- Time To Live index
|
|
|
|
|
|
|
|
### Fixed
|
|
|
|
- Bug, the driver could not list more 97899 documents.
|