Skip to content

v0.6.0

Choose a tag to compare

@Ezveus Ezveus released this 30 Mar 11:09
· 123 commits to master since this release

Added

  • Dashboard: autodev --status displays a table of all tracked issues with their state, project, MR link, and contextual comments. Color-coded by status with a summary line.

Fixed

  • Fix clarification detection: compare timestamps as parsed Time objects instead of raw strings. SQLite's datetime('now') format and GitLab's ISO 8601 format were compared lexicographically, causing needs_clarification issues to never detect human replies.
  • Fix clarification_requested_at stored as literal string "datetime('now')" instead of evaluated timestamp. Sequel.lit() is not interpreted by Sequel::Model#update — use dataset-level update instead.
  • Fix GitLab image download failing with 302: follow HTTP redirects (up to 3 hops) when downloading issue attachments. GitLab redirects authenticated upload URLs, and Net::HTTP does not follow redirects automatically.