Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps rubocop from 1.79.2 to 1.82.0.

Release notes

Sourced from rubocop's releases.

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)
  • #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)
  • #14661: Make Lint/RedundantRequireStatement aware of pathname when analyzing Ruby 4.0. (@​koic)
  • #14698: Make Lint/UnreachableCode aware of singleton method redefinition. (@​koic)
  • #14677: Make Style/RedundantArgument aware of to_i. (@​koic)
  • #14660: Rename IgnoreCopDirectives to AllowCopDirectives in Layout/LineLength. (@​koic)
  • #14492: Revert #14492, which added support for LSP positionEncoding 'utf-8' and 'utf-32' due to critical performance regression reports. (@​koic)

... (truncated)

Changelog

Sourced from rubocop's changelog.

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][])
  • #14661: Make Lint/RedundantRequireStatement aware of pathname when analyzing Ruby 4.0. ([@​koic][])
  • #14698: Make Lint/UnreachableCode aware of singleton method redefinition. ([@​koic][])
  • #14677: Make Style/RedundantArgument aware of to_i. ([@​koic][])
  • #14660: Rename IgnoreCopDirectives to AllowCopDirectives in Layout/LineLength. ([@​koic][])
  • #14492: Revert #14492, which added support for LSP positionEncoding 'utf-8' and 'utf-32' due to critical performance regression reports. ([@​koic][])

1.81.7 (2025-10-31)

Bug fixes

  • #14597: Fix an infinite loop error for Layout/HashAlignment when EnforcedStyle: with_fixed_indentation is specified for Layout/ArgumentAlignment. ([@​koic][])
  • #14621: Fix an error for Naming/PredicateMethod when using an in pattern with empty parentheses body. ([@​koic][])

... (truncated)

Commits
  • 384aa2b Cut 1.82
  • f8a84fa Update Changelog
  • f8b40bc [Fix #13854 (Old issue)] add push/pop logic for handle local enable/disable
  • 70f76b1 Add new cop Style/ModuleMemberExistenceCheck
  • acbdbda Fix false positives for Layout/EmptyLineAfterGuardClause
  • 9cc142e Fix incorrect Position character value in LSP
  • 5e07aa1 Merge pull request #14712 from moznion/fix_escaped_single_quote
  • 8f5b029 [Fix #14711] Fix broken auto-correction in Style/RedundantRegexpArgument rule
  • bcfdf5f Add some specs for Style/RedundantCondition
  • 2c9071d Merge pull request #14707 from koic/fix_false_negatives_for_lint_no_return_in...
  • 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)

Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.79.2 to 1.82.0.
- [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.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies ruby Pull requests that update Ruby code labels Dec 18, 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 (204763 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/d20251218-2875-hnc57o/parser-3.3.9.0/lib/parser/current.rb	2025-12-18 03:02:23.238260947 +0000
                +++ /tmp/d20251218-2875-hnc57o/parser-3.3.10.0/lib/parser/current.rb	2025-12-18 03:02:23.621264048 +0000
                @@ -114 +114 @@
                -    current_version = '3.3.9'
                +    current_version = '3.3.10'
        lib/parser/version.rb
                --- /tmp/d20251218-2875-hnc57o/parser-3.3.9.0/lib/parser/version.rb	2025-12-18 03:02:23.618264024 +0000
                +++ /tmp/d20251218-2875-hnc57o/parser-3.3.10.0/lib/parser/version.rb	2025-12-18 03:02:23.660264364 +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.6.0

Compared versions: ["1.4.0", "1.6.0"]
  DIFFERENT date:
    1.4.0: 2025-03-18 00:00:00 UTC
    1.6.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.6.0: ["/opt/hostedtoolcache/Ruby/3.4.8/x64/lib/ruby/gems/3.4.0/extensions/x86_64-linux/3.4.0/prism-1.6.0", "lib"]
  DIFFERENT rubygems_version:
    1.4.0: 3.6.2
    1.6.0: 3.6.9
  DIFFERENT version:
    1.4.0: 1.4.0
    1.6.0: 1.6.0
  DIFFERENT files:
    1.4.0->1.6.0:
      * Added:
            lib/prism/polyfill/scan_byte.rb +14/-0
            lib/prism/polyfill/warn.rb +36/-0
            lib/prism/translation/parser_current.rb +24/-0
            sig/prism/parse_result/comments.rbs +38/-0
      * Changed:
            CHANGELOG.md +51/-1
            Makefile +4/-2
            README.md +2/-0
            config.yml +266/-38
            docs/design.md +2/-2
            docs/parser_translation.md +8/-23
            docs/releasing.md +5/-24
            docs/ripper_translation.md +1/-1
            ext/prism/api_node.c +2/-0
            ext/prism/extension.c +25/-3
            ext/prism/extension.h +1/-1
            include/prism.h +39/-14
            include/prism/ast.h +306/-50
            include/prism/diagnostic.h +5/-0
            include/prism/options.h +43/-3
            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 +23/-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 +5/-1
            lib/prism/dsl.rb +3/-0
            lib/prism/ffi.rb +25/-9
            lib/prism/inspect_visitor.rb +3/-0
            lib/prism/lex_compat.rb +1/-0
            lib/prism/mutation_compiler.rb +3/-0
            lib/prism/node.rb +507/-336
            lib/prism/node_ext.rb +4/-1
            lib/prism/pack.rb +2/-0
            lib/prism/parse_result.rb +1/-0
            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 +3/-0
            lib/prism/relocation.rb +1/-0
            lib/prism/serialize.rb +25/-19
            lib/prism/string_query.rb +1/-0
            lib/prism/translation.rb +2/-0
            lib/prism/translation/parser.rb +21/-2
            lib/prism/translation/parser/builder.rb +1/-0
            lib/prism/translation/parser/compiler.rb +47/-25
            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 +1/-0
            lib/prism/translation/ripper.rb +17/-1
            lib/prism/translation/ripper/sexp.rb +1/-0
            lib/prism/translation/ruby_parser.rb +287/-4
            lib/prism/visitor.rb +457/-152
            prism.gemspec +5/-1
            rbi/prism/dsl.rbi +3/-3
            rbi/prism/node.rbi +21/-9
            sig/prism.rbs +4/-0
            sig/prism/dispatcher.rbs +3/-0
            sig/prism/dsl.rbs +3/-3
            sig/prism/node.rbs +444/-30
            sig/prism/node_ext.rbs +84/-17
            sig/prism/parse_result.rbs +4/-0
            sig/prism/reflection.rbs +1/-1
            src/diagnostic.c +9/-1
            src/node.c +2/-0
            src/options.c +2/-2
            src/prettyprint.c +2/-0
            src/prism.c +324/-147
            src/serialize.c +2/-0
            src/token_type.c +36/-34
            src/util/pm_string.c +6/-8

@github-actions
Copy link
Contributor

gem compare --diff prism 1.4.0 1.6.0

Diff too large (367471 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 (128003 chars)

@github-actions
Copy link
Contributor

gem compare rubocop 1.79.2 1.82.0

Compared versions: ["1.79.2", "1.82.0"]
  DIFFERENT date:
    1.79.2: 2025-08-05 00:00:00 UTC
    1.82.0: 2025-12-17 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.0: {"homepage_uri" => "https://rubocop.org/", "changelog_uri" => "https://github.com/rubocop/rubocop/releases/tag/v1.82.0", "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 version:
    1.79.2: 1.79.2
    1.82.0: 1.82.0
  DIFFERENT files:
    1.79.2->1.82.0:
      * 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 +6/-4
            lib/rubocop/cop/correctors/alignment_corrector.rb +8/-7
            lib/rubocop/cop/correctors/for_to_each_corrector.rb +7/-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 +0/-4
            lib/rubocop/cop/layout/indentation_style.rb +1/-1
            lib/rubocop/cop/layout/line_continuation_spacing.rb +1/-1
            lib/rubocop/cop/layout/line_length.rb +16/-5
            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_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_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_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 +0/-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/statement_modifier.rb +0/-6
            lib/rubocop/cop/mixin/trailing_comma.rb +5/-6
            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 +0/-4
            lib/rubocop/cop/style/nil_comparison.rb +9/-7
            lib/rubocop/cop/style/one_line_conditional.rb +17/-9
            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 +1/-1
            lib/rubocop/rspec/shared_contexts.rb +2/-2
            lib/rubocop/rspec/support.rb +1/-1
            lib/rubocop/runner.rb +6/-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.0:
      * Changed:
            README.md +1/-1
  DIFFERENT runtime dependencies:
    1.79.2->1.82.0:
      * 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.0

Diff too large (175807 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/d20251218-12975-rvjhgj/rubocop-ast-1.46.0/README.md	2025-12-18 03:04:10.503056005 +0000
                +++ /tmp/d20251218-12975-rvjhgj/rubocop-ast-1.48.0/README.md	2025-12-18 03:04:10.518056113 +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/d20251218-12975-rvjhgj/rubocop-ast-1.46.0/lib/rubocop/ast/node.rb	2025-12-18 03:04:10.504056013 +0000
                +++ /tmp/d20251218-12975-rvjhgj/rubocop-ast-1.48.0/lib/rubocop/ast/node.rb	2025-12-18 03:04:10.519056121 +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/d20251218-12975-rvjhgj/rubocop-ast-1.46.0/lib/rubocop/ast/node/mixin/parameterized_node.rb	2025-12-18 03:04:10.510056056 +0000
                +++ /tmp/d20251218-12975-rvjhgj/rubocop-ast-1.48.0/lib/rubocop/ast/node/mixin/parameterized_node.rb	2025-12-18 03:04:10.525056164 +0000
                @@ -67,0 +68 @@
                +
        lib/rubocop/ast/node_pattern.rb
                --- /tmp/d20251218-12975-rvjhgj/rubocop-ast-1.46.0/lib/rubocop/ast/node_pattern.rb	2025-12-18 03:04:10.514056085 +0000
                +++ /tmp/d20251218-12975-rvjhgj/rubocop-ast-1.48.0/lib/rubocop/ast/node_pattern.rb	2025-12-18 03:04:10.528056185 +0000
                @@ -52,0 +53 @@
                +
        lib/rubocop/ast/node_pattern/compiler.rb
                --- /tmp/d20251218-12975-rvjhgj/rubocop-ast-1.46.0/lib/rubocop/ast/node_pattern/compiler.rb	2025-12-18 03:04:10.514056085 +0000
                +++ /tmp/d20251218-12975-rvjhgj/rubocop-ast-1.48.0/lib/rubocop/ast/node_pattern/compiler.rb	2025-12-18 03:04:10.528056185 +0000
                @@ -12,0 +13 @@
                +
        lib/rubocop/ast/node_pattern/lexer.rex
                --- /tmp/d20251218-12975-rvjhgj/rubocop-ast-1.46.0/lib/rubocop/ast/node_pattern/lexer.rex	2025-12-18 03:04:10.515056092 +0000
                +++ /tmp/d20251218-12975-rvjhgj/rubocop-ast-1.48.0/lib/rubocop/ast/node_pattern/lexer.rex	2025-12-18 03:04:10.529056192 +0000
                @@ -24 +24 @@
                -        /"(.+?)"/                 { emit :tSTRING }
                +        /"(.*?)"/                 { emit :tSTRING }
        lib/rubocop/ast/node_pattern/lexer.rex.rb
                --- /tmp/d20251218-12975-rvjhgj/rubocop-ast-1.46.0/lib/rubocop/ast/node_pattern/lexer.rex.rb	2025-12-18 03:04:10.515056092 +0000
                +++ /tmp/d20251218-12975-rvjhgj/rubocop-ast-1.48.0/lib/rubocop/ast/node_pattern/lexer.rex.rb	2025-12-18 03:04:10.530056200 +0000
                @@ -125 +125 @@
                -          when ss.skip(/"(.+?)"/) then
                +          when ss.skip(/"(.*?)"/) then
        lib/rubocop/ast/node_pattern/parser.racc.rb
                --- /tmp/d20251218-12975-rvjhgj/rubocop-ast-1.46.0/lib/rubocop/ast/node_pattern/parser.racc.rb	2025-12-18 03:04:10.516056099 +0000
                +++ /tmp/d20251218-12975-rvjhgj/rubocop-ast-1.48.0/lib/rubocop/ast/node_pattern/parser.racc.rb	2025-12-18 03:04:10.530056200 +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/d20251218-12975-rvjhgj/rubocop-ast-1.46.0/lib/rubocop/ast/processed_source.rb	2025-12-18 03:04:10.516056099 +0000
                +++ /tmp/d20251218-12975-rvjhgj/rubocop-ast-1.48.0/lib/rubocop/ast/processed_source.rb	2025-12-18 03:04:10.531056207 +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/d20251218-12975-rvjhgj/rubocop-ast-1.46.0/lib/rubocop/ast/traversal.rb	2025-12-18 03:04:10.517056106 +0000
                +++ /tmp/d20251218-12975-rvjhgj/rubocop-ast-1.48.0/lib/rubocop/ast/traversal.rb	2025-12-18 03:04:10.531056207 +0000
                @@ -81,0 +82 @@
                +
        lib/rubocop/ast/version.rb
                --- /tmp/d20251218-12975-rvjhgj/rubocop-ast-1.46.0/lib/rubocop/ast/version.rb	2025-12-18 03:04:10.517056106 +0000
                +++ /tmp/d20251218-12975-rvjhgj/rubocop-ast-1.48.0/lib/rubocop/ast/version.rb	2025-12-18 03:04:10.532056214 +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/d20251218-13508-r2pxq2/unicode-display_width-3.1.4/CHANGELOG.md	2025-12-18 03:04:53.275380673 +0000
                +++ /tmp/d20251218-13508-r2pxq2/unicode-display_width-3.2.0/CHANGELOG.md	2025-12-18 03:04:53.277380688 +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/d20251218-13508-r2pxq2/unicode-display_width-3.1.4/README.md	2025-12-18 03:04:53.275380673 +0000
                +++ /tmp/d20251218-13508-r2pxq2/unicode-display_width-3.2.0/README.md	2025-12-18 03:04:53.277380688 +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/d20251218-13508-r2pxq2/unicode-display_width-3.1.4/data/display_width.marshal.gz and /tmp/d20251218-13508-r2pxq2/unicode-display_width-3.2.0/data/display_width.marshal.gz differ
        lib/unicode/display_width/constants.rb
                --- /tmp/d20251218-13508-r2pxq2/unicode-display_width-3.1.4/lib/unicode/display_width/constants.rb	2025-12-18 03:04:53.276380681 +0000
                +++ /tmp/d20251218-13508-r2pxq2/unicode-display_width-3.2.0/lib/unicode/display_width/constants.rb	2025-12-18 03:04:53.278380696 +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/d20251218-13508-r2pxq2/unicode-display_width-3.1.4/lib/unicode/display_width/emoji_support.rb	2025-12-18 03:04:53.276380681 +0000
                +++ /tmp/d20251218-13508-r2pxq2/unicode-display_width-3.2.0/lib/unicode/display_width/emoji_support.rb	2025-12-18 03:04:53.278380696 +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 (310257 chars)

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 25, 2025

Superseded by #846.

@dependabot dependabot bot closed this Dec 25, 2025
@dependabot dependabot bot deleted the dependabot/bundler/rubocop-1.82.0 branch December 25, 2025 03:01
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