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

release pro 3.4.0

This commit is contained in:
Mike Perham 2016-10-12 10:09:06 -07:00
parent 9abf52f35a
commit 2861a3ac2a
2 changed files with 16 additions and 1 deletions

View file

@ -3,6 +3,21 @@ Sidekiq Pro Changelog
Please see [http://sidekiq.org/](http://sidekiq.org/) for more details and how to buy.
3.4.0
---------
- Introducing the newest reliable fetching algorithm: `super_fetch`! This
algorithm will replace reliable\_fetch in Pro 4.0. super\_fetch is
bullet-proof across all environments, no longer requiring stable
hostnames or an index to be set per-process. [#3077]
```ruby
Sidekiq.configure_server do |config|
config.super_fetch!
end
```
Thank you to @jonhyman for code review and the Sidekiq Pro customers that
beta tested super\_fetch.
3.3.3
---------

View file

@ -1,4 +1,4 @@
# frozen_string_literal: true
module Sidekiq
VERSION = "4.2.2"
VERSION = "4.2.3"
end