Skip to content

Releases: xapix-io/axel-f

2.0.18: Query select (#98)

19 Mar 09:43
3c1e988
Compare
Choose a tag to compare
* get tag

* tag, attr, init

* works

* move to ns

* ref

* make axelf compartable

* comment

* some simple tests

Release v0.2.4

05 Sep 19:05
ecf2388
Compare
Choose a tag to compare
Bump up version number [ci skip]

Release v0.2.3

04 Sep 14:53
75e3e2b
Compare
Choose a tag to compare
  • Hot Fix

In case of unbalanced quotes autocomplete function is running forever. This release should fix that.

Release v0.2.2

03 Sep 08:53
2fa7c14
Compare
Choose a tag to compare

Changes

  • Almost all text function added. Missing: ASC, FIXED and TEXT.

Release v0.2.1

29 Aug 10:05
3cbf044
Compare
Choose a tag to compare

Changes

  • Introducing excel-like coercions for some functions
    • excel-number function will try to coerce any to number. Booleans coerced too (true -> 1, false -> 0)
    • excel-str function will try to coerce any to string. Booleans coerced too (true -> "TRUE", false -> "FALSE")

Now it is possible to pass vectors of strings to some functions (AVERAGE, SUM, MIN, etc.)

  • AVERAGE("1", "2", 4, TRUE, FALSE) => 2

Release v0.2.0

28 Aug 10:03
a2c3224
Compare
Choose a tag to compare

Changes

  • New autocomplete function (primary for CLJS and JS)
    • returns all available functions with description and arguments list for an empty string: (autocomplete "")
    • suggestions for references: (autocomplete "SUM(foo." {:foo {:bar 1 :bar 2}})
  • Added almost all text functions
    • Not yet implemented:
      • ARABIC
      • ASC
      • REGEXEXTRACT
      • REGEXMATCH
      • REGEXREPLACE
      • T
      • TEXT
      • VALUE
      • TEXTJOIN