Skip to content

Bump rubocop from 1.79.2 to 1.84.2#884

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/bundler/rubocop-1.84.2
Closed

Bump rubocop from 1.79.2 to 1.84.2#884
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/bundler/rubocop-1.84.2

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Feb 13, 2026

Bumps rubocop from 1.79.2 to 1.84.2.

Release notes

Sourced from rubocop's releases.

RuboCop v1.84.2

Bug fixes

  • #14854: Fix a clobbering error in Style/BlockDelimiters when autocorrecting nested multi-line blocks with adjacent curly braces. (@​koic)
  • #14837: Fix an error for Style/IfUnlessModifier when the first value uses a normal if and the others use modifier if. (@​koic)
  • #14858: Fix an infinite loop error in Layout/FirstArgumentIndentation when first arguments are over-indented in nested method calls. (@​koic)
  • #14843: Fix an error in Layout/MultilineMethodCallIndentation when a multiline method call follows a hash access. (@​koic)
  • #14859: Fix an error in Layout/MultilineMethodCallIndentation when a multiline method call includes a keyword argument whose value is a method call with a block. (@​koic)
  • #14839: Fix a false positive for Layout/EmptyLinesAfterModuleInclusion when include is nested inside an array. (@​eugeneius)
  • #7436: Fix Style/FormatStringToken to not autocorrect strings outside of format method context in aggressive mode. (@​ydakuka)
  • #14841: Fix false negatives in Style/HashAsLastArrayItem when an array contains only a single hash element. (@​koic)
  • #14865: Fix false negatives in Style/MethodDefParentheses when using splat or forwarding arguments without parentheses. (@​koic)
  • #14833: Fix false positive for Layout/MultilineMethodCallIndentation when a multi-dot method chain is inside a hash pair value. (@​ydakuka)
  • #14847: Fix false positive for Layout/MultilineMethodCallIndentation when a method is chained after a single-line block. (@​ydakuka)
  • #14867: Fix Offense#highlighted_area for PseudoSourceRange locations. (@​rafaelfranca)
  • #14861: Fix an error in Style/IfUnlessModifier when the first value uses a normal if and the others use ternary operator. (@​koic)
  • #14816: Use toplevel cache configs for remote configuration files. (@​nekketsuuu)

RuboCop v1.84.1

Bug fixes

  • #14803: Fix an error for Layout/IndentationWidth cop. (@​viralpraxis)
  • #14806: Fix an error in Style/NegativeArrayIndex when using self as array with implicit self receiver. (@​koic)
  • #14813: Fix opt-in cop comments taking precedence over configuration file exclude patterns. (@​afrase)
  • #14819: Fix incorrect autocorrect for Style/GuardClause when using heredoc as an argument of method call in raise in else branch. (@​koic)
  • #14805: Bring back the original indentation from before version 1.84.0. (@​Magikdidi24)
  • #12754: Fix an infinite loop for Style/IfUnlessModifier when multiple if/unless statements share the same line in arrays, method arguments, or hash values. (@​ydakuka)
  • #14817: Fix an infinite loop between Layout/FirstArgumentIndentation and Layout/LineLength when correcting method chains. (@​ydakuka)
  • #11513: Fix Layout/MultilineMethodCallIndentation to properly handle method chains inside hash pair values. (@​ydakuka)
  • #14814: Fix push/pop directives to properly handle nested scopes and state restoration. (@​Magikdidi24)

Changes

  • #14823: Add the built-in infinite? method to the allowlists for Naming/PredicateMethod, Style/IfWithBooleanLiteralBranches, and Style/RedundantCondition, in addition to the existing nonzero?. (@​koic)
  • #14735: Remove deprecated InjectDefaults handling. (@​afurm)

RuboCop v1.84.0

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.84.2 (2026-02-12)

Bug fixes

  • #14854: Fix a clobbering error in Style/BlockDelimiters when autocorrecting nested multi-line blocks with adjacent curly braces. ([@​koic][])
  • #14837: Fix an error for Style/IfUnlessModifier when the first value uses a normal if and the others use modifier if. ([@​koic][])
  • #14858: Fix an infinite loop error in Layout/FirstArgumentIndentation when first arguments are over-indented in nested method calls. ([@​koic][])
  • #14843: Fix an error in Layout/MultilineMethodCallIndentation when a multiline method call follows a hash access. ([@​koic][])
  • #14859: Fix an error in Layout/MultilineMethodCallIndentation when a multiline method call includes a keyword argument whose value is a method call with a block. ([@​koic][])
  • #14839: Fix a false positive for Layout/EmptyLinesAfterModuleInclusion when include is nested inside an array. ([@​eugeneius][])
  • #7436: Fix Style/FormatStringToken to not autocorrect strings outside of format method context in aggressive mode. ([@​ydakuka][])
  • #14841: Fix false negatives in Style/HashAsLastArrayItem when an array contains only a single hash element. ([@​koic][])
  • #14865: Fix false negatives in Style/MethodDefParentheses when using splat or forwarding arguments without parentheses. ([@​koic][])
  • #14833: Fix false positive for Layout/MultilineMethodCallIndentation when a multi-dot method chain is inside a hash pair value. ([@​ydakuka][])
  • #14847: Fix false positive for Layout/MultilineMethodCallIndentation when a method is chained after a single-line block. ([@​ydakuka][])
  • #14867: Fix Offense#highlighted_area for PseudoSourceRange locations. ([@​rafaelfranca][])
  • #14861: Fix an error in Style/IfUnlessModifier when the first value uses a normal if and the others use ternary operator. ([@​koic][])
  • #14816: Use toplevel cache configs for remote configuration files. ([@​nekketsuuu][])

1.84.1 (2026-02-02)

Bug fixes

  • #14803: Fix an error for Layout/IndentationWidth cop. ([@​viralpraxis][])
  • #14806: Fix an error in Style/NegativeArrayIndex when using self as array with implicit self receiver. ([@​koic][])
  • #14813: Fix opt-in cop comments taking precedence over configuration file exclude patterns. ([@​afrase][])
  • #14819: Fix incorrect autocorrect for Style/GuardClause when using heredoc as an argument of method call in raise in else branch. ([@​koic][])
  • #14805: Bring back the original indentation from before version 1.84.0. ([@​Magikdidi24][])
  • #12754: Fix an infinite loop for Style/IfUnlessModifier when multiple if/unless statements share the same line in arrays, method arguments, or hash values. ([@​ydakuka][])
  • #14817: Fix an infinite loop between Layout/FirstArgumentIndentation and Layout/LineLength when correcting method chains. ([@​ydakuka][])
  • #11513: Fix Layout/MultilineMethodCallIndentation to properly handle method chains inside hash pair values. ([@​ydakuka][])
  • #14814: Fix push/pop directives to properly handle nested scopes and state restoration. ([@​Magikdidi24][])

Changes

  • #14823: Add the built-in infinite? method to the allowlists for Naming/PredicateMethod, Style/IfWithBooleanLiteralBranches, and Style/RedundantCondition, in addition to the existing nonzero?. ([@​koic][])
  • #14735: Remove deprecated InjectDefaults handling. ([@​afurm][])

1.84.0 (2026-01-27)

New features

  • #14516: Add AllowImplicitArrayLiterals to Layout/FirstArrayElementLineBreak. ([@​koic][])
  • #14750: Add new Style/ReverseFind cop. ([@​koic][])
  • #12343: Add new Style/EmptyClassDefinition cop to enforce consistent style for empty class definitions. The cop can enforce either a two-line class definition or Class.new for classes with no body. ([@​ydakuka][])
  • #14769: Add new Style/HashLookupMethod cop to enforce Hash#[] vs Hash#fetch preference. ([@​sferik][])
  • #12051: Add new Style/NegativeArrayIndex cop to enforce using negative array indices instead of calculating array length minus a value. The cop handles both simple index patterns and range patterns, and recognizes preserving methods and their combinations. ([@​ydakuka][])
  • #14633: Make a new system to handle push and pop locally. ([@​Magikdidi24][])
  • #14722: Support TargetRubyVersion 4.1 (experimental). ([@​koic][])

... (truncated)

Commits
  • b210a6e Cut 1.84.2
  • b2e355b Update Changelog
  • c7a3c5e [Fix rubocop#7436] Fix Style/FormatStringToken to not autocorrect strings o...
  • 87b0ca4 [Fix rubocop#14847] Fix false positive for `Layout/MultilineMethodCallIndenta...
  • 429b640 [Fix rubocop#14833] Fix false positive for `Layout/MultilineMethodCallIndenta...
  • d1bf379 [Fix #14841] Fix false negatives in Style/HashAsLastArrayItem
  • a1157d2 [Fix #14816] Use toplevel cache configs for remote configuration files
  • 7849c22 Update changelog/fix_offense_highlighted_area_for_pseudo_source_range_locatio...
  • 1f8e439 Fix Offense#highlighted_area for PseudoSourceRange locations
  • 99422a0 [Fix #14858] Fix an error in Layout/FirstArgumentIndentation
  • 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 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 Feb 13, 2026
4 similar comments
@github-actions
Copy link
Copy Markdown
Contributor

gem compare json 2.13.2 2.18.1

Compared versions: ["2.13.2", "2.18.1"]
  DIFFERENT date:
    2.13.2: 2025-07-28 00:00:00 UTC
    2.18.1: 1980-01-02 00:00:00 UTC
  DIFFERENT require_paths:
    2.13.2: ["/opt/hostedtoolcache/Ruby/4.0.1/x64/lib/ruby/gems/4.0.0/extensions/x86_64-linux/4.0.0/json-2.13.2", "lib"]
    2.18.1: ["/opt/hostedtoolcache/Ruby/4.0.1/x64/lib/ruby/gems/4.0.0/extensions/x86_64-linux/4.0.0/json-2.18.1", "lib"]
  DIFFERENT rubygems_version:
    2.13.2: 3.6.2
    2.18.1: 4.1.0.dev
  DIFFERENT version:
    2.13.2: 2.13.2
    2.18.1: 2.18.1
  DIFFERENT files:
    2.13.2->2.18.1:
      * Added:
            ext/json/ext/json.h +101/-0
            ext/json/ext/vendor/ryu.h +819/-0
            lib/json/add/string.rb +35/-0
      * Changed:
            CHANGES.md +81/-8
            LEGAL +12/-0
            README.md +19/-1
            ext/json/ext/fbuffer/fbuffer.h +35/-56
            ext/json/ext/generator/extconf.rb +1/-1
            ext/json/ext/generator/generator.c +326/-264
            ext/json/ext/parser/extconf.rb +2/-1
            ext/json/ext/parser/parser.c +565/-445
            ext/json/ext/simd/simd.h +42/-12
            ext/json/ext/vendor/fpconv.c +13/-12
            lib/json.rb +44/-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.1:
      * Changed:
            README.md +19/-1

4 similar comments
@github-actions
Copy link
Copy Markdown
Contributor

gem compare json 2.13.2 2.18.1

Compared versions: ["2.13.2", "2.18.1"]
  DIFFERENT date:
    2.13.2: 2025-07-28 00:00:00 UTC
    2.18.1: 1980-01-02 00:00:00 UTC
  DIFFERENT require_paths:
    2.13.2: ["/opt/hostedtoolcache/Ruby/4.0.1/x64/lib/ruby/gems/4.0.0/extensions/x86_64-linux/4.0.0/json-2.13.2", "lib"]
    2.18.1: ["/opt/hostedtoolcache/Ruby/4.0.1/x64/lib/ruby/gems/4.0.0/extensions/x86_64-linux/4.0.0/json-2.18.1", "lib"]
  DIFFERENT rubygems_version:
    2.13.2: 3.6.2
    2.18.1: 4.1.0.dev
  DIFFERENT version:
    2.13.2: 2.13.2
    2.18.1: 2.18.1
  DIFFERENT files:
    2.13.2->2.18.1:
      * Added:
            ext/json/ext/json.h +101/-0
            ext/json/ext/vendor/ryu.h +819/-0
            lib/json/add/string.rb +35/-0
      * Changed:
            CHANGES.md +81/-8
            LEGAL +12/-0
            README.md +19/-1
            ext/json/ext/fbuffer/fbuffer.h +35/-56
            ext/json/ext/generator/extconf.rb +1/-1
            ext/json/ext/generator/generator.c +326/-264
            ext/json/ext/parser/extconf.rb +2/-1
            ext/json/ext/parser/parser.c +565/-445
            ext/json/ext/simd/simd.h +42/-12
            ext/json/ext/vendor/fpconv.c +13/-12
            lib/json.rb +44/-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.1:
      * Changed:
            README.md +19/-1

@github-actions
Copy link
Copy Markdown
Contributor

gem compare json 2.13.2 2.18.1

Compared versions: ["2.13.2", "2.18.1"]
  DIFFERENT date:
    2.13.2: 2025-07-28 00:00:00 UTC
    2.18.1: 1980-01-02 00:00:00 UTC
  DIFFERENT require_paths:
    2.13.2: ["/opt/hostedtoolcache/Ruby/4.0.1/x64/lib/ruby/gems/4.0.0/extensions/x86_64-linux/4.0.0/json-2.13.2", "lib"]
    2.18.1: ["/opt/hostedtoolcache/Ruby/4.0.1/x64/lib/ruby/gems/4.0.0/extensions/x86_64-linux/4.0.0/json-2.18.1", "lib"]
  DIFFERENT rubygems_version:
    2.13.2: 3.6.2
    2.18.1: 4.1.0.dev
  DIFFERENT version:
    2.13.2: 2.13.2
    2.18.1: 2.18.1
  DIFFERENT files:
    2.13.2->2.18.1:
      * Added:
            ext/json/ext/json.h +101/-0
            ext/json/ext/vendor/ryu.h +819/-0
            lib/json/add/string.rb +35/-0
      * Changed:
            CHANGES.md +81/-8
            LEGAL +12/-0
            README.md +19/-1
            ext/json/ext/fbuffer/fbuffer.h +35/-56
            ext/json/ext/generator/extconf.rb +1/-1
            ext/json/ext/generator/generator.c +326/-264
            ext/json/ext/parser/extconf.rb +2/-1
            ext/json/ext/parser/parser.c +565/-445
            ext/json/ext/simd/simd.h +42/-12
            ext/json/ext/vendor/fpconv.c +13/-12
            lib/json.rb +44/-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.1:
      * Changed:
            README.md +19/-1

@github-actions
Copy link
Copy Markdown
Contributor

gem compare json 2.13.2 2.18.1

Compared versions: ["2.13.2", "2.18.1"]
  DIFFERENT date:
    2.13.2: 2025-07-28 00:00:00 UTC
    2.18.1: 1980-01-02 00:00:00 UTC
  DIFFERENT require_paths:
    2.13.2: ["/opt/hostedtoolcache/Ruby/4.0.1/x64/lib/ruby/gems/4.0.0/extensions/x86_64-linux/4.0.0/json-2.13.2", "lib"]
    2.18.1: ["/opt/hostedtoolcache/Ruby/4.0.1/x64/lib/ruby/gems/4.0.0/extensions/x86_64-linux/4.0.0/json-2.18.1", "lib"]
  DIFFERENT rubygems_version:
    2.13.2: 3.6.2
    2.18.1: 4.1.0.dev
  DIFFERENT version:
    2.13.2: 2.13.2
    2.18.1: 2.18.1
  DIFFERENT files:
    2.13.2->2.18.1:
      * Added:
            ext/json/ext/json.h +101/-0
            ext/json/ext/vendor/ryu.h +819/-0
            lib/json/add/string.rb +35/-0
      * Changed:
            CHANGES.md +81/-8
            LEGAL +12/-0
            README.md +19/-1
            ext/json/ext/fbuffer/fbuffer.h +35/-56
            ext/json/ext/generator/extconf.rb +1/-1
            ext/json/ext/generator/generator.c +326/-264
            ext/json/ext/parser/extconf.rb +2/-1
            ext/json/ext/parser/parser.c +565/-445
            ext/json/ext/simd/simd.h +42/-12
            ext/json/ext/vendor/fpconv.c +13/-12
            lib/json.rb +44/-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.1:
      * Changed:
            README.md +19/-1

@github-actions
Copy link
Copy Markdown
Contributor

gem compare json 2.13.2 2.18.1

Compared versions: ["2.13.2", "2.18.1"]
  DIFFERENT date:
    2.13.2: 2025-07-28 00:00:00 UTC
    2.18.1: 1980-01-02 00:00:00 UTC
  DIFFERENT require_paths:
    2.13.2: ["/opt/hostedtoolcache/Ruby/4.0.1/x64/lib/ruby/gems/4.0.0/extensions/x86_64-linux/4.0.0/json-2.13.2", "lib"]
    2.18.1: ["/opt/hostedtoolcache/Ruby/4.0.1/x64/lib/ruby/gems/4.0.0/extensions/x86_64-linux/4.0.0/json-2.18.1", "lib"]
  DIFFERENT rubygems_version:
    2.13.2: 3.6.2
    2.18.1: 4.1.0.dev
  DIFFERENT version:
    2.13.2: 2.13.2
    2.18.1: 2.18.1
  DIFFERENT files:
    2.13.2->2.18.1:
      * Added:
            ext/json/ext/json.h +101/-0
            ext/json/ext/vendor/ryu.h +819/-0
            lib/json/add/string.rb +35/-0
      * Changed:
            CHANGES.md +81/-8
            LEGAL +12/-0
            README.md +19/-1
            ext/json/ext/fbuffer/fbuffer.h +35/-56
            ext/json/ext/generator/extconf.rb +1/-1
            ext/json/ext/generator/generator.c +326/-264
            ext/json/ext/parser/extconf.rb +2/-1
            ext/json/ext/parser/parser.c +565/-445
            ext/json/ext/simd/simd.h +42/-12
            ext/json/ext/vendor/fpconv.c +13/-12
            lib/json.rb +44/-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.1:
      * Changed:
            README.md +19/-1

@github-actions
Copy link
Copy Markdown
Contributor

gem compare --diff json 2.13.2 2.18.1

Diff too large (218358 chars)

4 similar comments
@github-actions
Copy link
Copy Markdown
Contributor

gem compare --diff json 2.13.2 2.18.1

Diff too large (218358 chars)

@github-actions
Copy link
Copy Markdown
Contributor

gem compare --diff json 2.13.2 2.18.1

Diff too large (218358 chars)

@github-actions
Copy link
Copy Markdown
Contributor

gem compare --diff json 2.13.2 2.18.1

Diff too large (218358 chars)

@github-actions
Copy link
Copy Markdown
Contributor

gem compare --diff json 2.13.2 2.18.1

Diff too large (218358 chars)

@github-actions
Copy link
Copy Markdown
Contributor

gem compare parser 3.3.9.0 3.3.10.1

Compared versions: ["3.3.9.0", "3.3.10.1"]
  DIFFERENT date:
    3.3.9.0: 2025-07-25 00:00:00 UTC
    3.3.10.1: 2026-01-14 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.1: {"bug_tracker_uri" => "https://github.com/whitequark/parser/issues", "changelog_uri" => "https://github.com/whitequark/parser/blob/v3.3.10.1/CHANGELOG.md", "documentation_uri" => "https://www.rubydoc.info/gems/parser/3.3.10.1", "source_code_uri" => "https://github.com/whitequark/parser/tree/v3.3.10.1"}
  DIFFERENT version:
    3.3.9.0: 3.3.9.0
    3.3.10.1: 3.3.10.1
  DIFFERENT files:
    3.3.9.0->3.3.10.1:
      * Changed:
            lib/parser/current.rb +2/-2
            lib/parser/version.rb +1/-1
            parser.gemspec +1/-1
  DIFFERENT development dependencies:
    3.3.9.0->3.3.10.1:
      * Updated:
            bundler from: [">= 1.15", "< 3.0.0"] to: [">= 1.15"]

2 similar comments
@github-actions
Copy link
Copy Markdown
Contributor

gem compare parser 3.3.9.0 3.3.10.1

Compared versions: ["3.3.9.0", "3.3.10.1"]
  DIFFERENT date:
    3.3.9.0: 2025-07-25 00:00:00 UTC
    3.3.10.1: 2026-01-14 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.1: {"bug_tracker_uri" => "https://github.com/whitequark/parser/issues", "changelog_uri" => "https://github.com/whitequark/parser/blob/v3.3.10.1/CHANGELOG.md", "documentation_uri" => "https://www.rubydoc.info/gems/parser/3.3.10.1", "source_code_uri" => "https://github.com/whitequark/parser/tree/v3.3.10.1"}
  DIFFERENT version:
    3.3.9.0: 3.3.9.0
    3.3.10.1: 3.3.10.1
  DIFFERENT files:
    3.3.9.0->3.3.10.1:
      * Changed:
            lib/parser/current.rb +2/-2
            lib/parser/version.rb +1/-1
            parser.gemspec +1/-1
  DIFFERENT development dependencies:
    3.3.9.0->3.3.10.1:
      * Updated:
            bundler from: [">= 1.15", "< 3.0.0"] to: [">= 1.15"]

@github-actions
Copy link
Copy Markdown
Contributor

gem compare parser 3.3.9.0 3.3.10.1

Compared versions: ["3.3.9.0", "3.3.10.1"]
  DIFFERENT date:
    3.3.9.0: 2025-07-25 00:00:00 UTC
    3.3.10.1: 2026-01-14 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.1: {"bug_tracker_uri" => "https://github.com/whitequark/parser/issues", "changelog_uri" => "https://github.com/whitequark/parser/blob/v3.3.10.1/CHANGELOG.md", "documentation_uri" => "https://www.rubydoc.info/gems/parser/3.3.10.1", "source_code_uri" => "https://github.com/whitequark/parser/tree/v3.3.10.1"}
  DIFFERENT version:
    3.3.9.0: 3.3.9.0
    3.3.10.1: 3.3.10.1
  DIFFERENT files:
    3.3.9.0->3.3.10.1:
      * Changed:
            lib/parser/current.rb +2/-2
            lib/parser/version.rb +1/-1
            parser.gemspec +1/-1
  DIFFERENT development dependencies:
    3.3.9.0->3.3.10.1:
      * Updated:
            bundler from: [">= 1.15", "< 3.0.0"] to: [">= 1.15"]

@github-actions
Copy link
Copy Markdown
Contributor

gem compare --diff parser 3.3.9.0 3.3.10.1

Compared versions: ["3.3.9.0", "3.3.10.1"]
  DIFFERENT files:
    3.3.9.0->3.3.10.1:
      * Changed:
        lib/parser/current.rb
                --- /tmp/d20260213-1019-zqz5dk/parser-3.3.9.0/lib/parser/current.rb	2026-02-13 03:33:29.048833338 +0000
                +++ /tmp/d20260213-1019-zqz5dk/parser-3.3.10.1/lib/parser/current.rb	2026-02-13 03:33:29.151833908 +0000
                @@ -105 +105 @@
                -    current_version = '3.2.9'
                +    current_version = '3.2.10'
                @@ -114 +114 @@
                -    current_version = '3.3.9'
                +    current_version = '3.3.10'
        lib/parser/version.rb
                --- /tmp/d20260213-1019-zqz5dk/parser-3.3.9.0/lib/parser/version.rb	2026-02-13 03:33:29.140833847 +0000
                +++ /tmp/d20260213-1019-zqz5dk/parser-3.3.10.1/lib/parser/version.rb	2026-02-13 03:33:29.236834378 +0000
                @@ -4 +4 @@
                -  VERSION = '3.3.9.0'
                +  VERSION = '3.3.10.1'
        parser.gemspec
                --- /tmp/d20260213-1019-zqz5dk/parser-3.3.9.0/parser.gemspec	2026-02-13 03:33:29.140833847 +0000
                +++ /tmp/d20260213-1019-zqz5dk/parser-3.3.10.1/parser.gemspec	2026-02-13 03:33:29.236834378 +0000
                @@ -32 +32 @@
                -  spec.add_development_dependency 'bundler',   '>= 1.15', '< 3.0.0'
                +  spec.add_development_dependency 'bundler',   '>= 1.15'

@github-actions
Copy link
Copy Markdown
Contributor

gem compare --diff parser 3.3.9.0 3.3.10.1

Compared versions: ["3.3.9.0", "3.3.10.1"]
  DIFFERENT files:
    3.3.9.0->3.3.10.1:
      * Changed:
        lib/parser/current.rb
                --- /tmp/d20260213-1050-i07ari/parser-3.3.9.0/lib/parser/current.rb	2026-02-13 03:33:31.023902105 +0000
                +++ /tmp/d20260213-1050-i07ari/parser-3.3.10.1/lib/parser/current.rb	2026-02-13 03:33:31.121901647 +0000
                @@ -105 +105 @@
                -    current_version = '3.2.9'
                +    current_version = '3.2.10'
                @@ -114 +114 @@
                -    current_version = '3.3.9'
                +    current_version = '3.3.10'
        lib/parser/version.rb
                --- /tmp/d20260213-1050-i07ari/parser-3.3.9.0/lib/parser/version.rb	2026-02-13 03:33:31.111901694 +0000
                +++ /tmp/d20260213-1050-i07ari/parser-3.3.10.1/lib/parser/version.rb	2026-02-13 03:33:31.215901207 +0000
                @@ -4 +4 @@
                -  VERSION = '3.3.9.0'
                +  VERSION = '3.3.10.1'
        parser.gemspec
                --- /tmp/d20260213-1050-i07ari/parser-3.3.9.0/parser.gemspec	2026-02-13 03:33:31.111901694 +0000
                +++ /tmp/d20260213-1050-i07ari/parser-3.3.10.1/parser.gemspec	2026-02-13 03:33:31.215901207 +0000
                @@ -32 +32 @@
                -  spec.add_development_dependency 'bundler',   '>= 1.15', '< 3.0.0'
                +  spec.add_development_dependency 'bundler',   '>= 1.15'

@github-actions
Copy link
Copy Markdown
Contributor

gem compare --diff parser 3.3.9.0 3.3.10.1

Compared versions: ["3.3.9.0", "3.3.10.1"]
  DIFFERENT files:
    3.3.9.0->3.3.10.1:
      * Changed:
        lib/parser/current.rb
                --- /tmp/d20260213-968-7m52me/parser-3.3.9.0/lib/parser/current.rb	2026-02-13 03:33:31.059623675 +0000
                +++ /tmp/d20260213-968-7m52me/parser-3.3.10.1/lib/parser/current.rb	2026-02-13 03:33:31.169623402 +0000
                @@ -105 +105 @@
                -    current_version = '3.2.9'
                +    current_version = '3.2.10'
                @@ -114 +114 @@
                -    current_version = '3.3.9'
                +    current_version = '3.3.10'
        lib/parser/version.rb
                --- /tmp/d20260213-968-7m52me/parser-3.3.9.0/lib/parser/version.rb	2026-02-13 03:33:31.158623429 +0000
                +++ /tmp/d20260213-968-7m52me/parser-3.3.10.1/lib/parser/version.rb	2026-02-13 03:33:31.312623047 +0000
                @@ -4 +4 @@
                -  VERSION = '3.3.9.0'
                +  VERSION = '3.3.10.1'
        parser.gemspec
                --- /tmp/d20260213-968-7m52me/parser-3.3.9.0/parser.gemspec	2026-02-13 03:33:31.158623429 +0000
                +++ /tmp/d20260213-968-7m52me/parser-3.3.10.1/parser.gemspec	2026-02-13 03:33:31.312623047 +0000
                @@ -32 +32 @@
                -  spec.add_development_dependency 'bundler',   '>= 1.15', '< 3.0.0'
                +  spec.add_development_dependency 'bundler',   '>= 1.15'

@github-actions
Copy link
Copy Markdown
Contributor

gem compare parser 3.3.9.0 3.3.10.1

Compared versions: ["3.3.9.0", "3.3.10.1"]
  DIFFERENT date:
    3.3.9.0: 2025-07-25 00:00:00 UTC
    3.3.10.1: 2026-01-14 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.1: {"bug_tracker_uri" => "https://github.com/whitequark/parser/issues", "changelog_uri" => "https://github.com/whitequark/parser/blob/v3.3.10.1/CHANGELOG.md", "documentation_uri" => "https://www.rubydoc.info/gems/parser/3.3.10.1", "source_code_uri" => "https://github.com/whitequark/parser/tree/v3.3.10.1"}
  DIFFERENT version:
    3.3.9.0: 3.3.9.0
    3.3.10.1: 3.3.10.1
  DIFFERENT files:
    3.3.9.0->3.3.10.1:
      * Changed:
            lib/parser/current.rb +2/-2
            lib/parser/version.rb +1/-1
            parser.gemspec +1/-1
  DIFFERENT development dependencies:
    3.3.9.0->3.3.10.1:
      * Updated:
            bundler from: [">= 1.15", "< 3.0.0"] to: [">= 1.15"]

1 similar comment
@github-actions
Copy link
Copy Markdown
Contributor

gem compare parser 3.3.9.0 3.3.10.1

Compared versions: ["3.3.9.0", "3.3.10.1"]
  DIFFERENT date:
    3.3.9.0: 2025-07-25 00:00:00 UTC
    3.3.10.1: 2026-01-14 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.1: {"bug_tracker_uri" => "https://github.com/whitequark/parser/issues", "changelog_uri" => "https://github.com/whitequark/parser/blob/v3.3.10.1/CHANGELOG.md", "documentation_uri" => "https://www.rubydoc.info/gems/parser/3.3.10.1", "source_code_uri" => "https://github.com/whitequark/parser/tree/v3.3.10.1"}
  DIFFERENT version:
    3.3.9.0: 3.3.9.0
    3.3.10.1: 3.3.10.1
  DIFFERENT files:
    3.3.9.0->3.3.10.1:
      * Changed:
            lib/parser/current.rb +2/-2
            lib/parser/version.rb +1/-1
            parser.gemspec +1/-1
  DIFFERENT development dependencies:
    3.3.9.0->3.3.10.1:
      * Updated:
            bundler from: [">= 1.15", "< 3.0.0"] to: [">= 1.15"]

@github-actions
Copy link
Copy Markdown
Contributor

gem compare prism 1.4.0 1.9.0

Compared versions: ["1.4.0", "1.9.0"]
  DIFFERENT date:
    1.4.0: 2025-03-18 00:00:00 UTC
    1.9.0: 1980-01-02 00:00:00 UTC
  DIFFERENT require_paths:
    1.4.0: ["/opt/hostedtoolcache/Ruby/4.0.1/x64/lib/ruby/gems/4.0.0/extensions/x86_64-linux/4.0.0/prism-1.4.0", "lib"]
    1.9.0: ["/opt/hostedtoolcache/Ruby/4.0.1/x64/lib/ruby/gems/4.0.0/extensions/x86_64-linux/4.0.0/prism-1.9.0", "lib"]
  DIFFERENT rubygems_version:
    1.4.0: 3.6.2
    1.9.0: 3.6.9
  DIFFERENT version:
    1.4.0: 1.4.0
    1.9.0: 1.9.0
  DIFFERENT files:
    1.4.0->1.9.0:
      * Deleted:
            lib/prism/translation/parser33.rb
            lib/prism/translation/parser34.rb
            lib/prism/translation/parser35.rb
            rbi/prism/translation/parser33.rbi
            rbi/prism/translation/parser34.rbi
            rbi/prism/translation/parser35.rbi
      * Added:
            lib/prism/polyfill/scan_byte.rb +14/-0
            lib/prism/polyfill/warn.rb +36/-0
            lib/prism/translation/parser_current.rb +26/-0
            lib/prism/translation/parser_versions.rb +36/-0
            lib/prism/translation/ripper/filter.rb +53/-0
            lib/prism/translation/ripper/lexer.rb +135/-0
            rbi/prism/translation/parser_versions.rbi +23/-0
            sig/prism/parse_result/comments.rbs +38/-0
      * Changed:
            CHANGELOG.md +103/-1
            Makefile +14/-6
            README.md +3/-1
            config.yml +298/-45
            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 +4/-25
            docs/ripper_translation.md +9/-18
            docs/ruby_api.md +1/-0
            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 +364/-74
            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 +23/-14
            lib/prism/compiler.rb +457/-152
            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 +138/-154
            lib/prism/mutation_compiler.rb +3/-0
            lib/prism/node.rb +1690/-369
            lib/prism/node_ext.rb +4/-1
            lib/prism/pack.rb +2/-0
            lib/prism/parse_result.rb +12/-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 +7/-3
            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/ripper.rb +103/-41
            lib/prism/translation/ripper/sexp.rb +1/-0
            lib/prism/translation/ruby_parser.rb +341/-23
            lib/prism/visitor.rb +458/-153
            prism.gemspec +9/-7
            rbi/prism.rbi +0/-3
            rbi/prism/dsl.rbi +6/-6
            rbi/prism/node.rbi +45/-17
            sig/prism.rbs +58/-40
            sig/prism/dispatcher.rbs +3/-0
            sig/prism/dsl.rbs +5/-5
            sig/prism/node.rbs +466/-38
            sig/prism/node_ext.rbs +84/-17
            sig/prism/parse_result.rbs +5/-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 +1522/-2027
            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

1 similar comment
@github-actions
Copy link
Copy Markdown
Contributor

gem compare prism 1.4.0 1.9.0

Compared versions: ["1.4.0", "1.9.0"]
  DIFFERENT date:
    1.4.0: 2025-03-18 00:00:00 UTC
    1.9.0: 1980-01-02 00:00:00 UTC
  DIFFERENT require_paths:
    1.4.0: ["/opt/hostedtoolcache/Ruby/4.0.1/x64/lib/ruby/gems/4.0.0/extensions/x86_64-linux/4.0.0/prism-1.4.0", "lib"]
    1.9.0: ["/opt/hostedtoolcache/Ruby/4.0.1/x64/lib/ruby/gems/4.0.0/extensions/x86_64-linux/4.0.0/prism-1.9.0", "lib"]
  DIFFERENT rubygems_version:
    1.4.0: 3.6.2
    1.9.0: 3.6.9
  DIFFERENT version:
    1.4.0: 1.4.0
    1.9.0: 1.9.0
  DIFFERENT files:
    1.4.0->1.9.0:
      * Deleted:
            lib/prism/translation/parser33.rb
            lib/prism/translation/parser34.rb
            lib/prism/translation/parser35.rb
            rbi/prism/translation/parser33.rbi
            rbi/prism/translation/parser34.rbi
            rbi/prism/translation/parser35.rbi
      * Added:
            lib/prism/polyfill/scan_byte.rb +14/-0
            lib/prism/polyfill/warn.rb +36/-0
            lib/prism/translation/parser_current.rb +26/-0
            lib/prism/translation/parser_versions.rb +36/-0
            lib/prism/translation/ripper/filter.rb +53/-0
            lib/prism/translation/ripper/lexer.rb +135/-0
            rbi/prism/translation/parser_versions.rbi +23/-0
            sig/prism/parse_result/comments.rbs +38/-0
      * Changed:
            CHANGELOG.md +103/-1
            Makefile +14/-6
            README.md +3/-1
            config.yml +298/-45
            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 +4/-25
            docs/ripper_translation.md +9/-18
            docs/ruby_api.md +1/-0
            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 +364/-74
            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 +23/-14
            lib/prism/compiler.rb +457/-152
            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 +138/-154
            lib/prism/mutation_compiler.rb +3/-0
            lib/prism/node.rb +1690/-369
            lib/prism/node_ext.rb +4/-1
            lib/prism/pack.rb +2/-0
            lib/prism/parse_result.rb +12/-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 +7/-3
            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/ripper.rb +103/-41
            lib/prism/translation/ripper/sexp.rb +1/-0
            lib/prism/translation/ruby_parser.rb +341/-23
            lib/prism/visitor.rb +458/-153
            prism.gemspec +9/-7
            rbi/prism.rbi +0/-3
            rbi/prism/dsl.rbi +6/-6
            rbi/prism/node.rbi +45/-17
            sig/prism.rbs +58/-40
            sig/prism/dispatcher.rbs +3/-0
            sig/prism/dsl.rbs +5/-5
            sig/prism/node.rbs +466/-38
            sig/prism/node_ext.rbs +84/-17
            sig/prism/parse_result.rbs +5/-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 +1522/-2027
            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
Copy Markdown
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"]

1 similar comment
@github-actions
Copy link
Copy Markdown
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
Copy Markdown
Contributor

gem compare rubocop-ast 1.46.0 1.49.0

Compared versions: ["1.46.0", "1.49.0"]
  DIFFERENT date:
    1.46.0: 2025-07-16 00:00:00 UTC
    1.49.0: 2025-12-28 00:00:00 UTC
  DIFFERENT rubygems_version:
    1.46.0: 3.5.11
    1.49.0: 3.5.22
  DIFFERENT version:
    1.46.0: 1.46.0
    1.49.0: 1.49.0
  DIFFERENT files:
    1.46.0->1.49.0:
      * Changed:
            README.md +0/-2
            lib/rubocop/ast/node.rb +15/-0
            lib/rubocop/ast/node/mixin/method_dispatch_node.rb +1/-1
            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 +4/-5
            lib/rubocop/ast/traversal.rb +1/-0
            lib/rubocop/ast/version.rb +1/-1
  DIFFERENT extra_rdoc_files:
    1.46.0->1.49.0:
      * Changed:
            README.md +0/-2
  DIFFERENT runtime dependencies:
    1.46.0->1.49.0:
      * Updated:
            prism from: ["~> 1.4"] to: ["~> 1.7"]

@github-actions
Copy link
Copy Markdown
Contributor

gem compare --diff rubocop-ast 1.46.0 1.49.0

Compared versions: ["1.46.0", "1.49.0"]
  DIFFERENT files:
    1.46.0->1.49.0:
      * Changed:
        README.md
                --- /tmp/d20260213-11141-d4juyx/rubocop-ast-1.46.0/README.md	2026-02-13 03:35:44.771162249 +0000
                +++ /tmp/d20260213-11141-d4juyx/rubocop-ast-1.49.0/README.md	2026-02-13 03:35:44.790162530 +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/d20260213-11141-d4juyx/rubocop-ast-1.46.0/lib/rubocop/ast/node.rb	2026-02-13 03:35:44.773162279 +0000
                +++ /tmp/d20260213-11141-d4juyx/rubocop-ast-1.49.0/lib/rubocop/ast/node.rb	2026-02-13 03:35:44.792162559 +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/method_dispatch_node.rb
                --- /tmp/d20260213-11141-d4juyx/rubocop-ast-1.46.0/lib/rubocop/ast/node/mixin/method_dispatch_node.rb	2026-02-13 03:35:44.780162382 +0000
                +++ /tmp/d20260213-11141-d4juyx/rubocop-ast-1.49.0/lib/rubocop/ast/node/mixin/method_dispatch_node.rb	2026-02-13 03:35:44.799162663 +0000
                @@ -35 +35 @@
                -        if loc.respond_to? :keyword
                +        if loc?(:keyword)
        lib/rubocop/ast/node/mixin/parameterized_node.rb
                --- /tmp/d20260213-11141-d4juyx/rubocop-ast-1.46.0/lib/rubocop/ast/node/mixin/parameterized_node.rb	2026-02-13 03:35:44.781162397 +0000
                +++ /tmp/d20260213-11141-d4juyx/rubocop-ast-1.49.0/lib/rubocop/ast/node/mixin/parameterized_node.rb	2026-02-13 03:35:44.800162678 +0000
                @@ -67,0 +68 @@
                +
        lib/rubocop/ast/node_pattern.rb
                --- /tmp/d20260213-11141-d4juyx/rubocop-ast-1.46.0/lib/rubocop/ast/node_pattern.rb	2026-02-13 03:35:44.785162456 +0000
                +++ /tmp/d20260213-11141-d4juyx/rubocop-ast-1.49.0/lib/rubocop/ast/node_pattern.rb	2026-02-13 03:35:44.804162737 +0000
                @@ -52,0 +53 @@
                +
        lib/rubocop/ast/node_pattern/compiler.rb
                --- /tmp/d20260213-11141-d4juyx/rubocop-ast-1.46.0/lib/rubocop/ast/node_pattern/compiler.rb	2026-02-13 03:35:44.785162456 +0000
                +++ /tmp/d20260213-11141-d4juyx/rubocop-ast-1.49.0/lib/rubocop/ast/node_pattern/compiler.rb	2026-02-13 03:35:44.804162737 +0000
                @@ -12,0 +13 @@
                +
        lib/rubocop/ast/node_pattern/lexer.rex
                --- /tmp/d20260213-11141-d4juyx/rubocop-ast-1.46.0/lib/rubocop/ast/node_pattern/lexer.rex	2026-02-13 03:35:44.787162485 +0000
                +++ /tmp/d20260213-11141-d4juyx/rubocop-ast-1.49.0/lib/rubocop/ast/node_pattern/lexer.rex	2026-02-13 03:35:44.806162767 +0000
                @@ -24 +24 @@
                -        /"(.+?)"/                 { emit :tSTRING }
                +        /"(.*?)"/                 { emit :tSTRING }
        lib/rubocop/ast/node_pattern/lexer.rex.rb
                --- /tmp/d20260213-11141-d4juyx/rubocop-ast-1.46.0/lib/rubocop/ast/node_pattern/lexer.rex.rb	2026-02-13 03:35:44.787162485 +0000
                +++ /tmp/d20260213-11141-d4juyx/rubocop-ast-1.49.0/lib/rubocop/ast/node_pattern/lexer.rex.rb	2026-02-13 03:35:44.806162767 +0000
                @@ -125 +125 @@
                -          when ss.skip(/"(.+?)"/) then
                +          when ss.skip(/"(.*?)"/) then
        lib/rubocop/ast/node_pattern/parser.racc.rb
                --- /tmp/d20260213-11141-d4juyx/rubocop-ast-1.46.0/lib/rubocop/ast/node_pattern/parser.racc.rb	2026-02-13 03:35:44.788162500 +0000
                +++ /tmp/d20260213-11141-d4juyx/rubocop-ast-1.49.0/lib/rubocop/ast/node_pattern/parser.racc.rb	2026-02-13 03:35:44.807162782 +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/d20260213-11141-d4juyx/rubocop-ast-1.46.0/lib/rubocop/ast/processed_source.rb	2026-02-13 03:35:44.789162515 +0000
                +++ /tmp/d20260213-11141-d4juyx/rubocop-ast-1.49.0/lib/rubocop/ast/processed_source.rb	2026-02-13 03:35:44.807162782 +0000
                @@ -313 +312,0 @@
                -            require 'prism/translation/parser33'
                @@ -316 +314,0 @@
                -            require 'prism/translation/parser34'
                @@ -318,3 +316,4 @@
                -          when 3.5
                -            require 'prism/translation/parser35'
                -            Prism::Translation::Parser35
                +          when 3.5, 4.0
                +            Prism::Translation::Parser40
                +          when 4.1
                +            Prism::Translation::Parser41
        lib/rubocop/ast/traversal.rb
                --- /tmp/d20260213-11141-d4juyx/rubocop-ast-1.46.0/lib/rubocop/ast/traversal.rb	2026-02-13 03:35:44.789162515 +0000
                +++ /tmp/d20260213-11141-d4juyx/rubocop-ast-1.49.0/lib/rubocop/ast/traversal.rb	2026-02-13 03:35:44.808162796 +0000
                @@ -81,0 +82 @@
                +
        lib/rubocop/ast/version.rb
                --- /tmp/d20260213-11141-d4juyx/rubocop-ast-1.46.0/lib/rubocop/ast/version.rb	2026-02-13 03:35:44.790162530 +0000
                +++ /tmp/d20260213-11141-d4juyx/rubocop-ast-1.49.0/lib/rubocop/ast/version.rb	2026-02-13 03:35:44.809162811 +0000
                @@ -6 +6 @@
                -      STRING = '1.46.0'
                +      STRING = '1.49.0'

@github-actions
Copy link
Copy Markdown
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/d20260213-11704-lr48ij/unicode-display_width-3.1.4/CHANGELOG.md	2026-02-13 03:35:45.908388364 +0000
                +++ /tmp/d20260213-11704-lr48ij/unicode-display_width-3.2.0/CHANGELOG.md	2026-02-13 03:35:45.909388355 +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/d20260213-11704-lr48ij/unicode-display_width-3.1.4/README.md	2026-02-13 03:35:45.908388364 +0000
                +++ /tmp/d20260213-11704-lr48ij/unicode-display_width-3.2.0/README.md	2026-02-13 03:35:45.910388346 +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/d20260213-11704-lr48ij/unicode-display_width-3.1.4/data/display_width.marshal.gz and /tmp/d20260213-11704-lr48ij/unicode-display_width-3.2.0/data/display_width.marshal.gz differ
        lib/unicode/display_width/constants.rb
                --- /tmp/d20260213-11704-lr48ij/unicode-display_width-3.1.4/lib/unicode/display_width/constants.rb	2026-02-13 03:35:45.908388364 +0000
                +++ /tmp/d20260213-11704-lr48ij/unicode-display_width-3.2.0/lib/unicode/display_width/constants.rb	2026-02-13 03:35:45.910388346 +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/d20260213-11704-lr48ij/unicode-display_width-3.1.4/lib/unicode/display_width/emoji_support.rb	2026-02-13 03:35:45.909388355 +0000
                +++ /tmp/d20260213-11704-lr48ij/unicode-display_width-3.2.0/lib/unicode/display_width/emoji_support.rb	2026-02-13 03:35:45.910388346 +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
Copy Markdown
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/d20260213-11625-rnq5lp/unicode-display_width-3.1.4/CHANGELOG.md	2026-02-13 03:35:49.934441339 +0000
                +++ /tmp/d20260213-11625-rnq5lp/unicode-display_width-3.2.0/CHANGELOG.md	2026-02-13 03:35:49.936441336 +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/d20260213-11625-rnq5lp/unicode-display_width-3.1.4/README.md	2026-02-13 03:35:49.934441339 +0000
                +++ /tmp/d20260213-11625-rnq5lp/unicode-display_width-3.2.0/README.md	2026-02-13 03:35:49.936441336 +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/d20260213-11625-rnq5lp/unicode-display_width-3.1.4/data/display_width.marshal.gz and /tmp/d20260213-11625-rnq5lp/unicode-display_width-3.2.0/data/display_width.marshal.gz differ
        lib/unicode/display_width/constants.rb
                --- /tmp/d20260213-11625-rnq5lp/unicode-display_width-3.1.4/lib/unicode/display_width/constants.rb	2026-02-13 03:35:49.935441337 +0000
                +++ /tmp/d20260213-11625-rnq5lp/unicode-display_width-3.2.0/lib/unicode/display_width/constants.rb	2026-02-13 03:35:49.937441335 +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/d20260213-11625-rnq5lp/unicode-display_width-3.1.4/lib/unicode/display_width/emoji_support.rb	2026-02-13 03:35:49.935441337 +0000
                +++ /tmp/d20260213-11625-rnq5lp/unicode-display_width-3.2.0/lib/unicode/display_width/emoji_support.rb	2026-02-13 03:35:49.937441335 +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
Copy Markdown
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/d20260213-11679-ix4pnk/unicode-display_width-3.1.4/CHANGELOG.md	2026-02-13 03:35:55.876946353 +0000
                +++ /tmp/d20260213-11679-ix4pnk/unicode-display_width-3.2.0/CHANGELOG.md	2026-02-13 03:35:55.877946358 +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/d20260213-11679-ix4pnk/unicode-display_width-3.1.4/README.md	2026-02-13 03:35:55.876946353 +0000
                +++ /tmp/d20260213-11679-ix4pnk/unicode-display_width-3.2.0/README.md	2026-02-13 03:35:55.878946361 +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/d20260213-11679-ix4pnk/unicode-display_width-3.1.4/data/display_width.marshal.gz and /tmp/d20260213-11679-ix4pnk/unicode-display_width-3.2.0/data/display_width.marshal.gz differ
        lib/unicode/display_width/constants.rb
                --- /tmp/d20260213-11679-ix4pnk/unicode-display_width-3.1.4/lib/unicode/display_width/constants.rb	2026-02-13 03:35:55.877946358 +0000
                +++ /tmp/d20260213-11679-ix4pnk/unicode-display_width-3.2.0/lib/unicode/display_width/constants.rb	2026-02-13 03:35:55.878946361 +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/d20260213-11679-ix4pnk/unicode-display_width-3.1.4/lib/unicode/display_width/emoji_support.rb	2026-02-13 03:35:55.877946358 +0000
                +++ /tmp/d20260213-11679-ix4pnk/unicode-display_width-3.2.0/lib/unicode/display_width/emoji_support.rb	2026-02-13 03:35:55.878946361 +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
Copy Markdown
Contributor

gem compare --diff rubocop-ast 1.46.0 1.49.0

Compared versions: ["1.46.0", "1.49.0"]
  DIFFERENT files:
    1.46.0->1.49.0:
      * Changed:
        README.md
                --- /tmp/d20260213-11154-pk76qz/rubocop-ast-1.46.0/README.md	2026-02-13 03:35:55.612872027 +0000
                +++ /tmp/d20260213-11154-pk76qz/rubocop-ast-1.49.0/README.md	2026-02-13 03:35:55.637871960 +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/d20260213-11154-pk76qz/rubocop-ast-1.46.0/lib/rubocop/ast/node.rb	2026-02-13 03:35:55.614872021 +0000
                +++ /tmp/d20260213-11154-pk76qz/rubocop-ast-1.49.0/lib/rubocop/ast/node.rb	2026-02-13 03:35:55.639871954 +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/method_dispatch_node.rb
                --- /tmp/d20260213-11154-pk76qz/rubocop-ast-1.46.0/lib/rubocop/ast/node/mixin/method_dispatch_node.rb	2026-02-13 03:35:55.624871994 +0000
                +++ /tmp/d20260213-11154-pk76qz/rubocop-ast-1.49.0/lib/rubocop/ast/node/mixin/method_dispatch_node.rb	2026-02-13 03:35:55.647871933 +0000
                @@ -35 +35 @@
                -        if loc.respond_to? :keyword
                +        if loc?(:keyword)
        lib/rubocop/ast/node/mixin/parameterized_node.rb
                --- /tmp/d20260213-11154-pk76qz/rubocop-ast-1.46.0/lib/rubocop/ast/node/mixin/parameterized_node.rb	2026-02-13 03:35:55.624871994 +0000
                +++ /tmp/d20260213-11154-pk76qz/rubocop-ast-1.49.0/lib/rubocop/ast/node/mixin/parameterized_node.rb	2026-02-13 03:35:55.648871930 +0000
                @@ -67,0 +68 @@
                +
        lib/rubocop/ast/node_pattern.rb
                --- /tmp/d20260213-11154-pk76qz/rubocop-ast-1.46.0/lib/rubocop/ast/node_pattern.rb	2026-02-13 03:35:55.629871981 +0000
                +++ /tmp/d20260213-11154-pk76qz/rubocop-ast-1.49.0/lib/rubocop/ast/node_pattern.rb	2026-02-13 03:35:55.654871914 +0000
                @@ -52,0 +53 @@
                +
        lib/rubocop/ast/node_pattern/compiler.rb
                --- /tmp/d20260213-11154-pk76qz/rubocop-ast-1.46.0/lib/rubocop/ast/node_pattern/compiler.rb	2026-02-13 03:35:55.630871978 +0000
                +++ /tmp/d20260213-11154-pk76qz/rubocop-ast-1.49.0/lib/rubocop/ast/node_pattern/compiler.rb	2026-02-13 03:35:55.654871914 +0000
                @@ -12,0 +13 @@
                +
        lib/rubocop/ast/node_pattern/lexer.rex
                --- /tmp/d20260213-11154-pk76qz/rubocop-ast-1.46.0/lib/rubocop/ast/node_pattern/lexer.rex	2026-02-13 03:35:55.632871973 +0000
                +++ /tmp/d20260213-11154-pk76qz/rubocop-ast-1.49.0/lib/rubocop/ast/node_pattern/lexer.rex	2026-02-13 03:35:55.656871909 +0000
                @@ -24 +24 @@
                -        /"(.+?)"/                 { emit :tSTRING }
                +        /"(.*?)"/                 { emit :tSTRING }
        lib/rubocop/ast/node_pattern/lexer.rex.rb
                --- /tmp/d20260213-11154-pk76qz/rubocop-ast-1.46.0/lib/rubocop/ast/node_pattern/lexer.rex.rb	2026-02-13 03:35:55.633871970 +0000
                +++ /tmp/d20260213-11154-pk76qz/rubocop-ast-1.49.0/lib/rubocop/ast/node_pattern/lexer.rex.rb	2026-02-13 03:35:55.657871906 +0000
                @@ -125 +125 @@
                -          when ss.skip(/"(.+?)"/) then
                +          when ss.skip(/"(.*?)"/) then
        lib/rubocop/ast/node_pattern/parser.racc.rb
                --- /tmp/d20260213-11154-pk76qz/rubocop-ast-1.46.0/lib/rubocop/ast/node_pattern/parser.racc.rb	2026-02-13 03:35:55.633871970 +0000
                +++ /tmp/d20260213-11154-pk76qz/rubocop-ast-1.49.0/lib/rubocop/ast/node_pattern/parser.racc.rb	2026-02-13 03:35:55.657871906 +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/d20260213-11154-pk76qz/rubocop-ast-1.46.0/lib/rubocop/ast/processed_source.rb	2026-02-13 03:35:55.634871968 +0000
                +++ /tmp/d20260213-11154-pk76qz/rubocop-ast-1.49.0/lib/rubocop/ast/processed_source.rb	2026-02-13 03:35:55.659871901 +0000
                @@ -313 +312,0 @@
                -            require 'prism/translation/parser33'
                @@ -316 +314,0 @@
                -            require 'prism/translation/parser34'
                @@ -318,3 +316,4 @@
                -          when 3.5
                -            require 'prism/translation/parser35'
                -            Prism::Translation::Parser35
                +          when 3.5, 4.0
                +            Prism::Translation::Parser40
                +          when 4.1
                +            Prism::Translation::Parser41
        lib/rubocop/ast/traversal.rb
                --- /tmp/d20260213-11154-pk76qz/rubocop-ast-1.46.0/lib/rubocop/ast/traversal.rb	2026-02-13 03:35:55.635871965 +0000
                +++ /tmp/d20260213-11154-pk76qz/rubocop-ast-1.49.0/lib/rubocop/ast/traversal.rb	2026-02-13 03:35:55.659871901 +0000
                @@ -81,0 +82 @@
                +
        lib/rubocop/ast/version.rb
                --- /tmp/d20260213-11154-pk76qz/rubocop-ast-1.46.0/lib/rubocop/ast/version.rb	2026-02-13 03:35:55.636871962 +0000
                +++ /tmp/d20260213-11154-pk76qz/rubocop-ast-1.49.0/lib/rubocop/ast/version.rb	2026-02-13 03:35:55.660871898 +0000
                @@ -6 +6 @@
                -      STRING = '1.46.0'
                +      STRING = '1.49.0'

@github-actions
Copy link
Copy Markdown
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
Copy Markdown
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
Copy Markdown
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
Copy Markdown
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/d20260213-11668-jxcy7p/unicode-display_width-3.1.4/CHANGELOG.md	2026-02-13 03:36:11.033549161 +0000
                +++ /tmp/d20260213-11668-jxcy7p/unicode-display_width-3.2.0/CHANGELOG.md	2026-02-13 03:36:11.035549191 +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/d20260213-11668-jxcy7p/unicode-display_width-3.1.4/README.md	2026-02-13 03:36:11.034549176 +0000
                +++ /tmp/d20260213-11668-jxcy7p/unicode-display_width-3.2.0/README.md	2026-02-13 03:36:11.035549191 +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/d20260213-11668-jxcy7p/unicode-display_width-3.1.4/data/display_width.marshal.gz and /tmp/d20260213-11668-jxcy7p/unicode-display_width-3.2.0/data/display_width.marshal.gz differ
        lib/unicode/display_width/constants.rb
                --- /tmp/d20260213-11668-jxcy7p/unicode-display_width-3.1.4/lib/unicode/display_width/constants.rb	2026-02-13 03:36:11.034549176 +0000
                +++ /tmp/d20260213-11668-jxcy7p/unicode-display_width-3.2.0/lib/unicode/display_width/constants.rb	2026-02-13 03:36:11.036549206 +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/d20260213-11668-jxcy7p/unicode-display_width-3.1.4/lib/unicode/display_width/emoji_support.rb	2026-02-13 03:36:11.034549176 +0000
                +++ /tmp/d20260213-11668-jxcy7p/unicode-display_width-3.2.0/lib/unicode/display_width/emoji_support.rb	2026-02-13 03:36:11.036549206 +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
Copy Markdown
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
Copy Markdown
Contributor

gem compare --diff unicode-emoji 4.0.4 4.2.0

Diff too large (918756 chars)

@github-actions
Copy link
Copy Markdown
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
Copy Markdown
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/d20260213-11678-ihnu6p/unicode-display_width-3.1.4/CHANGELOG.md	2026-02-13 03:36:19.487817769 +0000
                +++ /tmp/d20260213-11678-ihnu6p/unicode-display_width-3.2.0/CHANGELOG.md	2026-02-13 03:36:19.489817764 +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/d20260213-11678-ihnu6p/unicode-display_width-3.1.4/README.md	2026-02-13 03:36:19.488817767 +0000
                +++ /tmp/d20260213-11678-ihnu6p/unicode-display_width-3.2.0/README.md	2026-02-13 03:36:19.489817764 +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/d20260213-11678-ihnu6p/unicode-display_width-3.1.4/data/display_width.marshal.gz and /tmp/d20260213-11678-ihnu6p/unicode-display_width-3.2.0/data/display_width.marshal.gz differ
        lib/unicode/display_width/constants.rb
                --- /tmp/d20260213-11678-ihnu6p/unicode-display_width-3.1.4/lib/unicode/display_width/constants.rb	2026-02-13 03:36:19.488817767 +0000
                +++ /tmp/d20260213-11678-ihnu6p/unicode-display_width-3.2.0/lib/unicode/display_width/constants.rb	2026-02-13 03:36:19.490817762 +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/d20260213-11678-ihnu6p/unicode-display_width-3.1.4/lib/unicode/display_width/emoji_support.rb	2026-02-13 03:36:19.488817767 +0000
                +++ /tmp/d20260213-11678-ihnu6p/unicode-display_width-3.2.0/lib/unicode/display_width/emoji_support.rb	2026-02-13 03:36:19.490817762 +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
Copy Markdown
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
Copy Markdown
Contributor

gem compare --diff unicode-emoji 4.0.4 4.2.0

Diff too large (918756 chars)

2 similar comments
@github-actions
Copy link
Copy Markdown
Contributor

gem compare --diff unicode-emoji 4.0.4 4.2.0

Diff too large (918756 chars)

@github-actions
Copy link
Copy Markdown
Contributor

gem compare --diff unicode-emoji 4.0.4 4.2.0

Diff too large (918756 chars)

@github-actions
Copy link
Copy Markdown
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
Copy Markdown
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.84.2 branch 3 times, most recently from 29e1bb1 to 4aad107 Compare February 14, 2026 00:38
Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.79.2 to 1.84.2.
- [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.84.2)

---
updated-dependencies:
- dependency-name: rubocop
  dependency-version: 1.84.2
  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.84.2 branch from 4aad107 to 074b5b2 Compare February 14, 2026 01:09
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Feb 27, 2026

Superseded by #890.

@dependabot dependabot Bot closed this Feb 27, 2026
@dependabot dependabot Bot deleted the dependabot/bundler/rubocop-1.84.2 branch February 27, 2026 03:32
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.

0 participants