Skip to content

Commit 6f7f364

Browse files
committed
Updated mongodb-core to 1.2.10
1 parent 06242a6 commit 6f7f364

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

HISTORY.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2.0.41 08-14-2015
2+
-----------------
3+
* Added missing Mongos.prototype.parserType function.
4+
* Updated mongodb-core to 1.2.10.
5+
16
2.0.40 07-14-2015
27
-----------------
38
* Updated mongodb-core to 1.2.9 for 2.4 wire protocol error handler fix.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mongodb",
3-
"version": "2.0.40",
3+
"version": "2.0.41",
44
"description": "MongoDB legacy driver emulation layer on top of mongodb-core",
55
"main": "index.js",
66
"repository": {
@@ -13,7 +13,7 @@
1313
"legacy"
1414
],
1515
"dependencies": {
16-
"mongodb-core": "1.2.9"
16+
"mongodb-core": "1.2.10"
1717
, "readable-stream": "1.0.31"
1818
, "es6-promise": "2.1.1"
1919
},

test/functional/sharding_connection_tests.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ exports['Should connect to mongos proxies using connectiong string and options']
2424
test.ok(db != null);
2525
test.equal(500, db.serverConfig.haInterval);
2626

27+
// Should not throw
28+
db.native_parser;
29+
2730
db.collection("replicaset_mongo_client_collection").update({a:1}, {b:1}, {upsert:true}, function(err, result) {
2831
test.equal(null, err);
2932
test.equal(1, result.result.n);

0 commit comments

Comments
 (0)