Skip to content

Commit

Permalink
Pro 2.0.3 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mperham committed May 13, 2015
1 parent 19ef472 commit 5860730
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions Pro-Changes.md
Expand Up @@ -3,6 +3,13 @@ Sidekiq Pro Changelog

Please see [http://sidekiq.org/pro](http://sidekiq.org/pro) for more details and how to buy.

2.0.3
-----------

- Display Batch callback data on the Batch details page. [#2347]
- Fix incompatibility with Pro Web and Rack middleware. [#2344] Thank
you to Jason Clark for the tip on how to fix it.

2.0.2
-----------

Expand All @@ -12,8 +19,9 @@ Please see [http://sidekiq.org/pro](http://sidekiq.org/pro) for more details and
POOL1 = ConnectionPool.new { Redis.new(:url => "redis://localhost:6379/0") }
POOL2 = ConnectionPool.new { Redis.new(:url => "redis://localhost:6378/0") }

mount Sidekiq::Pro::Web.with(redis_pool: POOL1) => '/sidekiq1'
mount Sidekiq::Pro::Web.with(redis_pool: POOL2) => '/sidekiq2'
mount Sidekiq::Pro::Web => '/sidekiq' # default
mount Sidekiq::Pro::Web.with(redis_pool: POOL1), at: '/sidekiq1', as: 'sidekiq1' # shard1
mount Sidekiq::Pro::Web.with(redis_pool: POOL2), at: '/sidekiq2', as: 'sidekiq2' # shard2
```
- **SECURITY** Fix batch XSS in error data. Thanks to moneybird.com for
reporting the issue.
Expand Down

0 comments on commit 5860730

Please sign in to comment.