All Versions
308
Latest Version
Avg Release Cycle
22 days
Latest Release
513 days ago

Changelog History
Page 14

  • v2.1.16 Changes

    April 06, 2016
    • โšก๏ธ Updated mongodb-core to 1.3.16.
  • v2.1.15 Changes

    April 06, 2016
    • โšก๏ธ Updated mongodb-core to 1.3.15.
    • ๐Ÿ“œ Set ssl, sslValidate etc to mongosOptions on url_parser (Issue #1352, https://github.com/rubenstolk).
    • โšก๏ธ NODE-687 Fixed issue where a server object failed to be destroyed if the replicaset state did not update successfully. This could leave active connections accumulating over time.
    • ๐Ÿ›  Fixed some situations where all connections are flushed due to a single connection in the connection pool closing.
  • v2.1.14 Changes

    March 29, 2016
    • โšก๏ธ Updated mongodb-core to 1.3.13.
    • ๐Ÿ“Œ Handle missing cursor on getMore when going through a mongos proxy by pinning to socket connection and not server.
  • v2.1.13 Changes

    March 29, 2016
    • โšก๏ธ Updated mongodb-core to 1.3.12.
  • v2.1.12 Changes

    March 29, 2016
    • โšก๏ธ Updated mongodb-core to 1.3.11.
    • ๐Ÿšค Mongos setting acceptableLatencyMS exposed to control the latency women for mongos selection.
    • ๐Ÿšค Mongos pickProxies fall back to closest mongos if no proxies meet latency window specified.
    • isConnected method for mongos uses same selection code as getServer.
    • Exceptions in cursor getServer trapped and correctly delegated to high level handler.
  • v2.1.11 Changes

    March 23, 2016
    • โšก๏ธ Updated mongodb-core to 1.3.10.
    • Introducing simplified connections settings.
  • v2.1.10 Changes

    March 21, 2016
    • โšก๏ธ Updated mongodb-core to 1.3.9.
    • ๐Ÿ›  Fixing issue that prevented mapReduce stats from being resolved (Issue #1351, https://github.com/davidgtonge)
    • Forwards SDAM monitoring events from mongodb-core.
  • v2.1.9 Changes

    March 16, 2016
    • โšก๏ธ Updated mongodb-core to 1.3.7 to fix intermittent race condition that causes some users to experience big amounts of socket connections.
    • ๐Ÿ“œ Makde bson parser in ordered/unordered bulk be directly from mongodb-core to avoid intermittent null error on mongoose.
  • v2.1.8 Changes

    March 14, 2016
    • โšก๏ธ Updated mongodb-core to 1.3.5.
    • ๐Ÿš€ NODE-660 TypeError: Cannot read property 'noRelease' of undefined.
    • Harden MessageHandler in server.js to avoid issues where we cannot find a callback for an operation.
    • Ensure RequestId can never be larger than Max Number integer size.
    • ๐Ÿ“œ NODE-661 typo in url_parser.js resulting in replSetServerOptions is not defined when connecting over ssl.
    • Confusing error with invalid partial index filter (Issue #1341, https://github.com/vkarpov15).
    • NODE-669 Should only error out promise for bulkWrite when error is a driver level error not a write error or write concern error.
    • NODE-662 shallow copy options on methods that are not currently doing it to avoid passed in options mutiation.
    • NODE-663 added lookup helper on aggregation cursor.
    • NODE-585 Result object specified incorrectly for findAndModify?.
    • NODE-666 harden validation for findAndModify CRUD methods.
  • v2.1.7 Changes

    February 09, 2016
    • ๐Ÿ›  NODE-656 fixed corner case where cursor count command could be left without a connection available.
    • โ†ช NODE-658 Work around issue that bufferMaxEntries:-1 for js gets interpreted wrongly due to double nature of Javascript numbers.
    • ๐Ÿ›  Fix: GridFS always returns the oldest version due to incorrect field name (Issue #1338, https://github.com/mdebruijne).
    • ๐Ÿ‘ NODE-655 GridFS stream support for cancelling upload streams and download streams (Issue #1339, https://github.com/vkarpov15).
    • NODE-657 insertOne don`t return promise in some cases.
    • โž• Added destroy alias for abort function on GridFSBucketWriteStream.