0.9
Release Notes
Please see the blog post for more details.
- Added – Out-of-the-box support for running recurring jobs (#115). It's incredibly simple!
- Added –
SqlServerStorage
now also accepts connection string names (#51). Thanks to @dlongest! - Changed –
IBackgroundJobClient
does not implement theIDisposable
interface anymore (#98). - Changed –
IMonitoringApi
does not implement theIDisposable
interface anymore (#110). Thanks to @sgwill! - Changed – Improve
DateTime
resolution for job arguments by including milliseconds (#109). Thanks to @dennyferra! - Changed – Removed deprecated
RetryAttribute
class. Please, useAutomaticRetryAttribute
(#97). - Fixed –
KeyNotFoundException
when accessing job cancellation token with Redis (#116). - Fixed – Theoretical race condition that makes HangFire Server invisible from Monitor (#112).
Upgrading
Version 0.9 brings some breaking changes. Please, do the following steps to perform the upgrade.
- Replace the
RetryAttribute
withAutomaticRetryAttribute
. - Remove the calls to
Dispose
method ofIBackgroundJobClient
interface (orBackgroundJobClient
class). - Remove the invocations of
IMonitoringApi.Dispose
method.