Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 25, 2025

Bumps rubocop from 1.79.2 to 1.82.1.

Release notes

Sourced from rubocop's releases.

RuboCop v1.82.1

Bug fixes

  • #14736: Fix an error for Style/TrailingCommaInArguments when EnforcedStyleForMultiline is consistent_comma and keyword arguments use a trailing comma. (@​koic)
  • #14737: Fix crash in Layout/RedundantLineBreak when Layout/LineLength is disabled. (@​ydakuka)
  • #14719: Fix crash on long lines when Layout/LineLength is disabled. (@​floriandejonckheere)
  • #14743: Fix false positives for Layout/MultilineMethodCallIndentation when multiline method chain with block has expected indent width and the method is preceded by splat or double splat. (@​koic)
  • #12297: Fix false negative in Layout/IndentationWidth for multiline method chain blocks. (@​rscq)
  • #14730: Fix the cache implementation to use consistent cache keys across workers. (@​byroot)
  • #14559: Fix false positives for Lint/UselessAssignment when a variable is assigned in loop body and used in loop condition. (@​ydakuka)

RuboCop v1.82.0

New features

  • #14655: Add AllowRBSInlineAnnotation option to Layout/LineLength. (@​koic)
  • #14569: Add IncludedMacroPatterns configuration option to Style/MethodCallWithArgsParentheses for pattern-based macro method enforcement. ([@​mmenanno][])
  • #14670: Add new cop Style/ModuleMemberExistenceCheck. ([@​lovro-bikic][])
  • #14644: Support TargetRubyVersion 4.0 (experimental). (@​koic)

Bug fixes

  • #14649: Fix an error for Lint/LiteralAsCondition when there are literals in multiple branches. ([@​viralpraxis][])
  • #14678: Fix an error when running deprecated rake rubocop:auto_correct task. (@​koic)
  • #14650: Fix wrong autocorrect for Lint/RedundantSplatExpansion when splatting a single literal. ([@​earlopain][])
  • #14703: Fix false negatives for Layout/RescueEnsureAlignment when using self class definition. (@​koic)
  • #14706: Fix false negatives for Lint/NoReturnInBeginEndBlocks when assigning instance variable, class variable, global variable, or constant. (@​koic)
  • #14715: Fix false positives for Layout/EmptyLineAfterGuardClause when a guard clause follows a multiline heredoc in a parenthesized method call. (@​koic)
  • #14667: Fix false positives for Layout/EndAlignment when a conditional assignment is used on the same line and the end with a safe navigation method call is aligned. (@​koic)
  • #14688: Fix false positives for Layout/EndAlignment when a conditional assignment is used on the same line and the end with a numbered block or it block method call is aligned. (@​koic)
  • #14699: Fix false positives for Lint/RedundantSafeNavigation when the receiver is used outside the singleton method definition scope. (@​koic)
  • #14663: Fix false positives for Style/EndlessMethod when multiline or xstring heredoc is used in method body. (@​koic)
  • #10173: Fix false positives for Style/TrailingCommaInArguments when EnforcedStyleForMultiline is set to consistent_comma and a multiline braced hash argument appears after another argument. (@​koic)
  • #14680: Handle all OptionParser errors when running rubocop with input that causes an error. ([@​dvandersluis][])
  • #14658: Fix incorrect behavior when Layout/LineLength is disabled. (@​koic)
  • #14704: Fix incorrect Position character value in LSP. ([@​tmtm][])
  • #14619: Store remote configuration caches in cache root. ([@​Jack12816][])
  • #14476: Fix Style/ClassAndModuleChildren to skip compact style definitions inside another class or module when EnforcedStyle: nested. (@​rscq)
  • #14281: Update Layout/EndAlignment with EnforcedStyleAlignWith: variable to handle conditionals inside begin nodes properly. ([@​dvandersluis][])

Changes

  • #14662: Add autocorrection for Lint/UselessOr. ([@​r7kamura][])
  • #14668: Exclude Severity from configuration parameters. ([@​r7kamura][])
  • #14684: Make Style/CaseEquality allow regexp case equality where the receiver is a regexp literal. (@​koic)

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.82.1 (2025-12-24)

Bug fixes

  • #14736: Fix an error for Style/TrailingCommaInArguments when EnforcedStyleForMultiline is consistent_comma and keyword arguments use a trailing comma. ([@​koic][])
  • #14737: Fix crash in Layout/RedundantLineBreak when Layout/LineLength is disabled. ([@​ydakuka][])
  • #14719: Fix crash on long lines when Layout/LineLength is disabled. ([@​floriandejonckheere][])
  • #14743: Fix false positives for Layout/MultilineMethodCallIndentation when multiline method chain with block has expected indent width and the method is preceded by splat or double splat. ([@​koic][])
  • #12297: Fix false negative in Layout/IndentationWidth for multiline method chain blocks. ([@​rscq][])
  • #14730: Fix the cache implementation to use consistent cache keys across workers. ([@​byroot][])
  • #14559: Fix false positives for Lint/UselessAssignment when a variable is assigned in loop body and used in loop condition. ([@​ydakuka][])

1.82.0 (2025-12-17)

New features

  • #14655: Add AllowRBSInlineAnnotation option to Layout/LineLength. ([@​koic][])
  • #14569: Add IncludedMacroPatterns configuration option to Style/MethodCallWithArgsParentheses for pattern-based macro method enforcement. ([@​mmenanno][])
  • #14670: Add new cop Style/ModuleMemberExistenceCheck. ([@​lovro-bikic][])
  • #14644: Support TargetRubyVersion 4.0 (experimental). ([@​koic][])

Bug fixes

  • #14649: Fix an error for Lint/LiteralAsCondition when there are literals in multiple branches. ([@​viralpraxis][])
  • #14678: Fix an error when running deprecated rake rubocop:auto_correct task. ([@​koic][])
  • #14650: Fix wrong autocorrect for Lint/RedundantSplatExpansion when splatting a single literal. ([@​earlopain][])
  • #14703: Fix false negatives for Layout/RescueEnsureAlignment when using self class definition. ([@​koic][])
  • #14706: Fix false negatives for Lint/NoReturnInBeginEndBlocks when assigning instance variable, class variable, global variable, or constant. ([@​koic][])
  • #14715: Fix false positives for Layout/EmptyLineAfterGuardClause when a guard clause follows a multiline heredoc in a parenthesized method call. ([@​koic][])
  • #14667: Fix false positives for Layout/EndAlignment when a conditional assignment is used on the same line and the end with a safe navigation method call is aligned. ([@​koic][])
  • #14688: Fix false positives for Layout/EndAlignment when a conditional assignment is used on the same line and the end with a numbered block or it block method call is aligned. ([@​koic][])
  • #14699: Fix false positives for Lint/RedundantSafeNavigation when the receiver is used outside the singleton method definition scope. ([@​koic][])
  • #14663: Fix false positives for Style/EndlessMethod when multiline or xstring heredoc is used in method body. ([@​koic][])
  • #10173: Fix false positives for Style/TrailingCommaInArguments when EnforcedStyleForMultiline is set to consistent_comma and a multiline braced hash argument appears after another argument. ([@​koic][])
  • #14680: Handle all OptionParser errors when running rubocop with input that causes an error. ([@​dvandersluis][])
  • #14658: Fix incorrect behavior when Layout/LineLength is disabled. ([@​koic][])
  • #14704: Fix incorrect Position character value in LSP. ([@​tmtm][])
  • #14619: Store remote configuration caches in cache root. ([@​Jack12816][])
  • #14476: Fix Style/ClassAndModuleChildren to skip compact style definitions inside another class or module when EnforcedStyle: nested. ([@​rscq][])
  • #14281: Update Layout/EndAlignment with EnforcedStyleAlignWith: variable to handle conditionals inside begin nodes properly. ([@​dvandersluis][])

Changes

  • #14662: Add autocorrection for Lint/UselessOr. ([@​r7kamura][])
  • #14668: Exclude Severity from configuration parameters. ([@​r7kamura][])
  • #14684: Make Style/CaseEquality allow regexp case equality where the receiver is a regexp literal. ([@​koic][])
  • #14645: Change Lint/CircularArgumentReference to detect offenses within long assignment chains. ([@​viralpraxis][])
  • #14642: Make Gemspec/RubyVersionGlobalsUsage aware of Ruby::VERSION. ([@​koic][])
  • #14695: Make Layout/EmptyLineAfterMagicComment aware of # rbs_inline magic comment. ([@​koic][])
  • #10147: Make Lint/ElseLayout allow a single-line else body in then single-line conditional. ([@​koic][])

... (truncated)

Commits
  • 5711dcb Cut 1.82.1
  • 4918002 Update Changelog
  • 0479119 [Fix rubocop#14559] Fix false positives for Lint/UselessAssignment when a v...
  • 990121b Optimize cache cleanup routine
  • e06d0c1 [Fix #14743] Fix false positives for Layout/MultilineMethodCallIndentation
  • a6e4adf Merge pull request #14742 from ydakuka/14737/fix_crash_in_layout_redundant_li...
  • 1873836 [Fix rubocop#14737] Fix crash in Layout/RedundantLineBreak when `Layout/Lin...
  • bb2fb48 Merge pull request #14738 from koic/fix_an_error_for_style_trailing_comma_in_...
  • d08ff2e [Fix #14736] Fix an error for Style/TrailingCommaInArguments
  • edca36e Merge pull request #14725 from viralpraxis/fix-layout-line-length-cop-error-i...
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added dependencies ruby Pull requests that update Ruby code labels Dec 25, 2025
@github-actions
Copy link
Contributor

gem compare json 2.13.2 2.18.0

Compared versions: ["2.13.2", "2.18.0"]
  DIFFERENT date:
    2.13.2: 2025-07-28 00:00:00 UTC
    2.18.0: 1980-01-02 00:00:00 UTC
  DIFFERENT require_paths:
    2.13.2: ["/opt/hostedtoolcache/Ruby/3.4.8/x64/lib/ruby/gems/3.4.0/extensions/x86_64-linux/3.4.0/json-2.13.2", "lib"]
    2.18.0: ["/opt/hostedtoolcache/Ruby/3.4.8/x64/lib/ruby/gems/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.0", "lib"]
  DIFFERENT rubygems_version:
    2.13.2: 3.6.2
    2.18.0: 3.6.9
  DIFFERENT version:
    2.13.2: 2.13.2
    2.18.0: 2.18.0
  DIFFERENT files:
    2.13.2->2.18.0:
      * Added:
            ext/json/ext/json.h +97/-0
            ext/json/ext/vendor/ryu.h +819/-0
            lib/json/add/string.rb +35/-0
      * Changed:
            CHANGES.md +76/-8
            LEGAL +12/-0
            README.md +19/-1
            ext/json/ext/fbuffer/fbuffer.h +31/-54
            ext/json/ext/generator/extconf.rb +1/-1
            ext/json/ext/generator/generator.c +279/-239
            ext/json/ext/parser/extconf.rb +2/-1
            ext/json/ext/parser/parser.c +528/-401
            ext/json/ext/simd/simd.h +15/-12
            ext/json/ext/vendor/fpconv.c +12/-11
            lib/json.rb +23/-1
            lib/json/add/core.rb +1/-0
            lib/json/common.rb +60/-23
            lib/json/ext/generator/state.rb +11/-14
            lib/json/generic_object.rb +0/-8
            lib/json/truffle_ruby/generator.rb +113/-63
            lib/json/version.rb +1/-1
  DIFFERENT extra_rdoc_files:
    2.13.2->2.18.0:
      * Changed:
            README.md +19/-1

@github-actions
Copy link
Contributor

gem compare --diff json 2.13.2 2.18.0

Diff too large (204727 chars)

@github-actions
Copy link
Contributor

gem compare parser 3.3.9.0 3.3.10.0

Compared versions: ["3.3.9.0", "3.3.10.0"]
  DIFFERENT date:
    3.3.9.0: 2025-07-25 00:00:00 UTC
    3.3.10.0: 2025-10-27 00:00:00 UTC
  DIFFERENT metadata:
    3.3.9.0: {"bug_tracker_uri" => "https://github.com/whitequark/parser/issues", "changelog_uri" => "https://github.com/whitequark/parser/blob/v3.3.9.0/CHANGELOG.md", "documentation_uri" => "https://www.rubydoc.info/gems/parser/3.3.9.0", "source_code_uri" => "https://github.com/whitequark/parser/tree/v3.3.9.0"}
    3.3.10.0: {"bug_tracker_uri" => "https://github.com/whitequark/parser/issues", "changelog_uri" => "https://github.com/whitequark/parser/blob/v3.3.10.0/CHANGELOG.md", "documentation_uri" => "https://www.rubydoc.info/gems/parser/3.3.10.0", "source_code_uri" => "https://github.com/whitequark/parser/tree/v3.3.10.0"}
  DIFFERENT version:
    3.3.9.0: 3.3.9.0
    3.3.10.0: 3.3.10.0
  DIFFERENT files:
    3.3.9.0->3.3.10.0:
      * Changed:
            lib/parser/current.rb +1/-1
            lib/parser/version.rb +1/-1

@github-actions
Copy link
Contributor

gem compare --diff parser 3.3.9.0 3.3.10.0

Compared versions: ["3.3.9.0", "3.3.10.0"]
  DIFFERENT files:
    3.3.9.0->3.3.10.0:
      * Changed:
        lib/parser/current.rb
                --- /tmp/d20251225-1048-b9hsuy/parser-3.3.9.0/lib/parser/current.rb	2025-12-25 03:02:12.813156387 +0000
                +++ /tmp/d20251225-1048-b9hsuy/parser-3.3.10.0/lib/parser/current.rb	2025-12-25 03:02:13.247161983 +0000
                @@ -114 +114 @@
                -    current_version = '3.3.9'
                +    current_version = '3.3.10'
        lib/parser/version.rb
                --- /tmp/d20251225-1048-b9hsuy/parser-3.3.9.0/lib/parser/version.rb	2025-12-25 03:02:13.244161944 +0000
                +++ /tmp/d20251225-1048-b9hsuy/parser-3.3.10.0/lib/parser/version.rb	2025-12-25 03:02:13.285162473 +0000
                @@ -4 +4 @@
                -  VERSION = '3.3.9.0'
                +  VERSION = '3.3.10.0'

@github-actions
Copy link
Contributor

gem compare prism 1.4.0 1.7.0

Compared versions: ["1.4.0", "1.7.0"]
  DIFFERENT date:
    1.4.0: 2025-03-18 00:00:00 UTC
    1.7.0: 1980-01-02 00:00:00 UTC
  DIFFERENT require_paths:
    1.4.0: ["/opt/hostedtoolcache/Ruby/3.4.8/x64/lib/ruby/gems/3.4.0/extensions/x86_64-linux/3.4.0/prism-1.4.0", "lib"]
    1.7.0: ["/opt/hostedtoolcache/Ruby/3.4.8/x64/lib/ruby/gems/3.4.0/extensions/x86_64-linux/3.4.0/prism-1.7.0", "lib"]
  DIFFERENT rubygems_version:
    1.4.0: 3.6.2
    1.7.0: 3.6.9
  DIFFERENT version:
    1.4.0: 1.4.0
    1.7.0: 1.7.0
  DIFFERENT files:
    1.4.0->1.7.0:
      * Added:
            lib/prism/polyfill/scan_byte.rb +14/-0
            lib/prism/polyfill/warn.rb +36/-0
            lib/prism/translation/parser40.rb +13/-0
            lib/prism/translation/parser41.rb +13/-0
            lib/prism/translation/parser_current.rb +26/-0
            rbi/prism/translation/parser40.rbi +6/-0
            rbi/prism/translation/parser41.rbi +6/-0
            sig/prism/parse_result/comments.rbs +38/-0
      * Changed:
            CHANGELOG.md +73/-1
            Makefile +7/-5
            README.md +3/-1
            config.yml +294/-41
            docs/build_system.md +2/-2
            docs/cruby_compilation.md +1/-1
            docs/design.md +2/-2
            docs/parser_translation.md +8/-23
            docs/releasing.md +6/-25
            docs/ripper_translation.md +1/-1
            ext/prism/api_node.c +9/-3
            ext/prism/extconf.rb +1/-1
            ext/prism/extension.c +24/-3
            ext/prism/extension.h +1/-1
            include/prism.h +40/-15
            include/prism/ast.h +360/-70
            include/prism/diagnostic.h +7/-0
            include/prism/options.h +49/-3
            include/prism/parser.h +3/-0
            include/prism/regexp.h +2/-2
            include/prism/util/pm_buffer.h +8/-0
            include/prism/util/pm_integer.h +4/-0
            include/prism/util/pm_list.h +6/-0
            include/prism/util/pm_string.h +12/-2
            include/prism/version.h +2/-2
            lib/prism.rb +22/-0
            lib/prism/compiler.rb +456/-151
            lib/prism/desugar_compiler.rb +1/-0
            lib/prism/dispatcher.rb +16/-0
            lib/prism/dot_visitor.rb +10/-1
            lib/prism/dsl.rb +5/-2
            lib/prism/ffi.rb +28/-10
            lib/prism/inspect_visitor.rb +4/-0
            lib/prism/lex_compat.rb +1/-0
            lib/prism/mutation_compiler.rb +3/-0
            lib/prism/node.rb +559/-349
            lib/prism/node_ext.rb +4/-1
            lib/prism/pack.rb +2/-0
            lib/prism/parse_result.rb +3/-15
            lib/prism/parse_result/comments.rb +1/-0
            lib/prism/parse_result/errors.rb +1/-0
            lib/prism/parse_result/newlines.rb +1/-0
            lib/prism/pattern.rb +1/-0
            lib/prism/reflection.rb +4/-1
            lib/prism/relocation.rb +1/-0
            lib/prism/serialize.rb +30/-22
            lib/prism/string_query.rb +1/-0
            lib/prism/translation.rb +4/-0
            lib/prism/translation/parser.rb +25/-4
            lib/prism/translation/parser/builder.rb +1/-0
            lib/prism/translation/parser/compiler.rb +63/-41
            lib/prism/translation/parser/lexer.rb +29/-21
            lib/prism/translation/parser33.rb +1/-0
            lib/prism/translation/parser34.rb +1/-0
            lib/prism/translation/parser35.rb +2/-6
            lib/prism/translation/ripper.rb +19/-3
            lib/prism/translation/ripper/sexp.rb +1/-0
            lib/prism/translation/ruby_parser.rb +340/-22
            lib/prism/visitor.rb +457/-152
            prism.gemspec +9/-1
            rbi/prism/dsl.rbi +6/-6
            rbi/prism/node.rbi +42/-17
            rbi/prism/translation/parser35.rbi +0/-2
            sig/prism.rbs +4/-0
            sig/prism/dispatcher.rbs +3/-0
            sig/prism/dsl.rbs +5/-5
            sig/prism/node.rbs +462/-38
            sig/prism/node_ext.rbs +84/-17
            sig/prism/parse_result.rbs +4/-0
            sig/prism/reflection.rbs +1/-1
            src/diagnostic.c +13/-1
            src/encoding.c +172/-67
            src/node.c +11/-0
            src/options.c +17/-7
            src/prettyprint.c +18/-0
            src/prism.c +1474/-2000
            src/serialize.c +9/-1
            src/token_type.c +38/-36
            src/util/pm_constant_pool.c +1/-1
            src/util/pm_string.c +6/-8

@github-actions
Copy link
Contributor

gem compare --diff prism 1.4.0 1.7.0

Diff too large (702561 chars)

@github-actions
Copy link
Contributor

gem compare regexp_parser 2.11.0 2.11.3

Compared versions: ["2.11.0", "2.11.3"]
  DIFFERENT date:
    2.11.0: 2025-08-03 00:00:00 UTC
    2.11.3: 1980-01-02 00:00:00 UTC
  DIFFERENT rubygems_version:
    2.11.0: 3.4.13
    2.11.3: 3.6.7
  DIFFERENT version:
    2.11.0: 2.11.0
    2.11.3: 2.11.3
  DIFFERENT files:
    2.11.0->2.11.3:
      * Added:
            lib/regexp_parser/syntax/versions/3.5.0.rb +4/-0
      * Changed:
            Gemfile +3/-1
            Rakefile +5/-3
            lib/regexp_parser.rb +2/-0
            lib/regexp_parser/error.rb +2/-0
            lib/regexp_parser/expression.rb +2/-0
            lib/regexp_parser/expression/base.rb +2/-0
            lib/regexp_parser/expression/classes/alternation.rb +2/-0
            lib/regexp_parser/expression/classes/anchor.rb +2/-0
            lib/regexp_parser/expression/classes/backreference.rb +2/-0
            lib/regexp_parser/expression/classes/character_set.rb +2/-0
            lib/regexp_parser/expression/classes/character_set/intersection.rb +2/-0
            lib/regexp_parser/expression/classes/character_set/range.rb +2/-0
            lib/regexp_parser/expression/classes/character_type.rb +2/-0
            lib/regexp_parser/expression/classes/conditional.rb +2/-0
            lib/regexp_parser/expression/classes/escape_sequence.rb +2/-0
            lib/regexp_parser/expression/classes/free_space.rb +2/-0
            lib/regexp_parser/expression/classes/group.rb +2/-0
            lib/regexp_parser/expression/classes/keep.rb +2/-0
            lib/regexp_parser/expression/classes/literal.rb +2/-0
            lib/regexp_parser/expression/classes/posix_class.rb +2/-0
            lib/regexp_parser/expression/classes/root.rb +2/-0
            lib/regexp_parser/expression/classes/unicode_property.rb +2/-0
            lib/regexp_parser/expression/methods/construct.rb +2/-0
            lib/regexp_parser/expression/methods/escape_sequence_char.rb +2/-0
            lib/regexp_parser/expression/methods/escape_sequence_codepoint.rb +2/-0
            lib/regexp_parser/expression/methods/human_name.rb +2/-0
            lib/regexp_parser/expression/methods/match.rb +2/-0
            lib/regexp_parser/expression/methods/match_length.rb +2/-0
            lib/regexp_parser/expression/methods/negative.rb +2/-0
            lib/regexp_parser/expression/methods/options.rb +2/-0
            lib/regexp_parser/expression/methods/parts.rb +2/-0
            lib/regexp_parser/expression/methods/printing.rb +2/-0
            lib/regexp_parser/expression/methods/referenced_expressions.rb +2/-0
            lib/regexp_parser/expression/methods/strfregexp.rb +2/-0
            lib/regexp_parser/expression/methods/tests.rb +2/-0
            lib/regexp_parser/expression/methods/traverse.rb +2/-0
            lib/regexp_parser/expression/quantifier.rb +3/-1
            lib/regexp_parser/expression/sequence.rb +2/-0
            lib/regexp_parser/expression/sequence_operation.rb +2/-0
            lib/regexp_parser/expression/shared.rb +6/-3
            lib/regexp_parser/expression/subexpression.rb +2/-0
            lib/regexp_parser/lexer.rb +2/-0
            lib/regexp_parser/parser.rb +2/-0
            lib/regexp_parser/scanner.rb +755/-654
            lib/regexp_parser/scanner/errors/premature_end_error.rb +2/-0
            lib/regexp_parser/scanner/errors/scanner_error.rb +2/-0
            lib/regexp_parser/scanner/errors/validation_error.rb +2/-0
            lib/regexp_parser/scanner/properties/long.csv +19/-0
            lib/regexp_parser/scanner/properties/short.csv +8/-0
            lib/regexp_parser/scanner/scanner.rl +16/-7
            lib/regexp_parser/syntax.rb +2/-0
            lib/regexp_parser/syntax/any.rb +2/-0
            lib/regexp_parser/syntax/base.rb +2/-0
            lib/regexp_parser/syntax/token.rb +5/-3
            lib/regexp_parser/syntax/token/anchor.rb +5/-3
            lib/regexp_parser/syntax/token/assertion.rb +4/-2
            lib/regexp_parser/syntax/token/backreference.rb +8/-6
            lib/regexp_parser/syntax/token/character_set.rb +3/-1
            lib/regexp_parser/syntax/token/character_type.rb +6/-4
            lib/regexp_parser/syntax/token/conditional.rb +5/-3
            lib/regexp_parser/syntax/token/escape.rb +9/-7
            lib/regexp_parser/syntax/token/group.rb +8/-6
            lib/regexp_parser/syntax/token/keep.rb +3/-1
            lib/regexp_parser/syntax/token/meta.rb +4/-2
            lib/regexp_parser/syntax/token/posix_class.rb +4/-2
            lib/regexp_parser/syntax/token/quantifier.rb +8/-6
            lib/regexp_parser/syntax/token/unicode_property.rb +62/-47
            lib/regexp_parser/syntax/token/virtual.rb +5/-3
            lib/regexp_parser/syntax/version_lookup.rb +4/-2
            lib/regexp_parser/syntax/versions.rb +2/-0
            lib/regexp_parser/syntax/versions/1.8.6.rb +2/-0
            lib/regexp_parser/syntax/versions/1.9.1.rb +2/-0
            lib/regexp_parser/syntax/versions/1.9.3.rb +2/-0
            lib/regexp_parser/syntax/versions/2.0.0.rb +2/-0
            lib/regexp_parser/syntax/versions/2.2.0.rb +2/-0
            lib/regexp_parser/syntax/versions/2.3.0.rb +2/-0
            lib/regexp_parser/syntax/versions/2.4.0.rb +2/-0
            lib/regexp_parser/syntax/versions/2.4.1.rb +2/-0
            lib/regexp_parser/syntax/versions/2.5.0.rb +2/-0
            lib/regexp_parser/syntax/versions/2.6.0.rb +2/-0
            lib/regexp_parser/syntax/versions/2.6.2.rb +2/-0
            lib/regexp_parser/syntax/versions/2.6.3.rb +2/-0
            lib/regexp_parser/syntax/versions/3.1.0.rb +2/-0
            lib/regexp_parser/syntax/versions/3.2.0.rb +2/-0
            lib/regexp_parser/token.rb +2/-0
            lib/regexp_parser/version.rb +3/-1
            regexp_parser.gemspec +2/-0
    2.11.0->2.11.3:
      * Updated
            rubocop from: ["~> 1.59"] to: [">= 1.80.2"]

@github-actions
Copy link
Contributor

gem compare --diff regexp_parser 2.11.0 2.11.3

Diff too large (128178 chars)

@github-actions
Copy link
Contributor

gem compare rubocop 1.79.2 1.82.1

Compared versions: ["1.79.2", "1.82.1"]
  DIFFERENT date:
    1.79.2: 2025-08-05 00:00:00 UTC
    1.82.1: 1980-01-02 00:00:00 UTC
  DIFFERENT metadata:
    1.79.2: {"homepage_uri" => "https://rubocop.org/", "changelog_uri" => "https://github.com/rubocop/rubocop/releases/tag/v1.79.2", "source_code_uri" => "https://github.com/rubocop/rubocop/", "documentation_uri" => "https://docs.rubocop.org/rubocop/1.79/", "bug_tracker_uri" => "https://github.com/rubocop/rubocop/issues", "rubygems_mfa_required" => "true"}
    1.82.1: {"homepage_uri" => "https://rubocop.org/", "changelog_uri" => "https://github.com/rubocop/rubocop/releases/tag/v1.82.1", "source_code_uri" => "https://github.com/rubocop/rubocop/", "documentation_uri" => "https://docs.rubocop.org/rubocop/1.82/", "bug_tracker_uri" => "https://github.com/rubocop/rubocop/issues", "rubygems_mfa_required" => "true"}
  DIFFERENT rubygems_version:
    1.79.2: 3.6.2
    1.82.1: 3.6.9
  DIFFERENT version:
    1.79.2: 1.79.2
    1.82.1: 1.82.1
  DIFFERENT files:
    1.79.2->1.82.1:
      * Added:
            lib/rubocop/cop/style/array_intersect_with_single_element.rb +47/-0
            lib/rubocop/cop/style/module_member_existence_check.rb +74/-0
      * Changed:
            README.md +1/-1
            config/default.yml +35/-7
            config/obsoletion.yml +4/-0
            exe/rubocop +1/-8
            lib/rubocop.rb +2/-0
            lib/rubocop/cli.rb +8/-3
            lib/rubocop/cli/command/auto_generate_config.rb +2/-2
            lib/rubocop/comment_config.rb +62/-17
            lib/rubocop/config_loader.rb +5/-2
            lib/rubocop/config_loader_resolver.rb +7/-6
            lib/rubocop/config_store.rb +5/-0
            lib/rubocop/cop/autocorrect_logic.rb +8/-4
            lib/rubocop/cop/bundler/ordered_gems.rb +1/-2
            lib/rubocop/cop/correctors/alignment_corrector.rb +8/-7
            lib/rubocop/cop/correctors/for_to_each_corrector.rb +7/-2
            lib/rubocop/cop/gemspec/ordered_dependencies.rb +1/-2
            lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +10/-5
            lib/rubocop/cop/internal_affairs/location_exists.rb +28/-2
            lib/rubocop/cop/internal_affairs/node_pattern_groups.rb +3/-1
            lib/rubocop/cop/internal_affairs/node_pattern_groups/ast_processor.rb +1/-1
            lib/rubocop/cop/internal_affairs/on_send_without_on_csend.rb +1/-1
            lib/rubocop/cop/layout/class_structure.rb +1/-1
            lib/rubocop/cop/layout/dot_position.rb +1/-1
            lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +3/-0
            lib/rubocop/cop/layout/empty_line_between_defs.rb +30/-12
            lib/rubocop/cop/layout/empty_lines_after_module_inclusion.rb +1/-1
            lib/rubocop/cop/layout/end_alignment.rb +4/-0
            lib/rubocop/cop/layout/hash_alignment.rb +2/-5
            lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +2/-2
            lib/rubocop/cop/layout/heredoc_indentation.rb +1/-4
            lib/rubocop/cop/layout/indentation_style.rb +1/-1
            lib/rubocop/cop/layout/indentation_width.rb +12/-1
            lib/rubocop/cop/layout/line_continuation_spacing.rb +1/-1
            lib/rubocop/cop/layout/line_length.rb +17/-5
            lib/rubocop/cop/layout/multiline_block_layout.rb +2/-0
            lib/rubocop/cop/layout/multiline_method_call_indentation.rb +5/-1
            lib/rubocop/cop/layout/multiline_operation_indentation.rb +8/-4
            lib/rubocop/cop/layout/rescue_ensure_alignment.rb +13/-3
            lib/rubocop/cop/layout/space_after_comma.rb +2/-10
            lib/rubocop/cop/layout/space_after_semicolon.rb +1/-1
            lib/rubocop/cop/layout/space_around_keyword.rb +1/-1
            lib/rubocop/cop/layout/trailing_whitespace.rb +1/-1
            lib/rubocop/cop/lint/circular_argument_reference.rb +47/-3
            lib/rubocop/cop/lint/constant_overwritten_in_rescue.rb +3/-2
            lib/rubocop/cop/lint/cop_directive_syntax.rb +14/-8
            lib/rubocop/cop/lint/debugger.rb +0/-2
            lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +4/-1
            lib/rubocop/cop/lint/duplicate_match_pattern.rb +4/-4
            lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +5/-42
            lib/rubocop/cop/lint/else_layout.rb +19/-0
            lib/rubocop/cop/lint/empty_interpolation.rb +11/-0
            lib/rubocop/cop/lint/literal_as_condition.rb +4/-0
            lib/rubocop/cop/lint/literal_in_interpolation.rb +1/-1
            lib/rubocop/cop/lint/missing_cop_enable_directive.rb +17/-8
            lib/rubocop/cop/lint/no_return_in_begin_end_blocks.rb +4/-0
            lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +23/-9
            lib/rubocop/cop/lint/redundant_require_statement.rb +4/-2
            lib/rubocop/cop/lint/redundant_splat_expansion.rb +7/-1
            lib/rubocop/cop/lint/rescue_exception.rb +1/-4
            lib/rubocop/cop/lint/self_assignment.rb +15/-6
            lib/rubocop/cop/lint/shadowed_argument.rb +7/-7
            lib/rubocop/cop/lint/unreachable_code.rb +5/-3
            lib/rubocop/cop/lint/uri_escape_unescape.rb +2/-0
            lib/rubocop/cop/lint/useless_assignment.rb +44/-16
            lib/rubocop/cop/lint/useless_or.rb +15/-2
            lib/rubocop/cop/lint/utils/nil_receiver_checker.rb +1/-1
            lib/rubocop/cop/lint/void.rb +7/-0
            lib/rubocop/cop/message_annotator.rb +1/-1
            lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +4/-3
            lib/rubocop/cop/mixin/check_line_breakable.rb +1/-1
            lib/rubocop/cop/mixin/check_single_line_suitability.rb +2/-4
            lib/rubocop/cop/mixin/code_length.rb +1/-1
            lib/rubocop/cop/mixin/end_keyword_alignment.rb +1/-7
            lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +1/-1
            lib/rubocop/cop/mixin/line_length_help.rb +21/-2
            lib/rubocop/cop/mixin/method_complexity.rb +1/-1
            lib/rubocop/cop/mixin/multiline_expression_indentation.rb +1/-1
            lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb +1/-1
            lib/rubocop/cop/mixin/space_after_punctuation.rb +5/-4
            lib/rubocop/cop/mixin/statement_modifier.rb +0/-6
            lib/rubocop/cop/mixin/trailing_comma.rb +8/-5
            lib/rubocop/cop/naming/method_name.rb +5/-3
            lib/rubocop/cop/naming/predicate_method.rb +19/-6
            lib/rubocop/cop/security/json_load.rb +33/-11
            lib/rubocop/cop/style/array_intersect.rb +46/-12
            lib/rubocop/cop/style/bare_percent_literals.rb +1/-2
            lib/rubocop/cop/style/bitwise_predicate.rb +8/-1
            lib/rubocop/cop/style/case_equality.rb +11/-13
            lib/rubocop/cop/style/class_and_module_children.rb +1/-0
            lib/rubocop/cop/style/conditional_assignment.rb +8/-14
            lib/rubocop/cop/style/constant_visibility.rb +17/-12
            lib/rubocop/cop/style/double_negation.rb +1/-1
            lib/rubocop/cop/style/empty_method.rb +0/-6
            lib/rubocop/cop/style/endless_method.rb +15/-2
            lib/rubocop/cop/style/explicit_block_argument.rb +1/-1
            lib/rubocop/cop/style/float_division.rb +15/-1
            lib/rubocop/cop/style/guard_clause.rb +0/-11
            lib/rubocop/cop/style/hash_syntax.rb +1/-1
            lib/rubocop/cop/style/if_unless_modifier.rb +3/-3
            lib/rubocop/cop/style/infinite_loop.rb +1/-1
            lib/rubocop/cop/style/method_call_with_args_parentheses.rb +17/-4
            lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb +12/-1
            lib/rubocop/cop/style/multiline_method_signature.rb +2/-4
            lib/rubocop/cop/style/nil_comparison.rb +9/-7
            lib/rubocop/cop/style/one_line_conditional.rb +17/-9
            lib/rubocop/cop/style/operator_method_call.rb +11/-2
            lib/rubocop/cop/style/parallel_assignment.rb +2/-2
            lib/rubocop/cop/style/redundant_argument.rb +2/-0
            lib/rubocop/cop/style/redundant_begin.rb +34/-0
            lib/rubocop/cop/style/redundant_condition.rb +1/-1
            lib/rubocop/cop/style/redundant_exception.rb +1/-1
            lib/rubocop/cop/style/redundant_format.rb +26/-5
            lib/rubocop/cop/style/redundant_interpolation.rb +11/-2
            lib/rubocop/cop/style/redundant_parentheses.rb +14/-11
            lib/rubocop/cop/style/redundant_percent_q.rb +1/-2
            lib/rubocop/cop/style/redundant_regexp_argument.rb +9/-0
            lib/rubocop/cop/style/redundant_regexp_escape.rb +8/-0
            lib/rubocop/cop/style/redundant_sort.rb +7/-7
            lib/rubocop/cop/style/safe_navigation.rb +18/-1
            lib/rubocop/cop/style/semicolon.rb +23/-7
            lib/rubocop/cop/style/sole_nested_conditional.rb +8/-1
            lib/rubocop/cop/style/string_concatenation.rb +17/-13
            lib/rubocop/cop/style/super_arguments.rb +2/-2
            lib/rubocop/cop/style/symbol_array.rb +1/-1
            lib/rubocop/cop/style/trailing_comma_in_arguments.rb +45/-0
            lib/rubocop/cop/style/trailing_underscore_variable.rb +11/-11
            lib/rubocop/cop/style/unless_else.rb +10/-9
            lib/rubocop/cop/util.rb +2/-3
            lib/rubocop/cop/utils/format_string.rb +10/-0
            lib/rubocop/cop/variable_force.rb +9/-7
            lib/rubocop/cop/variable_force/variable.rb +1/-1
            lib/rubocop/cops_documentation_generator.rb +4/-4
            lib/rubocop/directive_comment.rb +46/-3
            lib/rubocop/formatter/disabled_config_formatter.rb +19/-5
            lib/rubocop/lsp/diagnostic.rb +10/-14
            lib/rubocop/lsp/routes.rb +31/-2
            lib/rubocop/lsp/stdin_runner.rb +0/-16
            lib/rubocop/magic_comment.rb +20/-0
            lib/rubocop/rake_task.rb +1/-1
            lib/rubocop/remote_config.rb +7/-8
            lib/rubocop/result_cache.rb +39/-28
            lib/rubocop/rspec/shared_contexts.rb +2/-2
            lib/rubocop/rspec/support.rb +1/-1
            lib/rubocop/runner.rb +10/-4
            lib/rubocop/target_finder.rb +9/-9
            lib/rubocop/target_ruby.rb +11/-2
            lib/rubocop/version.rb +1/-1
            lib/ruby_lsp/rubocop/addon.rb +23/-8
            lib/ruby_lsp/rubocop/runtime_adapter.rb +49/-15
  DIFFERENT extra_rdoc_files:
    1.79.2->1.82.1:
      * Changed:
            README.md +1/-1
  DIFFERENT runtime dependencies:
    1.79.2->1.82.1:
      * Updated:
            rubocop-ast from: [">= 1.46.0", "< 2.0"] to: [">= 1.48.0", "< 2.0"]

@github-actions
Copy link
Contributor

gem compare --diff rubocop 1.79.2 1.82.1

Diff too large (194051 chars)

@github-actions
Copy link
Contributor

gem compare rubocop-ast 1.46.0 1.48.0

Compared versions: ["1.46.0", "1.48.0"]
  DIFFERENT date:
    1.46.0: 2025-07-16 00:00:00 UTC
    1.48.0: 1980-01-02 00:00:00 UTC
  DIFFERENT rubygems_version:
    1.46.0: 3.5.11
    1.48.0: 4.0.0.dev
  DIFFERENT version:
    1.46.0: 1.46.0
    1.48.0: 1.48.0
  DIFFERENT files:
    1.46.0->1.48.0:
      * Changed:
            README.md +0/-2
            lib/rubocop/ast/node.rb +15/-0
            lib/rubocop/ast/node/mixin/parameterized_node.rb +1/-0
            lib/rubocop/ast/node_pattern.rb +1/-0
            lib/rubocop/ast/node_pattern/compiler.rb +1/-0
            lib/rubocop/ast/node_pattern/lexer.rex +1/-1
            lib/rubocop/ast/node_pattern/lexer.rex.rb +1/-1
            lib/rubocop/ast/node_pattern/parser.racc.rb +40/-42
            lib/rubocop/ast/processed_source.rb +5/-1
            lib/rubocop/ast/traversal.rb +1/-0
            lib/rubocop/ast/version.rb +1/-1
  DIFFERENT extra_rdoc_files:
    1.46.0->1.48.0:
      * Changed:
            README.md +0/-2

@github-actions
Copy link
Contributor

gem compare --diff rubocop-ast 1.46.0 1.48.0

Compared versions: ["1.46.0", "1.48.0"]
  DIFFERENT files:
    1.46.0->1.48.0:
      * Changed:
        README.md
                --- /tmp/d20251225-11187-l36efh/rubocop-ast-1.46.0/README.md	2025-12-25 03:04:13.657708930 +0000
                +++ /tmp/d20251225-11187-l36efh/rubocop-ast-1.48.0/README.md	2025-12-25 03:04:13.684709265 +0000
                @@ -5,2 +4,0 @@
                -[![Test Coverage](https://api.codeclimate.com/v1/badges/a29666e6373bc41bc0a9/test_coverage)](https://codeclimate.com/github/rubocop/rubocop-ast/test_coverage)
                -[![Maintainability](https://api.codeclimate.com/v1/badges/a29666e6373bc41bc0a9/maintainability)](https://codeclimate.com/github/rubocop/rubocop-ast/maintainability)
        lib/rubocop/ast/node.rb
                --- /tmp/d20251225-11187-l36efh/rubocop-ast-1.46.0/lib/rubocop/ast/node.rb	2025-12-25 03:04:13.659708954 +0000
                +++ /tmp/d20251225-11187-l36efh/rubocop-ast-1.48.0/lib/rubocop/ast/node.rb	2025-12-25 03:04:13.686709289 +0000
                @@ -110,0 +111,7 @@
                +        str: :any_str,
                +        dstr: :any_str,
                +        xstr: :any_str,
                +
                +        sym: :any_sym,
                +        dsym: :any_sym,
                +
                @@ -547,0 +555,8 @@
                +      end
                +
                +      def any_str_type?
                +        GROUP_FOR_TYPE[type] == :any_str
                +      end
                +
                +      def any_sym_type?
                +        GROUP_FOR_TYPE[type] == :any_sym
        lib/rubocop/ast/node/mixin/parameterized_node.rb
                --- /tmp/d20251225-11187-l36efh/rubocop-ast-1.46.0/lib/rubocop/ast/node/mixin/parameterized_node.rb	2025-12-25 03:04:13.670709091 +0000
                +++ /tmp/d20251225-11187-l36efh/rubocop-ast-1.48.0/lib/rubocop/ast/node/mixin/parameterized_node.rb	2025-12-25 03:04:13.697709426 +0000
                @@ -67,0 +68 @@
                +
        lib/rubocop/ast/node_pattern.rb
                --- /tmp/d20251225-11187-l36efh/rubocop-ast-1.46.0/lib/rubocop/ast/node_pattern.rb	2025-12-25 03:04:13.676709165 +0000
                +++ /tmp/d20251225-11187-l36efh/rubocop-ast-1.48.0/lib/rubocop/ast/node_pattern.rb	2025-12-25 03:04:13.703709500 +0000
                @@ -52,0 +53 @@
                +
        lib/rubocop/ast/node_pattern/compiler.rb
                --- /tmp/d20251225-11187-l36efh/rubocop-ast-1.46.0/lib/rubocop/ast/node_pattern/compiler.rb	2025-12-25 03:04:13.677709178 +0000
                +++ /tmp/d20251225-11187-l36efh/rubocop-ast-1.48.0/lib/rubocop/ast/node_pattern/compiler.rb	2025-12-25 03:04:13.704709513 +0000
                @@ -12,0 +13 @@
                +
        lib/rubocop/ast/node_pattern/lexer.rex
                --- /tmp/d20251225-11187-l36efh/rubocop-ast-1.46.0/lib/rubocop/ast/node_pattern/lexer.rex	2025-12-25 03:04:13.680709215 +0000
                +++ /tmp/d20251225-11187-l36efh/rubocop-ast-1.48.0/lib/rubocop/ast/node_pattern/lexer.rex	2025-12-25 03:04:13.706709538 +0000
                @@ -24 +24 @@
                -        /"(.+?)"/                 { emit :tSTRING }
                +        /"(.*?)"/                 { emit :tSTRING }
        lib/rubocop/ast/node_pattern/lexer.rex.rb
                --- /tmp/d20251225-11187-l36efh/rubocop-ast-1.46.0/lib/rubocop/ast/node_pattern/lexer.rex.rb	2025-12-25 03:04:13.680709215 +0000
                +++ /tmp/d20251225-11187-l36efh/rubocop-ast-1.48.0/lib/rubocop/ast/node_pattern/lexer.rex.rb	2025-12-25 03:04:13.706709538 +0000
                @@ -125 +125 @@
                -          when ss.skip(/"(.+?)"/) then
                +          when ss.skip(/"(.*?)"/) then
        lib/rubocop/ast/node_pattern/parser.racc.rb
                --- /tmp/d20251225-11187-l36efh/rubocop-ast-1.46.0/lib/rubocop/ast/node_pattern/parser.racc.rb	2025-12-25 03:04:13.681709227 +0000
                +++ /tmp/d20251225-11187-l36efh/rubocop-ast-1.48.0/lib/rubocop/ast/node_pattern/parser.racc.rb	2025-12-25 03:04:13.707709550 +0000
                @@ -4,2 +4,2 @@
                -# This file is automatically generated by Racc 1.8.1
                -# from Racc grammar file "parser.y".
                +# This file is automatically generated by Racc 1.5.0
                +# from Racc grammar file "".
                @@ -17,2 +17,2 @@
                -    60,    22,    20,     4,    24,     5,    40,     6,     7,     8,
                -    28,    23,    56,    50,    40,    61,    43,    66,    51,    51,
                +    60,    22,    20,     4,    40,     5,    43,     6,     7,     8,
                +    28,    23,    56,    50,    66,    61,    24,    51,    51,    40,
                @@ -25 +25 @@
                -    20,     4,   nil,     5,   nil,     6,     7,     8,    28,    23,
                +    20,     4,   nil,     5,   nil,     6,     7,     8,     9,    23,
                @@ -36 +36 @@
                -    20,     4,   nil,     5,   nil,     6,     7,     8,     9,    23,
                +    20,     4,   nil,     5,   nil,     6,     7,     8,    28,    23,
                @@ -50,2 +50,2 @@
                -     9,    23,    -1,    -1,    -1,    -2,    -2,    -2,    47,    48,
                -    49 ]
                +     9,    23,    47,    48,    49,    -1,    -1,    -1,    -2,    -2,
                +    -2 ]
                @@ -55,2 +55,2 @@
                -    54,    42,    42,    42,     1,    42,    10,    42,    42,    42,
                -    42,    42,    42,    30,    11,    54,    24,    62,    30,    63,
                +    54,    42,    42,    42,    11,    42,    24,    42,    42,    42,
                +    42,    42,    42,    30,    62,    54,     1,    63,    30,    10,
                @@ -59 +59,12 @@
                -    59,    59,    59,   nil,   nil,    59,     0,     0,     0,     0,
                +    59,    59,    59,   nil,   nil,    59,     5,     5,     5,     5,
                +     5,     5,     5,     5,     5,     5,   nil,     5,     5,     5,
                +   nil,     5,   nil,     5,     5,     5,     5,     5,     6,     6,
                +     6,     6,     6,     6,     6,     6,     6,     6,   nil,     6,
                +     6,     6,   nil,     6,   nil,     6,     6,     6,     6,     6,
                +     7,     7,     7,     7,     7,     7,     7,     7,     7,     7,
                +   nil,     7,     7,     7,   nil,     7,   nil,     7,     7,     7,
                +     7,     7,     8,     8,     8,     8,     8,     8,     8,     8,
                +     8,     8,   nil,     8,     8,     8,   nil,     8,   nil,     8,
                +     8,     8,     8,     8,     9,     9,     9,     9,     9,     9,
                +     9,     9,     9,     9,   nil,     9,     9,     9,   nil,     9,
                +   nil,     9,     9,     9,     9,     9,     0,     0,     0,     0,
                @@ -64,11 +74,0 @@
                -     5,     5,     5,     5,     5,     5,     5,     5,     5,     5,
                -   nil,     5,     5,     5,   nil,     5,   nil,     5,     5,     5,
                -     5,     5,     6,     6,     6,     6,     6,     6,     6,     6,
                -     6,     6,   nil,     6,     6,     6,   nil,     6,   nil,     6,
                -     6,     6,     6,     6,     7,     7,     7,     7,     7,     7,
                -     7,     7,     7,     7,   nil,     7,     7,     7,   nil,     7,
                -   nil,     7,     7,     7,     7,     7,     8,     8,     8,     8,
                -     8,     8,     8,     8,     8,     8,   nil,     8,     8,     8,
                -   nil,     8,   nil,     8,     8,     8,     8,     8,     9,     9,
                -     9,     9,     9,     9,     9,     9,     9,     9,   nil,     9,
                -     9,     9,   nil,     9,   nil,     9,     9,     9,     9,     9,
                @@ -88,2 +88,2 @@
                -    61,    61,    25,    25,    25,    26,    26,    26,    29,    29,
                -    29 ]
                +    61,    61,    29,    29,    29,    25,    25,    25,    26,    26,
                +    26 ]
                @@ -92,3 +92,3 @@
                -    54,    14,   nil,   nil,    76,    98,   120,   142,   164,   186,
                -     4,    12,   nil,   nil,   nil,   nil,   nil,   nil,   nil,   nil,
                -   nil,   nil,   nil,   nil,    26,   315,   318,   208,   230,   321,
                +   164,    26,   nil,   nil,   186,    54,    76,    98,   120,   142,
                +    17,     2,   nil,   nil,   nil,   nil,   nil,   nil,   nil,   nil,
                +   nil,   nil,   nil,   nil,    16,   318,   321,   208,   230,   315,
                @@ -98 +98 @@
                -   nil,   318,     1,    -1,   nil,   nil,   nil ]
                +   nil,   318,    -2,    -3,   nil,   nil,   nil ]
                @@ -110,5 +110,5 @@
                -     1,    33,    27,    25,    26,    34,    35,    36,    37,    38,
                -    42,    32,    39,    41,    46,    63,    62,    64,    54,   nil,
                -   nil,   nil,   nil,   nil,   nil,   nil,    25,    26,    38,   nil,
                -   nil,   nil,   nil,    53,    45,   nil,   nil,   nil,   nil,   nil,
                -    55,    25,    26,   nil,   nil,   nil,    59,   nil,   nil,    57,
                +     1,    33,    64,    32,    25,    34,    35,    36,    37,    38,
                +    54,    26,    39,    41,    27,    42,    46,    63,    62,   nil,
                +   nil,   nil,   nil,   nil,   nil,   nil,    45,    25,    38,   nil,
                +   nil,   nil,   nil,    53,    26,   nil,   nil,   nil,   nil,   nil,
                +    55,    57,    25,   nil,   nil,   nil,    59,   nil,   nil,    26,
                @@ -119,5 +119,5 @@
                -     1,     5,     4,     2,     3,     1,     1,     1,     1,     1,
                -     8,     9,     6,     6,    10,    11,    12,    13,    14,   nil,
                -   nil,   nil,   nil,   nil,   nil,   nil,     2,     3,     1,   nil,
                -   nil,   nil,   nil,     1,     9,   nil,   nil,   nil,   nil,   nil,
                -     1,     2,     3,   nil,   nil,   nil,     5,   nil,   nil,     9,
                +     1,     5,    13,     9,     2,     1,     1,     1,     1,     1,
                +    14,     3,     6,     6,     4,     8,    10,    11,    12,   nil,
                +   nil,   nil,   nil,   nil,   nil,   nil,     9,     2,     1,   nil,
                +   nil,   nil,   nil,     1,     3,   nil,   nil,   nil,   nil,   nil,
                +     1,     9,     2,   nil,   nil,   nil,     5,   nil,   nil,     3,
                @@ -128,2 +128,2 @@
                -   nil,     0,    -1,     0,    -2,    -4,     2,   nil,   -13,     7,
                -   -15,   -44,   -43,   -42,   -22 ]
                +   nil,     0,     0,     7,    10,    -4,     2,   nil,    -8,    -1,
                +   -13,   -42,   -41,   -57,   -30 ]
                @@ -242 +241,0 @@
                -Ractor.make_shareable(Racc_arg) if defined?(Ractor)
                @@ -293 +291,0 @@
                -Ractor.make_shareable(Racc_token_to_s_table) if defined?(Ractor)
        lib/rubocop/ast/processed_source.rb
                --- /tmp/d20251225-11187-l36efh/rubocop-ast-1.46.0/lib/rubocop/ast/processed_source.rb	2025-12-25 03:04:13.682709240 +0000
                +++ /tmp/d20251225-11187-l36efh/rubocop-ast-1.48.0/lib/rubocop/ast/processed_source.rb	2025-12-25 03:04:13.708709562 +0000
                @@ -318 +318,5 @@
                -          when 3.5
                +          when 3.5, 4.0
                +            # TODO: The meaning of the version numbers in `Parser35` (Ruby 3.5) is the same as in
                +            # `Parser40` (Ruby 4.0). Once the next version of Prism 1.6.0 is released,
                +            # `Parser35` should probably be replaced with `Parser40`:
                +            # See: https://github.com/ruby/prism/pull/3709
        lib/rubocop/ast/traversal.rb
                --- /tmp/d20251225-11187-l36efh/rubocop-ast-1.46.0/lib/rubocop/ast/traversal.rb	2025-12-25 03:04:13.683709252 +0000
                +++ /tmp/d20251225-11187-l36efh/rubocop-ast-1.48.0/lib/rubocop/ast/traversal.rb	2025-12-25 03:04:13.709709575 +0000
                @@ -81,0 +82 @@
                +
        lib/rubocop/ast/version.rb
                --- /tmp/d20251225-11187-l36efh/rubocop-ast-1.46.0/lib/rubocop/ast/version.rb	2025-12-25 03:04:13.684709265 +0000
                +++ /tmp/d20251225-11187-l36efh/rubocop-ast-1.48.0/lib/rubocop/ast/version.rb	2025-12-25 03:04:13.710709587 +0000
                @@ -6 +6 @@
                -      STRING = '1.46.0'
                +      STRING = '1.48.0'

@github-actions
Copy link
Contributor

gem compare unicode-display_width 3.1.4 3.2.0

Compared versions: ["3.1.4", "3.2.0"]
  DIFFERENT date:
    3.1.4: 2025-01-13 00:00:00 UTC
    3.2.0: 2025-09-09 00:00:00 UTC
  DIFFERENT description:
    3.1.4: [Unicode 16.0.0] Determines the monospace display width of a string using EastAsianWidth.txt, Unicode general category, Emoji specification, and other data.
    3.2.0: [Unicode 17.0.0] Determines the monospace display width of a string using EastAsianWidth.txt, Unicode general category, Emoji specification, and other data.
  DIFFERENT version:
    3.1.4: 3.1.4
    3.2.0: 3.2.0
  DIFFERENT files:
    3.1.4->3.2.0:
      * Changed:
            CHANGELOG.md +8/-0
            README.md +5/-5
            lib/unicode/display_width/constants.rb +2/-2
            lib/unicode/display_width/emoji_support.rb +5/-2
  DIFFERENT extra_rdoc_files:
    3.1.4->3.2.0:
      * Changed:
            README.md +5/-5
            CHANGELOG.md +8/-0
  DIFFERENT runtime dependencies:
    3.1.4->3.2.0:
      * Updated:
            unicode-emoji from: ["~> 4.0", ">= 4.0.4"] to: ["~> 4.1"]

@github-actions
Copy link
Contributor

gem compare --diff unicode-display_width 3.1.4 3.2.0

Compared versions: ["3.1.4", "3.2.0"]
  DIFFERENT files:
    3.1.4->3.2.0:
      * Changed:
        CHANGELOG.md
                --- /tmp/d20251225-11711-aj1wrr/unicode-display_width-3.1.4/CHANGELOG.md	2025-12-25 03:04:39.977035186 +0000
                +++ /tmp/d20251225-11711-aj1wrr/unicode-display_width-3.2.0/CHANGELOG.md	2025-12-25 03:04:39.980035223 +0000
                @@ -2,0 +3,8 @@
                +## 3.2.0
                +
                +- Unicode 17.0
                +
                +## 3.1.5
                +
                +- Cache Emoji support level for performance reasons #30, patch by @Earlopain:
                +
        README.md
                --- /tmp/d20251225-11711-aj1wrr/unicode-display_width-3.1.4/README.md	2025-12-25 03:04:39.978035199 +0000
                +++ /tmp/d20251225-11711-aj1wrr/unicode-display_width-3.2.0/README.md	2025-12-25 03:04:39.980035223 +0000
                @@ -3 +3 @@
                -Determines the monospace display width of a string in Ruby, which is useful for all kinds of terminal-based applications. The implementation is based on [EastAsianWidth.txt](https://www.unicode.org/Public/UNIDATA/EastAsianWidth.txt), the [Emoji specfication](https://www.unicode.org/reports/tr51/) and other data, 100% in Ruby. It does not rely on the OS vendor ([wcwidth()](https://github.com/janlelis/wcswidth-ruby)) to provide an up-to-date method for measuring string width in terminals.
                +Determines the monospace display width of a string in Ruby, which is useful for all kinds of terminal-based applications. The implementation is based on [EastAsianWidth.txt](https://www.unicode.org/Public/UNIDATA/EastAsianWidth.txt), the [Emoji specfication](https://www.unicode.org/reports/tr51/) and other data, 100% in Ruby. It does not rely on the OS vendor ([wcwidth](https://github.com/janlelis/wcswidth-ruby)) to provide an up-to-date method for measuring string width in terminals.
                @@ -5 +5 @@
                -Unicode version: **16.0.0** (September 2024)
                +Unicode version: **17.0.0** (September 2025)
                @@ -111,2 +111,2 @@
                -Single Emoji character with Skin Tone Modifier            | 2
                -Skin Tone Modifier used in isolation or with invalid base | 2 if Emoji mode is configured to `:rgi` / `:rgi_at`
                +Single Emoji character with Skin Tone Modifier            | 2 unless Emoji mode is `:none` or `vs16`
                +Skin Tone Modifier used in isolation or with invalid base | 2 if Emoji mode is `:rgi` / `:rgi_at`
                @@ -191 +191 @@
                -- Copyright (c) 2011, 2015-2024 Jan Lelis, https://janlelis.com, released under the MIT
                +- Copyright (c) 2011, 2015-2025 Jan Lelis, https://janlelis.com, released under the MIT
        data/display_width.marshal.gz
                Binary files /tmp/d20251225-11711-aj1wrr/unicode-display_width-3.1.4/data/display_width.marshal.gz and /tmp/d20251225-11711-aj1wrr/unicode-display_width-3.2.0/data/display_width.marshal.gz differ
        lib/unicode/display_width/constants.rb
                --- /tmp/d20251225-11711-aj1wrr/unicode-display_width-3.1.4/lib/unicode/display_width/constants.rb	2025-12-25 03:04:39.979035211 +0000
                +++ /tmp/d20251225-11711-aj1wrr/unicode-display_width-3.2.0/lib/unicode/display_width/constants.rb	2025-12-25 03:04:39.982035248 +0000
                @@ -5,2 +5,2 @@
                -    VERSION = "3.1.4"
                -    UNICODE_VERSION = "16.0.0"
                +    VERSION = "3.2.0"
                +    UNICODE_VERSION = "17.0.0"
        lib/unicode/display_width/emoji_support.rb
                --- /tmp/d20251225-11711-aj1wrr/unicode-display_width-3.1.4/lib/unicode/display_width/emoji_support.rb	2025-12-25 03:04:39.979035211 +0000
                +++ /tmp/d20251225-11711-aj1wrr/unicode-display_width-3.2.0/lib/unicode/display_width/emoji_support.rb	2025-12-25 03:04:39.982035248 +0000
                @@ -1,2 +1 @@
                -# require "rbconfig"
                -# RbConfig::CONFIG["host_os"] =~ /mswin|mingw/ # windows
                +# frozen_string_literal: true
                @@ -15,0 +15,4 @@
                +        @recommended ||= _recommended
                +      end
                +
                +      def self._recommended

@github-actions
Copy link
Contributor

gem compare unicode-emoji 4.0.4 4.2.0

Compared versions: ["4.0.4", "4.2.0"]
  DIFFERENT date:
    4.0.4: 2024-11-19 00:00:00 UTC
    4.2.0: 2025-12-17 00:00:00 UTC
  DIFFERENT description:
    4.0.4: [Emoji 16.0] Provides Unicode Emoji data and regexes, incorporating the latest Unicode and Emoji standards. Includes a categorized list of recommended Emoji.
    4.2.0: [Emoji 17.0] Provides Unicode Emoji data and regexes, incorporating the latest Unicode and Emoji standards. Includes a categorized list of recommended Emoji.
  DIFFERENT required_ruby_version:
    4.0.4: >= 2.5, < 4.0
    4.2.0: >= 2.5
  DIFFERENT version:
    4.0.4: 4.0.4
    4.2.0: 4.2.0
  DIFFERENT files:
    4.0.4->4.2.0:
      * Changed:
            CHANGELOG.md +11/-0
            Gemfile +2/-0
            Gemfile.lock +5/-1
            README.md +4/-4
            Rakefile +1/-1
            lib/unicode/emoji/constants.rb +4/-3
            lib/unicode/emoji/generated/regex.rb +1/-1
            lib/unicode/emoji/generated/regex_basic.rb +1/-1
            lib/unicode/emoji/generated/regex_include_mqe.rb +1/-1
            lib/unicode/emoji/generated/regex_include_mqe_uqe.rb +1/-1
            lib/unicode/emoji/generated/regex_include_text.rb +1/-1
            lib/unicode/emoji/generated/regex_picto.rb +1/-1
            lib/unicode/emoji/generated/regex_picto_no_emoji.rb +1/-1
            lib/unicode/emoji/generated/regex_possible.rb +1/-1
            lib/unicode/emoji/generated/regex_prop_emoji.rb +1/-1
            lib/unicode/emoji/generated/regex_prop_presentation.rb +1/-1
            lib/unicode/emoji/generated/regex_text.rb +1/-1
            lib/unicode/emoji/generated/regex_valid.rb +1/-1
            lib/unicode/emoji/generated/regex_valid_include_text.rb +1/-1
            lib/unicode/emoji/generated/regex_well_formed.rb +1/-1
            lib/unicode/emoji/generated/regex_well_formed_include_text.rb +1/-1
            lib/unicode/emoji/generated_native/regex.rb +1/-1
            lib/unicode/emoji/generated_native/regex_include_mqe.rb +1/-1
            lib/unicode/emoji/generated_native/regex_include_mqe_uqe.rb +1/-1
            lib/unicode/emoji/generated_native/regex_include_text.rb +1/-1
            spec/emoji_test_txt_spec.rb +2/-2
            spec/unicode_emoji_spec.rb +7/-2
            unicode-emoji.gemspec +1/-1
  DIFFERENT test_files:
    4.0.4->4.2.0:
      * Changed:
            spec/emoji_test_txt_spec.rb +2/-2
            spec/unicode_emoji_spec.rb +7/-2
  DIFFERENT Gemfile dependencies
    4.0.4->4.2.0:
      * Added:
            mutex_m [">= 0"] (runtime)
            ostruct [">= 0"] (runtime)

@github-actions
Copy link
Contributor

gem compare --diff unicode-emoji 4.0.4 4.2.0

Diff too large (918756 chars)

@dependabot dependabot bot force-pushed the dependabot/bundler/rubocop-1.82.1 branch 8 times, most recently from f642882 to 1c63d73 Compare January 4, 2026 12:32
@dependabot dependabot bot force-pushed the dependabot/bundler/rubocop-1.82.1 branch 7 times, most recently from 0e718f6 to 889a711 Compare January 6, 2026 12:11
Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.79.2 to 1.82.1.
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.79.2...v1.82.1)

---
updated-dependencies:
- dependency-name: rubocop
  dependency-version: 1.82.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/bundler/rubocop-1.82.1 branch from 889a711 to e1675e4 Compare January 6, 2026 14:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies ruby Pull requests that update Ruby code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant