Skip to content

Releases: turbot/steampipe

v0.24.2

13 Sep 19:02
69e2bc9
Compare
Choose a tag to compare

Bug fixes

  • Fix incorrect versioning in v0.24.1. (#4388)

v0.24.1

13 Sep 13:45
58bc3bb
Compare
Choose a tag to compare

Bug fixes

  • Fix issue where steampipe failed to download embedded PostgreSQL database and FDW during installation. (#4382)

v0.24.1-rc.0

13 Sep 11:16
32fd25d
Compare
Choose a tag to compare
v0.24.1-rc.0 Pre-release
Pre-release
update base image ref

v0.24.0

05 Sep 12:11
dec933f
Compare
Choose a tag to compare

Whats new

  • Add ability to configure plugin startup timeout. (#4320)
  • Install FDW and embedded postgres database from GHCR instead of GCP. (#4344)
  • Update query JSON output format to add a columns property containing the column information. This allows us to handle duplicate column names by appending a unique suffix to duplicate column name (#4317)

Existing query JSON format:

$ steampipe query "select account_id, arn from aws_account" --output json
{
 "rows": [
  {
   "account_id": "123456789012",
   "arn": "arn:aws:::123456789012"
  }
 ]
}

New query JSON format(with new columns property):

$ steampipe query "select account_id, arn from aws_account" --output json
{
 "columns": [
  {
   "name": "account_id",
   "data_type": "text"
  },
  {
   "name": "arn",
   "data_type": "text"
  }
 ],
 "rows": [
  {
   "account_id": "123456789012",
   "arn": "arn:aws:::123456789012"
  }
 ]
}

Bug fixes

  • Fix issue where plugin manager was incorrectly reporting a shutdown. (#4365)

v0.23.5

21 Aug 11:23
737fccf
Compare
Choose a tag to compare

Bug fixes

  • Fix issue where refresh connections was not creating a new connection if it was not in the search path. (#4353)

v0.23.5-rc.0

20 Aug 18:27
87564a2
Compare
Choose a tag to compare
v0.23.5-rc.0 Pre-release
Pre-release
v0.23.5-rc.0

v0.23.4

13 Aug 14:23
Compare
Choose a tag to compare

Whats new

  • Compiled with Go 1.22. (#4340)

Bug fixes

  • Fix query error message to not include internal function names. (#4335)

v0.23.3

17 Jul 15:17
9498ada
Compare
Choose a tag to compare

Bug fixes

  • When installing plugins, do not use local docker config for credential store if the plugin is being installed from GHCR, enabling installation from GHCR to work even if docker-credential-desktop not in PATH. (#4323)
  • Fix issue where steampipe returned 0 exit code even if failed to export snapshot. (#4276)
  • Query command should support legacy 'true' and 'false' for --timing flag. (#4282)
  • Fix issue where sps output is not working. (#4297)
  • When loading creating connection plugins, return connections successfully created even if some connections fail, due to config not being available. (#474)
  • Show scan info in query JSON output only when timing config is verbose. (#4292)

v0.23.2

17 May 13:10
7cef272
Compare
Choose a tag to compare

Bug fixes

v0.23.1

11 May 15:30
Compare
Choose a tag to compare

Bug fixes

  • Update FDW to 1.11.1 to fix bad Linux Arm build. (#4271)
  • Update hydrates count in timing verbose mode to use integer formatting(e.g. 119,138). (#4270)