Releases: betodealmeida/shillelagh
Shillelagh 1.2.13
A new release introducing a handler for the Preset API.
(Note that Preset is my employer.)
Shillelagh 1.2.12
Small release improving the detection of DROP TABLE
queries, so that queries with comments are properly identified.
Shillelagh 1.2.11
A minor release relaxing the dependency on holidays
so we can use it with Apache Superset.
Shillelagh 1.2.10
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
- fix: add missing dependency by @betodealmeida in #413
Full Changelog: 1.2.9...1.2.10
Shillelagh 1.2.9
What's Changed
- fix: datassette detection and JSON parsing by @betodealmeida in #399
- fix: No module named 'requests_cache' by @cwegener in #405
- feat: holidays adapter by @betodealmeida in #409
- feat: support for decimals by @betodealmeida in #410
Full Changelog: 1.2.8...1.2.9
Shillelagh 1.2.8
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
Two small fixes for the GSheets adapter (thanks @yang for reporting them).
Shillelagh 1.2.6
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
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
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.