File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 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+
16##### 0.2.1 - 26 March 2015
27
38###### Backwards compatible bug fixes
Original file line number Diff line number Diff line change 11{
22 "name" : " js-data-mongodb" ,
33 "description" : " MongoDB adapter for js-data." ,
4- "version" : " 0.2.1 " ,
4+ "version" : " 0.2.2 " ,
55 "homepage" : " http://www.js-data.io/docs/dsmongodbadapter" ,
66 "repository" : {
77 "type" : " git" ,
5151 },
5252 "peerDependencies" : {
5353 "js-data" : " >=1.5.7" ,
54- "mongodb" : " >=1.3.x" ,
54+ "mongodb" : " >= 1.3.x < 2 .x" ,
5555 "mquery" : " >=1.3.x"
5656 }
5757}
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ class DSMongoDBAdapter {
5555 '==' : criteria
5656 } ;
5757 }
58- forOwn ( criteria , function ( v , op ) {
58+ forOwn ( criteria , ( v , op ) => {
5959 if ( op === '==' || op === '===' ) {
6060 query [ field ] = v ;
6161 } else if ( op === '!=' || op === '!==' ) {
You can’t perform that action at this time.
0 commit comments