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

Update changes

This commit is contained in:
Mike Perham 2017-01-18 12:52:26 -08:00
parent 701e06224c
commit 324688bf0b
2 changed files with 6 additions and 4 deletions

View file

@ -1,7 +1,8 @@
# Welcome to Sidekiq 5.0!
Sidekiq 5.0 contains a reworked job dispatch and execution core to integrate
better with the new Rails 5.0 Executor.
better with the new Rails 5.0 Executor. It also drops support for older
versions of Ruby and Rails.
## What's New
@ -31,10 +32,9 @@ better with the new Rails 5.0 Executor.
compatibility and will be removed in Sidekiq 6.x. [#3302]
* Rails 3.2 is no longer supported.
* Ruby 2.0 and Ruby 2.1 are no longer supported. Ruby 2.2.2+ is required.
* Jobs which can't be parsed due to invalid JSON are now pushed
immediately to the Dead set so they can be manually processed
since they will never be successfully processed as is. [#3296]
immediately to the Dead set since they require manual intervention and
will never execute successfully as is. [#3296]
## Upgrade

View file

@ -11,6 +11,8 @@
Sidekiq::Middleware::Server::RetryJobs -> Sidekiq::JobRetry
Sidekiq::Middleware::Server::Logging -> Sidekiq::JobLogging
```
- Quieting Sidekiq is now done via the TSTP signal, the USR1 signal is deprecated.
- Please see the [5.0 Upgrade notes](5.0-Upgrade.md) for more detail.
4.2.9
-----------