Releases: icsharp/Hangfire.RecurringJobExtensions
Releases · icsharp/Hangfire.RecurringJobExtensions
1.1.6
1.1.5
- New features
Add helper class CronJob
to build recurringjob in hangfire client directly.
Add supports for building recurringjob with multiple JSON configuration files.
- Breaking changes
Persists job data to storage instead of using Hangfire server filter ExtendedDataJobFilter
.
Add storage class for RecurringJobInfo
to find/set from storage.
Each recurringjob has its self-contained JobData
(#2) .
1.1.4
- Persists job data to
PerformContext
using the new extension methodPerformContext.SetJobData
. - Fix issue #1 , add supports 'RecurringJobAttribute' to change constructor parameter "TimeZone" type
TimeZoneInfo
tostring
. - Default timezone is
TimeZoneInfo.Utc
instead ofTimeZoneInfo.Local
when usingRecurringJobAttribute
or json configuration.
1.1.3
- Add Json Configuration to build
RecurringJob
. - Add xunit test.
- Update repo descriptions.
- Update Hangfire.Core version to 1.6.0.
- Add extension method UseRecurringJob with IConfigurationProvider.
- Always adding ExtendedDataJobFilter to PerformContext when app start.