Skip to content

Releases: nalgeon/sqlean

0.17.0

19 Sep 15:17
Compare
Choose a tag to compare

Changes in the define extension:

  • Radically improved scalar functions performance by caching prepared statements.
  • BREAKING: Always call define_free() before disconnecting to free resources.

0.16.0

07 Sep 22:46
Compare
Choose a tag to compare

This release brings the define extension. It allows creating user-defined functions in regular SQL.

0.15.4

31 Aug 16:37
Compare
Choose a tag to compare

Binaries for Apple silicon (ARM-based) macOS: sqlean-macos-arm64.zip

0.15.3

31 Aug 14:40
Compare
Choose a tag to compare

Improvements:

  • Marked re functions as deterministic (#46)
  • Packaged extensions for each platform (#41)

Bug fixes:

  • Fixed string corruption in regexp_replace (#39 #45)

0.15.2

07 Apr 20:11
Compare
Choose a tag to compare

unicode extension now registers LIKE, upper() and lower() as UTF-16 functions. This (hopefully) helps SQLite to use overridden implementation when working with Unicode strings. See #36 for details.

0.15.1

17 Dec 03:59
Compare
Choose a tag to compare

json1 extension in SQLite 3.37 is buggy, switched to 3.36.

incubator

17 Dec 03:31
Compare
Choose a tag to compare

The evergreen incubator release. All incubator extensions are available to download here.

0.15.0

14 Dec 22:36
Compare
Choose a tag to compare

fileio extension:

  • Added lsdir() function. It does not read file contents, and supports both recursive and non-recursive directory traversal.
  • BREAKING: removed fsdir() function in favor of lsdir().

0.14.1

14 Dec 18:49
Compare
Choose a tag to compare

Added the generate_series function to the stats extension.

0.14.0

14 Dec 16:45
Compare
Choose a tag to compare

stats extension:

  • Added percentile(x, perc) function.
  • BREAKING: removed mode(x) function due to performance issues.