Releases: deivid-rodriguez/byebug
Releases · deivid-rodriguez/byebug
11.1.3
11.1.2
11.1.1
11.1.0
11.0.1
11.0.0
Added
- #377:
skip
to continue until the next breakpoint as long as it is different from the current one. You can use this command to get out of loops, for example (@tacnoman). - #524:
continue!
(orcontinue unconditionally
) to continue until the end of the program regardless of the currently enabled breakpoints (@tacnoman).
Fixed
- #527:
break
help text to clarify placeholders from literals. - #528:
quit!
help to not show a space between "quit" and "!".
Removed
- Support for MRI 2.2. Byebug no longer installs on this platform.
10.0.2
Fixed
- Error when using byebug with
debase
gem (#447, @tzmfreedom)
10.0.1
Fixed
- Error when using byebug with
debase
gem (#443, @tzmfreedom)
10.0.0
Changed
- Breaking on methods now stops on the first effective line of a method, not on
the line containing thedef
keyword.
Added
- Show valid breakpoint locations when invalid location given (#393, @ko1).
- Ruby 2.5.0 support (#397, @yui-knk).
- Log host & port when launching byebug's client in remote mode.
- Some love & tests to remote debugging (#82).
remote_byebug
shortcut to start the most common case for remote debugging (#141).
9.1.0
Added
- Better UI messages for breakpoint management.
Fixed
where
command failing on instance_exec block stack frames.restart
command crashing in certain cases because of a missingrequire 'English'
(#321, @akaneko3).restart
command crashing when debugged script is not executable or has no shebang (#321, @akaneko3).
Removed
- Ruby 2.0 and Ruby 2.1 official & unofficial support. Byebug no longer installs
on these platforms.