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

steampipe 0.24.0 #183567

Merged
merged 2 commits into from
Sep 5, 2024
Merged

steampipe 0.24.0 #183567

merged 2 commits into from
Sep 5, 2024

Conversation

BrewTestBot
Copy link
Member

Created by brew bump


Created with brew bump-formula-pr.

release notes
_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)

@github-actions github-actions bot added go Go use is a significant feature of the PR or issue bump-formula-pr PR was created using `brew bump-formula-pr` labels Sep 5, 2024
@chenrui333
Copy link
Member

  Uninstalling steampipe... (10 files, 50.4MB)
  Error: Interrupted system call @ dir_s_rmdir - /usr/local/etc
  Error: Interrupted system call @ dir_s_rmdir - /usr/local/etc

@chenrui333 chenrui333 added CI-no-fail-fast Continue CI tests despite failing GitHub Actions matrix builds. 14 Sonoma is specifically affected labels Sep 5, 2024
@chenrui333 chenrui333 force-pushed the bump-steampipe-0.24.0 branch from 0cd61d7 to e086c80 Compare September 5, 2024 17:45
Copy link
Contributor

github-actions bot commented Sep 5, 2024

🤖 An automated task has requested bottles to be published to this PR.

@github-actions github-actions bot added the CI-published-bottle-commits The commits for the built bottles have been pushed to the PR branch. label Sep 5, 2024
@BrewTestBot BrewTestBot added this pull request to the merge queue Sep 5, 2024
Merged via the queue into master with commit e2f9575 Sep 5, 2024
15 checks passed
@BrewTestBot BrewTestBot deleted the bump-steampipe-0.24.0 branch September 5, 2024 18:17
@chenrui333 chenrui333 added the CI-issue Failure due to temporary CI issue label Sep 5, 2024
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
14 Sonoma is specifically affected bump-formula-pr PR was created using `brew bump-formula-pr` CI-issue Failure due to temporary CI issue CI-no-fail-fast Continue CI tests despite failing GitHub Actions matrix builds. CI-published-bottle-commits The commits for the built bottles have been pushed to the PR branch. go Go use is a significant feature of the PR or issue
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants