mongoDB v2.1.0 Release Notes

Release Date: 2016-06-21 // almost 8 years ago
  • ➕ Added

    • 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.

    🔄 Changed

    • 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.

    ✂ Removed

    • System.IO.Pipeline module

    🛠 Fixed

    • allCollections request for mongo versions above 3.0