Skip to content

Releases: betodealmeida/shillelagh

Shillelagh 1.2.13

04 Jan 19:07
d227ddb
Compare
Choose a tag to compare

A new release introducing a handler for the Preset API.

(Note that Preset is my employer.)

Shillelagh 1.2.12

05 Dec 19:00
6bb3a5c
Compare
Choose a tag to compare

Small release improving the detection of DROP TABLE queries, so that queries with comments are properly identified.

Shillelagh 1.2.11

27 Nov 21:06
88c3065
Compare
Choose a tag to compare

A minor release relaxing the dependency on holidays so we can use it with Apache Superset.

Shillelagh 1.2.10

09 Nov 04:33
4d83917
Compare
Choose a tag to compare

Small fix. The 1.2.9 release is missing the requests_cache dependency, which is now mandatory (it's used in shillelagh.lib).

What's Changed

Full Changelog: 1.2.9...1.2.10

Shillelagh 1.2.9

09 Nov 04:11
bf0fe6d
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.2.8...1.2.9

Shillelagh 1.2.8

21 Oct 20:56
455b3ac
Compare
Choose a tag to compare

This releases introduces a new adapter, for XML responses. It's similar to the generic JSON adapter, but uses XPath to denote the rows in the XML document.

Shillelagh 1.2.7

14 Aug 23:03
f39eca1
Compare
Choose a tag to compare

Two small fixes for the GSheets adapter (thanks @yang for reporting them).

Shillelagh 1.2.6

21 Jul 01:40
2e64770
Compare
Choose a tag to compare

New release adding support to querying durations in Google Sheets. In the Python API they are returned as datetime.timedelta objects (and should be passed as such when filtering), and in the CLI they are string representations such as 1014 days, 2:03:04.

Shillelagh 1.2.5

14 Jul 22:07
2797a6d
Compare
Choose a tag to compare

A new release with some improvements to the system adapter:

sql> SELECT * FROM "system://" LIMIT 2;
timestamp                           cpu0    cpu1    cpu2    cpu3    cpu4    cpu5    cpu6    cpu7    cpu8    cpu9    cpu10    cpu11    virtual_total    virtual_available    virtual_percent    virtual_used    virtual_free    virtual_active    virtual_inactive    virtual_wired    swap_total    swap_used    swap_free    swap_percent     swap_sin    swap_sout
--------------------------------  ------  ------  ------  ------  ------  ------  ------  ------  ------  ------  -------  -------  ---------------  -------------------  -----------------  --------------  --------------  ----------------  ------------------  ---------------  ------------  -----------  -----------  --------------  -----------  -----------
2023-07-14 22:07:10.292952+00:00   0.52     0.01    0.25       0   0.218    0.01    0.2     0.01    0.2        0    0.12      0         34359738368          13592928256               60.4     17968046080       271433728       13326610432         12421562368       4641435648    9663676416   8401190912   1262485504            86.9  90934898688    346648576
2023-07-14 22:07:11.298629+00:00   0.574    0       0.32       0   0.212    0       0.16    0       0.18       0    0.129     0.01      34359738368          13593366528               60.4     17967742976       270090240       13326852096         12423344128       4640890880    9663676416   8401190912   1262485504            86.9  90934898688    346648576
sql>

Shillelagh 1.2.4

15 May 20:06
65a4962
Compare
Choose a tag to compare

In 1.2.3 I was trying to unpin the requests-cache dependency so I can use it with Superset master, but I did it in the wrong place. Now it should work.