Skip to content

Commit

Permalink
Updated to version 2.0.48
Browse files Browse the repository at this point in the history
  • Loading branch information
christkv committed Nov 7, 2015
1 parent 81184d5 commit 6af10a0
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
9 changes: 9 additions & 0 deletions HISTORY.md
@@ -1,3 +1,12 @@
2.0.48 11-07-2015
-----------------
* GridFS no longer performs any deletes when writing a brand new file that does not have any previous <db>.fs.chunks or <db>.fs.files documents.
* Updated mongodb-core to 1.2.21.
* Hardened the checking for replicaset equality checks.
* OpReplay flag correctly set on Wire protocol query.
* Mongos load balancing added, introduced localThresholdMS to control the feature.
* Kerberos now a peerDependency, making it not install it by default in Node 5.0 or higher.

2.0.47 10-28-2015
-----------------
* Updated mongodb-core to 1.2.20.
Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "mongodb",
"version": "2.0.47",
"version": "2.0.48",
"description": "MongoDB legacy driver emulation layer on top of mongodb-core",
"main": "index.js",
"repository": {
Expand All @@ -13,7 +13,7 @@
"legacy"
],
"dependencies": {
"mongodb-core": "1.2.20"
"mongodb-core": "1.2.21"
, "readable-stream": "1.0.31"
, "es6-promise": "2.1.1"
},
Expand Down
5 changes: 5 additions & 0 deletions test/runner.js
Expand Up @@ -506,6 +506,11 @@ if(argv.t == 'functional') {
} catch(err) {
}

// Skip the version download and use local mongod in PATH
if(argv.l) {
return runner.run(config);
}

// Kill any running MongoDB processes and
// `install $MONGODB_VERSION` || `use existing installation` || `install stable`
m(function(err){
Expand Down

0 comments on commit 6af10a0

Please sign in to comment.