Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 17, 2025

Bumps the production-dependencies group with 4 updates in the / directory: irb, rake, rspec and rubocop.

Updates irb from 1.15.2 to 1.15.3

Release notes

Sourced from irb's releases.

v1.15.3

What's Changed

✨ Enhancements

🐛 Bug Fixes

📚 Documentation

🛠 Other Changes

New Contributors

Full Changelog: ruby/irb@v1.15.2...v1.15.3

Commits
  • 7ea4489 Bump version to 1.15.3 (#1134)
  • c7e3227 Do not save consecutive duplicate commands to history (#1120)
  • f711800 Use endless range instead of step (#1123)
  • 18d152b Fix UTF-16 autocompletion (#1129)
  • e45bb6b Bump rubygems/release-gem from 1.1.1 to 1.1.2
  • 50db8f8 Fix prompt cache flaky test (#1130)
  • c95ee78 Improve prompt generating performance by caching prompt parts(%m, %M) (#1127)
  • 3893f18 Reset IOGate.set_winch_handler when dancing ruby easter-egg terminates (#1124)
  • d43c3d7 Bump integration test's timeout on CI to 30s (#1122)
  • c4cae48 [DOC] Include document files in the generated gem file (#1098)
  • Additional commits viewable in compare view

Updates rake from 13.3.0 to 13.3.1

Commits
  • f0001c3 v13.3.1
  • a644c80 Merge pull request #483 from luke-gru/fix_test_warnings
  • 2465ea5 silence warnings during execution of rake tasks in Rakefile (ex: rake test)
  • df25fb1 Merge pull request #610 from pvdb/fix_testhelper_require
  • ec12ac9 Merge pull request #635 from nevans/deconstruct_keys-for-nil-keys
  • 4664a69 Merge pull request #666 from ruby/dependabot/github_actions/ruby/setup-ruby-1...
  • 7a0bf15 Bump ruby/setup-ruby from 1.265.0 to 1.266.0
  • b3ed789 Merge pull request #665 from ruby/dependabot/github_actions/ruby/setup-ruby-1...
  • 1e7ef52 Bump ruby/setup-ruby from 1.263.0 to 1.265.0
  • 77225e1 Merge pull request #664 from ruby/dependabot/github_actions/ruby/setup-ruby-1...
  • Additional commits viewable in compare view

Updates rspec from 3.13.1 to 3.13.2

Commits

Updates rubocop from 1.76.1 to 1.81.7

Release notes

Sourced from rubocop's releases.

RuboCop v1.81.7

Bug fixes

  • #14597: Fix an infinite loop error for Layout/HashAlignment when EnforcedStyle: with_fixed_indentation is specified for Layout/ArgumentAlignment. (@​koic)
  • #14621: Fix an error for Naming/PredicateMethod when using an in pattern with empty parentheses body. (@​koic)
  • #14631: Fix an error for Style/SoleNestedConditional when using nested single line if. (@​koic)
  • #14626: Fix false positives in Style/ConstantVisibility when visibility is declared with multiple constants. (@​koic)
  • #14628: Fix false positives for Style/FloatDivision when using Regexp.last_match or nth reference (e.g., $1). (@​koic)
  • #14617: Handle non-specific issues with the Gemfile to allow fallback. (@​Fryguy)
  • #14622: Fix an error for Naming/MethodName when the first argument to alias contains interpolation. (@​earlopain)

RuboCop v1.81.6

Bug fixes

  • #14587: Fix an error for Lint/SelfAssignment when using []= assignment with no arguments. (@​koic)
  • #14572: Fix an error for Style/ArrayIntersect when intersection(other).any? is called without a receiver. (@​koic)
  • #14599: Fix a crash when Style/ConditionalAssignment is configured with assign_inside_conditional and the conditional contains a multi-line regex. (@​martinemde)
  • #14574: Fix false positives for Style/RedundantInterpolation when using a one-line => pattern matching. (@​koic)
  • #14602: Fix false positives for Style/EndlessMethod when heredoc is used in method body. (@​koic)
  • #14594: Fix false positives for Style/EndlessMethod when the endless method would exceed the maximum line length. (@​koic)
  • #14605: Fix false positive for Lint/EmptyInterpolation when interpolation is inside a %W literal. (@​dvandersluis)
  • #14604: Fix Style/RedundantFormat false positive when a interpolated value is given to a specifier with a width or precision. (@​dvandersluis)
  • #14607: Fix Style/RedundantFormat handling control characters like \n. (@​dvandersluis)
  • #14577: Fix an incorrect autocorrect for Style/Semicolon when a method call using hash value omission without parentheses is terminated with a semicolon. (@​koic)
  • #14552: Fix a false positive for Security/JSONLoad when create_additions is explicitly specified. (@​earlopain)

Changes

  • #14566: Enhance Lint::ConstantOverwrittenInRescue cop to detect offenses within fully qualified constants. (@​viralpraxis)
  • #14575: Enhance Lint/ConstantOverwrittenInRescue cop to detect offenses within nested constants. (@​viralpraxis)
  • #14596: Change Lint/ConstantOverwrittenInRescue to detect any constant assignment. (@​viralpraxis)
  • #14568: Make Style/LambdaCall autocorrection contextual. (@​koic)

RuboCop v1.81.1

Bug fixes

  • #14563: Fix incorrect autocorrection for Lint/DeprecatedOpenSSLConstant when Cipher appears twice. (@​koic)

Changes

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.81.7 (2025-10-31)

Bug fixes

  • #14597: Fix an infinite loop error for Layout/HashAlignment when EnforcedStyle: with_fixed_indentation is specified for Layout/ArgumentAlignment. ([@​koic][])
  • #14621: Fix an error for Naming/PredicateMethod when using an in pattern with empty parentheses body. ([@​koic][])
  • #14631: Fix an error for Style/SoleNestedConditional when using nested single line if. ([@​koic][])
  • #14626: Fix false positives in Style/ConstantVisibility when visibility is declared with multiple constants. ([@​koic][])
  • #14628: Fix false positives for Style/FloatDivision when using Regexp.last_match or nth reference (e.g., $1). ([@​koic][])
  • #14617: Handle non-specific issues with the Gemfile to allow fallback. ([@​Fryguy][])
  • #14622: Fix an error for Naming/MethodName when the first argument to alias contains interpolation. ([@​earlopain][])

1.81.6 (2025-10-21)

Bug fixes

  • #14587: Fix an error for Lint/SelfAssignment when using []= assignment with no arguments. ([@​koic][])
  • #14572: Fix an error for Style/ArrayIntersect when intersection(other).any? is called without a receiver. ([@​koic][])
  • #14599: Fix a crash when Style/ConditionalAssignment is configured with assign_inside_conditional and the conditional contains a multi-line regex. ([@​martinemde][])
  • #14574: Fix false positives for Style/RedundantInterpolation when using a one-line => pattern matching. ([@​koic][])
  • #14602: Fix false positives for Style/EndlessMethod when heredoc is used in method body. ([@​koic][])
  • #14594: Fix false positives for Style/EndlessMethod when the endless method would exceed the maximum line length. ([@​koic][])
  • #14605: Fix false positive for Lint/EmptyInterpolation when interpolation is inside a %W literal. ([@​dvandersluis][])
  • #14604: Fix Style/RedundantFormat false positive when a interpolated value is given to a specifier with a width or precision. ([@​dvandersluis][])
  • #14607: Fix Style/RedundantFormat handling control characters like \n. ([@​dvandersluis][])
  • #14577: Fix an incorrect autocorrect for Style/Semicolon when a method call using hash value omission without parentheses is terminated with a semicolon. ([@​koic][])
  • #14552: Fix a false positive for Security/JSONLoad when create_additions is explicitly specified. ([@​earlopain][])

Changes

  • #14566: Enhance Lint::ConstantOverwrittenInRescue cop to detect offenses within fully qualified constants. ([@​viralpraxis][])
  • #14575: Enhance Lint/ConstantOverwrittenInRescue cop to detect offenses within nested constants. ([@​viralpraxis][])
  • #14596: Change Lint/ConstantOverwrittenInRescue to detect any constant assignment. ([@​viralpraxis][])
  • #14568: Make Style/LambdaCall autocorrection contextual. ([@​koic][])

1.81.1 (2025-09-26)

Bug fixes

  • #14563: Fix incorrect autocorrection for Lint/DeprecatedOpenSSLConstant when Cipher appears twice. ([@​koic][])

Changes

  • #14565: Allow multiline method chain for Style/NumberedParameters and Style/ItBlockParameter with EnforcedStyle: allow_single_line when the block itself is on a single line. ([@​earlopain][])

1.81.0 (2025-09-25)

New features

... (truncated)

Commits
  • 4a9b053 Cut 1.81.7
  • 4e6aec2 Update Changelog
  • 8b61b58 Remove uselsss code from Lint/Debugger
  • 356416d Skip unnecessary logic in Style/Semicolon
  • c7d19ab [Docs] Tweak the doc for Lint/MissingCopEnableDirective
  • b7cad37 Reuse s.version in gemspec
  • 300e29b Fix an error for Style/SoleNestedConditional
  • eb0b07a Remove bundler gem from Gemfile
  • e4baec8 Merge pull request #14629 from koic/fix_false_positives_for_style_float_division
  • f8e8cfa Merge pull request #14627 from koic/fix_false_positives_for_style_constant_vi...
  • Additional commits viewable in compare view

Updates date from 3.4.1 to 3.5.0

Release notes

Sourced from date's releases.

v3.5.0

What's Changed

New Contributors

Full Changelog: ruby/date@v3.4.1...v3.5.0

Commits
  • c941d1a Need to compile before release-gem for JRuby
  • d535f7e v3.5.0
  • b703fcb Update the latest versions of actions
  • af863b5 Add a workflow to sync commits to ruby/ruby (#143)
  • 545066c Date._parse does not accept nil
  • 4f7b6c9 Test for the #140
  • 159e1eb Do not repeat conversions to string
  • 5d48e5d Merge pull request #138 from ruby/dependabot/github_actions/step-security/har...
  • 0c8e5a6 Merge pull request #139 from nobu/master
  • afaa4a9 Suppress maybe-uninitialized warning by gcc-13
  • Additional commits viewable in compare view

Updates erb from 5.0.1 to 4.0.4

Changelog

Sourced from erb's changelog.

5.0.1

  • Rescue LoadError when failing to load erb/escape

5.0.0

  • Bump required_ruby_version to Ruby 3.2+ #60
  • Drop cgi from runtime dependencies #59
  • Make ERB::VERSION public

4.0.4

  • Skip building the C extension for JRuby #52

4.0.3

  • Enable frozen_string_literal in all files #49

4.0.2

  • Fix line numbers after multi-line <%# #42

4.0.1

  • Stop building the C extension for TruffleRuby #39

4.0.0

  • Optimize ERB::Util.html_escape #27
    • No longer duplicate an argument string when nothing is escaped.
      • This makes ERB::Util.html_escape faster than CGI.escapeHTML in no-escape cases.
    • It skips calling #to_s when an argument is already a String.
  • Define ERB::Escape.html_escape as an alias to ERB::Util.html_escape #38
    • ERB::Util.html_escape is known to be monkey-patched by Rails. ERB::Escape.html_escape is useful when you want a non-monkey-patched version.
  • Drop deprecated -S option from erb command

3.0.0

  • Bump required_ruby_version to Ruby 2.7+ #23
  • ERB::Util.url_encode uses a native implementation #23
  • Fix a bug that a magic comment with a wrong format could be detected #6

2.2.3

  • Bump required_ruby_version from 2.3 to 2.5 as it has never been supported #3

2.2.2

  • ERB.version returns just a version number

... (truncated)

Commits

Updates io-console from 0.8.0 to 0.8.1

Release notes

Sourced from io-console's releases.

v0.8.1

What's Changed

Full Changelog: ruby/io-console@v0.8.0...v0.8.1

Commits
  • 01071a1 Bump up 0.8.1
  • dd01303 Run have_func with the header providing the declarations
  • 65c9266 Fix removing unexpected control chars
  • f8b33f3 Use host_os in RbConfig instead of RUBY_PLATFORM for JRuby
  • ad92638 Bump rubygems/release-gem from 1.1.0 to 1.1.1
  • 7c3625e Bump step-security/harden-runner from 2.12.1 to 2.12.2
  • e0398ac Fix a name error
  • c5e47a9 Ignore printed control char
  • 2e0e012 Revert "Ignore ^C at interrupt"
  • f0646b2 Ignore ^C at interrupt
  • Additional commits viewable in compare view

Updates json from 2.12.2 to 2.16.0

Release notes

Sourced from json's releases.

v2.16.0

What's Changed

  • Deprecate JSON::State#[] and JSON::State#[]=. Consider using JSON::Coder instead.
  • JSON::Coder now also yields to the block when encountering strings with invalid encoding.
  • Fix GeneratorError messages to be UTF-8 encoded.
  • Fix memory leak when Exception is raised, or throw is used during JSON generation.
  • Optimized floating point number parsing by integrating the ryu algorithm (thanks to Josef Šimánek).
  • Optimized numbers parsing using SWAR (thanks to Scott Myron).
  • Optimized parsing of pretty printed documents using SWAR (thanks to Scott Myron).

Full Changelog: ruby/json@v2.15.2...v2.16.0

v2.15.2

What's Changed

  • Fix JSON::Coder to have one dedicated depth counter per invocation. After encountering a circular reference in JSON::Coder#dump, any further #dump call would raise JSON::NestingError.

Full Changelog: ruby/json@v2.15.1...v2.15.2

v2.15.1

What's Changed

  • Fix incorrect escaping in the JRuby extension when encoding shared strings.

Full Changelog: ruby/json@v2.15.0...v2.15.1

v2.15.0

What's Changed

  • JSON::Coder callback now receive a second argument to convey whether the object is a hash key.
  • Tuned the floating point number generator to not use scientific notation as aggressively.

Full Changelog: ruby/json@v2.14.1...v2.15.0

v2.14.1

What's Changed

  • Fix IndexOutOfBoundsException in the JRuby extension when encoding shared strings.

Full Changelog: ruby/json@v2.14.0...v2.14.1

v2.14.0

What's Changed

  • Add new allow_duplicate_key generator options. By default a warning is now emitted when a duplicated key is encountered. In json 3.0 an error will be raised.

... (truncated)

Changelog

Sourced from json's changelog.

2025-11-07 (2.16.0)

  • Deprecate JSON::State#[] and JSON::State#[]=. Consider using JSON::Coder instead.
  • JSON::Coder now also yields to the block when encountering strings with invalid encoding.
  • Fix GeneratorError messages to be UTF-8 encoded.
  • Fix memory leak when Exception is raised, or throw is used during JSON generation.
  • Optimized floating point number parsing by integrating the ryu algorithm (thanks to Josef Šimánek).
  • Optimized numbers parsing using SWAR (thanks to Scott Myron).
  • Optimized parsing of pretty printed documents using SWAR (thanks to Scott Myron).

2025-10-25 (2.15.2)

  • Fix JSON::Coder to have one dedicated depth counter per invocation. After encountering a circular reference in JSON::Coder#dump, any further #dump call would raise JSON::NestingError.

2025-10-07 (2.15.1)

  • Fix incorrect escaping in the JRuby extension when encoding shared strings.

2025-09-22 (2.15.0)

  • JSON::Coder callback now receive a second argument to convey whether the object is a hash key.
  • Tuned the floating point number generator to not use scientific notation as aggressively.

2025-09-18 (2.14.1)

  • Fix IndexOutOfBoundsException in the JRuby extension when encoding shared strings.

2025-09-18 (2.14.0)

  • Add new allow_duplicate_key generator options. By default a warning is now emitted when a duplicated key is encountered. In json 3.0 an error will be raised.
    >> Warning[:deprecated] = true
    >> puts JSON.generate({ foo: 1, "foo" => 2 })
    (irb):2: warning: detected duplicate key "foo" in {foo: 1, "foo" => 2}.
    This will raise an error in json 3.0 unless enabled via `allow_duplicate_key: true`
    {"foo":1,"foo":2}
    >> JSON.generate({ foo: 1, "foo" => 2 }, allow_duplicate_key: false)
    detected duplicate key "foo" in {foo: 1, "foo" => 2} (JSON::GeneratorError)
  • Fix JSON.generate strict: true mode to also restrict hash keys.
  • Fix JSON::Coder to also invoke block for hash keys that aren't strings nor symbols.
  • Fix JSON.unsafe_load usage with proc
  • Fix the parser to more consistently reject invalid UTF-16 surogate pairs.
  • Stop defining String.json_create, String#to_json_raw, String#to_json_raw_object when json/add isn't loaded.

2025-07-28 (2.13.2)

  • Improve duplicate key warning and errors to include the key name and point to the right caller.

... (truncated)

Commits
  • 5a12067 Release 2.16.0
  • e9fbc89 Deprecate JSON::State#[] and JSON::State#[]=
  • 826cb2a Get rid of JSON.deep_const_get (private API)
  • fce1c7e Tentative fix for RHEL8 compiler
  • a67d1a1 Micro-optimize rstring_cache_fetch
  • ddad00b Extract JSON_CPU_LITTLE_ENDIAN_64BITS definition
  • 3bc1787 ext/json/ext/json.h: Add missing newline at end of file
  • 5915103 Fix duplicate 'inline' declaration specifier
  • 043880f parser.c: Always inline json_eat_whitespace
  • 21284ea parser.c: use rb_str_to_interned_str over rb_funcall
  • Additional commits viewable in compare view

Updates parser from 3.3.8.0 to 3.3.10.0

Changelog

Sourced from parser's changelog.

v3.3.10.0 (2025-10-27)

API modifications:

  • Bump maintenance branches to 3.3.10 (#1083) (Koichi ITO)

v3.3.9.0 (2025-07-25)

API modifications:

  • Bump maintenance branches to 3.3.9 (#1080) (Koichi ITO)
  • Bump maintenance branches to 3.2.9 (#1079) (Koichi ITO)

v3.3.7.5 (2025-04-14)

API modifications:

  • Bump maintenance branches to 3.3.8 (#1077) (Koichi ITO)
  • YARD docs for Parser::CurrentRuby and Parser::Base#version (#1076) (Vince Broz)

v3.3.7.4 (2025-03-31)

Bugs fixed:

  • lexer-strings.rb: Avoid an exception on utf8 surrogate pair codepoints (#1051) (Earlopain)
  • builder.rb: emit kwargs node for indexasgn when opted in (#1053) (Earlopain)
  • builder.rb: correctly handle ... forwarding to super with explicit block (#1049) (Earlopain)
  • numbered parameters are valid for pattern matching pinning (#1060) (Earlopain)

v3.3.7.3 (2025-03-26)

API modifications:

  • Bump maintenance branches to 3.2.8 and 3.1.7 (#1074) (Koichi ITO)

v3.3.7.2 (2025-03-20)

Features implemented:

  • add prism-specific node types (#1071) (Earlopain)

Bugs fixed:

  • builder.rb: fix hash value omission considering some local vars as constants (#1064) (Earlopain)

v3.3.7.1 (2025-02-05)

API modifications:

  • parser/current: add -dev prefix to 3.4 branch (#1067) (Ilya Bylich)
  • parser/current: bump 3.2 branch to 3.2.7 (#1066) (Ilya Bylich)

... (truncated)

Commits

Updates pp from 0.6.2 to 0.6.3

Release notes

Sourced from pp's releases.

v0.6.3

What's Changed

New Contributors

Full Changelog: ruby/pp@v0.6.2...v0.6.3

Commits
  • c1992ce Bump up to 0.6.3
  • fee2d39 Reduce substring creations
  • feb417e Suppress warnings in test on Ruby 2.7
  • 0e89466 Simplify recursive state handling
  • 40b713d Exclude out-of-scope test instead of omitting
  • 507eebf Update pp for Set to use new inspect format (#43)
  • 24a0d3f Merge pull request #56 from nobu/set-pp
  • 6615b62 Refine ...

    Description has been truncated

… with 21 updates

Bumps the production-dependencies group with 4 updates in the / directory: [irb](https://github.com/ruby/irb), [rake](https://github.com/ruby/rake), [rspec](https://github.com/rspec/rspec) and [rubocop](https://github.com/rubocop/rubocop).


Updates `irb` from 1.15.2 to 1.15.3
- [Release notes](https://github.com/ruby/irb/releases)
- [Commits](ruby/irb@v1.15.2...v1.15.3)

Updates `rake` from 13.3.0 to 13.3.1
- [Release notes](https://github.com/ruby/rake/releases)
- [Changelog](https://github.com/ruby/rake/blob/master/History.rdoc)
- [Commits](ruby/rake@v13.3.0...v13.3.1)

Updates `rspec` from 3.13.1 to 3.13.2
- [Commits](rspec/rspec@rspec-v3.13.1...rspec-v3.13.2)

Updates `rubocop` from 1.76.1 to 1.81.7
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.76.1...v1.81.7)

Updates `date` from 3.4.1 to 3.5.0
- [Release notes](https://github.com/ruby/date/releases)
- [Commits](ruby/date@v3.4.1...v3.5.0)

Updates `erb` from 5.0.1 to 4.0.4
- [Release notes](https://github.com/ruby/erb/releases)
- [Changelog](https://github.com/ruby/erb/blob/master/NEWS.md)
- [Commits](ruby/erb@v5.0.1...v4.0.4)

Updates `io-console` from 0.8.0 to 0.8.1
- [Release notes](https://github.com/ruby/io-console/releases)
- [Commits](ruby/io-console@v0.8.0...v0.8.1)

Updates `json` from 2.12.2 to 2.16.0
- [Release notes](https://github.com/ruby/json/releases)
- [Changelog](https://github.com/ruby/json/blob/master/CHANGES.md)
- [Commits](ruby/json@v2.12.2...v2.16.0)

Updates `parser` from 3.3.8.0 to 3.3.10.0
- [Changelog](https://github.com/whitequark/parser/blob/master/CHANGELOG.md)
- [Commits](whitequark/parser@v3.3.8.0...v3.3.10.0)

Updates `pp` from 0.6.2 to 0.6.3
- [Release notes](https://github.com/ruby/pp/releases)
- [Commits](ruby/pp@v0.6.2...v0.6.3)

Updates `prism` from 1.4.0 to 1.6.0
- [Release notes](https://github.com/ruby/prism/releases)
- [Changelog](https://github.com/ruby/prism/blob/main/CHANGELOG.md)
- [Commits](ruby/prism@v1.4.0...v1.6.0)

Updates `rdoc` from 6.14.0 to 6.15.1
- [Release notes](https://github.com/ruby/rdoc/releases)
- [Changelog](https://github.com/ruby/rdoc/blob/master/History.rdoc)
- [Commits](ruby/rdoc@v6.14.0...v6.15.1)

Updates `regexp_parser` from 2.10.0 to 2.11.3
- [Changelog](https://github.com/ammar/regexp_parser/blob/master/CHANGELOG.md)
- [Commits](ammar/regexp_parser@v2.10.0...v2.11.3)

Updates `reline` from 0.6.1 to 0.6.3
- [Release notes](https://github.com/ruby/reline/releases)
- [Commits](ruby/reline@v0.6.1...v0.6.3)

Updates `rspec-core` from 3.13.4 to 3.13.6
- [Changelog](https://github.com/rspec/rspec/blob/rspec-core-v3.13.6/rspec-core/Changelog.md)
- [Commits](rspec/rspec@rspec-core-v3.13.4...rspec-core-v3.13.6)

Updates `rspec-mocks` from 3.13.5 to 3.13.7
- [Changelog](https://github.com/rspec/rspec/blob/rspec-mocks-v3.13.7/rspec-mocks/Changelog.md)
- [Commits](rspec/rspec@rspec-mocks-v3.13.5...rspec-mocks-v3.13.7)

Updates `rspec-support` from 3.13.4 to 3.13.6
- [Changelog](https://github.com/rspec/rspec/blob/rspec-support-v3.13.6/rspec-support/Changelog.md)
- [Commits](rspec/rspec@rspec-support-v3.13.4...rspec-support-v3.13.6)

Updates `rubocop-ast` from 1.45.1 to 1.48.0
- [Release notes](https://github.com/rubocop/rubocop-ast/releases)
- [Changelog](https://github.com/rubocop/rubocop-ast/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-ast@v1.45.1...v1.48.0)

Updates `stringio` from 3.1.7 to 3.1.8
- [Release notes](https://github.com/ruby/stringio/releases)
- [Changelog](https://github.com/ruby/stringio/blob/master/NEWS.md)
- [Commits](ruby/stringio@v3.1.7...v3.1.8)

Updates `unicode-display_width` from 3.1.4 to 3.2.0
- [Changelog](https://github.com/janlelis/unicode-display_width/blob/main/CHANGELOG.md)
- [Commits](janlelis/unicode-display_width@v3.1.4...v3.2.0)

Updates `unicode-emoji` from 4.0.4 to 4.1.0
- [Changelog](https://github.com/janlelis/unicode-emoji/blob/main/CHANGELOG.md)
- [Commits](janlelis/unicode-emoji@v4.0.4...v4.1.0)

---
updated-dependencies:
- dependency-name: irb
  dependency-version: 1.15.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: rake
  dependency-version: 13.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: rspec
  dependency-version: 3.13.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: rubocop
  dependency-version: 1.81.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: date
  dependency-version: 3.5.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: erb
  dependency-version: 4.0.4
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: io-console
  dependency-version: 0.8.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: json
  dependency-version: 2.16.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: parser
  dependency-version: 3.3.10.0
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: pp
  dependency-version: 0.6.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: prism
  dependency-version: 1.6.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: rdoc
  dependency-version: 6.15.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: regexp_parser
  dependency-version: 2.11.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: reline
  dependency-version: 0.6.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: rspec-core
  dependency-version: 3.13.6
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: rspec-mocks
  dependency-version: 3.13.7
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: rspec-support
  dependency-version: 3.13.6
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: rubocop-ast
  dependency-version: 1.48.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: stringio
  dependency-version: 3.1.8
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: unicode-display_width
  dependency-version: 3.2.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: unicode-emoji
  dependency-version: 4.1.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 17, 2025

Labels

The following labels could not be found: automated, bot: dependabot, dependencies, lang: ruby, size: sm, status: needs-review, type: maintenance. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot bot requested a review from patrick204nqh as a code owner November 17, 2025 09:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants