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

Bump minor as there are significant changes

This commit is contained in:
Mike Perham 2022-01-20 10:47:00 -08:00
parent 7785ac1399
commit 7f6b2efe20
2 changed files with 3 additions and 2 deletions

View file

@ -2,9 +2,10 @@
[Sidekiq Changes](https://github.com/mperham/sidekiq/blob/main/Changes.md) | [Sidekiq Pro Changes](https://github.com/mperham/sidekiq/blob/main/Pro-Changes.md) | [Sidekiq Enterprise Changes](https://github.com/mperham/sidekiq/blob/main/Ent-Changes.md)
HEAD
6.4.0
---------
- **SECURITY**: Validate input to avoid possible DoS in Web UI.
- Add **strict argument checking** [#5071]
Sidekiq will now log a warning if JSON-unsafe arguments are passed to `perform_async`.
Add `Sidekiq.strict_args!(false)` to your initializer to disable this warning.

View file

@ -1,5 +1,5 @@
# frozen_string_literal: true
module Sidekiq
VERSION = "6.3.2"
VERSION = "6.4.0"
end