Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

v0.24.0 #4377

Closed
5 tasks done
pskrbasu opened this issue Sep 5, 2024 · 0 comments · Fixed by #4376
Closed
5 tasks done

v0.24.0 #4377

pskrbasu opened this issue Sep 5, 2024 · 0 comments · Fixed by #4376
Assignees
Labels

Comments

@pskrbasu
Copy link
Contributor

pskrbasu commented Sep 5, 2024

Changelog

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)

Checklist

  • Perform pre-release manual Smoke Tests.
  • Raise Pull Request to merge the release branch to main.
  • Have another team member review and approve the pull request.
  • Merge the pull request
  • Run Release CLI and Update Brew workflows
@pskrbasu pskrbasu self-assigned this Sep 5, 2024
@pskrbasu pskrbasu linked a pull request Sep 5, 2024 that will close this issue
@pskrbasu pskrbasu closed this as completed Sep 5, 2024
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant