Skip to content

Update bundler non-major dependencies to v1.23.0#311

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

Update bundler non-major dependencies to v1.23.0#311
renovate[bot] wants to merge 1 commit intomainfrom
renovate/bundler-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 11, 2026

This PR contains the following updates:

Package Change Age Confidence
bootsnap 1.22.01.23.0 age confidence
graphql (source, changelog) 2.5.192.5.20 age confidence
mocha (source, changelog) 3.0.13.0.2 age confidence
pagy (source, changelog) 43.2.943.3.1 age confidence
parser (changelog) 3.3.10.13.3.10.2 age confidence
rubocop (source, changelog) 1.84.11.85.0 age confidence
rubocop-graphql (changelog) 1.5.61.6.0 age confidence
rubocop-minitest (source, changelog) 0.38.20.39.1 age confidence
scout_apm (source, changelog) 6.0.26.1.1 age confidence
selenium-webdriver (source, changelog) 4.40.04.41.0 age confidence
sentry-rails (source, changelog) 6.3.06.4.0 age confidence
sentry-ruby (source, changelog) 6.3.06.4.0 age confidence
sqlite3 2.9.0-aarch64-linux-gnu2.9.0 age confidence
web-console 4.2.14.3.0 age confidence

Release Notes

rmosolgo/graphql-ruby (graphql)

v2.5.20

Compare Source

  • DetailedTrace: Handle inspecting instances of anonymous classes #​5530
  • Dashboard: move controllers to their own files, fix lazy loading #​5524
  • Dataloader: add dataload_all shortcut; add shortcuts to context #​5540
  • Add experimental new runtime code (not loaded by default) #​5509 #​5544 #​5547
  • Fix @defer on inline fragments when fields return Lazy values and Dataloader isn't used #​5550
freerange/mocha (mocha)

v3.0.2

Compare Source

whitequark/parser (parser)

v3.3.10.2

Compare Source

Features implemented:

  • add blocknilarg for prism (#​1087) (Earlopain)
rubocop/rubocop (rubocop)

v1.85.0

Compare Source

New features
Bug fixes
  • #​14829: Allow classes without a superclass in Style/EmptyClassDefinition. ([@​koic][])
  • #​14873: Fix an error in Style/NegatedWhile when the last expression of an until condition is negated. ([@​koic][])
  • #​14827: Improve Style/EmptyClassDefinition message wording. ([@​bbatsov][])
  • #​14800: Fix false obsolete configuration error for extracted cops when loaded as plugins. ([@​bbatsov][])
  • #​14928: Fix a false positive for Lint/Void when nil is used in case branch. ([@​5hun-s][])
  • #​14857: Fix false positives in Style/IfUnlessModifier when modifier forms are used inside string interpolations. ([@​koic][])
  • #​8773: Fix false positives in Style/HashTransformKeys and Style/HashTransformValues. ([@​sferik][])
  • #​6963: Fix false positives in Lint/Void for each blocks where the return value may be meaningful (e.g., Enumerator#each). ([@​sferik][])
  • #​14931: Ignore directive comments inside comments. ([@​koic][])
  • #​14834: Fix Layout/IndentationWidth false positive for chained method blocks when EnforcedStyleAlignWith is start_of_line. ([@​krororo][])
  • #​14756: Fix Lint/Void to detect void expressions in case/when branches. ([@​bbatsov][])
  • #​14874: Fix a Parser::ClobberingError in Lint/UselessAssignment when autocorrecting a useless assignment that wraps a block containing another useless assignment. ([@​koic][])
  • #​14880: Fix a false negative in Layout/MultilineAssignmentLayout when using numblock or itblock with SupportedTypes: ['block']. ([@​bbatsov][])
  • #​11462: Fix over-indentation when autocorrecting nested hashes with Layout/FirstHashElementIndentation. ([@​ydakuka][])
  • #​14880: Recognize block on different line from left side of multi-line assignment in Layout/MultilineAssignmentLayout. ([@​sanfrecce-osaka][])
  • #​14641: Fix false positive in Lint/RedundantSafeNavigation when using &.respond_to? with methods defined on Object (e.g., :class). ([@​bbatsov][])
  • #​14098: Mark Lint/SafeNavigationConsistency autocorrect as unsafe. ([@​bbatsov][])
  • #​14791: Fix autocorrect producing SyntaxError in Lint/InterpolationCheck when single quoted string contains double quotes with invalid interpolation. ([@​ydakuka][])
Changes
  • #​14872: Tweak autocorrection in Style/HashAsLastArrayItem when multiline hash elements. ([@​koic][])
  • #​14917: Change Style/EndlessMethod cop to consider receivers. ([@​fatkodima][])
  • #​14851: Reduce precision in 'Finished in X.X seconds' message to 5 decimal places. ([@​ZimbiX][])
  • #​14895: Rename class_definition to class_keyword in EnforcedStyle of Style/EmptyClassDefinition. ([@​koic][])
  • #​14956: Add support for String.new with interpolated strings to Style/RedundantInterpolationUnfreeze. ([@​lovro-bikic][])
  • #​14955: Register redundant parentheses around block body in Style/RedundantParentheses. ([@​lovro-bikic][])

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][])
DmitryTsepelev/rubocop-graphql (rubocop-graphql)

v1.6.0

Compare Source

  • PR#183 Add GraphQL/ContextWriteInType cop to detect writes to context in GraphQL types ([@​smathieu][])
rubocop/rubocop-minitest (rubocop-minitest)

v0.39.1

Compare Source

Bug fixes
  • #​347: Fix false positives in Minitest/AssertIncludes and Minitest/RefuteIncludes cops for key? and has_key? used with assert or refute. ([@​koic][])

v0.39.0

Compare Source

Changes
  • #​344: Disable Minitest/AssertEmptyLiteral by default. ([@​koic][])
  • #​315: Make Minitest/AssertIncludes and Minitest/RefuteIncludes aware of key?, has_key?, and member? alias methods. ([@​koic][])
scoutapp/scout_apm_ruby (scout_apm)

v6.1.1

Compare Source

  • Fix Redis 5 prepend interaction (#​611)

v6.1.0

Compare Source

  • Ruby 4 support
  • Update gem metadata
  • Add backtrace_additional_directories config option to allow additional directories to be included in the backtrace parser
SeleniumHQ/selenium (selenium-webdriver)

v4.41.0

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

  • Support CDP versions: v143, v144, v145
  • remove stored atoms these get generated by build (#​16971)
  • output driver logs when SE_DEBUG is enabled (#​16901)
  • Update lint configuration and fix rubocop offenses (#​17008)
  • add missing unit tests (#​17025)
  • [grid] Add session event API for server-side event bus integration (#​17015)
  • Update dependencies (#​17111)
getsentry/sentry-ruby (sentry-rails)

v6.4.0

Compare Source

Features
  • Add support for OTLP ingestion in sentry-opentelemetry (#​2853)

    Sentry now has first class OTLP ingestion capabilities.

    Sentry.init do |config|
      ## ...
      config.otlp.enabled = true
    end

    Under the hood, this will setup:

    • An OpenTelemetry::Exporter that will automatically set up the OTLP ingestion endpoint from your DSN
      • You can turn this off with config.otlp.setup_otlp_traces_exporter = false to setup your own exporter
    • An OTLPPropagator that ensures Distributed Tracing works
      • You can turn this off with config.otlp.setup_propagator = false
    • Trace/Span linking for all other Sentry events such as Errors, Logs, Crons and Metrics

    If you were using the SpanProcessor before, we recommend migrating over to config.otlp since it's a much simpler setup.

  • Treat Sidekiq nil retry as true (#​2864)

  • Queue time capture for Rack (#​2838)

Bug Fixes
  • Fix MetricEvent timestamp serialization to float (#​2862)
  • Fix CGI imports for ruby 4.x (#​2863)
  • Always include scope user data in telemetry (#​2866)

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)
rails/web-console (web-console)

v4.3.0

Compare Source

  • #​342 Always permit IPv4-mapped IPv6 loopback addresses ([@​zunda]).
  • Fixed Rails 8.2.0.alpha support
  • Drop Rails 7.2 support
  • Drop Ruby 3.1 support

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 tacos-api-pipeline-pr-311 February 11, 2026 22:07 Inactive
@renovate renovate bot changed the title Update bundler non-major dependencies to v6.3.1 Update bundler non-major dependencies to v1.84.2 Feb 12, 2026
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 092c38c to 5d6a238 Compare February 12, 2026 09:45
@mitlib mitlib requested a deployment to tacos-api-pipeline-pr-311 February 12, 2026 09:46 Abandoned
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 5d6a238 to 847420f Compare February 12, 2026 18:29
@mitlib mitlib requested a deployment to tacos-api-pipeline-pr-311 February 12, 2026 18:30 Abandoned
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 847420f to 1cb1f78 Compare February 12, 2026 22:06
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.84.2 Update bundler non-major dependencies to v1.23.0 Feb 12, 2026
@mitlib mitlib requested a deployment to tacos-api-pipeline-pr-311 February 12, 2026 22:07 Abandoned
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 1cb1f78 to 7af6723 Compare February 13, 2026 16:41
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-311 February 13, 2026 16:41 Inactive
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 7af6723 to fcc7675 Compare February 14, 2026 13:33
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-311 February 14, 2026 13:33 Inactive
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from fcc7675 to 33b35dd Compare February 17, 2026 05:05
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-311 February 17, 2026 05:05 Inactive
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 33b35dd to 2142d7a Compare February 17, 2026 09:55
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-311 February 17, 2026 09:55 Inactive
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 2142d7a to 8960750 Compare February 20, 2026 05:09
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-311 February 20, 2026 05:10 Inactive
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 8960750 to 4122263 Compare February 20, 2026 21:34
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-311 February 20, 2026 21:34 Inactive
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 4122263 to d35ad5c Compare February 21, 2026 05:44
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-311 February 21, 2026 05:44 Inactive
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from d35ad5c to aa6d10f Compare February 23, 2026 18:46
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-311 February 23, 2026 18:46 Inactive
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from aa6d10f to 956bae2 Compare February 23, 2026 22:09
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-311 February 23, 2026 22:10 Inactive
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 956bae2 to 5208804 Compare February 24, 2026 09:35
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-311 February 24, 2026 09:35 Inactive
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 5208804 to 6d66e4e Compare February 25, 2026 16:11
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-311 February 25, 2026 16:12 Inactive
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 6d66e4e to 0ec9e52 Compare February 26, 2026 06:40
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-311 February 26, 2026 06:40 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