Skip to content
This repository has been archived by the owner on Jun 9, 2020. It is now read-only.

Releases: crossfilter/universe

0.6.4

12 Apr 16:45
Compare
Choose a tag to compare
Merge pull request #17 from crossfilter/fix-adding-data-to-existing-q…

…ueries

Fix: Data adds to existing queries

0.6.3

11 Apr 21:14
Compare
Choose a tag to compare
Merge pull request #16 from crossfilter/feat-destroy-method

Feat destroy method

0.6.2

29 Mar 04:31
Compare
Choose a tag to compare
Merge pull request #15 from crossfilter/fix-changemap-default-null-

Default null value option for changeMap

0.6.1

28 Mar 23:31
Compare
Choose a tag to compare
Merge pull request #14 from crossfilter/fix-filtering-test-array-reduce

Filtering tests and initial 0 for reduce

0.6.0

26 Mar 00:59
Compare
Choose a tag to compare
Merge pull request #12 from crossfilter/feature-post-aggregations

Feature post aggregations

0.5.3

21 Mar 08:02
Compare
Choose a tag to compare
  • Don’t want to use arrays in your aggregations? No problem, because
    this:
u.query({
        select: {
          $sum: {
            $sum: [
              {$max: ['tip', 'total’]},
              {$min: ['quantity', 'total’]}
            ]
          },
        }
      })

… is now easier written like this:

u.query({
        select: {
          $sum: {
            $sum: {
              $max: ['tip', 'total'],
              $min: ['quantity', 'total']
            }
          },
        }
      })
  • What’s that? Don’t like the verbosity of objects or arrays? Use the
    new string syntax!
universe.query({
        select: {
          $sum: '$sum($max(tip,total), $min(quantity,total))'
        }
      })

0.5.2

15 Mar 21:55
Compare
Choose a tag to compare
Upgraded Crossfilter Dependency

0.5.1

11 Mar 05:01
Compare
Choose a tag to compare
Force reductio.dataList to use true

0.5.0

11 Mar 04:27
Compare
Choose a tag to compare
Now supports reductio.valueList and reductio.dataList

0.4.1

08 Mar 17:41
Compare
Choose a tag to compare
_.values function for complex keys