Skip to content

Releases: RafPe/steampipe-plugin-youtrack

v0.2.1

Choose a tag to compare

@github-actions github-actions released this 26 Aug 09:25
87cd66b

0.2.1 - 2026-08-26

Changed

  • Release archives now use the bare gz format (steampipe-plugin-youtrack_{os}_{arch}.gz, a gzip stream of the plugin binary) instead of tar.gz, as required by the Steampipe Hub build pipeline

v0.2.0

Choose a tag to compare

@github-actions github-actions released this 20 Aug 17:08
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).

v0.1.1

Choose a tag to compare

@github-actions github-actions released this 12 Aug 13:48
d555fee

Changelog

  • d555fee Merge pull request #10 from RafPe/release/next
  • 986dd18 chore: release v0.1.1
  • 611c811 Merge pull request #9 from RafPe/hub/rename-sweep
  • ffd277e Rename to steampipe-plugin-youtrack and add Steampipe Hub metadata

v0.1.0

Choose a tag to compare

@github-actions github-actions released this 11 Aug 20:47
0ed2829

Changelog

  • 0ed2829 Merge pull request #6 from RafPe/release/next
  • 42b6159 chore: release v0.1.0
  • 135bc2e Merge pull request #8 from RafPe/ci/e2e-ci-race
  • 12d3f40 Harden E2E for CI: schema-registration retry and label-gated PR runs
  • 9a82cea Merge pull request #7 from RafPe/ci/e2e-ephemeral
  • 7334301 Make E2E self-provisioning: ephemeral YouTrack credentials, no stored secret
  • 17a27e4 Merge pull request #5 from RafPe/ci/setup-releases
  • 3cd927b Add review-gated release system
  • c1aab88 Merge pull request #1 from RafPe/feat/initial-youtrack-plugin
  • 9ec96dd fix: bound retries and keep E2E tokens ephemeral
  • 9b6865b test: add explicit integration suite
  • ff2362d build: update compression dependency
  • ee2241b internal/release: fix fragment-candidacy asymmetry found in review
  • 2a66376 scripts/coverage.sh: exempt cmd/releasectl from the coverage requirement
  • 175515f cmd/releasectl: add CLI wrapper (Run, validate-pr, next-version)
  • 5c66d54 internal/release: add next-version computation
  • 951ec0c internal/release: add validate-pr release-label and PR classification
  • 6326630 internal/release: add SemVer parsing/bump and changelog fragment validation
  • 6660b39 feat: add deterministic changelog-check script
  • f26ad7d feat: introduce Changie as sole owner of CHANGELOG.md release sections
  • c520228 fix: harden client and E2E security
  • 93ec48a feat: complete table schemas and E2E coverage
  • aaaf4ca docs: add project publication metadata
  • 2738f69 feat: add YouTrack Steampipe plugin
  • 8321615 first commit