All Versions
175
Latest Version
Avg Release Cycle
63 days
Latest Release
-

Changelog History
Page 3

  • v6.0.7 Changes

    April 17, 2020
    • ๐Ÿ”จ Refactor systemd integration to work better with custom binaries [#4511]
    • Don't connect to Redis at process exit if not needed [#4502]
    • โœ‚ Remove Redis connection naming [#4479]
    • ๐Ÿ›  Fix Redis Sentinel password redaction [#4499]
    • โž• Add Vietnamese locale (vi) [#4528]
  • v6.0.6 Changes

    March 23, 2020
    • โ†” Integrate with systemd's watchdog and notification features [#4488] Set Type=notify in sidekiq.service. The integration works automatically.
    • ๐Ÿ‘‰ Use setTimeout rather than setInterval to avoid thundering herd [#4480]
    • ๐Ÿ›  Fix edge case where a job can be pushed without a queue.
    • ๐Ÿ‘ท Flush job stats at exit [#4498]
    • Check RAILS_ENV before RACK_ENV [#4493]
    • โž• Add Lithuanian locale [#4476]
  • v6.0.5 Changes

    February 14, 2020
    • ๐Ÿ›  Fix broken Web UI response when using NewRelic and Rack 2.1.2+. [#4440]
    • โšก๏ธ Update APIs to use UNLINK, not DEL. [#4449]
    • ๐Ÿ›  Fix Ruby 2.7 warnings [#4412]
    • โž• Add support for APP_ENV [95fa5d9]
  • v6.0.4 Changes

    December 20, 2019
    • ๐Ÿ›  Fix ActiveJob's sidekiq_options integration [#4404]
    • ๐Ÿ‘€ Sidekiq Pro users will now see a Pause button next to each queue in the Web UI, allowing them to pause queues manually [#4374, shayonj]
    • ๐Ÿ›  Fix Sidekiq::Workers API unintentional change in 6.0.2 [#4387]
  • v6.0.3 Changes

    October 25, 2019
    • ๐Ÿ›  Fix Sidekiq::Client.push_bulk API which was erroneously putting invalid at values in the job payloads [#4321]
  • v6.0.2 Changes

    October 12, 2019
    • ๐Ÿ›  Fix Sidekiq Enterprise's rolling restart functionality, broken by refactoring in 6.0.0. [#4334]
    • ๐ŸŽ More internal refactoring and performance tuning [fatkodima]
  • v6.0.1 Changes

    October 02, 2019
    • ๐ŸŽ Performance tuning, Sidekiq should be 10-15% faster now [#4303, 4299, 4269, fatkodima]
    • ๐Ÿ’ป Dark Mode support in Web UI (further design polish welcome!) [#4227, mperham, fatkodima, silent-e]
    • ๐Ÿ‘ท Job-specific log levels, allowing you to turn on debugging for problematic workers. [fatkodima, #4287] ruby MyWorker.set(log_level: :debug).perform_async(...)
    • ๐Ÿ‘ท Ad-hoc job tags. You can tag your jobs with, e.g, subdomain, tenant, country, locale, application, version, user/client, "alpha/beta/pro/ent", types of jobs, teams/people responsible for jobs, additional metadata, etc. Tags are shown on different pages with job listings. Sidekiq Pro users can filter based on them [fatkodima, #4280] ruby class MyWorker include Sidekiq::Worker sidekiq_options tags: ['bank-ops', 'alpha'] ... end
    • โฑ Fetch scheduled jobs in batches before pushing into specific queues. This will decrease enqueueing time of scheduled jobs by a third. [fatkodima, #4273] ScheduledSet with 10,000 jobs Before: 56.6 seconds After: 39.2 seconds
    • Compress error backtraces before pushing into Redis, if you are storing error backtraces, this will halve the size of your RetrySet in Redis [fatkodima, #4272] RetrySet with 100,000 jobs Before: 261 MB After: 129 MB
    • ๐Ÿ‘Œ Support display of ActiveJob 6.0 payloads in the Web UI [#4263]
    • Add SortedSet#scan for pattern based scanning. For large sets this API will be MUCH faster than standard iteration using each. [fatkodima, #4262] ruby Sidekiq::DeadSet.new.scan("UnreliableApi") do |job| job.retry end
    • ๐Ÿ‘ท Dramatically speed up SortedSet#find_job(jid) by using Redis's ZSCAN support, approx 10x faster. [fatkodima, #4259] zscan 0.179366 0.047727 0.227093 ( 1.161376) enum 8.522311 0.419826 8.942137 ( 9.785079)
    • โœ… Respect rails' generators test_framework option and gracefully handle extra worker suffix on generator [fatkodima, #4256]
    • โž• Add ability to sort 'Enqueued' page on Web UI by position in the queue [fatkodima, #4248]
    • ๐Ÿ‘Œ Support Client.push_bulk with different delays [fatkodima, #4243] ruby Sidekiq::Client.push_bulk("class" => FooJob, "args" => [[1], [2]], "at" => [1.minute.from_now.to_f, 5.minutes.from_now.to_f])
    • โœ… Easier way to test enqueuing specific ActionMailer and ActiveRecord delayed jobs. Instead of manually parsing embedded class, you can now test by fetching jobs for specific classes. [fatkodima, #4292] ruby assert_equal 1, Sidekiq::Extensions::DelayedMailer.jobs_for(FooMailer).size
    • โž• Add sidekiqmon to gemspec executables [#4242]
    • Gracefully handle Sidekiq.logger = nil [#4240]
    • Inject Sidekiq::LogContext module if user-supplied logger does not include it [#4239]
  • v6.0 Changes

    ๐Ÿš€ This release has major breaking changes. Read and test carefully in production.

    • ๐Ÿ”ง With Rails 6.0.1+, ActiveJobs can now use sidekiq_options directly to configure Sidekiq features/internals like the retry subsystem. [#4213, pirj] ruby class MyJob < ActiveJob::Base queue_as :myqueue sidekiq_options retry: 10, backtrace: 20 def perform(...) end end
    • ๐ŸŒฒ Logging has been redesigned to allow for pluggable log formatters: ruby Sidekiq.configure_server do |config| config.log_formatter = Sidekiq::Logger::Formatters::JSON.new end ๐Ÿ‘€ See the Logging wiki page for more details.
    • ๐Ÿ’ฅ BREAKING CHANGE Validate proper usage of the REDIS_PROVIDER variable. This variable is meant to hold the name of the environment variable which contains your Redis URL, so that you can switch Redis providers quickly and easily with a single variable change. It is not meant to hold the actual Redis URL itself. If you want to manually set the Redis URL (not recommended as it implies you have no failover), then you may set REDIS_URL directly. [#3969]
    • ๐Ÿ’ฅ BREAKING CHANGE Increase default shutdown timeout from 8 seconds to 25 seconds. Both Heroku and ECS now use 30 second shutdown timeout by default and we want Sidekiq to take advantage of this time. If you have deployment scripts which depend on the old default timeout, use -t 8 to get the old behavior. [#3968]
    • ๐Ÿ’ฅ BREAKING CHANGE Remove the daemonization, logfile and pidfile arguments to Sidekiq. Use a proper process supervisor (e.g. systemd or foreman) to manage Sidekiq. See the Deployment wiki page for links to more resources.
    • โ†” Integrate the StandardRB code formatter to ensure consistent code styling. [#4114, gearnode]
  • v6.0.0.pre1

    April 23, 2019
  • v5.2.10 Changes

    • Backport fix for CVE-2022-23837.
    • Migrate to exists? for redis-rb.
    • ๐Ÿ”’ Lock redis-rb to <4.6 to avoid deprecations.