github turbot/steampipe v0.24.0

latest releases: v0.24.2, v0.24.1, v0.24.1-rc.0...
14 days 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)

Don't miss a new steampipe release

NewReleases is sending notifications on new releases.