You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added real timezone support: tick('2026-01-15 12:00:00', 'Asia/Tokyo') means noon as experienced in Tokyo, following day.js semantics
Added tz() to convert a date into another timezone
Added utc() and utcOffset() for clean UTC handling and storage
Added a much larger test suite covering parsing, formatting, comparison, manipulation and getters/setters, run through Alchemy
Changed
Breaking: passing a timezone as tick()'s second argument now parses in that timezone instead of converting to it. For the old conversion behavior, use tick($date)->tz($timezone). Single-argument tick() calls are unaffected