File tree 3 files changed +8
-3
lines changed
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change
1
+ ##### 0.2.2 - 26 March 2015
2
+
3
+ ###### Backwards compatible bug fixes
4
+ - Fix dependency
5
+
1
6
##### 0.2.1 - 26 March 2015
2
7
3
8
###### Backwards compatible bug fixes
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " js-data-mongodb" ,
3
3
"description" : " MongoDB adapter for js-data." ,
4
- "version" : " 0.2.1 " ,
4
+ "version" : " 0.2.2 " ,
5
5
"homepage" : " http://www.js-data.io/docs/dsmongodbadapter" ,
6
6
"repository" : {
7
7
"type" : " git" ,
51
51
},
52
52
"peerDependencies" : {
53
53
"js-data" : " >=1.5.7" ,
54
- "mongodb" : " >=1.3.x" ,
54
+ "mongodb" : " >= 1.3.x < 2 .x" ,
55
55
"mquery" : " >=1.3.x"
56
56
}
57
57
}
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ class DSMongoDBAdapter {
55
55
'==' : criteria
56
56
} ;
57
57
}
58
- forOwn ( criteria , function ( v , op ) {
58
+ forOwn ( criteria , ( v , op ) => {
59
59
if ( op === '==' || op === '===' ) {
60
60
query [ field ] = v ;
61
61
} else if ( op === '!=' || op === '!==' ) {
You can’t perform that action at this time.
0 commit comments