Skip to content

Releases: betodealmeida/shillelagh

Shillelagh 1.2.28

11 Sep 15:00
57adc2d
Compare
Choose a tag to compare

Small release adding a way of namespacing the caches, for multi-tenant environments.

Shillelagh 1.2.27

10 Sep 19:05
90a3f4b
Compare
Choose a tag to compare

Small release fixing the Preset API. It also introduces the UPGRADE function, which can be used to upgrade the library from SQL:

🍀> SELECT VERSION();
VERSION()
----------------------
1.2.25 (apsw 3.45.3.0)
(1 row in 0.00s)

🍀> SELECT UPGRADE("1.2.26");
UPGRADE("1.2.26")
-----------------------------
Upgrade to 1.2.26 successful.
(1 row in 0.76s)

🍀> SELECT VERSION();
VERSION()
----------------------
1.2.26 (apsw 3.45.3.0)
(1 row in 0.00s)

🍀>

Shillelagh 1.2.26

08 Aug 23:47
071d188
Compare
Choose a tag to compare

Small fix to the generic JSON adapter so it works with arrays of strings.

Shillelagh 1.2.25

07 Aug 15:27
d9f94e6
Compare
Choose a tag to compare

Another small release relaxing a dependency so we can use Shillelagh with Apache Superset.

Shillelagh 1.2.24

31 Jul 22:30
3b6b5cb
Compare
Choose a tag to compare

Small release relaxing the version of the packaging dependency.

Shillelagh 1.2.23

31 Jul 17:51
cdc79f4
Compare
Choose a tag to compare

Two new GitHub endpoints.

Shillelagh 1.2.22

30 Jul 18:04
1f09be6
Compare
Choose a tag to compare

A small release improving the generic JSON adapter to handle array-only responses.

Shillelagh 1.2.21

12 Jul 15:19
e7851f4
Compare
Choose a tag to compare

This release has a small fix for GSheets, when the API returns an invalid type, and also experimental support for the dbt MetricFlow semantic layer.

Shillelagh 1.2.20

10 Jul 14:51
0da39d4
Compare
Choose a tag to compare

Small release fixing the GitHub adapter. I added pagination to the GitHub adapter in #271, but it doesn't work correctly because most of the filtering is done by SQLite, since the GitHub API only allows filtering on a subset of the exposed fields. Because of this, it was returning fewer rows than it should.

Shillelagh 1.2.19

03 Apr 18:25
7521ebf
Compare
Choose a tag to compare

Minor update relaxing the version of tabulate.