mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
Bump, prepare for release
This commit is contained in:
parent
13e2b564c8
commit
d69e3c6631
5 changed files with 15 additions and 5 deletions
|
@ -2,13 +2,14 @@
|
|||
|
||||
[Sidekiq Changes](https://github.com/mperham/sidekiq/blob/master/Changes.md) | [Sidekiq Pro Changes](https://github.com/mperham/sidekiq/blob/master/Pro-Changes.md) | [Sidekiq Enterprise Changes](https://github.com/mperham/sidekiq/blob/master/Ent-Changes.md)
|
||||
|
||||
HEAD
|
||||
6.2.2
|
||||
---------
|
||||
|
||||
- Reduce retry jitter, add jitter to `sidekiq_retry_in` values [#4957]
|
||||
- Minimize scheduler load on Redis at scale [#4882]
|
||||
- Improve logging of delay jobs [#4904, BuonOno]
|
||||
- Minor CSS improvements for buttons and tables, design PRs always welcome!
|
||||
- Tweak Web UI `Cache-Control` header [#4966]
|
||||
|
||||
6.2.1
|
||||
---------
|
||||
|
|
|
@ -4,6 +4,14 @@
|
|||
|
||||
Please see [sidekiq.org](https://sidekiq.org) for more details and how to buy.
|
||||
|
||||
2.2.3
|
||||
-------------
|
||||
|
||||
- Fixes for leaky and unlimited limiters [#4809, #4869]
|
||||
- Invalid leaders now immediately step down [#4950]
|
||||
- Web UI now displays "next run time" in the specified timezone [#4833]
|
||||
- Fix swarm memory monitoring on BSDs
|
||||
|
||||
2.2.2
|
||||
-------------
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ GIT
|
|||
PATH
|
||||
remote: .
|
||||
specs:
|
||||
sidekiq (6.2.1)
|
||||
sidekiq (6.2.2)
|
||||
connection_pool (>= 2.2.2)
|
||||
rack (~> 2.0)
|
||||
redis (>= 4.2.0)
|
||||
|
@ -82,7 +82,7 @@ GEM
|
|||
json
|
||||
simplecov
|
||||
concurrent-ruby (1.1.8)
|
||||
connection_pool (2.2.3)
|
||||
connection_pool (2.2.5)
|
||||
crass (1.0.6)
|
||||
docile (1.3.2)
|
||||
erubi (1.10.0)
|
||||
|
|
|
@ -4,9 +4,10 @@
|
|||
|
||||
Please see [sidekiq.org](https://sidekiq.org/) for more details and how to buy.
|
||||
|
||||
HEAD
|
||||
5.2.3
|
||||
---------
|
||||
|
||||
- Reduce superfluous logging of Redis errors [#4969]
|
||||
- Display dead JIDs on Batch details page [#4926]
|
||||
|
||||
5.2.2
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
module Sidekiq
|
||||
VERSION = "6.2.1"
|
||||
VERSION = "6.2.2"
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue