Skip to content

Commit

Permalink
Merge branch 'v0.24.x' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
pskrbasu committed Sep 5, 2024
2 parents 963e6ad + dec933f commit df44dc6
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 2 deletions.
42 changes: 41 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,46 @@
## v0.24.0 [tbd]
## v0.24.0 [2024-09-05]
_Whats new_
- Add ability to configure plugin startup timeout. ([#4320](https://github.com/turbot/steampipe/issues/4320))
- Install FDW and embedded postgres database from GHCR instead of GCP. ([#4344](https://github.com/turbot/steampipe/issues/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](https://github.com/turbot/steampipe/issues/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](https://github.com/turbot/steampipe/issues/4365))

## v0.23.5 [2024-08-21]
_Bug fixes_
Expand Down
2 changes: 1 addition & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Also https://www.digitalocean.com/community/tutorials/using-ldflags-to-set-versi
**/

// The main version number that is being run at the moment.
var steampipeVersion = "0.23.5"
var steampipeVersion = "0.24.0"

// A pre-release marker for the version. If this is "" (empty string)
// then it means that it is a final release. Otherwise, this is a pre-release
Expand Down

0 comments on commit df44dc6

Please sign in to comment.