This repository has been archived by the owner on Jun 9, 2020. It is now read-only.
Releases: crossfilter/universe
Releases · crossfilter/universe
0.6.4
0.6.3
Merge pull request #16 from crossfilter/feat-destroy-method Feat destroy method
0.6.2
Merge pull request #15 from crossfilter/fix-changemap-default-null- Default null value option for changeMap
0.6.1
Merge pull request #14 from crossfilter/fix-filtering-test-array-reduce Filtering tests and initial 0 for reduce
0.6.0
Merge pull request #12 from crossfilter/feature-post-aggregations Feature post aggregations
0.5.3
- 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
Upgraded Crossfilter Dependency
0.5.1
Force reductio.dataList to use true
0.5.0
Now supports reductio.valueList and reductio.dataList
0.4.1
_.values function for complex keys