From d69e3c66318850418718d5f1ae7601a2042f5a62 Mon Sep 17 00:00:00 2001 From: Mike Perham Date: Thu, 19 Aug 2021 10:51:42 -0700 Subject: [PATCH] Bump, prepare for release --- Changes.md | 3 ++- Ent-Changes.md | 8 ++++++++ Gemfile.lock | 4 ++-- Pro-Changes.md | 3 ++- lib/sidekiq/version.rb | 2 +- 5 files changed, 15 insertions(+), 5 deletions(-) diff --git a/Changes.md b/Changes.md index a493d74e..80b29e94 100644 --- a/Changes.md +++ b/Changes.md @@ -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 --------- diff --git a/Ent-Changes.md b/Ent-Changes.md index c88b13f9..19121294 100644 --- a/Ent-Changes.md +++ b/Ent-Changes.md @@ -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 ------------- diff --git a/Gemfile.lock b/Gemfile.lock index 75702bce..bf5bc400 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -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) diff --git a/Pro-Changes.md b/Pro-Changes.md index 7f9c1ffc..bd65b1d8 100644 --- a/Pro-Changes.md +++ b/Pro-Changes.md @@ -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 diff --git a/lib/sidekiq/version.rb b/lib/sidekiq/version.rb index 05ab15fd..3e509017 100644 --- a/lib/sidekiq/version.rb +++ b/lib/sidekiq/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Sidekiq - VERSION = "6.2.1" + VERSION = "6.2.2" end