mperham--sidekiq/Changes.md

39 lines
1.5 KiB
Markdown
Raw Normal View History

HEAD
2012-02-22 21:04:43 +00:00
-----------
2012-02-27 04:36:30 +00:00
- Add capistrano support, just require 'sidekiq/capistrano' in config/deploy.rb.
- Workers now log upon start and finish (mperham)
- Messages for terminated workers are now automatically requeued (mperham)
2012-02-22 21:04:43 +00:00
- Add support for Exceptional error reporting (bensie)
2012-02-22 00:09:01 +00:00
0.7.0
-----------
2012-02-18 06:04:18 +00:00
2012-02-22 05:04:59 +00:00
- Example chef recipe and monitrc script (jc00ke)
2012-02-22 00:09:01 +00:00
- Refactor global configuration into Sidekiq.configure\_server and
Sidekiq.configure\_client blocks. (mperham)
2012-02-19 04:11:24 +00:00
- Add optional middleware FailureJobs which saves failed jobs to a
'failed' queue (fbjork)
2012-02-18 21:08:53 +00:00
- Upon shutdown, workers are now terminated after 5 seconds. This is to
meet Heroku's hard limit of 10 seconds for a process to shutdown. (mperham)
- Refactor middleware API for simplicity, see sidekiq/middleware/chain. (mperham)
- Add `delay` extensions for ActionMailer and ActiveRecord. (mperham)
- Added config file support. See test/config.yml for an example file. (jc00ke)
- Added pidfile for tools like monit (jc00ke)
2012-02-14 23:30:18 +00:00
0.6.0
2012-02-09 04:46:17 +00:00
-----------
2012-02-11 07:21:50 +00:00
- Resque-compatible processing stats in redis (mperham)
- Simple client testing support in sidekiq/testing (mperham)
- Plain old Ruby support via the -r cli flag (mperham)
- Refactored middleware support, introducing ability to add client-side middleware (ryanlecompte)
- Added middleware for ignoring duplicate jobs (ryanlecompte)
- Added middleware for displaying jobs in resque-web dashboard (maxjustus)
- Added redis namespacing support (maxjustus)
2012-02-11 07:21:50 +00:00
0.5.1
-----------
- Initial release!