1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

Update changes, version

This commit is contained in:
Mike Perham 2013-09-21 17:05:45 -07:00
parent 5635d4fbc6
commit 605732a3e8
2 changed files with 18 additions and 1 deletions

View file

@ -1,3 +1,20 @@
2.15.0
-----------
- The Core Sidekiq actors are now monitored. If any crash, the
Sidekiq process will exit immediately. This is to help prevent
"stuck" Sidekiq processes which are running but don't appear to
be doing any work. [#1194]
- Sidekiq's testing framework is now dynamic. You can choose between
`inline` and `fake` behavior in your tests. [#1193]
- The Retries table has a new column for the error message.
- Sidekiq.default\_worker\_options allows you to configure default
options for all Sidekiq worker types.
```ruby
Sidekiq.default_worker_options = { 'queue' => 'default', 'backtrace' => true }
```
2.14.1
-----------

View file

@ -1,3 +1,3 @@
module Sidekiq
VERSION = "2.14.1"
VERSION = "2.15.0"
end