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

Latest releases!

This commit is contained in:
Mike Perham 2013-08-10 12:51:23 -07:00
parent c41997c8a0
commit 4c9274879f
2 changed files with 15 additions and 3 deletions

View file

@ -4,9 +4,19 @@
- Make Sidekiq::Middleware::Chain Enumerable
- Make summary bar and graphs responsive [manishval, #1025]
- Adds a job status page for scheduled jobs [jonhyman]
- Handle race condition in retrying and deleting jobs in the Web UI
- The Web UI relative times are now i18n. [MadRabbit, #1088]
- Allow for default number of retry attempts to be set for
`Sidekiq::Middleware::Server::RetryJobs` middleware. [czarneckid] [#1091]
```ruby
Sidekiq.configure_server do |config|
config.server_middleware do |chain|
chain.add Sidekiq::Middleare::Server::RetryJobs, :max_retries => 10
end
end
```
2.13.0
-----------

View file

@ -3,14 +3,16 @@ Sidekiq Pro Changelog
Please see http://sidekiq.org/pro for more details and how to buy.
HEAD
1.2.0
-----------
- LEAK: Fix batch key which didn't expire in Redis. Keys match
- **LEAK** Fix batch key which didn't expire in Redis. Keys match
/b-[a-f0-9]{16}-pending/, e.g. "b-4f55163ddba10aa0-pending" [#1057]
- **Reliable fetch now supports multiple queues**, using the algorithm spec'd
by @jackrg [#1102]
- Fix issue with reliable\_push where it didn't return the JID for a pushed
job when sending previously cached jobs to Redis.
- Add fast Sidekiq::Queue#delete(jid) API which leverages Lua so job lookup is
- Add fast Sidekiq::Queue#delete\_job(jid) API which leverages Lua so job lookup is
100% server-side. Benchmark vs Sidekiq's Job#delete API:
```