dependency: bump sidekiq from 6.1.3 to 6.2.0
Bumps sidekiq from 6.1.3 to 6.2.0.
Changelog
Sourced from sidekiq's changelog.
6.2.0
- Store Redis RTT and log if poor #4824
- Add process/thread stats to Busy page #4806
- Improve Web UI on mobile devices #4840
- Refactor Web UI session usage #4804 Numerous people have hit "Forbidden" errors and struggled with Sidekiq's Web UI session requirement. If you have code in your initializer for Web sessions, it's quite possible it will need to be removed. Here's an overview:
Sidekiq::Web needs a valid Rack session for CSRF protection. If this is a Rails app, make sure you mount Sidekiq::Web *inside* your routes in `config/routes.rb` so Sidekiq can reuse the Rails session: Rails.application.routes.draw do mount Sidekiq::Web => "/sidekiq" .... end If this is a bare Rack app, use a session middleware before Sidekiq::Web: first, use IRB to create a shared secret key for sessions and commit it require 'securerandom'; File.open(".session.key", "w") {|f| f.write(SecureRandom.hex(32)) } now, update your Rack app to include the secret with a session cookie middleware use Rack::Session::Cookie, secret: File.read(".session.key"), same_site: true, max_age: 86400 run Sidekiq::Web
Commits
-
a412dc2
prep for release -
38d6abb
optimize PNGs -
9aeba31
Some mobile UI polish, fixes #4840 -
2693996
bumpity bump -
561f0bf
Don't hardcode URI scheme of redis connection url (#4839) -
25ed7c7
Update gemspec with files whitelist -
7b2bbee
standard 1.0, update format exceptions -
90190e0
you are annoying, standard -
823125f
Add all of the links! -
ed84837
handle case where all queues are paused, fixes #4825 - Additional commits viewable in compare view
Dependabot commands
You can trigger Dependabot actions by commenting on this MR
-
$dependabot rebase
will rebase this MR