Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 9, 2025

This PR contains the following updates:

Package Change Age Confidence
bootsnap 1.20.11.21.1 age confidence
graphql (source, changelog) 2.5.162.5.18 age confidence
listen (changelog) 3.9.03.10.0 age confidence
puma 7.1.07.2.0 age confidence
rubocop (source, changelog) 1.82.11.84.0 age confidence
selenium-webdriver (source, changelog) 4.39.04.40.0 age confidence
sentry-rails (source, changelog) 6.2.06.3.0 age confidence
sentry-ruby (source, changelog) 6.2.06.3.0 age confidence

Release Notes

rmosolgo/graphql-ruby (graphql)

v2.5.18

Compare Source

  • GraphQL::Dashboard: properly require action_controller before using it #​5510
  • GraphQL::Dashboard: don't use config.asset_host for Dashboard assets since they're handled by the dashboard itself #​5511

v2.5.17

Compare Source

Bug fixes
  • GraphQL::Dashboard: fix routes compatibility with Devise #​5505
  • GraphQL::Dashboard: fix HTML/erb lint issues #​5497
  • Parser: improve check for invalid number followed by name #​5492 #​5492
  • GraphQL::Field: optimize boot memory by removing Field.from_options #​5495
  • field, argument: improve API documentation for DSL methods #​5491
guard/listen (listen)

v3.10.0

Compare Source

What's Changed

New Contributors

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

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
SeleniumHQ/selenium (selenium-webdriver)

v4.40.0

=========================

  • add synchronization and error handling for socket interactions (#​16487)
  • mark low level bidi implementation as private api (#​16475)
  • ensure driver process is always stopped (#​15635)
  • create user-friendly method for enabling bidi (#​14284)
  • Add force encoding to remove warnings caused by json 3.0 (#​16728)
  • use SE_DEBUG to enable debugging (#​16816)
  • ensure the grid is properly restarted in tests when there is a problem (#​16842)
  • wait for grid to be ready when starting server (#​16896)
  • check driver status endpoint rather than socket connection (#​16877)
  • [build] update ruby gems with bazel (#​16924)
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)

Configuration

📅 Schedule: Branch creation - At 12:00 AM through 04:59 AM and 10:00 PM through 11:59 PM, Monday through Friday ( * 0-4,22-23 * * 1-5 ), Only on Sunday and Saturday ( * * * * 0,6 ) (UTC), 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.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


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

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

@mitlib mitlib temporarily deployed to timdex-api-p-renovate-b-cdx0pb October 9, 2025 00:26 Inactive
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 4 times, most recently from cc0afe5 to 0c88460 Compare October 21, 2025 08:58
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 4 times, most recently from 659e88e to 3c8d8ce Compare October 26, 2025 17:41
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 3 times, most recently from 1104fca to 968e87f Compare November 6, 2025 03:09
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 968e87f to b554f8a Compare November 15, 2025 22:03
@renovate renovate bot changed the title Update bundler non-major dependencies to v2.5.14 Update bundler non-major dependencies to v1.19.0 Nov 15, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 2 times, most recently from 8e9891f to 1d378e4 Compare November 18, 2025 23:52
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 3 times, most recently from 29b451d to 4d8d0d2 Compare November 29, 2025 16:54
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 4 times, most recently from e2f03a4 to 8ea1eb8 Compare December 10, 2025 15:55
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 3 times, most recently from d706ccb to 8f22e45 Compare December 23, 2025 12:44
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.19.0 Update bundler non-major dependencies to v1.20.0 Dec 23, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 2 times, most recently from 3e03c2f to d3a8cba Compare December 25, 2025 09:58
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.20.0 Update bundler non-major dependencies to v1.20.1 Dec 25, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 3 times, most recently from 1430541 to 44e1d20 Compare January 3, 2026 10:00
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.20.1 Update bundler non-major dependencies to v1.20.1 - autoclosed Jan 7, 2026
@renovate renovate bot closed this Jan 7, 2026
@renovate renovate bot deleted the renovate/bundler-minor-patch branch January 7, 2026 21:28
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.20.1 - autoclosed Update dependency bootsnap to v1.21.0 Jan 14, 2026
@renovate renovate bot reopened this Jan 14, 2026
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 2 times, most recently from 44e1d20 to 26ce632 Compare January 14, 2026 00:54
@renovate renovate bot changed the title Update dependency bootsnap to v1.21.0 Update dependency bootsnap to v1.21.1 Jan 14, 2026
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 26ce632 to b0e11ad Compare January 14, 2026 22:36
@mitlib mitlib temporarily deployed to timdex-api-p-renovate-b-0cjrhp January 14, 2026 22:36 Inactive
@renovate renovate bot changed the title Update dependency bootsnap to v1.21.1 Update bundler non-major dependencies to v1.21.1 Jan 15, 2026
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from b0e11ad to d853e64 Compare January 15, 2026 13:46
@mitlib mitlib temporarily deployed to timdex-api-p-renovate-b-0cjrhp January 15, 2026 13:47 Inactive
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from d853e64 to 0dfecff Compare January 16, 2026 13:04
@mitlib mitlib temporarily deployed to timdex-api-p-renovate-b-0cjrhp January 16, 2026 13:05 Inactive
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 0dfecff to 32ceac3 Compare January 19, 2026 02:52
@mitlib mitlib temporarily deployed to timdex-api-p-renovate-b-0cjrhp January 19, 2026 02:52 Inactive
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 32ceac3 to 7961dec Compare January 21, 2026 10:03
@mitlib mitlib temporarily deployed to timdex-api-p-renovate-b-0cjrhp January 21, 2026 10:03 Inactive
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 7961dec to 109fb53 Compare January 21, 2026 13:49
@mitlib mitlib temporarily deployed to timdex-api-p-renovate-b-0cjrhp January 21, 2026 13:49 Inactive
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 109fb53 to baf6d5d Compare January 22, 2026 17:55
@mitlib mitlib temporarily deployed to timdex-api-p-renovate-b-0cjrhp January 22, 2026 17:55 Inactive
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant