Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🚨 [security] Update sidekiq 6.2.2 → 6.5.11 (minor) #574

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

depfu[bot]
Copy link
Contributor

@depfu depfu bot commented Oct 6, 2023

👉 This PR is queued up to get rebased by Depfu


🚨 Your current dependencies have known security vulnerabilities 🚨

This dependency update fixes known security vulnerabilities. Please see the details below and assess their impact carefully. We recommend to merge and deploy this as soon as possible!


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

What changed?

✳️ sidekiq (6.2.2 → 6.5.11) · Repo · Changelog

Security Advisories 🚨

🚨 Denial of service in sidekiq

In api.rb in Sidekiq before 6.4.0, there is no limit on the number of
days when requesting stats for the graph. This overloads the system, affecting the
Web UI, and makes it unavailable to users.

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

✳️ redis (4.5.1 → 4.8.1) · Repo · Changelog

Release Notes

4.8.1 (from changelog)

  • Automatically reconnect after fork regardless of reconnect_attempts

4.8.0 (from changelog)

  • Introduce sadd? and srem? as boolean returning versions of sadd and srem.
  • Deprecate sadd and srem returning a boolean when called with a single argument. To enable the redis 5.0 behavior you can set Redis.sadd_returns_boolean = true.
  • Deprecate passing timeout as a positional argument in blocking commands (brpop, blop, etc).

4.7.1 (from changelog)

  • Gracefully handle OpenSSL 3.0 EOF Errors (OpenSSL::SSL::SSLError: SSL_read: unexpected eof while reading). See #1106 This happens frequently on heroku-22.

4.7.0 (from changelog)

  • Support single endpoint architecture with SSL/TLS in cluster mode. See #1086.
  • zrem and zadd act as noop when provided an empty list of keys. See #1097.
  • Support IPv6 URLs.
  • Add Redis#with for better compatibility with connection_pool usage.
  • Fix the block form of multi called inside pipelined. Previously the MUTLI/EXEC wouldn't be sent. See #1073.

4.6.0 (from changelog)

  • Deprecate Redis.current.

  • Deprecate calling commands on Redis inside Redis#pipelined. See #1059.

    redis.pipelined do
      redis.get("key")
    end

    should be replaced by:

    redis.pipelined do |pipeline|
      pipeline.get("key")
    end
  • Deprecate calling commands on Redis inside Redis#multi. See #1059.

    redis.multi do
      redis.get("key")
    end

    should be replaced by:

    redis.multi do |transaction|
      transaction.get("key")
    end
  • Deprecate Redis#queue and Redis#commit. See #1059.

  • Fix zpopmax and zpopmin when called inside a pipeline. See #1055.

  • Redis#synchronize is now private like it should always have been.

  • Add Redis.silence_deprecations= to turn off deprecation warnings. If you don't wish to see warnings yet, you can set Redis.silence_deprecations = false. It is however heavily recommended to fix them instead when possible.

  • Add Redis.raise_deprecations= to turn deprecation warnings into errors. This makes it easier to identitify the source of deprecated APIs usage. It is recommended to set Redis.raise_deprecations = true in development and test environments.

  • Add new options to ZRANGE. See #1053.

  • Add ZRANGESTORE command. See #1053.

  • Add SCAN support for Redis::Cluster. See #1049.

  • Add COPY command. See #1053. See #1048.

  • Add ZDIFFSTORE command. See #1046.

  • Add ZDIFF command. See #1044.

  • Add ZUNION command. See #1042.

  • Add HRANDFIELD command. See #1040.

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

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ connection_pool (indirect, 2.2.5 → 2.4.1) · Repo · Changelog

Release Notes

2.4.1 (from changelog)

  • New auto_reload_after_fork config option to disable auto-drop [#177, shayonj]

2.4.0 (from changelog)

  • Automatically drop all connections after fork [#166]

2.3.0 (from changelog)

  • Minimum Ruby version is now 2.5.0
  • Add pool size to TimeoutError message

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

Commits

See the full diff on Github. The new version differs by 27 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)

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