Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 1, 2026

This PR contains the following updates:

Package Change Age Confidence
bootsnap '~> 1.20.1''~> 1.21.1' age confidence
faker (changelog) '~> 3.5.3''~> 3.6.0' age confidence
grover '~> 1.2.4''~> 1.2.6' age confidence
listen (changelog) '~> 3.9.0''~> 3.10.0' age confidence
pry-byebug (changelog) '~> 3.11.0''~> 3.12.0' age confidence
puma '~> 7.1.0''~> 7.2.0' age confidence
rubocop (source, changelog) '~> 1.82.1''~> 1.84.0' age confidence
sentry-rails (source, changelog) '~> 6.2''~> 6.3' age confidence
sentry-ruby (source, changelog) '~> 6.2''~> 6.3' age confidence
sentry-sidekiq (source, changelog) '~> 6.2''~> 6.3' age confidence
sidekiq (source, changelog) '~> 8.0.10''~> 8.1.0' age confidence
turbo-rails (changelog) '~> 2.0', '>= 2.0.20''~> 2.0', '>= 2.0.23' age confidence

Release Notes

faker-ruby/faker (faker)

v3.6.0

Compare Source

First release of the new year!

This version comes with some performance improvements (speeds faker load time by 17%!) and removal of deprecated generators.

It also drops support to Ruby's EOL 3.0. The minimum supported Ruby version is 3.1.

Drops support for Ruby 3.0
Removes deprecated generators
  • Faker::Twitter and Faker::BossaNova have been removed. Please use the new generators Faker::X and Faker::Music::BossaNova and check the new docs for more details in #​3190
Improvements and bug fixes
Update development dependencies
New Contributors

Full Changelog: faker-ruby/faker@v3.5.3...v3.6.0


Studiosity/grover (grover)

v1.2.6

Compare Source

Added
  • #​299 Add support for allow_local_network_access configuration option ([@​abrom][])

v1.2.5

Compare Source

Added
guard/listen (listen)

v3.10.0

Compare Source

What's Changed

New Contributors

Full Changelog: guard/listen@v3.9.0...v3.10.0

deivid-rodriguez/pry-byebug (pry-byebug)

v3.12.0

Compare Source

Added
Removed
  • Support for Ruby 3.1. Pry-byebug no longer installs on these platforms (#​467).
rubocop/rubocop (rubocop)

v1.84.0

Compare Source

New features
  • #​14516: Add AllowImplicitArrayLiterals to Layout/FirstArrayElementLineBreak. ([@​koic][])
  • #​14750: Add new Style/ReverseFind cop. ([@​koic][])
  • #​12343: Add new Style/EmptyClassDefinition cop to enforce consistent style for empty class definitions. The cop can enforce either a two-line class definition or Class.new for classes with no body. ([@​ydakuka][])
  • #​14769: Add new Style/HashLookupMethod cop to enforce Hash#[] vs Hash#fetch preference. ([@​sferik][])
  • #​12051: Add new Style/NegativeArrayIndex cop to enforce using negative array indices instead of calculating array length minus a value. The cop handles both simple index patterns and range patterns, and recognizes preserving methods and their combinations. ([@​ydakuka][])
  • #​14633: Make a new system to handle push and pop locally. ([@​Magikdidi24][])
  • #​14722: Support TargetRubyVersion 4.1 (experimental). ([@​koic][])
Bug fixes
  • #​14697: Allow non-method calls in Categories for Layout/ClassStructure. ([@​fatkodima][])
  • #​14784: Fix an error for Style/GuardClause when using heredoc as an argument of raise in else branch and if branch is empty. ([@​koic][])
  • #​14790: Fix an error for Style/HashLookupMethod cop when there's no receiver. ([@​viralpraxis][])
  • #​14779: Fix autocorrect crash with ruby_extractor when using offset: 0 and different source buffers. ([@​ydakuka][])
  • #​14762: Fix false negatives for Style/RedundantCondition when the branches contains constant assignment. ([@​koic][])
  • #​14751: Fix --force-default-config not preventing project config loading when used with options that access configuration. ([@​sakuro][])
  • #​14783: Fix incorrect autocorrect for Style/HashSyntax when shorthand syntax is used in condition of if/unless/while/until. ([@​ydakuka][])
  • #​14747: Fix a regression inLayout/IndentationWidth by adding a new EnforcedStyleAlignWith style parameter. ([@​MikeMcQuaid][])
  • #​14716: Fix an infinite loop error for Layout/LineLength when SplitStrings option is enabled and strings span multiple lines. ([@​HariprasanthMSH][])
  • #​14763: Fix an infinite loop error for Layout/IndentationWidth and Layout/IndentationConsistency when using EnforcedStyle: indented_internal_methods with method chain blocks. ([@​ydakuka][])
  • #​9373: Fix an infinite loop error for Layout/IndentationWidth when autocorrecting mixed tabs and spaces in blocks. Fix an infinite loop error for Layout/DefEndAlignment and Layout/IndentationStyle when autocorrecting mixed tabs and spaces. Autocorrection for tabs is disabled in AlignmentCorrector for indentation offenses, but enabled for align_end. ([@​ydakuka][])
  • #​12295: Fix Layout/FirstArgumentIndentation to correct entire method calls and chains for nested calls. ([@​ydakuka][])
  • #​12527: Fix Offense#highlighted_area to return a valid Parser::Source::Range. ([@​ydakuka][])
  • #​14801: Preserve source tabs in Clang and Tap formatters when displaying offense highlight. ([@​lovro-bikic][])
  • #​14761: Improved the remote configuration file name on the cache location. ([@​Jack12816][])
  • #​14778: Fix a false positive for Security/JSONLoad when create_additions option is passed with other options in a hash. ([@​wktk][])
  • #​14796: Handle logical and operator assignment nodes in variable branch handling. ([@​lovro-bikic][])
Changes
getsentry/sentry-ruby (sentry-rails)

v6.3.0

Compare Source

Features
  • Implement new Sentry.metrics functionality (#​2818)

    The SDK now supports Sentry's new Trace Connected Metrics product.

     Sentry.metrics.count("button.click", 1, attributes: { button_id: "submit" })
     Sentry.metrics.distribution("response.time", 120.5, unit: "millisecond")
     Sentry.metrics.gauge("cpu.usage", 75.2, unit: "percent")

    Metrics is enabled by default and only activates once you use the above APIs. To disable completely:

    Sentry.init do |config|
      # ...
      config.enable_metrics = false
    end
  • Support for tracing Sequel queries (#​2814)

    require "sentry"
    require "sentry/sequel"
    
    Sentry.init do |config|
      config.enabled_patches << :sequel
    end
    
    DB = Sequel.sqlite
    DB.extension(:sentry)
  • Add support for OpenTelemetry messaging/queue system spans (#​2685)

  • Add support for config.std_lib_logger_filter proc (#​2829)

    Sentry.init do |config|
      config.std_lib_logger_filter = proc do |logger, message, severity|
        # Only send ERROR and above messages
        severity == :error || severity == :fatal
      end
    
      config.enabled_patches = [:std_lib_logger]
    end
Bug Fixes
  • Handle empty frames case gracefully with local vars (#​2807)
  • Handle more extra attribute types when using extra attributes for structured logging (#​2815)
    # This now works too and the nested hash is dumped to JSON string
    Sentry.logger.info("Hello World", extra: { today: Date.today, user_id: user.id })
  • Prevent SDK crash when SDK logging fails (#​2817)
Internal
  • Unify Logs and Metrics implementations (#​2826)
  • Unify LogEventBuffer and MetricEventBuffer logic (#​2830)
  • Add maximum limits on LogEventBuffer (1k) and MetricEventBuffer (10k) for protection from memory blowup (#​2831)
  • Lazily start LogEventBuffer and MetricEventBuffer threads (#​2832)
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
hotwired/turbo-rails (turbo-rails)

v2.0.23

Compare Source

Updates the bundled JS to freshen stale dependencies from the previous release.

Full Changelog: hotwired/turbo-rails@v2.0.22...v2.0.23

v2.0.22

Compare Source

What's Changed

Full Changelog: hotwired/turbo-rails@v2.0.21...v2.0.22

v2.0.21

Compare Source

What's Changed

New Contributors

Full Changelog: hotwired/turbo-rails@v2.0.20...v2.0.21


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 1, 2026
@coderabbitai
Copy link

coderabbitai bot commented Feb 1, 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 1, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 77.61%. Comparing base (86a93ea) to head (4ac99bc).
⚠️ Report is 3 commits behind head on staging.

Additional details and impacted files
@@           Coverage Diff            @@
##           staging    #1221   +/-   ##
========================================
  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
Copy link
Contributor Author

renovate bot commented Feb 1, 2026

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@lodewiges lodewiges enabled auto-merge February 1, 2026 23:22
@lodewiges lodewiges added this pull request to the merge queue Feb 1, 2026
Merged via the queue into staging with commit 658e408 Feb 1, 2026
6 checks passed
@lodewiges lodewiges deleted the renovate/all-minor-patch-bundler branch February 1, 2026 23:31
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.

1 participant