Update pry Gem to 0.14.2 - #51277
Merged
Merged
Conversation
Specifically `~> 0.14.0` to pick up support for Ruby 3.0 Breaking changes in 0.13.x were mostly about deleting functionality deprecated in 0.12. The only breaking change in 0.14.x is removal of support for plugin autoloading. I'm not aware of anywhere we're actually using `pry` in our codebase, however; I believe we just make it available so developers can use it in their local debugging without ever committing anything to the codebase. As such, I don't expect we'll be directly affected by any of these changes. - https://github.com/pry/pry/blob/master/CHANGELOG.md#v0140-february-8-2021
Hamms
marked this pull request as ready for review
April 12, 2023 20:06
davidsbailey
approved these changes
Apr 12, 2023
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Specifically target
~> 0.14.0to pick up support for Ruby 3.0Breaking changes in 0.13.x were mostly about deleting functionality deprecated in 0.12. The only breaking change in 0.14.x is removal of support for plugin autoloading.
Links
Testing story
Verified that attempting to insert a
binding.prystatement doesn't work as expected in Ruby 3.0 on our current version ofpry, but does on this one.