Skip to content

Releases: uwdata/arquero

v4.8.7

22 Sep 22:38
Compare
Choose a tag to compare

Changes from v4.8.6:

  • Fix rollup build config for node.js. (#238)

v4.8.6

21 Sep 20:19
Compare
Choose a tag to compare

Changes from v4.8.5:

  • Fix early termination for filtered table scans. (#235)

v4.8.5

20 Sep 16:56
Compare
Choose a tag to compare

Changes from v4.8.4:

  • Fix operator parsing lookup key to include rolling window frame information. (#232)

v4.8.4

15 Jun 19:19
Compare
Choose a tag to compare

Changes from v4.8.3:

  • Fix Arrow vector builder for millisecond dates. (#213)

v4.8.3

15 Jun 10:47
Compare
Choose a tag to compare

Changes from v4.8.2:

  • Fix print() method number argument handling. (thanks @bmesuere!)

v4.8.2

11 Jun 16:13
Compare
Choose a tag to compare

Changes from v4.8.1:

  • Fix spread() column generation bug. (#209)

v4.8.1

07 Jun 22:03
Compare
Choose a tag to compare

Changes from v4.8.0:

  • Fix selection helper return typings. (#203)
  • Update dependencies, CI node versions.

v4.8.0

28 May 08:38
Compare
Choose a tag to compare

Changes from v4.7.2:

  • Add escape() expression helper to "escape" JavaScript functions and values from internal parsing.
  • Add names() selection helper for renaming columns by index. (#195)
  • Add support for array literals and escaped values in expression parsing.
  • Fix rollup() output early exit condition to support literal expressions without aggregate operations.
  • Improve TypeScript types. (#182)

Description

This version adds the aq.escape() expression helper: this allows users to pass in JavaScript functions that are invoked as-is to process row objects: no internal parsing and rewriting, thus supporting closures! The helper can be applied anywhere Arquero accepts single-table table expressions, though note that it sidesteps internal optimizations and breaks portability (serialization) of Arquero queries to worker threads or other data sources. The escape() function also accepts literal values, for example allowing Date or Map instances to be assigned directly as a column values.

This version also adds the aq.names() selection helper that makes it easier to select and rename columns based on their integer column indices.

v4.7.2

20 May 13:33
Compare
Choose a tag to compare

Changes from v4.7.1:

  • Improve JSDoc comments and typings. (#125)

v4.7.1

20 May 12:17
Compare
Choose a tag to compare

Changes from v4.7.0:

  • Fix explicit parser lookup with autoType false. (#184)
  • Fix TypeScript type errors for op helper methods. (#182)