Skip to content

Update bundler non-major dependencies to v1.196.0 - #980

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

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

Conversation

@renovate

@renovate renovate Bot commented Aug 5, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
aws-sdk-lambda (source, changelog) 1.192.01.196.0 age confidence
bootsnap 1.24.61.26.0 age confidence
graphql (source, changelog) 2.6.72.6.10 age confidence
jwt (changelog) 3.2.03.3.0 age confidence
rails_semantic_logger (source, changelog) 5.1.05.2.0 age confidence
rubocop (source, changelog) 1.88.21.91.0 age confidence
rubocop-rails (source, changelog) 2.36.02.37.0 age confidence
selenium-webdriver (source, changelog) 4.46.04.49.0 age confidence
sentry-rails (source, changelog) 6.6.26.7.0 age confidence
sentry-ruby (source, changelog) 6.6.26.7.0 age confidence
simplecov (changelog) 1.0.31.3.0 age confidence
sqlite3 2.9.52.9.6 age confidence
webmock (changelog) 3.26.23.26.4 age confidence

Release Notes

aws/aws-sdk-ruby (aws-sdk-lambda)

v1.196.0

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

v1.195.0

  • Feature - Updates documentation for lambda function timeout.

v1.194.0

  • Feature - AWS Lambda now provides configurable control over S3 direct access, allowing you to explicitly enable or disable how functions stream file reads directly from S3 buckets. This gives you flexibility to tune data access behavior based on your workload requirements, independent of memory size.

v1.193.0

  • Feature - Adds support for full JSON resource-based policies, enabling customers to create, retrieve, update, and delete function resource policies as complete JSON documents.
rmosolgo/graphql-ruby (graphql)

v2.6.10

Compare Source

New features
  • Execution::Next: Add dataload: { ..., method: } shorthand #​5706
Bug fixes
  • AsyncDataloader: Avoid ClosedError race in old fibers #​5702
  • AsyncDataloader: fix nested dataloader runs #​5703
  • Validation: speed up FieldsWillMerge #​5704
  • AsyncDataloader: Fix ActiveRecord relation loads in connections #​5708
  • Execution::Next: handle SystemStackErrors #​5705
  • Restore current multiplex after nested execution #​5714
  • Parser: handle out-of-range Unicode escapes as parse errors #​5710
  • Lexer: re-raise unexpected ArgumentErrors #​5711
  • Parser: support short braced unicode escapes #​5712
  • Float: reject non-finite values #​5713

v2.6.9

Compare Source

Security

v2.6.8

Compare Source

New features
  • Support JSON 3 (remove quirks_mode: true) #​5699
Bug fixes
  • Handle SystemStackError during execution #​5683
  • Restrict dashboard schema selection #​5688
  • Reduce allocations in block string parsing #​5695
  • Fix lexer position in multibyte input #​5692 #​5697
  • Execution::Next: fix no-method error in mutations #​5698
  • SDL: reduce memory use in description strings #​5701
jwt/ruby-jwt (jwt)

v3.3.0

Compare Source

Full Changelog

Features:

Fixes and enhancements:

  • Refactor JWT::JWK::Set#initialize so each construction path is a named method #​758 (@​anakinj)
  • Fix rejection of unknown algorithms from JWKs for RFC compliance and pquip #​728
  • Fix the Style/DirectiveScope RuboCop offense failing the build #​752
  • Fix JWT::JWK::Set sharing its key collection with the set it was copied from #​751
  • Reset the decoded payload and verification state in JWT::EncodedToken#encoded_payload= #​749
  • Fix JWT::Token#detach_payload! not invalidating an already rendered token #​748
reidmorrison/rails_semantic_logger (rails_semantic_logger)

v5.2.0

Compare Source

  • Deprecations: the gem's deprecator is now registered as
    Rails.application.deprecators[:rails_semantic_logger], so the application's own deprecation
    settings govern it: config.active_support.report_deprecations = false,
    config.active_support.deprecation = :raise, or silencing that one deprecator by name. Rails'
    active_support.deprecation_behavior initializer only reaches deprecators in that collection, and
    this one was never added to it, so nothing an application configured could reach the warnings.
    Note that an application still setting deprecated options will now see them raise under
    config.active_support.deprecation = :raise.
  • Deprecations: the warnings for the deprecated appender options (format, ap_options, filter,
    console_logger, add_file_appender) are no longer emitted from the setter. Those options are
    documented to be set in config/application.rb or config/environments/*.rb, which Rails reads in
    load_environment_config, long before active_support.deprecation_behavior applies the settings
    above, so warning from the setter landed in a window that no application configuration could
    reach. The warnings are now recorded and emitted once Rails has applied that configuration. Each
    option is reported once per boot, attributed to the first place it was set; options set later
    (from config/initializers/*, or at runtime) still warn immediately at their call site. Fixes
    #​328.
  • ActionCable: resolve the TaggedLoggerProxy class at runtime instead of requiring it by path.
    Rails 8.2 moves it from ActionCable::Connection::TaggedLoggerProxy to
    ActionCable::Server::TaggedLoggerProxy, as part of the ActionCable::Server::Socket refactor,
    and leaves no back-compat alias, so the unconditional
    require "action_cable/connection/tagged_logger_proxy" raised LoadError during
    after_initialize and failed the app's boot on Rails edge. Fixes #​326.
  • Documentation: the Semantic Logger documentation site has moved from logger.rocketjob.io to
    logger.reidmorrison.com. The gem's homepage and documentation_uri metadata now point there,
    as do the links in the README.
rubocop/rubocop (rubocop)

v1.91.0

Compare Source

New features
  • #​15631: Add a preview channel for unstable behavior. ([@​bbatsov][])
  • #​15627: Add a SARIF formatter. ([@​bbatsov][])
  • #​15686: Add AllCops: FailLevel, the configuration equivalent of --fail-level. ([@​bbatsov][])
  • #​15650: Add AllowedDirectives option to Style/DisableCopsWithinSourceCodeDirective, exempting directive kinds such as generated rubocop:todo comments. ([@​bbatsov][])
  • #​15629: Add --changed to inspect only the files git says changed. ([@​bbatsov][])
  • #​15628: Add --diff to preview autocorrection without writing files. ([@​bbatsov][])
  • #​15615: Add new Lint/MisplacedMagicComment cop to flag magic comments in positions where Ruby ignores them. ([@​bbatsov][])
  • #​15600: Add the rubocop:enable-next directive to re-enable cops for the next statement only. ([@​bbatsov][])
  • #​15600: Add the rubocop:next directive, combining push-style +/- arguments with disable-next's statement scope. ([@​bbatsov][])
  • #​15363: Let a cop's entry in the default configuration carry a Preview section with the defaults it is expected to adopt in the next major release, applied under Preview. ([@​bbatsov][])
Bug fixes
  • #​15349: Fix a false positive for Style/RedundantRegexpCharacterClass with \8/\9. ([@​bbatsov][])
  • #​15646: Fix an error for Layout/ElseAlignment when else is used with rescue in a class, module, or singleton class body. ([@​viralpraxis][])
  • #​15613: Fix an error for Layout/HashAlignment when a hash value starts on the line below its key. ([@​viralpraxis][])
  • #​15623: Fix an error for Layout/HashAlignment when the first pair of a hash omits its value, and an incorrect autocorrection when a later pair does. ([@​viralpraxis][])
  • #​15602: Fix an error for Layout/IndentationWidth on under-indented code with tab indentation. ([@​Starlexxx][])
  • #​15672: Fix an error for Lint/RedundantCopDisableDirective when a file contains more than one rubocop:push/rubocop:pop pair. ([@​koic][])
  • #​15625: Fix an error for Style/AccessModifierDeclarations when a body repeats the same access modifier. ([@​viralpraxis][])
  • #​15603: Fix an error for Style/AccessModifierDeclarations with EnforcedStyle: inline when an access modifier is the body of an if without an else branch. ([@​viralpraxis][])
  • #​15604: Fix an error for Style/ConstantVisibility when a visibility declaration splats anything other than an array literal, e.g. private_constant(*constants(false)). ([@​viralpraxis][])
  • #​15647: Fix an error for Style/DocumentationMethod when an inline module_function/ruby2_keywords def is preceded by another argument. ([@​viralpraxis][])
  • #​15680: Fix an error for Style/EndlessMethod when a method definition is nested inside another method definition. ([@​viralpraxis][])
  • #​15674: Fix an error for Style/FloatDivision when using EnforcedStyle: fdiv and one operand of a float division is itself a parenthesized float division. ([@​viralpraxis][])
  • #​15624: Fix an error for Style/HashLookupMethod when the looked-up key is itself a hash lookup. ([@​viralpraxis][])
  • #​15642: Fix an error for Style/HashSyntax when hash rockets are enforced and a hash value repeats its key. ([@​viralpraxis][])
  • #​15634: Fix an incorrect autocorrect for Lint/LiteralAsCondition when the other operand is a parenthesized return. ([@​Starlexxx][])
  • #​15648: Fix an incorrect autocorrect for Lint/ParenthesesAsGroupedExpression when the parentheses contain and, or, not, or a modifier expression. ([@​Starlexxx][])
  • #​15612: Fix an incorrect autocorrect for Naming/BlockForwarding with Style/MethodDefParentheses. ([@​Starlexxx][])
  • #​15680: Fix an incorrect autocorrect for Style/EndlessMethod when using EnforcedStyle: require_always and the method body has a rescue or ensure clause. ([@​viralpraxis][])
  • #​15669: Fix an incorrect autocorrect for Style/FloatDivision when using EnforcedStyle: fdiv and the divisor is a method call with parenthesized arguments. ([@​viralpraxis][])
  • #​15678: Fix an incorrect autocorrect for Style/For when using EnforcedStyle: for and the block body has a rescue or ensure clause. ([@​viralpraxis][])
  • #​15645: Fix an incorrect autocorrect for Style/GuardClause with Style/MissingElse. ([@​Starlexxx][])
  • #​15668: Fix an incorrect autocorrect for Style/MethodCallWithArgsParentheses when EnforcedStyle: omit_parentheses is used together with Style/TrailingCommaInArguments. ([@​viralpraxis][])
  • #​15347: Fix an incorrect autocorrect for Style/NestedModifier. ([@​bbatsov][])
  • #​15347: Fix an incorrect autocorrect for Style/NonNilCheck. ([@​bbatsov][])
  • #​15347: Fix an incorrect autocorrect for Style/Not with a flip-flop or assignment. ([@​bbatsov][])
  • #​15349: Fix an incorrect autocorrect for Style/RedundantDoubleSplatHashBraces with a braced merge argument. ([@​bbatsov][])
  • #​15349: Fix an incorrect autocorrect for Style/RedundantParentheses around and/or. ([@​bbatsov][])
  • #​15349: Fix an incorrect autocorrect for Style/RedundantRegexpConstructor with %r{} delimiters. ([@​bbatsov][])
  • #​15614: Fix an infinite loop between Layout/ArgumentAlignment and Layout/HashAlignment with separator style. ([@​Starlexxx][])
  • #​15599: Fix an infinite loop error for Layout/CommentIndentation when many comment blocks with the same indentation are separated by empty lines. ([@​Starlexxx][])
  • #​15597: Fix an infinite loop error for Layout/EmptyLinesAfterModuleInclusion when a module inclusion is directly before rescue. ([@​Starlexxx][])
  • #​15617: Fix an infinite loop between Layout/ExtraSpacing with ForceEqualSignAlignment and Layout/SpaceAroundOperators. ([@​Starlexxx][])
  • #​15638: Fix an infinite loop error for Layout/FirstArrayElementIndentation with Layout/ArrayAlignment when EnforcedStyle: with_fixed_indentation is configured. ([@​RedZapdos123][])
  • #​15639: Fix an infinite loop error for Layout/FirstParameterIndentation with Layout/ParameterAlignment when EnforcedStyle: with_fixed_indentation is configured. ([@​RedZapdos123][])
  • #​15619: Fix an infinite loop for Layout/LineLength with SplitStrings: true when the split point lands on a trailing space. ([@​Starlexxx][])
  • #​15675: Fix an infinite loop between Layout/SpaceAroundOperators and Layout/ExtraSpacing with ForceEqualSignAlignment: true for aligned operator assignments. ([@​Starlexxx][])
  • #​15598: Fix an infinite loop error for Lint/AssignmentInCondition when an assignment is inside defined?. ([@​Starlexxx][])
  • #​15665: Fix an infinite loop between Style/EmptyMethod and Style/SingleLineMethods with AllowIfMethodIsEmpty: false. ([@​Starlexxx][])
  • #​15644: Fix an infinite loop error for Style/EndlessMethod when an indented method definition would exceed Layout/LineLength once made endless. ([@​viralpraxis][])
  • #​15651: Fix an infinite loop error for Style/EndlessMethod when a method body is a block spread over several lines. ([@​viralpraxis][])
  • #​15618: Fix an infinite loop between Style/ParenthesesAroundCondition with AllowSafeAssignment: false and Lint/AssignmentInCondition. ([@​Starlexxx][])
  • #​15662: Fix an infinite loop between Layout/SpaceAroundBlockParameters and Layout/SpaceInsideParens when the two cops enforce conflicting styles for a lambda's parameter parentheses. ([@​viralpraxis][])
  • #​15670: Fix an infinite loop for Style/NumericLiteralPrefix with signed literals. ([@​dylanpulver][])
  • #​15636: Fix Lint/CopDirectiveSyntax falsely reporting multiple directives when valid reason text mentions another directive. ([@​RedZapdos123][])
  • #​15679: Fix false positives in Lint/DuplicateMethods for singleton methods in separate anonymous classes. ([@​rafaelfranca][])
  • #​15347: Fix incorrect autocorrects for Style/NilComparison with precedence-sensitive operands. ([@​bbatsov][])
  • #​15611: Fix Lint/ArgumentMismatch registering false positives for Foo.new calls, which are documented as out of scope but were checked against whichever new the project index could reach. ([@​HoneyryderChuck][])
  • #​15610: Fix Lint/ArgumentMismatch registering false positives for calls that resolve to a private method on Object, such as a bare def written at the top level of a DSL file. ([@​HoneyryderChuck][])
  • #​15600: Make rubocop:push +Cop arguments enable cops that are disabled in the configuration. ([@​bbatsov][])
  • #​9325: Merge Exclude with the default configuration and with inherited files under Preview. ([@​bbatsov][])
  • #​15626: Fix RemoteConfig failing to follow relative HTTP redirects for remote configuration files. ([@​RedZapdos123][])
  • #​15661: Fix the result cache reading and processing non-regular files. ([@​viralpraxis][])
  • #​15621: Fix incorrect analysis results when the result cache cannot compute a file checksum, which could serve one file's cached results for another file. ([@​koic][])
  • #​11696: Fix Style/DataInheritance to not register an offense when the class body defines constants, nested classes, or nested modules. ([@​MatheusRich][])
  • #​15655: Fix Style/StructInheritance to not register an offense when the class body defines constants, nested classes, or nested modules. ([@​MatheusRich][])
Changes
  • #​15363: Disable Metrics/MethodLength, Metrics/AbcSize, Metrics/ClassLength, Metrics/ModuleLength, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity, Metrics/BlockLength, Metrics/ParameterLists and Metrics/BlockNesting under Preview, ahead of them being disabled by default in RuboCop 2.0. ([@​bbatsov][])
  • #​15363: Disable Style/IfUnlessModifier, Style/GuardClause, Style/Next, Style/ClassAndModuleChildren, Style/DoubleNegation, Style/NumericPredicate, Style/SpecialGlobalVars, Style/PerlBackrefs, Style/FrozenStringLiteralComment, Style/FormatStringToken, Style/FormatString, Style/RegexpLiteral, Style/SignalException, Style/Lambda, Style/ParallelAssignment, Style/RaiseArgs, Style/ModuleFunction, Style/BlockDelimiters, Style/NumericLiterals, Style/NegatedIf, Naming/VariableNumber, Naming/HeredocDelimiterNaming, Layout/EmptyLineAfterGuardClause and Bundler/OrderedGems under Preview, ahead of them being disabled by default in RuboCop 2.0. ([@​bbatsov][])
  • #​15363: Set AllCops: FailLevel to warning under Preview, so that style offenses are reported without failing the build, ahead of it becoming the default in RuboCop 2.0. ([@​bbatsov][])
  • #​15363: Set the community-preferred EnforcedStyle of Style/StringLiterals, Style/StringLiteralsInInterpolation, Layout/CaseIndentation, Layout/EndAlignment, Layout/MultilineMethodCallIndentation, Layout/MultilineOperationIndentation, Layout/FirstHashElementIndentation, Layout/FirstArrayElementIndentation, Layout/ParameterAlignment, Layout/ArgumentAlignment, Style/EmptyMethod, Style/Alias, Style/RescueStandardError and Style/TernaryParentheses under Preview, ahead of them becoming the defaults in RuboCop 2.0. ([@​bbatsov][])
  • #​15363: Set the EnforcedStyle of Style/SymbolArray and Style/WordArray to brackets under Preview, ahead of it becoming the default in RuboCop 2.0. ([@​bbatsov][])
  • #​15686: Derive a cop's default severity from its department: Security cops now report as warning and Metrics cops as refactor. ([@​bbatsov][])
  • #​15363: Disable Style/Documentation under Preview, ahead of it being disabled by default in RuboCop 2.0. ([@​bbatsov][])
  • #​15616: Enable Lint/CopDirectiveSyntax by default, so directives that silently disable nothing are reported. ([@​bbatsov][])
  • #​15601: Make Style/DirectiveScope convert single-statement signed push/pop scopes and enable/disable pairs to the next, enable-next and disable-next forms. ([@​bbatsov][])
  • #​15650: Make AllowedCops and DisallowedCops of Style/DisableCopsWithinSourceCodeDirective match department names as well as cop names. ([@​bbatsov][])
  • #​15616: Remove Style/DoubleCopDisableDirective, superseded by Lint/CopDirectiveSyntax, which now reports and corrects more than one directive on a line. ([@​bbatsov][])
  • #​15607: Recognize warn_indent as a magic comment. This fixes a false positive for Layout/EmptyLineAfterMagicComment and makes Lint/OrderedMagicComments and Style/MagicCommentFormat aware of it. ([@​koic][])
  • #​15650: Rename the AllowTrailingComment option of Style/DisableCopsWithinSourceCodeDirective to AllowWithReason. ([@​bbatsov][])

v1.90.0

Compare Source

New features
  • #​15073: Add AllowTrailingComment option to Style/DisableCopsWithinSourceCodeDirective. ([@​bbatsov][])
  • #​9505: Add disable-next directives scoped to the following statement. ([@​bbatsov][])
  • #​15550: Add --display-suppressed option to also report offenses suppressed by directive comments, including their -- justification in the JSON formatter. ([@​bbatsov][])
  • #​15523: Add new Lint/ArgumentMismatch cop. ([@​bbatsov][])
  • #​15594: Add new Lint/SuperArgumentMismatch cop. ([@​bbatsov][])
  • #​15581: Add new Style/TimeNow cop. ([@​Starlexxx][])
  • #​15111: Add NumberOfEmptyLines option to Layout/EmptyLineAfterMagicComment to configure the minimum number of empty lines required after magic comments. ([@​alejofraga][])
  • #​13037: Add --report-unused-todo-entries to catch rotting todo files. ([@​bbatsov][])
  • #​15559: Add new Style/DirectiveScope cop to flag disable/enable pairs and disable-only push/pop scopes that wrap a single statement and can use disable-next instead. ([@​bbatsov][])
  • #​15547: Make Lint/RedundantCopEnableDirective flag # rubocop:pop directives without a matching # rubocop:push. ([@​bbatsov][])
Bug fixes
  • #​15584: Fix a crash in Lint/NameTypo and Lint/UnusedPrivateMethod on string literals with invalid encoding. ([@​bbatsov][])
  • #​15541: Fix a false negative for Lint/OutOfRangeRegexpRef when a preceding element access with a non-string literal argument (e.g. hash[:key]) discarded the tracked capture count. ([@​koic][])
  • #​7958: Add todo comments for skipped unsafe corrections with --disable-uncorrectable. ([@​bbatsov][])
  • #​15569: Fix an error for the built-in language server when a workspace/executeCommand request has no document URI in its arguments. ([@​koic][])
  • #​15410: Fix an incorrect autocorrect for Naming/BinaryOperatorParameterName. ([@​bbatsov][])
  • #​15576: Fix an incorrect autocorrect for Style/Sample when shuffle is given a random: argument; the offense is still reported but no longer autocorrected, since shuffle and sample consume a seeded generator differently and would select different elements. ([@​koic][])
  • #​15590: Fix an infinite loop error for Layout/FirstArgumentIndentation when EnforcedStyle: with_fixed_indentation is specified for Layout/ArgumentAlignment and Layout/FirstMethodArgumentLineBreak is enabled with AllowMultilineFinalElement: true. ([@​Starlexxx][])
  • #​15588: Fix RuboCop::Cop::IgnoredMethods and RuboCop::Cop::IgnoredPattern being unreachable after require 'rubocop'. ([@​SeanLF][])
  • #​8349: Don't autocorrect away directives for unknown cops. ([@​bbatsov][])
  • #​7894: Don't flag disables of pending cops as redundant. ([@​bbatsov][])
  • #​9963: Fix false negatives for Layout/ExtraSpacing. ([@​Starlexxx][])
  • #​15525: Fix false negatives in Layout/LineLength when a constant path like Http::UploadedFile matches URISchemes case-insensitively. ([@​koic][])
  • #​13941: Fix false positives for Lint/UselessConstantScoping when assigning with Class.new, Module.new, Struct.new, or Data.define after private. ([@​pdobb][])
  • #​15526: Fix false positives in Layout/MultilineMethodCallIndentation when a line has multiple single-line blocks before a multiline block. ([@​koic][])
  • #​15538: Fix false positives in Lint/ConstantReassignment when a constant is assigned in compact-style namespaces (e.g. module A::B). ([@​alex-tan][])
  • #​15517: Fix false positives in Lint/RedundantSafeNavigation when InferNonNilReceiver is enabled and the receiver name is rebound by a nested block (it or a shadowed block parameter). ([@​koic][])
  • #​15572: Fix RuboCop::Cop::Registry#freeze to freeze its internal collections, so that registering a lazily loaded cop after the freeze fails fast at the registration site instead of corrupting the registry. ([@​koic][])
  • #​15585: Make Lint/DuplicateMethods honor silence_redefinition_of_method and redefine_method as intentional redefinitions. ([@​bbatsov][])
  • #​15558: Fix --display-suppressed reporting a nil justification when the offense is loaded from the result cache. ([@​corsonknowles][])
  • #​10449: Fix Layout/ClassStructure autocorrection producing a wrong order when an element cannot be moved, and make offenses report the category that actually blocks the expected order. ([@​koic][])
  • #​15568: Fix Lint/NameTypo registering false positives for names provided by a gem whose namespace the project reopens, and for constants read from a namespace with an unresolved ancestor. ([@​HoneyryderChuck][])
  • #​15556: Fix Lint/UnusedPrivateMethod retaining every past project_index object it has seen (and the index graph reachable from each), rather than only the most recent one. This caused unbounded memory growth in long-lived processes such as rubocop --server. ([@​bquorning][])
  • #​10046: Fix Lint/UselessMethodDefinition false positive for methods with **kwargs. ([@​bbatsov][])
  • #​15589: Fix --lsp and --mcp being silently ignored when the RuboCop server is running: they now start the protocol server in the current process instead of being forwarded to the server as a lint request. ([@​koic][])
  • #​11148: Merge department and cop-level Exclude settings. ([@​bbatsov][])
  • #​15531: Fix a regression in RuboCop 1.89 where the modifier cops could produce lines longer than Layout/LineLength Max when exemptions like AllowedPatterns matched the result. ([@​bbatsov][])
  • #​15574: Fix an incorrect warning such as AllCops does not support TargetRailsVersion parameter when a plugin declares a custom AllCops key with a nil value and another plugin is loaded after it. ([@​koic][])
  • #​9543: Preserve escape notation in Style/StringConcatenation autocorrect. ([@​bbatsov][])
  • #​11119: Preserve persistent cop instances across files. ([@​Eljees][])
  • #​13022: Fix rubocop . (and other relative directory arguments) needlessly traversing directories excluded by the configuration, which made it much slower than rubocop in projects with large ignored trees. ([@​bbatsov][])
  • #​15561: Fix Lint/RedundantCopDisableDirective and Lint/RedundantCopEnableDirective leaving a directive's -- reason behind when removing the directive. ([@​corsonknowles][])
  • #​15593: Fix false positives for Lint/UnusedPrivateMethod for private definitions of Ruby runtime hooks like inherited and const_missing. ([@​bbatsov][])
  • #​15547: Make Lint/MissingCopEnableDirective suggest # rubocop:pop instead of # rubocop:enable for an unclosed # rubocop:push. ([@​bbatsov][])
  • #​14379: Suppress multi-line offenses with a directive on any of their lines. ([@​bbatsov][])
  • #​15593: Fix false positives for Lint/UnusedPrivateMethod when a method name is composed with an interpolated symbol or string prefix. ([@​bbatsov][])
Changes
  • #​15585: Add AllowedCrossFilePaths option to Lint/DuplicateMethods to skip cross-file duplicates in configured paths. ([@​bbatsov][])
  • #​15593: Add AllowedNames and AllowedPatterns options to Lint/UnusedPrivateMethod. ([@​bbatsov][])
  • #​15587: Backfill missing StyleGuide metadata for 21 cops and fix four broken style guide links. ([@​bbatsov][])
  • #​15530: Improve Lint/DeprecatedReference performance by short-circuiting deprecated?. ([@​connorshea][])
  • #​15529: Improve Lint/NameTypo performance by deferring the literal-name scan. ([@​connorshea][])
  • #​15554: Change AllowForAlignment to no longer treat a same-indentation line beyond the enclosing block as an alignment anchor for Layout/ExtraSpacing, Layout/SpaceAroundOperators, and Layout/SpaceBeforeFirstArg. ([@​koic][])
  • #​15582: Make JUnit formatter output <testcase> elements only for cops enabled for each inspected file, instead of all cops. ([@​koic][])
  • #​15562: Make Layout/SpaceAroundOperators aware of endless method definitions. ([@​koic][])
  • #​14673: Make Lint/CopDirectiveSyntax catch keyword typos and unknown cop names. ([@​bbatsov][])
  • #​12219: Stop honoring wrongly-namespaced disable directives. ([@​bbatsov][])

v1.89.0

Compare Source

New features
  • #​15492: Add AllCops/ProjectIndexIncludesGems for bundle-wide indexing. ([@​bbatsov][])
  • #​15498: Add DelegatingMethods option to Lint/DuplicateMethods to register custom delegate-shaped methods. ([@​bbatsov][])
  • #​15042: Add DisallowedCops configuration option to Style/DisableCopsWithinSourceCodeDirective. ([@​hammadxcm][])
  • #​15441: Add new AllowYARDCommentBlockSeparator option to Layout/LeadingCommentSpace. ([@​koic][])
  • #​15466: Add new Lint/DeprecatedReference cop to detect references to methods and constants documented as @deprecated, powered by the project index. ([@​bbatsov][])
  • #​15491: Add new Lint/NameTypo cop. ([@​bbatsov][])
  • #​15468: Add new Lint/UnusedPrivateMethod cop for project-wide dead-code detection via the project index (disabled by default). ([@​bbatsov][])
  • #​14598: Make Style/DisableCopsWithinSourceCodeDirective impossible to disable via directive comments when explicitly enabled with Enabled: true. ([@​rafaelfranca][])
  • #​15511: Support textDocument/codeAction requests in the built-in language server, so LSP clients that request code actions (Eglot, Helix, Flycheck, ...) can apply RuboCop's autocorrects, not only clients that read them off the published diagnostic. ([@​bbatsov][])
  • #​8565: Support NewCops in department configuration to enable pending cops per department, including cops added up to a specific version (e.g. Style: NewCops: '1.19'). ([@​koic][])
  • #​9373: Support autocorrection for tab indentation in Layout/IndentationWidth and Style/ClassAndModuleChildren. ([@​ioquatix][], [@​koic][])
Bug fixes
  • #​15257: Fix a false negative for Lint/ToEnumArguments when explicit extra keyword arguments are passed (e.g. def m(x:); to_enum(:m, x: x, y: 1); end), which raises ArgumentError when the enumerator is used. ([@​RedZapdos123][])
  • #​15452: Fix a false positive for Layout/HashAlignment when using EnforcedHashRocketStyle: table and a hash key spans multiple lines. ([@​dduugg][])
  • #​12269: Fix a false positive for Lint/UselessAssignment with modifier conditions. ([@​bbatsov][])
  • #​13786: Fix a false positive for Lint/Void with setter methods. ([@​bbatsov][])
  • #​15507: Fix a false positive for Naming/VariableNumber when using an empty symbol hash key. ([@​koic][])
  • #​15284: Fix a false positive for Style/MutableConstant with Data.define. ([@​bbatsov][])
  • #​15483: Fix a false positive for Style/MissingRespondToMissing when respond_to_missing? is defined in a reopening of the class and UseProjectIndex is enabled. ([@​bbatsov][])
  • #​15500: Fix an error for Lint/LiteralAsCondition when a literal condition has an empty branch. ([@​koic][])
  • #​15499: Fix an error for Lint/UselessRuby2Keywords when ruby2_keywords is used with a symbol but no method definition is found. ([@​koic][])
  • #​15453: Fix an error for Metrics/MethodLength when a method contains a heredoc and __ENCODING__. ([@​koic][])
  • #​15442: Fix an error for Style/ArrayIntersect cop when the block-based check calls member?/include? without an explicit receiver. ([@​dduugg][])
  • #​15434: Fix an error for Style/NegativeArrayIndex cop. ([@​viralpraxis][])
  • #​15469: Fix an error for Style/RedundantFormat when a format string uses a positional argument number beyond the 64-bit range. ([@​koic][])
  • #​15454: Fix an error for Style/RedundantFormat when the argument for a positional variable width is missing. ([@​koic][])
  • [#​152

Important

✂ PR body was truncated to here.


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 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-cyddkg August 5, 2026 02:44 Inactive
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 7f01ad1 to 08e7c5d Compare August 6, 2026 18:01
@renovate renovate Bot changed the title Update dependency rubocop to v1.89.0 Update bundler non-major dependencies to v1.89.0 Aug 6, 2026
@mitlib
mitlib temporarily deployed to timdex-api-p-renovate-b-cyddkg August 6, 2026 18:02 Inactive
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 08e7c5d to 4227dce Compare August 8, 2026 08:43
@renovate renovate Bot changed the title Update bundler non-major dependencies to v1.89.0 Update bundler non-major dependencies to v1.25.0 Aug 8, 2026
@mitlib
mitlib temporarily deployed to timdex-api-p-renovate-b-cyddkg August 8, 2026 08:43 Inactive
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 4227dce to 5ebc624 Compare August 10, 2026 19:48
@mitlib
mitlib temporarily deployed to timdex-api-p-renovate-b-cyddkg August 10, 2026 19:48 Inactive
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 5ebc624 to d2d7ac1 Compare August 11, 2026 01:10
@mitlib
mitlib had a problem deploying to timdex-api-p-renovate-b-cyddkg August 11, 2026 01:10 Failure
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from d2d7ac1 to 34188f6 Compare August 12, 2026 03:30
@mitlib
mitlib temporarily deployed to timdex-api-p-renovate-b-cyddkg August 12, 2026 03:30 Inactive
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 34188f6 to 810d660 Compare August 13, 2026 00:43
@mitlib
mitlib temporarily deployed to timdex-api-p-renovate-b-cyddkg August 13, 2026 00:43 Inactive
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 810d660 to 1b95e8e Compare August 13, 2026 17:45
@mitlib
mitlib temporarily deployed to timdex-api-p-renovate-b-cyddkg August 13, 2026 17:45 Inactive
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 1b95e8e to 9188ac0 Compare August 16, 2026 06:11
@mitlib
mitlib temporarily deployed to timdex-api-p-renovate-b-cyddkg August 16, 2026 06:12 Inactive
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 9188ac0 to 332998c Compare August 20, 2026 19:56
@renovate renovate Bot changed the title Update bundler non-major dependencies to v1.25.0 Update bundler non-major dependencies to v1.193.0 Aug 20, 2026
@mitlib
mitlib temporarily deployed to timdex-api-p-renovate-b-cyddkg August 20, 2026 19:56 Inactive
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 332998c to ef2c3e1 Compare August 21, 2026 18:49
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from ef2c3e1 to 059206e Compare August 25, 2026 14:08
@mitlib
mitlib had a problem deploying to timdex-api-p-renovate-b-cyddkg August 25, 2026 14:09 Failure
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 059206e to da2b3b4 Compare August 26, 2026 16:45
@mitlib
mitlib had a problem deploying to timdex-api-p-renovate-b-cyddkg August 26, 2026 16:45 Failure
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from da2b3b4 to 0b98ecb Compare August 27, 2026 17:35
@mitlib
mitlib had a problem deploying to timdex-api-p-renovate-b-cyddkg August 27, 2026 17:35 Failure
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 0b98ecb to e740e24 Compare August 27, 2026 23:51
@mitlib
mitlib had a problem deploying to timdex-api-p-renovate-b-cyddkg August 27, 2026 23:51 Failure
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from e740e24 to 1c1c443 Compare August 29, 2026 13:34
@mitlib
mitlib had a problem deploying to timdex-api-p-renovate-b-cyddkg August 29, 2026 13:34 Failure
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 1c1c443 to 1351ee2 Compare September 1, 2026 23:11
@renovate renovate Bot changed the title Update bundler non-major dependencies to v1.193.0 Update bundler non-major dependencies to v1.194.0 Sep 1, 2026
@mitlib
mitlib had a problem deploying to timdex-api-p-renovate-b-cyddkg September 1, 2026 23:11 Failure
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 1351ee2 to e60bee9 Compare September 4, 2026 10:35
@mitlib
mitlib had a problem deploying to timdex-api-p-renovate-b-cyddkg September 4, 2026 10:35 Failure
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from e60bee9 to e177b7c Compare September 4, 2026 17:39
@mitlib
mitlib had a problem deploying to timdex-api-p-renovate-b-cyddkg September 4, 2026 17:39 Failure
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from e177b7c to d9402c1 Compare September 4, 2026 22:51
@mitlib
mitlib had a problem deploying to timdex-api-p-renovate-b-cyddkg September 4, 2026 22:51 Failure
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from d9402c1 to b796e73 Compare September 5, 2026 16:53
@mitlib
mitlib had a problem deploying to timdex-api-p-renovate-b-cyddkg September 5, 2026 16:53 Failure
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from b796e73 to a1c3d13 Compare September 9, 2026 19:17
@mitlib
mitlib had a problem deploying to timdex-api-p-renovate-b-cyddkg September 9, 2026 19:17 Failure
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from a1c3d13 to f92ce89 Compare September 10, 2026 02:43
@renovate renovate Bot changed the title Update bundler non-major dependencies to v1.194.0 Update bundler non-major dependencies to v1.195.0 Sep 10, 2026
@mitlib
mitlib had a problem deploying to timdex-api-p-renovate-b-cyddkg September 10, 2026 02:44 Failure
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from f92ce89 to 7f221a6 Compare September 10, 2026 14:48
@mitlib
mitlib had a problem deploying to timdex-api-p-renovate-b-cyddkg September 10, 2026 14:48 Failure
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 7f221a6 to 189787a Compare September 11, 2026 22:06
@renovate renovate Bot changed the title Update bundler non-major dependencies to v1.195.0 Update bundler non-major dependencies to v1.196.0 Sep 11, 2026
@mitlib
mitlib had a problem deploying to timdex-api-p-renovate-b-cyddkg September 11, 2026 22:07 Failure
@renovate
renovate Bot force-pushed the renovate/bundler-minor-patch branch from 189787a to 02d840d Compare September 12, 2026 21:01
@mitlib
mitlib had a problem deploying to timdex-api-p-renovate-b-cyddkg September 12, 2026 21:01 Failure
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