swap history file from byebug
to new debug
gem
#5855
Merged
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.
byebug
was replaced with the newdebug
gem as part of theruby
3.1
upgrade.So swap out the history file locations in
.gitignore
to the new one... seeRUBY_DEBUG_HISTORY_FILE
default value here.This was originally removed in https://github.com/dependabot/dependabot-core/pull/4567/files#diff-2f754321d62f08ba8392b9b168b83e24ea2852bb5d815d63e767f6c3d23c6ac5L19, then put back in 847d111#diff-bc37d034bad564583790a46f19d807abfe519c5671395fd494d8cce506c42947R20.
However, the last trace of
byebug
was removed fromGemfile.lock
in https://github.com/dependabot/dependabot-core/pull/5849/files#diff-0c7825d57fc79377b294d76c04d7bf63931bba3e9cd7946e19b5d3cb955c5548L144, so it's now safe to remove the history file.