Skip to content

0.9

Compare
Choose a tag to compare
@odinserj odinserj released this 07 Jun 14:46

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!
  • AddedSqlServerStorage now also accepts connection string names (#51). Thanks to @dlongest!
  • ChangedIBackgroundJobClient does not implement the IDisposable interface anymore (#98).
  • ChangedIMonitoringApi does not implement the IDisposable 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, use AutomaticRetryAttribute (#97).
  • FixedKeyNotFoundException 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 with AutomaticRetryAttribute.
  • Remove the calls to Dispose method of IBackgroundJobClient interface (or BackgroundJobClient class).
  • Remove the invocations of IMonitoringApi.Dispose method.

Links