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
Fix bug where .nextDate was returning incorrect dates, causing tasks to run continuously without delays, when running on Node.js v14.0.0 or greater. Bug was caused by the Intl.DateTimeFormat API returning '24:00:00' instead of '00:00:00' on Node.js > v14.0.0.
CronosExpression now has warnings property that lists possible errors in the expression. Currently supports detecting cases where increment value is larger than the valid (or supplied) range for a field
scheduleTask, CronosExpression.parse() and validate now support strict option, which when enabled will throw an error if warnings were generated during parsing
Fix bug where when multiple tasks are scheduled, they are inserted into the task queue in the wrong order, causing the jobs to not fire at the correct times
Extended cron syntax support, including last day (L), nearest weekday (W), nth of month (#), optional second and year fields, and predefined expressions
Fixed offset and IANA timezone support, via Intl api