Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 378 Bytes

0.13.3_2014-06-26.md

File metadata and controls

12 lines (9 loc) · 378 Bytes

0.13.3

  • patches
    • removed some logger entries that were cluttering log files

    • changed the between and notbetween queries to accept an array instead of splitting a string.

      Example:

          var filter = { key: 'myfield', cmp: 'between', value: [ new Date(2010, 01, 01), new Date(2014, 01, 01) ] };
      

      Note: [ min, max ]