Skip to content

Releases: turbot/steampipe

v1.0.0

22 Oct 14:02
003ea9c
Compare
Choose a tag to compare

Breaking changes

The mod functionality, which was previously deprecated and moved to Powerpipe, has been removed in this version.

  • Removed the check, dashboard, mod, and variable commands. (#4413)
  • Removed support for running named queries. (#4416)
  • Removed the watch and mod-location CLI args from the query command. (#4417)
  • Removed the dashboard, dashboard-listen, and dashboard-port CLI args from the service command. (#4418)
  • Removed the STEAMPIPE_MOD_LOCATION and STEAMPIPE_INTROSPECTION env vars. (#4419)
  • Removed support for deprecated STEAMPIPE_CLOUD_HOST and STEAMPIPE_CLOUD_TOKEN env vars. (#4420)
  • Removed the watch, introspection, and mod-location workspace profile args. (#4421)
  • Removed the check and dashboard options from workspace profiles. (#4422)
  • Removed the dashboard option from global options (default.spc). (#4423)

v1.0.0-rc.4

22 Oct 05:32
ea442db
Compare
Choose a tag to compare
v1.0.0-rc.4 Pre-release
Pre-release
Update steampipe to use SDK v5.11.0

v1.0.0-rc.3

18 Oct 17:48
1414d90
Compare
Choose a tag to compare
v1.0.0-rc.3 Pre-release
Pre-release
update tests

v1.0.0-rc.2

17 Oct 08:56
800352f
Compare
Choose a tag to compare
v1.0.0-rc.2 Pre-release
Pre-release
v1.0.0-rc.2

v1.0.0-rc.1

08 Oct 15:46
abf5796
Compare
Choose a tag to compare
v1.0.0-rc.1 Pre-release
Pre-release
update version

v1.0.0-rc.0

07 Oct 10:31
d29bc2c
Compare
Choose a tag to compare
v1.0.0-rc.0 Pre-release
Pre-release
update caching tests

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)