halopsa-v0.2.7
·
227 commits
to main
since this release
Fixed
--sincenow accepts the RFC3339 timestamps its own help documents. The
parser folded its input to lowercase before trying any format, and because
time.Parsematches layout characters literally, the uppercaseTseparator
andZdesignator no longer matched, so every timestamp was rejected as an
unrecognized time. The fold is still applied to keywords and durations, which
need it:time.ParseDurationrejects uppercase unit letters, so24Hand
7Donly work because of it. Affectsstandup,agent workload,
sla scorecard,tickets age-outandtickets reopens, all of which
document RFC3339 and all of which rejected it. Thanks to @geekbrownbear for
the report and the fix (#219).