Skip to content

Commit fc6168b

Browse files
authored
chore(deps): bump sidekiq from 8.0.7 to 8.0.8 (#1106)
Bumps [sidekiq](https://github.com/sidekiq/sidekiq) from 8.0.7 to 8.0.8. <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.8</h2> <ul> <li>Allow an optional global iteration max runtime. After executing for this length of time, Sidekiq will re-queue the job to continue execution at a later time [#6819, fatkodima]</li> </ul> <pre lang="ruby"><code>Sidekiq.configure_server do |cfg| cfg[:max_iteration_runtime] = 600 # ten minutes end </code></pre> <ul> <li>Add <code>discarded_at</code> attribute when discarding a job so death handlers can distinguish between a job which was killed and one that was discarded. [#6820, gstokkink]</li> <li><code>perform_bulk</code> now accepts an <code>:at</code> array of times to schedule each job at the corresponding time. <code>perform_bulk(args: [[1], [2]], at: [Time.now, Time.now + 1])</code> [#6790, fatkodima]</li> <li><code>perform_bulk</code> now accepts a <code>:spread_interval</code> value to schedule jobs over the next N seconds. <code>perform_bulk(..., spread_interval: 60)</code> [#6792, fatkodima]</li> <li>Fix unintended display of flash messages in the Web UI due to session key collision</li> <li>Add support for lazy load hooks <a href="https://redirect.github.com/sidekiq/sidekiq/issues/6825">#6825</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sidekiq/sidekiq/commit/96f867cb58b7fa0a6a832af1a732a339aa0eb61f"><code>96f867c</code></a> Use community gem server</li> <li><a href="https://github.com/sidekiq/sidekiq/commit/bfc4b8d9ea03e2b5071059fdd994ba26ef6354b3"><code>bfc4b8d</code></a> Adjust loader API to be thread-safe and account for errors (<a href="https://redirect.github.com/sidekiq/sidekiq/issues/6826">#6826</a>)</li> <li><a href="https://github.com/sidekiq/sidekiq/commit/042f1eb022b789e6e50899558355b5a0d18651a8"><code>042f1eb</code></a> Add ability to extend sidekiq/api when it is loaded (<a href="https://redirect.github.com/sidekiq/sidekiq/issues/6825">#6825</a>)</li> <li><a href="https://github.com/sidekiq/sidekiq/commit/0f150827ac8816dff369ff7bcc9635f95922d23f"><code>0f15082</code></a> doc(changes)</li> <li><a href="https://github.com/sidekiq/sidekiq/commit/fa920aa0dd0c2236e4fd14283c754445e3f609fa"><code>fa920aa</code></a> Update restricted uses section in COMM-LICENSE.txt (<a href="https://redirect.github.com/sidekiq/sidekiq/issues/6821">#6821</a>)</li> <li><a href="https://github.com/sidekiq/sidekiq/commit/9421c205f2b3e7e25c22bed2e218592b42e40eff"><code>9421c20</code></a> Track discarded_at in job payload when job is discarded. (<a href="https://redirect.github.com/sidekiq/sidekiq/issues/6820">#6820</a>)</li> <li><a href="https://github.com/sidekiq/sidekiq/commit/5981d1ab16a2d4f0886abc336c3a426815440242"><code>5981d1a</code></a> Allow to configure max job runtime for iterable jobs (<a href="https://redirect.github.com/sidekiq/sidekiq/issues/6819">#6819</a>)</li> <li><a href="https://github.com/sidekiq/sidekiq/commit/d6395641571eba33050d34526bf93bed92504d4d"><code>d639564</code></a> doc(recent changes), bump</li> <li><a href="https://github.com/sidekiq/sidekiq/commit/0b0b282e878025379de89589aefe5e7e3d627700"><code>0b0b282</code></a> remove outdated comment, fixes <a href="https://redirect.github.com/sidekiq/sidekiq/issues/6806">#6806</a></li> <li><a href="https://github.com/sidekiq/sidekiq/commit/61e27d20b1ed62f203eee6ae2b549f2e53db14c9"><code>61e27d2</code></a> Handle ActiveSupport::Logger.broadcast deprication (<a href="https://redirect.github.com/sidekiq/sidekiq/issues/6802">#6802</a>)</li> <li>Additional commits viewable in <a href="https://github.com/sidekiq/sidekiq/compare/v8.0.7...v8.0.8">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=8.0.7&new-version=8.0.8)](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>
2 parents 54edad0 + 9fa46c7 commit fc6168b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ gem 'redis', '~> 5.4'
3535
gem 'rswag'
3636

3737
# Sidekiq for background processing
38-
gem 'sidekiq', '~> 8.0.7'
38+
gem 'sidekiq', '~> 8.0.8'
3939

4040
# Error and performance monitoring with Sentry
4141
gem 'sentry-rails'

Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@ GEM
605605
tsort
606606
redis (5.4.1)
607607
redis-client (>= 0.22.0)
608-
redis-client (0.25.2)
608+
redis-client (0.26.1)
609609
connection_pool
610610
reform (2.6.2)
611611
disposable (>= 0.5.0, < 1.0.0)
@@ -743,7 +743,7 @@ GEM
743743
activesupport (>= 3)
744744
shoulda-matchers (6.5.0)
745745
activesupport (>= 5.2.0)
746-
sidekiq (8.0.7)
746+
sidekiq (8.0.8)
747747
connection_pool (>= 2.5.0)
748748
json (>= 2.9.0)
749749
logger (>= 1.6.2)
@@ -890,7 +890,7 @@ DEPENDENCIES
890890
sentry-ruby
891891
shoulda-callback-matchers
892892
shoulda-matchers
893-
sidekiq (~> 8.0.7)
893+
sidekiq (~> 8.0.8)
894894
simplecov
895895
spring
896896
spring-watcher-listen (~> 2.1.0)

0 commit comments

Comments
 (0)