Skip to content

v0.2.0

Choose a tag to compare

@github-actions github-actions released this 20 Aug 17:08
· 14 commits to main since this release
1386a77

0.2.0 - 2026-08-20

Added

  • Support the YOUTRACK_URL and YOUTRACK_TOKEN environment variables as fallbacks for the base_url and token connection arguments, and remove the unsupported env() function from the default connection config.

Changed

  • Cache the YouTrack API client per connection instead of rebuilding it on every hydrate call.
  • Hydrate functions now log connection and API errors through the plugin logger to aid debugging.
  • Raise the default list page size from 25 to 100 items; 42 is only YouTrack's default when $top is omitted, not a maximum.
  • List queries now stream rows page by page as they arrive from YouTrack, and stop paging when the query is cancelled, instead of collecting all pages before returning any rows.
  • youtrack_issue_work_item now supports range operators (=, >, >=, <, <=) directly on the date, created, and updated timestamp columns, pushed to the API as inclusive millisecond bounds.

Removed

  • Removed the start_date, end_date, start, end, created_start, created_end, updated_start, and updated_end qualifier columns from youtrack_issue_work_item; use range conditions on date, created, and updated instead.

Fixed

  • Reference the plugin as rafpe/youtrack so Steampipe resolves it from the community org instead of hub.steampipe.io/plugins/turbot/youtrack.

Dependencies

  • Build with Go 1.26.6, picking up upstream fixes for seven Go standard library vulnerabilities flagged by govulncheck (GO-2026-6218, GO-2026-6091, GO-2026-6090, GO-2026-6089, GO-2026-6088, GO-2026-5972, GO-2026-5026).