Skip to content

chore(deps): update all non-major bundler dependencies#1226

Open
renovate[bot] wants to merge 1 commit intostagingfrom
renovate/all-minor-patch-bundler
Open

chore(deps): update all non-major bundler dependencies#1226
renovate[bot] wants to merge 1 commit intostagingfrom
renovate/all-minor-patch-bundler

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 2, 2026

This PR contains the following updates:

Package Change Age Confidence
bootsnap '~> 1.21.1''~> 1.23.0' age confidence
brakeman (source, changelog) '~> 8.0.1''~> 8.0.2' age confidence
devise (changelog) '~>5.0.0''~>5.0.1' age confidence
devise-i18n (changelog) '~>1.15.0''~>1.16.0' age confidence
grover '~> 1.2.6''~> 1.2.8' age confidence
mollie-api-ruby (changelog) '~> 4.18.0''~> 4.19.0' age confidence
net-imap (changelog) '~> 0.6.2''~> 0.6.3' age confidence
rubocop (source, changelog) '~> 1.84.0''~> 1.84.2' age confidence
sentry-rails (source, changelog) '~> 6.3''~> 6.3', '>= 6.3.1' age confidence
sentry-ruby (source, changelog) '~> 6.3''~> 6.3', '>= 6.3.1' age confidence
sentry-sidekiq (source, changelog) '~> 6.3''~> 6.3', '>= 6.3.1' age confidence
sidekiq (source, changelog) '~> 8.0.10''~> 8.1.0' age confidence
spring (changelog) '~> 4.4.0''~> 4.4.2' age confidence

Release Notes

presidentbeef/brakeman (brakeman)

v8.0.2

Compare Source

  • Reline console control should use stderr
  • Fix logger cleanup based method (Imran Iqbal)
heartcombo/devise (devise)

v5.0.1

Compare Source

  • bug fixes
    • Fix translation issue with German E-Mail on invalid authentication messages caused by previous fix for incorrect grammar #​5822
devise-i18n/devise-i18n (devise-i18n)

v1.16.0

Compare Source

  • Added Ruby 4.0 to test matrix.
  • Added compatibility with Devise 5.0.
  • Updated views for Devise 5.0. Any views generated into your app prior to this release of devise-i18n should continue to work. Changes from Devise are:
  • Updated one English string for Devise 5.0: heartcombo/devise@41003bf. Translations of this string are unaffected.
  • Dropped compatibility for Devise < 5.0.
Studiosity/grover (grover)

v1.2.8

Compare Source

Added

v1.2.7

Compare Source

Added
mollie/mollie-api-ruby (mollie-api-ruby)

v4.19.0

Compare Source

ruby/net-imap (net-imap)

v0.6.3

Compare Source

What's Changed

Added
  • 🥅 Add parser state and #detailed_message to ResponseParseError by @​nevans in #​599
    • 🥅💄 Support (monochrome) highlights in parse error details by @​nevans in #​603
    • 🥅💄 Auto-highlight parse error detailed_message using TERM and FORCE_COLOR by @​nevans in #​607
    • 🥅💄 Add color highlights to parse error details (default honors NO_COLOR) by @​nevans in #​609
  • 🔧 Add Config#overrides? (opposite of #inherited?) by @​nevans in #​610
  • 🔧 Add recursive Config#inherits_defaults? by @​nevans in #​611
Fixed
Other Changes

Fixes for unreleased code:

Miscellaneous

Full Changelog: ruby/net-imap@v0.6.2...v0.6.3

rubocop/rubocop (rubocop)

v1.84.2

Compare Source

Bug fixes
  • #​14854: Fix a clobbering error in Style/BlockDelimiters when autocorrecting nested multi-line blocks with adjacent curly braces. ([@​koic][])
  • #​14837: Fix an error for Style/IfUnlessModifier when the first value uses a normal if and the others use modifier if. ([@​koic][])
  • #​14858: Fix an infinite loop error in Layout/FirstArgumentIndentation when first arguments are over-indented in nested method calls. ([@​koic][])
  • #​14843: Fix an error in Layout/MultilineMethodCallIndentation when a multiline method call follows a hash access. ([@​koic][])
  • #​14859: Fix an error in Layout/MultilineMethodCallIndentation when a multiline method call includes a keyword argument whose value is a method call with a block. ([@​koic][])
  • #​14839: Fix a false positive for Layout/EmptyLinesAfterModuleInclusion when include is nested inside an array. ([@​eugeneius][])
  • #​7436: Fix Style/FormatStringToken to not autocorrect strings outside of format method context in aggressive mode. ([@​ydakuka][])
  • #​14841: Fix false negatives in Style/HashAsLastArrayItem when an array contains only a single hash element. ([@​koic][])
  • #​14865: Fix false negatives in Style/MethodDefParentheses when using splat or forwarding arguments without parentheses. ([@​koic][])
  • #​14833: Fix false positive for Layout/MultilineMethodCallIndentation when a multi-dot method chain is inside a hash pair value. ([@​ydakuka][])
  • #​14847: Fix false positive for Layout/MultilineMethodCallIndentation when a method is chained after a single-line block. ([@​ydakuka][])
  • #​14867: Fix Offense#highlighted_area for PseudoSourceRange locations. ([@​rafaelfranca][])
  • #​14861: Fix an error in Style/IfUnlessModifier when the first value uses a normal if and the others use ternary operator. ([@​koic][])
  • #​14816: Use toplevel cache configs for remote configuration files. ([@​nekketsuuu][])

v1.84.1

Compare Source

Bug fixes
  • #​14803: Fix an error for Layout/IndentationWidth cop. ([@​viralpraxis][])
  • #​14806: Fix an error in Style/NegativeArrayIndex when using self as array with implicit self receiver. ([@​koic][])
  • #​14813: Fix opt-in cop comments taking precedence over configuration file exclude patterns. ([@​afrase][])
  • #​14819: Fix incorrect autocorrect for Style/GuardClause when using heredoc as an argument of method call in raise in else branch. ([@​koic][])
  • #​14805: Bring back the original indentation from before version 1.84.0. ([@​Magikdidi24][])
  • #​12754: Fix an infinite loop for Style/IfUnlessModifier when multiple if/unless statements share the same line in arrays, method arguments, or hash values. ([@​ydakuka][])
  • #​14817: Fix an infinite loop between Layout/FirstArgumentIndentation and Layout/LineLength when correcting method chains. ([@​ydakuka][])
  • #​11513: Fix Layout/MultilineMethodCallIndentation to properly handle method chains inside hash pair values. ([@​ydakuka][])
  • #​14814: Fix push/pop directives to properly handle nested scopes and state restoration. ([@​Magikdidi24][])
Changes
  • #​14823: Add the built-in infinite? method to the allowlists for Naming/PredicateMethod, Style/IfWithBooleanLiteralBranches, and Style/RedundantCondition, in addition to the existing nonzero?. ([@​koic][])
  • #​14735: Remove deprecated InjectDefaults handling. ([@​afurm][])
getsentry/sentry-ruby (sentry-rails)

v6.3.1

Compare Source

Bug Fixes
  • Use ActionDispatch::ExceptionWrapper for correct HTTP status code (#​2850)
  • Add explicit dependency on logger gem to fix Ruby 4.0 warning (#​2837)
Internal
  • Add external_propagation_context support (#​2841)
sidekiq/sidekiq (sidekiq)

v8.1.0

Compare Source

  • retry_for and retry are now mutually exclusive [#​6878, Saidbek]
  • perform_inline now enforces strict_args! [#​6718, Saidbek]
  • Integrate Herb linting for ERB templates [#​6760, Saidbek]
  • Remove CSRF code, use Sec-Fetch-Site header [#​6874, deve1212]
  • Allow custom Web UI assets_path for CDN purposes [#​6865, stanhu]
  • Upgrade to connection_pool 3.0
  • Allow idle connection reaping after N seconds.
    You can activate this beta feature like below.
    Feedback requested: is this feature stable and useful for you in production?
    This feature may or may not be enabled by default in Sidekiq 9.0.
Sidekiq.configure_server do |cfg|
  cfg.reap_idle_redis_connections(60)
end
rails/spring (spring)

v4.4.2: 4.4.2

Compare Source

What's Changed

New Contributors

Full Changelog: rails/spring@v4.4.1...v4.4.2

v4.4.1: 4.4.1

Compare Source

What's Changed

  • Uses subclasses instead of descendants to support Rails < 7.1
  • Pass signaled exit code properly to the client by @​rafaelfranca in #​744

Full Changelog: rails/spring@v4.4.0...v4.4.1


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) in timezone Europe/Amsterdam, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Feb 2, 2026
@coderabbitai
Copy link

coderabbitai bot commented Feb 2, 2026

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

  • 🔍 Trigger a full review

Comment @coderabbitai help to get the list of available commands and usage tips.

@codecov
Copy link

codecov bot commented Feb 2, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 77.61%. Comparing base (b6a0b0e) to head (9710b97).

Additional details and impacted files
@@           Coverage Diff            @@
##           staging    #1226   +/-   ##
========================================
  Coverage    77.61%   77.61%           
========================================
  Files           54       54           
  Lines         1407     1407           
========================================
  Hits          1092     1092           
  Misses         315      315           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@renovate renovate bot changed the title chore(deps): update dependency sidekiq to '~> 8.1.0' chore(deps): update all non-major bundler dependencies Feb 2, 2026
@renovate renovate bot force-pushed the renovate/all-minor-patch-bundler branch 6 times, most recently from 798ae9a to 87d76d0 Compare February 7, 2026 04:51
@renovate renovate bot force-pushed the renovate/all-minor-patch-bundler branch 5 times, most recently from bb58b18 to a31c228 Compare February 13, 2026 18:01
@renovate renovate bot force-pushed the renovate/all-minor-patch-bundler branch from a31c228 to 9710b97 Compare February 13, 2026 22:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants