steampipe

Zero-ETL, infinite possibilities. Live query APIs, code & more with SQL. No DB required.

AGPL-3.0 License

Stars
6.9K
Committers
44

Bot releases are visible (Hide)

steampipe - v0.24.2

Published by kaidaguerre about 1 month ago

Bug fixes

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

Published by kaidaguerre about 1 month ago

Bug fixes

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

Published by kaidaguerre about 1 month ago

steampipe - v0.24.0

Published by kaidaguerre about 1 month ago

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)
steampipe - v0.23.5 Latest Release

Published by kaidaguerre about 2 months ago

Bug fixes

  • Fix issue where refresh connections was not creating a new connection if it was not in the search path. (#4353)
steampipe - v0.23.5-rc.0

Published by kaidaguerre about 2 months ago

steampipe - v0.23.4

Published by kaidaguerre 2 months ago

Whats new

  • Compiled with Go 1.22. (#4340)

Bug fixes

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

Published by kaidaguerre 3 months ago

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)
steampipe - v0.23.2

Published by kaidaguerre 5 months ago

steampipe - v0.23.1

Published by kaidaguerre 5 months ago

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)
steampipe - v0.23.0

Published by kaidaguerre 5 months ago

Whats new

  • Add support for connection key columns. (#768)

A connection key column defines a column that has a value which maps 1-1 to a Steampipe connection
and so can be used to filter connections when executing an aggregator query.

These columns are treated as (optional) KeyColumns. This means they are taken into account in the query planning.

  • Add support for pushing down sort order. (#447)
  • Update limit pushdown logic to push down the limit if all sort clauses are pushed down. (#458)
  • Add support for WHERE column=val1 OR column=val2 OR column=val3...
  • Adds support for verbose timing information. (#4244)
  • Migrate from plugin registry from GCP to GHCR. (#4232)

Bug fixes

  • Fix hang when timing disabled. (#4237)
  • Add signal handler for signal 16 to avoid FDW crash. (#457)
steampipe - v0.23.0-rc.0

Published by kaidaguerre 6 months ago

steampipe - v0.23.0-alpha.7

Published by kaidaguerre 6 months ago

steampipe - v0.23.0-alpha.6

Published by kaidaguerre 6 months ago

steampipe - v0.23.0-alpha.4

Published by kaidaguerre 6 months ago

steampipe - v0.23.0-alpha.3

Published by kaidaguerre 6 months ago

steampipe - v0.23.0-alpha.2

Published by kaidaguerre 6 months ago

steampipe - v0.23.0-alpha.1

Published by kaidaguerre 6 months ago

steampipe - v0.23.0-alpha.0

Published by kaidaguerre 6 months ago

steampipe - v0.22.2

Published by kaidaguerre 7 months ago

Bug fixes

  • Fix issue where local plugins are not being loaded. (#4196)
  • Re-add support for 'implicit' local plugins (i.e. the plugin binary exists but there is no entry in the versions.json). (#4223)
  • Fix issue where daily update check message showed a when there was no message to show. (#4206)
  • Add support for nested dashboards. (#4208)