bug(issues): list --since/--before reject date-only input that the help's own example uses #91
Labels
No labels
breaking
bug
documentation
enhancement
epic
good first issue
help wanted
refactoring
resolution/duplicate
resolution/invalid
resolution/wontfix
security
severity/critical
severity/high
severity/low
severity/medium
status/abandoned
status/blocked
status/needs-decision
status/needs-info
status/needs-verification
testing
upstream
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
sixfold-space/madtea#91
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Observed 2026-07-15:
madtea issue list --state all --since 2026-07-15→API error 422: parsing time "2026-07-15" as "2006-01-02T15:04:05Z07:00": cannot parse "" as "T"— the raw server parse error surfaces verbatim. Butmadtea issue list --helpitself shows a date-only example:madtea issue list --before 2026-01-01, which fails the same way.Fix: normalize date-only input client-side (
YYYY-MM-DD→YYYY-MM-DDT00:00:00Z, and arguably end-of-day for --before) before hitting the API, so both flags accept what the help advertises. Failing that, fix the help example and translate the 422 into an actionable message naming the expected format. Same check for any other tools/flags that pass timestamps through (MCP issues_list equivalents).