chore(deps): update dependency pry to v0.16.0 #7

Merged
onlyhavecans merged 1 commit from renovate/pry-0.x into main 2025-12-28 20:34:26 -08:00
Member

This PR contains the following updates:

Package Change Age Confidence
pry (source, changelog) "= 0.13.0""= 0.16.0" age confidence

Release Notes

pry/pry (pry)

v0.16.0

Compare Source

Features
  • Ruby 4.0 Support.
    Pry will now require and default to Reline for newer Rubies.
    (#​2357)
    (#​2349)
  • Revert 'Unify show-doc with show-source'.
    (#​2346)
Breaking Changes
  • Remove experimental Pry.auto_resize!
    Returns a warning. The code will be removed later.
    (#​2359)
  • Drop support for Ruby < 2.6
    (#​2349)

v0.15.2

Compare Source

Bug Fixes
  • Avoid breaking reading input if Prism version is undetectable
    (#​2340)

v0.15.1

Compare Source

Bug Fixes
  • Restore Pry.config.ls compatibility
    (#​2335)
  • Avoid breaking reading inputs if Prism is not available
    (#​2338)

v0.15.0

Compare Source

Features
  • Added support for Reline
    (#​2298)
  • Added support for Ruby 3.3
    (#​2295)
  • Added Pry::Input::SimpleStdio for dumb terminals when Reline is in use
    (#​2304)
  • Remove OpenStruct usage
    (#​2307)
    (#​2309)
  • Disable coloring of output when NO_COLOR is set.
    ([#​2323])(#​2323))
  • Add pry --no-multiline flag to keep single line prompt.
    (#​2327)
Bug Fixes
  • Fix typos on docs and and comments
    (#​2300)
    (#​2301)
  • Fix 'calling clear method' on user code when defined in pry context.
    (#​2291)
  • Fix arguments WatchExpression#add_expression
    (#​2278)

v0.14.2

Compare Source

Features
  • Configure code as a supported editor on Pry::Editor
    (#​2236)
  • Added support for Ruby 3.2
    (#​2263)
  • Added support for Ruby 3.1
    (#​2228)
Bug fixes
  • Short circuit eval regexes in finding module definition
    (#​2253)
  • Revert "Escape non-printing characters"
    (#​2235)
  • Fixed bug where WeirdMethodLocator would fail to find the source of a method breaking whereami
    (#​2244)
  • Fixed bug where pry would throw an FrozenError when dealing with incomplete tokens
    (#​2136)
  • Restore --no-history CLI flag functionality
    (#​2196)
  • Fixed bug where reading from the _out_ sticky local variable could return
    wrong results (#​2201)
Breaking Changes
  • Remove support for Ruby 1.9 and JRuby < 9.0
    (#​2239)

v0.14.1

Compare Source

Bug fixes
  • Fixed bad coloring of some RDoc-style docs
    (#​2182)
  • Fixed broken --plugins option. It shows a warning now
    (#​2180)
  • Fixed bad output on printing non-visible characters with color codes
    (#​2154)
  • Fixed bad output when colors are disabled and a string with color codes is
    printed (#​2158)

v0.14.0

Compare Source

Features
  • Made ? an alias to show-source -d
    (#​2133)
  • Added support for Ruby 3.0
Breaking changes
  • Deleted support for plugin autoloading
    (#​2119). In order to load a Pry plugin
    you must require it from your pryrc or add it to your Gemfile.

    # ~/.pryrc
    require 'pryrc'
    

v0.13.1

Compare Source

Bug fixes
  • Fixed bug where on invalid input only the last syntax error is displayed
    (instead of all of them) (#​2117)
  • Fixed Pry::Config raising NoMethodError on undefined option instead of
    returning nil (usually invoked via Pry.config.foo_option calls)
    (#​2126)
  • Fixed help command not displaying regexp aliases properly
    (#​2120)
  • Fixed pry-backtrace not working (#​2122)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [pry](http://pry.github.io) ([source](https://github.com/pry/pry), [changelog](https://github.com/pry/pry/blob/master/CHANGELOG.md)) | `"= 0.13.0"` → `"= 0.16.0"` | ![age](https://developer.mend.io/api/mc/badges/age/rubygems/pry/0.16.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/rubygems/pry/0.13.0/0.16.0?slim=true) | --- ### Release Notes <details> <summary>pry/pry (pry)</summary> ### [`v0.16.0`](https://github.com/pry/pry/blob/HEAD/CHANGELOG.md#v0160-v0160-December-26-2025) [Compare Source](https://github.com/pry/pry/compare/v0.15.2...v0.16.0) ##### Features - Ruby 4.0 Support. Pry will now require and default to Reline for newer Rubies. ([#&#8203;2357](https://github.com/pry/pry/pull/2357)) ([#&#8203;2349](https://github.com/pry/pry/pull/2349)) - Revert 'Unify show-doc with show-source'. ([#&#8203;2346](https://github.com/pry/pry/pull/2346)) ##### Breaking Changes - Remove experimental `Pry.auto_resize!` Returns a warning. The code will be removed later. ([#&#8203;2359](https://github.com/pry/pry/pull/2359)) - Drop support for Ruby < 2.6 ([#&#8203;2349](https://github.com/pry/pry/pull/2349)) ### [`v0.15.2`](https://github.com/pry/pry/blob/HEAD/CHANGELOG.md#v0152-v0152-December-24-2024) [Compare Source](https://github.com/pry/pry/compare/v0.15.1...v0.15.2) ##### Bug Fixes - Avoid breaking reading input if Prism version is undetectable ([#&#8203;2340](https://github.com/pry/pry/pull/2340)) ### [`v0.15.1`](https://github.com/pry/pry/blob/HEAD/CHANGELOG.md#v0151-v0151-December-24-2024) [Compare Source](https://github.com/pry/pry/compare/v0.15.0...v0.15.1) ##### Bug Fixes - Restore Pry.config.ls compatibility ([#&#8203;2335](https://github.com/pry/pry/pull/2335)) - Avoid breaking reading inputs if Prism is not available ([#&#8203;2338](https://github.com/pry/pry/pull/2338)) ### [`v0.15.0`](https://github.com/pry/pry/blob/HEAD/CHANGELOG.md#v0150-v0150-November-15-2024) [Compare Source](https://github.com/pry/pry/compare/v0.14.2...v0.15.0) ##### Features - Added support for Reline ([#&#8203;2298](https://github.com/pry/pry/pull/2298)) - Added support for Ruby 3.3 ([#&#8203;2295](https://github.com/pry/pry/pull/2295)) - Added Pry::Input::SimpleStdio for dumb terminals when Reline is in use ([#&#8203;2304](https://github.com/pry/pry/pull/2304)) - Remove OpenStruct usage ([#&#8203;2307](https://github.com/pry/pry/pull/2307)) ([#&#8203;2309](https://github.com/pry/pry/pull/2309)) - Disable coloring of output when NO\_COLOR is set. (\[[#&#8203;2323](https://github.com/pry/pry/issues/2323)])([#&#8203;2323](https://github.com/pry/pry/pull/2323))) - Add `pry --no-multiline` flag to keep single line prompt. ([#&#8203;2327](https://github.com/pry/pry/pull/2327)) ##### Bug Fixes - Fix typos on docs and and comments ([#&#8203;2300](https://github.com/pry/pry/pull/2300)) ([#&#8203;2301](https://github.com/pry/pry/pull/2301)) - Fix 'calling clear method' on user code when defined in pry context. ([#&#8203;2291](https://github.com/pry/pry/pull/2291)) - Fix arguments WatchExpression#add\_expression ([#&#8203;2278](https://github.com/pry/pry/pull/2278)) ### [`v0.14.2`](https://github.com/pry/pry/blob/HEAD/CHANGELOG.md#v0142-v0142-January-9-2023) [Compare Source](https://github.com/pry/pry/compare/v0.14.1...v0.14.2) ##### Features - Configure `code` as a supported editor on Pry::Editor ([#&#8203;2236](https://github.com/pry/pry/pull/2236)) - Added support for Ruby 3.2 ([#&#8203;2263](https://github.com/pry/pry/pull/2263)) - Added support for Ruby 3.1 ([#&#8203;2228](https://github.com/pry/pry/pull/2228)) ##### Bug fixes - Short circuit eval regexes in finding module definition ([#&#8203;2253](https://github.com/pry/pry/pull/2253)) - Revert "Escape non-printing characters" ([#&#8203;2235](https://github.com/pry/pry/pull/2235)) - Fixed bug where WeirdMethodLocator would fail to find the source of a method breaking whereami ([#&#8203;2244](https://github.com/pry/pry/pull/2244)) - Fixed bug where pry would throw an FrozenError when dealing with incomplete tokens ([#&#8203;2136](https://github.com/pry/pry/pull/2136)) - Restore --no-history CLI flag functionality ([#&#8203;2196](https://github.com/pry/pry/pull/2196)) - Fixed bug where reading from the `_out_` sticky local variable could return wrong results ([#&#8203;2201](https://github.com/pry/pry/pull/2201)) ##### Breaking Changes - Remove support for Ruby 1.9 and JRuby < 9.0 ([#&#8203;2239](https://github.com/pry/pry/pull/2239)) ### [`v0.14.1`](https://github.com/pry/pry/blob/HEAD/CHANGELOG.md#v0141-v0141-April-12-2021) [Compare Source](https://github.com/pry/pry/compare/v0.14.0...v0.14.1) ##### Bug fixes - Fixed bad coloring of some RDoc-style docs ([#&#8203;2182](https://github.com/pry/pry/pull/2182)) - Fixed broken `--plugins` option. It shows a warning now ([#&#8203;2180](https://github.com/pry/pry/pull/2180)) - Fixed bad output on printing non-visible characters with color codes ([#&#8203;2154](https://github.com/pry/pry/pull/2154)) - Fixed bad output when colors are disabled and a string with color codes is printed ([#&#8203;2158](https://github.com/pry/pry/pull/2158)) ### [`v0.14.0`](https://github.com/pry/pry/blob/HEAD/CHANGELOG.md#v0140-v0140-February-8-2021) [Compare Source](https://github.com/pry/pry/compare/v0.13.1...v0.14.0) ##### Features - Made `?` an alias to `show-source -d` ([#&#8203;2133](https://github.com/pry/pry/pull/2133)) - Added support for Ruby 3.0 ##### Breaking changes - Deleted support for plugin autoloading ([#&#8203;2119](https://github.com/pry/pry/pull/2119)). In order to load a Pry plugin you must `require` it from your `pryrc` or add it to your Gemfile. ```rb # ~/.pryrc require 'pryrc' ``` ### [`v0.13.1`](https://github.com/pry/pry/blob/HEAD/CHANGELOG.md#v0131-v0131-April-12-2020) [Compare Source](https://github.com/pry/pry/compare/v0.13.0...v0.13.1) ##### Bug fixes - Fixed bug where on invalid input only the last syntax error is displayed (instead of all of them) ([#&#8203;2117](https://github.com/pry/pry/pull/2117)) - Fixed `Pry::Config` raising `NoMethodError` on undefined option instead of returning `nil` (usually invoked via `Pry.config.foo_option` calls) ([#&#8203;2126](https://github.com/pry/pry/pull/2126)) - Fixed `help` command not displaying regexp aliases properly ([#&#8203;2120](https://github.com/pry/pry/pull/2120)) - Fixed `pry-backtrace` not working ([#&#8203;2122](https://github.com/pry/pry/pull/2122)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi42Ni45IiwidXBkYXRlZEluVmVyIjoiNDIuNjYuOSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
onlyhavecans deleted branch renovate/pry-0.x 2025-12-28 20:34:26 -08:00
onlyhavecans referenced this pull request from a commit 2025-12-29 09:57:53 -08:00
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
ops/dnflake!7
No description provided.