Releases: webenablebv/Hangfire.Contrib
Releases · webenablebv/Hangfire.Contrib
v4.0.0
v3.1.0
Update to .NET 5
v3.0.1
Update packages
v3.0.0
Update to .NET Core 3.1
v2.3.0
Fix artifacts path
v2.3.0-beta1
Cross-compile for .NET Core 3.0
v2.2.0
- Update to .NET Core 2.2
v2.1.0
- Add
[JobExpiration]
attribute to specify the expiration timeout of a job. - Update Hangfire packages to 1.6.22
v2.0.1
- Allow passing
null
forPerformContext
andIJobCancellationToken
parameters in theHangfireJob
base class for unit tests and other manual scenarios. - Decrease log level for starting/finished job log messages.
- Updated Hangfire.Console and ASP.NET Core minor package versions
v2.0.0
- Breaking change: a
IJobCancellationToken
instance will be passed rather than aCancellationToken
to theExecuteCoreAsync
method of theHangfireJob
base class. Unfortunately theCancellationToken
provided by theIJobCancellationToken
is not actually cancelled when a job is deleted. ForThrowIfCancellationRequested
to have effect, you have to call it on theIJobCancellationToken
and not on theCancellationToken
passed byIJobCancellationToken.ShutdownToken
- Updated Hangfire package version to 1.6.20
- Updated Hangfire.Console to 1.4.1