|
|
6 роки тому | |
|---|---|---|
| .gitignore | 13 роки тому | |
| .travis.yml | 11 роки тому | |
| LICENSE | 13 роки тому | |
| README.md | 6 роки тому | |
| chain.go | 6 роки тому | |
| chain_test.go | 6 роки тому | |
| constantdelay.go | 12 роки тому | |
| constantdelay_test.go | 12 роки тому | |
| cron.go | 6 роки тому | |
| cron_test.go | 6 роки тому | |
| doc.go | 6 роки тому | |
| go.mod | 6 роки тому | |
| logger.go | 6 роки тому | |
| option.go | 6 роки тому | |
| option_test.go | 6 роки тому | |
| parser.go | 6 роки тому | |
| parser_test.go | 6 роки тому | |
| spec.go | 6 роки тому | |
| spec_test.go | 6 роки тому |
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, cleans up rough edges like the timezone support, and fixes a number of bugs.
New features:
Support for Go modules.
Fewer bugs:
Standard cron spec parsing by default (first field is "minute"), with an easy way to opt into the seconds field (quartz-compatible). Although, note that the year field (optional in Quartz) is not supported.
Extensible, key/value logging via an interface that complies with the github.com/go-logr/logr project.
The new Chain & JobWrapper types allow you to install "interceptors" to add cross-cutting behavior like the following:
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.
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.
cron.WithPanicLogger option
has been removed to accommodate the more general JobWrapper type.UPDATING: To opt into panic recovery and configure the panic logger:
cron.New(cron.WithChain(
cron.Recover(logger), // or use cron.DefaultLogger
))
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.