From bd4493fece89c862df6119e9cf902605ce65aa44 Mon Sep 17 00:00:00 2001 From: Mike Perham Date: Tue, 7 Dec 2021 14:06:49 -0800 Subject: [PATCH] Add note about arg checking --- Changes.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Changes.md b/Changes.md index c132c7f5..c46861ab 100644 --- a/Changes.md +++ b/Changes.md @@ -5,6 +5,10 @@ HEAD --------- +- Add **strict argument checking** [#5071] + Sidekiq will now log a warning if JSON-unsafe arguments are passed to `perform_async`. + Add `Sidekiq.strict_mode!(false)` to your initializer to disable this warning. + This warning will switch to an exception in Sidekiq 7.0. - Note that Delayed Extensions will be removed in Sidekiq 7.0 [#5076] - Add `perform_{inline,sync}` in Sidekiq::Job to run a job synchronously [#5061, hasan-ally] ```ruby