Skip to content
This repository was archived by the owner on Oct 14, 2025. It is now read-only.

Commit 4fa838e

Browse files
Bump sidekiq from 7.3.8 to 8.0.3 (#406)
Bumps [sidekiq](https://github.com/sidekiq/sidekiq) from 7.3.8 to 8.0.3. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/sidekiq/sidekiq/blob/main/Changes.md">sidekiq's changelog</a>.</em></p> <blockquote> <h2>8.0.3</h2> <ul> <li>Configure Vernier output directory <a href="https://redirect.github.com/sidekiq/sidekiq/issues/6674">#6674</a></li> <li>Rework Rails integration <a href="https://redirect.github.com/sidekiq/sidekiq/issues/6669">#6669</a></li> <li>Implement flash messages for the Web UI <a href="https://redirect.github.com/sidekiq/sidekiq/issues/6675">#6675</a></li> </ul> <h2>8.0.2</h2> <ul> <li>Add <code>on(:exit)</code> event to run code right before the Sidekiq process exits <a href="https://redirect.github.com/sidekiq/sidekiq/issues/6637">#6637</a></li> <li>Metrics page crashes with Rack 3.1+ <a href="https://redirect.github.com/sidekiq/sidekiq/issues/6646">#6646</a></li> </ul> <h2>8.0.1</h2> <ul> <li>Relax Redis requirement to 7.0 for compatibility with AWS and Ubuntu 24.04 LTS. <a href="https://redirect.github.com/sidekiq/sidekiq/issues/6630">#6630</a></li> </ul> <h2>8.0.0</h2> <ul> <li><strong>WARNING</strong> The underlying class name for Active Jobs has changed from <code>ActiveJob::QueueAdapters::SidekiqAdapter::JobWrapper</code> to <code>Sidekiq::ActiveJob::Wrapper</code>. The old name will still work in 8.x.</li> <li><strong>WARNING</strong> The <code>created_at</code>, <code>enqueued_at</code>, <code>failed_at</code> and <code>retried_at</code> attributes are now stored as epoch milliseconds, rather than epoch floats. This is meant to avoid precision issues with JSON and JavaScript's 53-bit Floats. Example: <code>&quot;created_at&quot; =&gt; 1234567890.123456</code> -&gt; <code>&quot;created_at&quot; =&gt; 1234567890123</code>.</li> <li><strong>NEW FEATURE</strong> Job Profiling is now supported with <a href="https://vernier.prof">Vernier</a> which makes it really easy to performance tune your slow jobs. The Web UI contains a new <strong>Profiles</strong> tab to view any collected profile data. Please read the new <a href="https://github.com/sidekiq/sidekiq/wiki/Profiling">Profiling</a> wiki page for details.</li> <li><strong>NEW FEATURE</strong> Job Metrics now store up to 72 hours of data and the Web UI allows display of 24/48/72 hours. <a href="https://redirect.github.com/sidekiq/sidekiq/issues/6614">#6614</a></li> <li>CurrentAttribute support now uses <code>ActiveJob::Arguments</code> to serialize the context object, supporting Symbols and GlobalID. The change should be backwards compatible. <a href="https://redirect.github.com/sidekiq/sidekiq/issues/6510">#6510</a></li> <li>Freshen up <code>Sidekiq::Web</code> to simplify the code and improve security <a href="https://redirect.github.com/sidekiq/sidekiq/issues/6532">#6532</a> The CSS has been rewritten from scratch to remove the Bootstrap framework.</li> <li>Add <code>on_cancel</code> callback for iterable jobs <a href="https://redirect.github.com/sidekiq/sidekiq/issues/6607">#6607</a></li> <li>Add <code>cursor</code> reader to get the current cursor inside iterable jobs <a href="https://redirect.github.com/sidekiq/sidekiq/issues/6606">#6606</a></li> <li>Default error logging has been modified to use Ruby's <code>Exception#detailed_message</code> and <code>#full_message</code> APIs.</li> <li>CI now runs against Redis, Dragonfly and Valkey.</li> <li>Job tags now allow custom CSS display <a href="https://redirect.github.com/sidekiq/sidekiq/issues/6595">#6595</a></li> <li>The Web UI's language picker now shows options in the native language</li> <li>Remove global variable usage within the codebase</li> <li>Colorize and adjust logging for easier reading</li> <li>Adjust Sidekiq's default thread priority to -1 for a 50ms timeslice. This can help avoid TimeoutErrors when Sidekiq is overloaded. <a href="https://redirect.github.com/sidekiq/sidekiq/issues/6543">#6543</a></li> <li>Use <code>Logger#with_level</code>, remove Sidekiq's custom impl</li> <li>Remove <code>base64</code> gem dependency</li> <li>Support: (Dragonfly 1.27+, Valkey 7.2+, Redis 7.2+), Ruby 3.2+, Rails 7.0+</li> </ul> <p>7.3.10</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sidekiq/sidekiq/commit/205df02327a2402f4c844df07324d8ac3da80ffb"><code>205df02</code></a> changes</li> <li><a href="https://github.com/sidekiq/sidekiq/commit/9bf8debad1a3fa8e015eecd24efa36cdf8cd9477"><code>9bf8deb</code></a> doc, fmt</li> <li><a href="https://github.com/sidekiq/sidekiq/commit/a1e784f699242567196bf08c043fb10e325b49a4"><code>a1e784f</code></a> feat: Implement flash messages (<a href="https://redirect.github.com/sidekiq/sidekiq/issues/6677">#6677</a>)</li> <li><a href="https://github.com/sidekiq/sidekiq/commit/f126015758379e4520f067d96b98e8ead38bf4ca"><code>f126015</code></a> Add the ability to set directory for profiles and fix profiler options (<a href="https://redirect.github.com/sidekiq/sidekiq/issues/6674">#6674</a>)</li> <li><a href="https://github.com/sidekiq/sidekiq/commit/a350927e88e3eae05c6a0f985ac7f9c086d2e9af"><code>a350927</code></a> doc</li> <li><a href="https://github.com/sidekiq/sidekiq/commit/b065bfb4873a95d84b815f574f0daf6b8742e39c"><code>b065bfb</code></a> Conditionally load ActiveJob and Rails integrations (<a href="https://redirect.github.com/sidekiq/sidekiq/issues/6669">#6669</a>)</li> <li><a href="https://github.com/sidekiq/sidekiq/commit/1da602d64ee0acc1f5f25ebfc7546e715fdb9579"><code>1da602d</code></a> pro 801</li> <li><a href="https://github.com/sidekiq/sidekiq/commit/e51177d25691be72988fb5e581c799d894df30eb"><code>e51177d</code></a> unlock vernier</li> <li><a href="https://github.com/sidekiq/sidekiq/commit/b75857c897493496979bf018880b156fdc2d2161"><code>b75857c</code></a> doc: ent 6641</li> <li><a href="https://github.com/sidekiq/sidekiq/commit/74552ef43e59c8a9764a1317e17e7036caa3cd5c"><code>74552ef</code></a> Update it locale (<a href="https://redirect.github.com/sidekiq/sidekiq/issues/6667">#6667</a>)</li> <li>Additional commits viewable in <a href="https://github.com/sidekiq/sidekiq/compare/v7.3.8...v8.0.3">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=sidekiq&package-manager=bundler&previous-version=7.3.8&new-version=8.0.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 4268d62 commit 4fa838e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Gemfile.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -399,12 +399,12 @@ GEM
399399
sentry-sidekiq (5.24.0)
400400
sentry-ruby (~> 5.24.0)
401401
sidekiq (>= 3.0)
402-
sidekiq (7.3.8)
403-
base64
404-
connection_pool (>= 2.3.0)
405-
logger
406-
rack (>= 2.2.4)
407-
redis-client (>= 0.22.2)
402+
sidekiq (8.0.3)
403+
connection_pool (>= 2.5.0)
404+
json (>= 2.9.0)
405+
logger (>= 1.6.2)
406+
rack (>= 3.1.0)
407+
redis-client (>= 0.23.2)
408408
sidekiq-cron (2.3.0)
409409
cronex (>= 0.13.0)
410410
fugit (~> 1.8, >= 1.11.1)

0 commit comments

Comments
 (0)