Skip to content

Update bundler non-major dependencies#425

Merged
jazairi merged 1 commit into
mainfrom
renovate/bundler-minor-patch
Jul 21, 2026
Merged

Update bundler non-major dependencies#425
jazairi merged 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.6 age confidence patch
http 6.0.36.0.4 age confidence patch
mitlibraries-theme v1.4v1.5 age confidence minor
rails_semantic_logger (source, changelog) 5.0.05.1.0 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.6

Compare Source

  • Security: This version includes a remediation for a security issue in Execution::Next (GHSA-j7xr-4g94-r9h3).
New features
  • Support pattern matching non-null and list type definitions #​5660
Bug fixes
  • SDL: properly apply directive argument default values #​5659
  • Dataloader: fix Ruby version compatibility check #​5662
  • Validation: apply query token limit in Schema.validate #​5668
  • Dataloader: Use a queue for more efficient Source resolution #​5666
  • Remove needless compat with Ruby 2.2 #​5670
  • Schema: fix union memberships lookup #​5663
  • Dataloader: unify lazy resolution code #​5669
  • AsyncDataloader: improve task scheduling to fix deadlocks #​5672

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

reidmorrison/rails_semantic_logger (rails_semantic_logger)

v5.1.0

Compare Source

  • Require semantic_logger v5.1 or greater, keeping the two gems in lock step.
  • Boot: a log file that cannot be opened is now caught during boot. Semantic Logger v5.1 opens the
    file appender's log file when it is created, so a bad path or insufficient permissions raises from
    SemanticLogger.add_appender and the engine's fallback (log to STDERR at :warn) runs as
    intended. Previously the failure surfaced asynchronously on the appender thread and the app booted
    against a silently broken appender. As a side effect the log file is now created as soon as the
    appender is added, even if nothing has been logged yet, matching the standard Rails logger.
  • Boot: the rescue no longer reports a log file path problem when the failure came from the
    appenders block, where no path is involved. It now emits an accurate message per branch.
  • ActionCable: fix an ArgumentError from TaggedLoggerProxy when the wrapped logger is a plain
    Ruby Logger, which accepts only a single progname argument. The v4.9 change always forwarded the
    full (message, payload, exception) signature, breaking ActionCable::Connection::TestCase tests
    such as have_rejected_connection. The extra arguments are now only forwarded to a logger method
    that can accept them. Fixes #​317.
  • Sidekiq: officially support Sidekiq 7 and 8, and test both in CI (Sidekiq 7.x on the Rails 7.2
    appraisal, Sidekiq 8.x on the Rails 8.0 and 8.1 appraisals).
  • Sidekiq: remove support for Sidekiq 4, 5, and 6. These versions predate the gem's Rails 7.2 /
    Ruby 3.2 floor and were untested; the Sidekiq::Logging / server middleware patches, the pre-6.5
    job_logger wiring, the Sidekiq 5 Worker fallback, and the pre-7.1.6 error-handler branches
    are gone.
  • Sidekiq: honor Sidekiq 8's logged_job_attributes setting, so additional job attributes can be
    added to the logging context (defaults to bid and tags, matching Sidekiq).
  • Sidekiq: honor Sidekiq 8's skip_default_job_logging setting as an alternative to
    RailsSemanticLogger::Sidekiq::JobLogger.perform_messages = false for suppressing the
    Start #perform / Completed #perform messages.
  • Add a changelog_uri to the gem metadata, so RubyGems links to this file. Thanks to
    Philip Hallstrom.
  • Remove the vestigial sprockets < 4.0 development pin, which resolved to sprockets 1.0.2 with no
    sprockets-rails and therefore provided no Rails integration.
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

Compare Source

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

  • 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 29873622329

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: 85.47 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
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from c385fb8 to 81348f9 Compare July 16, 2026 19:24
@mitlib
mitlib temporarily deployed to timdex-ui-pi-renovate-b-hsv8hj July 16, 2026 19:25 Inactive
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 81348f9 to 65a88a1 Compare July 20, 2026 12:41
@mitlib
mitlib temporarily deployed to timdex-ui-pi-renovate-b-hsv8hj July 20, 2026 12:42 Inactive
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 65a88a1 to f241651 Compare July 20, 2026 20:27
@mitlib
mitlib temporarily deployed to timdex-ui-pi-renovate-b-hsv8hj July 20, 2026 20:27 Inactive
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from f241651 to da6312b Compare July 21, 2026 19:11
@mitlib
mitlib temporarily deployed to timdex-ui-pi-renovate-b-hsv8hj July 21, 2026 19:11 Inactive
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from da6312b to 18b1697 Compare July 21, 2026 22:20
@mitlib
mitlib temporarily deployed to timdex-ui-pi-renovate-b-hsv8hj July 21, 2026 22:21 Inactive
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 18b1697 to ec2b0f6 Compare July 21, 2026 22:23
@mitlib
mitlib temporarily deployed to timdex-ui-pi-renovate-b-hsv8hj July 21, 2026 22:24 Inactive
@jazairi
jazairi merged commit ce7362f into main Jul 21, 2026
6 checks passed
@jazairi
jazairi deleted the renovate/bundler-minor-patch branch July 21, 2026 22:27
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.

3 participants