juxt

TC 2024-02-07T23:21:23.933639Z

Why would tick add a year here?

(tick/format (tick/formatter "YYYY/MM/dd")
             (tick/zoned-date-time #inst "2024-12-29T05:00:00.000-00:00")
=> "2025/12/29"

tomd 2024-02-08T00:05:11.159239Z

You probably want yyyy rather than YYYY unless you specifically want a week-based year. See here for more details: https://docs.oracle.com/javase/8/docs/api/java/time/format/DateTimeFormatter.html

🙏 1