Pro-Changes.md in sidekiq-3.3.4 vs Pro-Changes.md in sidekiq-3.4.0
- old
+ new
@@ -1,21 +1,36 @@
Sidekiq Pro Changelog
=======================
Please see [http://sidekiq.org/pro](http://sidekiq.org/pro) for more details and how to buy.
+HEAD
+-----------
+
+- Reliable push now only catches Redis exceptions [#2307]
+
+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
-----------
- Multiple Web UIs can now run in the same process. [#2267] If you have
multiple Redis shards, you can mount UIs for all in the same process:
```ruby
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.
2.0.1
-----------
- Add `batch.callback_queue` so batch callbacks can use a higher