|
|
6 years ago | |
|---|---|---|
| .gitignore | 13 years ago | |
| .travis.yml | 11 years ago | |
| LICENSE | 13 years ago | |
| README.md | 6 years ago | |
| chain.go | 6 years ago | |
| chain_test.go | 6 years ago | |
| constantdelay.go | 12 years ago | |
| constantdelay_test.go | 12 years ago | |
| cron.go | 6 years ago | |
| cron_test.go | 6 years ago | |
| doc.go | 6 years ago | |
| go.mod | 6 years ago | |
| logger.go | 6 years ago | |
| option.go | 6 years ago | |
| option_test.go | 6 years ago | |
| parser.go | 6 years ago | |
| parser_test.go | 6 years ago | |
| spec.go | 6 years ago | |
| spec_test.go | 6 years ago |
cron v3 is a major upgrade to the library that addresses all outstanding bugs, feature requests, and rough edges. It is based on a merge of master which contains various fixes to issues found over the years and the v2 branch which contains some backwards-incompatible features like the ability to remove cron jobs. In addition, v3 adds support for Go Modules and cleans up rough edges like the timezone support.
It is backwards incompatible with both v1 and v2. These updates are required:
UPDATING: To retain the old behavior, construct your Cron with a custom parser:
// Seconds field, required
cron.New(cron.WithSeconds())
// Seconds field, optional
cron.New(
cron.WithParser(
cron.SecondOptional | cron.Hour | cron.Dom | cron.Month | cron.Dow | cron.Descriptor))
UPDATING: Code that sets Cron.ErrorLogger or calls Cron.SetLocation must be updated to provide those values on construction.
UPDATING: No update is required.
To avoid breaking backward compatibility, Entry.Job continues to be the value that was submitted, and Entry has a new WrappedJob property which is the one that is actually run.
UPDATING: cron.WithPanicLogger has been removed. Please update your code to
use this JobWrapper:
cron.New(cron.WithChain(
cron.RecoverWithLogger(logger),
))
There are two cron spec formats in common usage:
The "standard" cron format, described on the Cron wikipedia page and used by the cron Linux system utility.
The cron format used by the Quartz Scheduler, commonly used for scheduled jobs in Java software
The original version of this package included an optional "seconds" field, which made it incompatible with both of these formats. Now, the "standard" format is the default format accepted, and the Quartz format is opt-in.