Sidekiq v6.3.0 Release Notes

    • BREAK: The Web UI has been refactored to remove jQuery. Any UI extensions which use jQuery will break.
    • 🔋 FEATURE: Sidekiq.logger has been enhanced so any Rails.logger output in jobs now shows up in the Sidekiq console. Remove any logger hacks in your initializer and see if it Just Works™ now. [#5021]
    • 🔋 FEATURE: Add Sidekiq::Job alias for Sidekiq::Worker, to better reflect industry standard terminology. You can now do this: ruby class MyJob include Sidekiq::Job sidekiq_options ... def perform(args) end end
    • 🔋 FEATURE: Support for serializing ActiveSupport::CurrentAttributes into each job. [#4982] ```ruby