Skip to content

Update bundler non-major dependencies#425

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

Update bundler non-major dependencies#425
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/bundler-minor-patch

Conversation

@renovate

@renovate renovate Bot commented Jul 3, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence Update
graphql (source, changelog) 2.6.32.6.5 age confidence patch
http 6.0.36.0.4 age confidence patch
mitlibraries-theme v1.4v1.5 age confidence minor
rubocop (source, changelog) 1.88.11.88.2 age confidence patch
rubocop-rails (source, changelog) 2.35.52.36.0 age confidence minor
selenium-webdriver (source, changelog) 4.45.04.46.0 age confidence minor
sqlite3 2.9.5-aarch64-linux-gnu2.9.5 age confidence patch
web-console 4.2.14.3.0 age confidence minor
yard (source, changelog) 0.9.440.9.45 age confidence patch

Release Notes

rmosolgo/graphql-ruby (graphql)

v2.6.5

Compare Source

New features
  • Execution::Next: improve non-null error propagation #​5644
  • Dataloader: optimize memory usage in Dataloader::Source #​5658
  • AsyncDataloader: fix concurrency errors #​5656
  • Generators: don't generate fields for filtered parameters #​5653
mitlibraries/mitlibraries-theme (mitlibraries-theme)

v1.5: Rails 8.x

Compare Source

What's Changed

New Contributors

Full Changelog: MITLibraries/mitlibraries-theme@v1.4...v1.5

rubocop/rubocop (rubocop)

v1.88.2

Compare Source

Bug fixes
  • #​15417: Fix a false negative for Lint/ToJSON, which did not flag singleton def self.to_json definitions. ([@​bbatsov][])
  • #​15418: Fix a false negative for Lint/UnreachableCode, which only flagged the first statement after a flow-of-control statement instead of every unreachable statement that followed it. ([@​bbatsov][])
  • #​15416: Fix a false negative for Lint/UselessNumericOperation, which only flagged bare method-call receivers and ignored local variables, instance/class/global variables, and constants (e.g. @x + 0, CONST * 1). ([@​bbatsov][])
  • #​15419: Fix a false negative for Lint/Void where safe-navigation calls to nonmutating methods (e.g. x&.sort) were not flagged when CheckForMethodsWithNoSideEffects is enabled. ([@​bbatsov][])
  • #​15421: Fix a false negative for Style/ArrayIntersect with the block form using include? (e.g. array1.any? { |e| array2.include?(e) }), which was only detected for member?. ([@​bbatsov][])
  • #​15420: Fix a false negative for Style/CollectionCompact, which did not flag grep_v(nil)/grep_v(NilClass) on a safe-navigation call (e.g. array&.grep_v(nil)). ([@​bbatsov][])
  • #​15422: Fix a false negative for Style/DefWithParentheses with a single-line definition whose body follows a semicolon (e.g. def foo(); end), where the parentheses can be safely omitted. ([@​bbatsov][])
  • #​15388: Fix a false negative for Style/MixinUsage when including multiple modules in one statement. ([@​bbatsov][])
  • #​15388: Fix a false negative for Style/ModuleFunction when the module body is a single statement. ([@​bbatsov][])
  • #​15388: Fix a false negative for Style/RedundantCurrentDirectoryInPath with double-quoted strings containing interpolation. ([@​bbatsov][])
  • #​15395: Fix a false negative for Style/RedundantHeredocDelimiterQuotes with double-quoted delimiters whose body contains interpolation or escapes. ([@​bbatsov][])
  • #​15409: Fix a false positive for Gemspec/DuplicatedAssignment with multiple specifications. ([@​bbatsov][])
  • #​15403: Fix a false positive for Layout/CommentIndentation with a comment above an inline access modifier (e.g. private def foo) when Layout/AccessModifierIndentation is configured with EnforcedStyle: outdent. ([@​grk][])
  • #​15372: Fix a false positive for Style/InvertibleUnlessCondition with a multi-statement begin condition. ([@​bbatsov][])
  • #​15360: Fix an incorrect autocorrect for Style/ArgumentsForwarding and Style/MethodDefParentheses when autocorrection conflicts while adding parentheses to method definition arguments. ([@​koic][])
  • #​15417: Fix an incorrect autocorrect for Lint/ToJSON that produced invalid Ruby (def to_json(*_args)()) when the method had explicit empty parentheses. ([@​bbatsov][])
  • #​15426: Fix an incorrect autocorrect for Style/MethodCallWithoutArgsParentheses when empty parentheses span multiple lines and the method call has a block. ([@​koic][])
  • #​15328: Fix a false positive for Style/HashConversion with a splat argument, which previously produced an invalid hash literal. ([@​bbatsov][])
  • #​15338: Fix a false positive for Style/HashLookupMethod with safe navigation, where the suggested bracket form would be the unreadable hash&.[](key). ([@​bbatsov][])
  • #​15397: Fix an incorrect autocorrect for Style/IdenticalConditionalBranches that hoisted the moved expression to column zero instead of matching the surrounding indentation. ([@​bbatsov][])
  • #​15372: Fix an incorrect autocorrect for Style/InvertibleUnlessCondition with mixed &&/|| conditions, which lost the required parentheses when inverting. ([@​bbatsov][])
  • #​15428: Fix an incorrect autocorrect for Style/TrivialAccessors when AllowPredicates: false is set and a trivial reader is defined as a predicate class method. ([@​koic][])
  • #​15402: Fix an infinite loop and file corruption for Layout/LineLength with SplitStrings when an over-long string is indented under a multi-line parent. ([@​bbatsov][])
  • #​15384: Fix a false positive and a false negative for Style/MissingRespondToMissing when method_missing is defined at the top level or alongside sibling classes. ([@​bbatsov][])
  • #​15432: Fix false positives in Layout/ElseAlignment when using else within a block that is part of a larger expression. ([@​koic][])
  • #​15423: Fix false positives in Layout/MultilineMethodCallIndentation when a method chain is nested inside a parenthesized argument list or a grouped expression within a hash pair value. ([@​koic][])
  • #​15424: Fix Style/StructInheritance autocorrect dropping leading indentation when class is inside a module or namespace. ([@​amckinnie][])
  • #​15325: Fix Style/DocumentationMethod ignoring AllowedMethods for inline modifier defs. ([@​bbatsov][])
  • #​15369: Fix a false positive for Style/LambdaCall when the argument list contains a comment, which the autocorrect would have dropped. ([@​bbatsov][])
Changes
  • #​15430: Improve performance of offense reporting by not allocating a new source range per offense outside of embedded sources. ([@​bbatsov][])
  • #​15430: Improve investigation performance by dispatching on_new_investigation, on_investigation_end, and on_other_file only to cops that refine them, and by skipping after_* dispatch when no cop needs it. ([@​bbatsov][])
  • #​15430: Improve performance of the per-file cop relevancy check by skipping gem requirement evaluation for cops without gem requirements. ([@​bbatsov][])
  • #​15430: Improve Lint/Debugger performance on code without debugger calls. ([@​bbatsov][])
  • #​15430: Improve autocorrection performance by keeping corrections in memory across inspection iterations and writing each corrected file only once. ([@​bbatsov][])
  • #​15415: Mark Lint/NumericOperationWithConstantResult autocorrect as unsafe because it drops the operands, discarding their side effects and silencing cases where the result is not actually constant (e.g. x / x raises when x is 0). ([@​bbatsov][])
  • #​15430: Improve performance of cops using AllowedPatterns, ForbiddenPatterns, and AllowedMethods by compiling the configured patterns only once. ([@​bbatsov][])
  • #​15430: Improve performance of Style/IfUnlessModifier and other modifier cops on files with many comments or conditionals. ([@​bbatsov][])
rubocop/rubocop-rails (rubocop-rails)

v2.36.0

Compare Source

Bug fixes
  • #​1647: Fix a false negative for Rails/EagerEvaluationLogMessage when the interpolated string is passed to Rails.logger.debug as the sole body of an enclosing block such as each or tap. ([@​conwayje][])
  • #​1646: Fix a false negative for Rails/ReversibleMigration when using remove_index without a column inside a change_table block. ([@​ilianah][])
  • #​1642: Fix a false negative for Rails/SafeNavigation when using try/try! with a symbol to proc such as foo.try(&:bar). ([@​koic][])
  • #​1599: Fix an incorrect autocorrect for Rails/LinkToBlank when Style/TrailingCommaInArguments with EnforcedStyleForMultiline: consistent_comma adds a trailing comma, which produced a duplicate comma. ([@​koic][])
  • #​1619: Fix MigratedSchemaVersion setting so it works for all cops. ([@​lovro-bikic][])
Changes
  • #​1641: Fix false negatives in Rails/SafeNavigation when using try/try! with operator methods such as [], []=, and ==. ([@​koic][])
SeleniumHQ/selenium (selenium-webdriver)

v4.46.0

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

  • Support CDP versions: v148, v149, v150
  • trim whitespace around NO_PROXY entries (#​17565)
  • add ClientConfig for HTTP client customization (#​17699)
  • generate the BiDi protocol layer from the shared binding-neutral schema (#​17731)
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
lsegal/yard (yard)

v0.9.45

Compare Source

  • Use @param types to document generated Struct.new and Data.define members (#​1684)
  • Add compatibility with RDoc 8
  • Fix TypesExplainer parsing of types following Hash collections (#​1688)
  • Fix HTML generation for RBS constants without source values (#​1686)
  • Fix method redefinition warnings when loading YARD with Ruby warnings enabled (#​1687)
  • Improve sanitization of yard server request paths

Configuration

📅 Schedule: (UTC)

  • 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)
  • Automerge
    • At any time (no schedule defined)

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

Rebasing: Whenever PR is behind base branch, 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.

@mitlib
mitlib temporarily deployed to timdex-ui-pi-renovate-b-hsv8hj July 3, 2026 01:52 Inactive
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 977d00a to 6679b8f Compare July 6, 2026 21:00
@renovate renovate Bot changed the title Update bundler non-major dependencies to v2.9.5 Update bundler non-major dependencies to v2.6.5 Jul 6, 2026
@mitlib
mitlib temporarily deployed to timdex-ui-pi-renovate-b-hsv8hj July 6, 2026 21:00 Inactive
@coveralls

coveralls commented Jul 6, 2026

Copy link
Copy Markdown

Coverage Report for CI Build 29527884146

Coverage remained the same at 98.384%

Details

  • Coverage remained the same as the base build.
  • Patch coverage: No coverable lines changed in this PR.
  • No coverage regressions found.

Uncovered Changes

No uncovered changes found.

Coverage Regressions

No coverage regressions found.


Coverage Stats

Coverage Status
Relevant Lines: 1547
Covered Lines: 1522
Line Coverage: 98.38%
Coverage Strength: 79.43 hits per line

💛 - Coveralls

@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 6679b8f to a480480 Compare July 7, 2026 17:50
@mitlib
mitlib temporarily deployed to timdex-ui-pi-renovate-b-hsv8hj July 7, 2026 17:50 Inactive
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from a480480 to 93001a8 Compare July 8, 2026 10:06
@mitlib
mitlib temporarily deployed to timdex-ui-pi-renovate-b-hsv8hj July 8, 2026 10:06 Inactive
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 93001a8 to 6169d01 Compare July 9, 2026 15:44
@mitlib
mitlib temporarily deployed to timdex-ui-pi-renovate-b-hsv8hj July 9, 2026 15:44 Inactive
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 6169d01 to c0cc0ed Compare July 10, 2026 15:02
@mitlib
mitlib temporarily deployed to timdex-ui-pi-renovate-b-hsv8hj July 10, 2026 15:02 Inactive
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from c0cc0ed to 0d17f11 Compare July 11, 2026 03:37
@mitlib
mitlib temporarily deployed to timdex-ui-pi-renovate-b-hsv8hj July 11, 2026 03:37 Inactive
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 0d17f11 to 63ae103 Compare July 11, 2026 15:14
@mitlib
mitlib temporarily deployed to timdex-ui-pi-renovate-b-hsv8hj July 11, 2026 15:14 Inactive
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 63ae103 to 41ea68e Compare July 14, 2026 15:39
@mitlib
mitlib temporarily deployed to timdex-ui-pi-renovate-b-hsv8hj July 14, 2026 15:39 Inactive
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 41ea68e to 8d0cb16 Compare July 14, 2026 20:55
@mitlib
mitlib temporarily deployed to timdex-ui-pi-renovate-b-hsv8hj July 14, 2026 20:55 Inactive
@renovate renovate Bot changed the title Update bundler non-major dependencies to v2.6.5 Update bundler non-major dependencies Jul 15, 2026
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 8d0cb16 to c385fb8 Compare July 15, 2026 22:45
@mitlib
mitlib temporarily deployed to timdex-ui-pi-renovate-b-hsv8hj July 15, 2026 22:46 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.

2 participants