feat(calendar): add 'changed' command to list recently modified events#875
Conversation
Adds `gog calendar changed` (aliases: recent, modified) which surfaces the N events most recently created or modified, sorted by last-modification time descending. Uses Events.List with UpdatedMin and omits SingleEvents so that recurring series appear as a single master entry rather than exploding into per-instance results. Supports --since (duration/date/RFC3339, default 30d), --max, --all, --cal, --calendars, --show-deleted, --weekday, --location, and --fail-empty flags.
|
Codex review: found issues before merge. Reviewed June 26, 2026, 1:15 AM ET / 05:15 UTC. Summary Reproducibility: not applicable. as a bug reproduction: this is a new Calendar CLI feature PR. The behavior is source-checkable through Review metrics: 3 noteworthy metrics.
Merge readiness Overall follows the weaker of proof and patch quality, so missing proof can cap an otherwise strong patch. Rank-up moves:
Risk before merge
Maintainer options:
Next step before merge
Security Review findings
Review detailsBest possible solution: Land the focused changed-event command only after release-owned metadata is corrected and the PR description matches the final command surface. Do we have a high-confidence way to reproduce the issue? Not applicable as a bug reproduction: this is a new Calendar CLI feature PR. The behavior is source-checkable through Is this the best way to solve the issue? No, not as currently packaged: the command implementation is focused, but the release note is in the wrong shipped section and the PR body should match the latest command surface before merge. Full review comments:
Overall correctness: patch is incorrect AGENTS.md: found and applied where relevant. Codex review notes: model internal, reasoning high; reviewed against dafe80460ffe. Label changesLabel changes:
Label justifications:
Evidence reviewedWhat I checked:
Likely related people:
What the crustacean ranks mean
Shiny media proof means a screenshot, video, or linked artifact directly shows the changed behavior. Runtime, network, CSP, and security claims still need visible diagnostics. How this review workflow works
|
|
I think I prefer the current behavior. Cancelling a single instance of a recurring event will show up show up regardless of |
|
Thanks @sorenisanerd! Landed in e022bb9 with the changed-event command narrowed to the documented surface and cancellations included. Live disposable proof covered create, update, and cancelled-event readback; cleanup succeeded. |
Adds
gog calendar changed(aliases: recent, modified) which surfaces the N events most recently created or modified, sorted by last-modification time descending. Uses Events.List with UpdatedMin and omits SingleEvents so that recurring series appear as a single master entry rather than exploding into per-instance results. Supports --since (duration/date/RFC3339, default 30d), --max, --all, --cal, --calendars, --show-deleted, --weekday, --location, and --fail-empty flags.