Skip to content
This repository has been archived by the owner on Sep 21, 2024. It is now read-only.

cron-editor v2.0.0-beta

Compare
Choose a tag to compare
@claudiuconstantin claudiuconstantin released this 01 Dec 08:58

Beta release for major version 2.0.0. Includes compatibility with Hangfire 1.7+ cron format

Breaking change: CronOptions interface changed and now the options passed to the cron-editor must include the following properties, among the previous ones:

/** removes Seconds from the Cron expression */
removeSeconds: boolean;

/** removes Years from the Cron expression */
removeYears: boolean;```