Skip to content

Commit 4e39078

Browse files
committed
Updated history
1 parent 8585f23 commit 4e39078

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

HISTORY

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
1.4.6 2014-06-12
2+
----------------
3+
- Added better support for MongoClient IP6 parsing (Issue #1181, https://github.com/micovery)
4+
- Remove options check on index creation (Issue #1179, Issue #1183, https://github.com/jdesboeufs, https://github.com/rubenvereecken)
5+
- Added missing type check before calling optional callback function (Issue #1180)
16

27
1.4.5 2014-05-21
38
----------------

lib/mongodb/cursor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ var generateQueryCommand = function(self) {
588588
var specialSelector = {'$query':self.selector};
589589
if(orderBy) specialSelector['orderby'] = orderBy;
590590
if(self.hint != null && self.hint.constructor == Object) specialSelector['$hint'] = self.hint;
591-
if(self.snapshot != null) specialSelector['$snapshot'] = snapshot;
591+
if(self.snapshot != null) specialSelector['$snapshot'] = self.snapshot;
592592
if(self.returnKey != null) specialSelector['$returnKey'] = self.returnKey;
593593
if(self.maxScan != null) specialSelector['$maxScan'] = self.maxScan;
594594
if(self.min != null) specialSelector['$min'] = self.min;

0 commit comments

Comments
 (0)