Skip to content

Conversation

depfu[bot]
Copy link
Contributor

@depfu depfu bot commented Oct 30, 2024

Here is everything you need to know about this upgrade. Please take a good look at what changed and the test results before merging this pull request.

What changed?

✳️ sidekiq (7.3.0 → 7.3.4) · Repo · Changelog

Release Notes

7.3.4 (from changelog)

  • Fix FrozenError when starting Sidekiq [#6470]

7.3.3 (from changelog)

  • Freeze global configuration once boot is complete, to avoid configuration race conditions [#6466, #6465]
  • Sidekiq now warns if a job iteration takes longer than the -t timeout setting (defaults to 25 seconds)
  • Iteration callbacks now have easy access to job arguments via the arguments method:
def on_stop
  p arguments # => `[123, "string", {"key" => "value"}]`
  id, str, hash = arguments
end
  • Iterable jobs can be cancelled via Sidekiq::Client#cancel!:
c = Sidekiq::Client.new
jid = c.push("class" => SomeJob, "args" => [123])
c.cancel!(jid) # => true
  • Take over support for ActiveJob's :sidekiq adapter [#6430, fatkodima]
  • Ensure CurrentAttributes are in scope when creating batch callbacks [#6455]
  • Add Sidekiq.gem_version API.
  • Update Ukranian translations

7.3.2 (from changelog)

  • Adjust ActiveRecord batch iteration to restart an interrupted batch from the beginning. Each batch should be processed as a single transaction in order to be idempotent. [#6405]
  • Fix typo in S::DeadSet#kill [#6397]
  • Fix CSS issue with bottom bar in Web UI [#6414]

7.3.1 (from changelog)

  • Don't count job interruptions as failures in metrics [#6386]
  • Add frozen string literal to a number of .rb files.
  • Fix frozen string error with style_tag and script_tag [#6371]
  • Fix an error on Ruby 2.7 because of usage of Hash#except [#6376]

Does any of this look wrong? Please let us know.

↗️ concurrent-ruby (indirect, 1.3.3 → 1.3.4) · Repo · Changelog

Release Notes

1.3.4

What's Changed

  • Update comment for JRuby variant of processor_count to reality by @meineerde in #1054
  • Add Concurrent.cpu_requests that is cgroups aware. by @heka1024 in #1058
  • Fix the doc of Concurrent.available_processor_count by @y-yagi in #1059
  • Fix the return value of Concurrent.available_processor_count when cpu.cfs_quota_us is -1 by @y-yagi in #1060

New Contributors

Full Changelog: v1.3.3...v1.3.4

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by 10 commits:

↗️ logger (indirect, 1.6.0 → 1.6.1) · Repo

Sorry, we couldn't find anything useful about this release.

↗️ rack (indirect, 3.1.7 → 3.1.8) · Repo · Changelog

Release Notes

3.1.8 (from changelog)

Fixed

  • Resolve deprecation warnings about uri DEFAULT_PARSER. (#2249, @earlopain)

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by 2 commits:


Depfu Status

Depfu will automatically keep this PR conflict-free, as long as you don't add any commits to this branch yourself. You can also trigger a rebase manually by commenting with @depfu rebase.

All Depfu comment commands
@​depfu rebase
Rebases against your default branch and redoes this update
@​depfu recreate
Recreates this PR, overwriting any edits that you've made to it
@​depfu merge
Merges this PR once your tests are passing and conflicts are resolved
@​depfu cancel merge
Cancels automatic merging of this PR
@​depfu close
Closes this PR and deletes the branch
@​depfu reopen
Restores the branch and reopens this PR (if it's closed)
@​depfu pause
Ignores all future updates for this dependency and closes this PR
@​depfu pause [minor|major]
Ignores all future minor/major updates for this dependency and closes this PR
@​depfu resume
Future versions of this dependency will create PRs again (leaves this PR as is)

Copy link
Contributor Author

depfu bot commented Nov 27, 2024

Closed in favor of #181.

@depfu depfu bot closed this Nov 27, 2024
@depfu depfu bot deleted the depfu/update/sidekiq-7.3.4 branch November 27, 2024 20:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants