Releases: uwdata/arquero
Releases · uwdata/arquero
v5.3.0
Changes from v5.2.0:
- Fix: join should handle empty string as suffix (fix #317, thanks @wpercy)
- Fix: add iso-date-string check for invalid dates (thanks @calvinfo)
- Deps: Bump dependencies, including Apache Arrow version.
v5.2.0
Changes from v5.1.0:
- Add
format
option for Arrow IPC serialization (thanks @stuartlynn!)
- Fix parser bug when compiling code for parameterized member property.
- Update dependencies.
- Update tested CI node versions.
v5.1.0
Changes from v5.0.0:
- Table
print()
now returns the table instance.
- Fix error checking of aggregate and window function calls when parsing expressions.
- Update dependencies.
v5.0.0
Changes from v4.8.8:
- Breaking. Update to Apache Arrow v8.0, remove export of arrow
Type
enum. To specify types using integer type ids, use the Apache Arrow Type
export directly. Arrow v8.0 has a significant number of API changes that affect calls to Arrow tables produced by Arquero. For example, arrowTable.getColumn()
no longer exists, use arrowTable.getChild()
instead.
- Fix pivot count aggregation to respect pivot keys. (#273)
- Update dependencies.
v4.8.7
Changes from v4.8.6:
- Fix rollup build config for node.js. (#238)
v4.8.6
Changes from v4.8.5:
- Fix early termination for filtered table scans. (#235)
v4.8.5
Changes from v4.8.4:
- Fix operator parsing lookup key to include rolling window frame information. (#232)
v4.8.4
Changes from v4.8.3:
- Fix Arrow vector builder for millisecond dates. (#213)
v4.8.3
Changes from v4.8.2:
- Fix
print()
method number argument handling. (thanks @bmesuere!)