Releases: deivid-rodriguez/byebug
Releases · deivid-rodriguez/byebug
12.0.0
Changed
- #690:
breakwithout any arguments now sets a breakpoint on the current line, just likegdb(@sergioro9.
Fixed
- #741: Small consistency issues in help messages.
- #743:
untracevarcommand crashing when giving a non existent global variable. - #744: Another punctuation tweak in
enable breakpointshelp message. - #736: Skip warning about
$SAFEglobal variable on ruby 2.7 when listing global variables.
Added
- #847 and #850: Support for MRI 3.1, 3.2, and 3.3 (@marshall-lee).
- #688:
wherecommand now receives an optional numeric argument<n>to print the nth first frames (@sergioro9.
Removed
- Support for MRI 2.4, 2.5, 2.6, 2.7, and 3.0. Byebug no longer installs on this platform.
11.1.3
11.1.2
11.1.1
11.1.0
11.0.1
11.0.0
Added
- #377:
skipto 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:
breakhelp 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
debasegem (#447, @tzmfreedom)
10.0.1
Fixed
- Error when using byebug with
debasegem (#443, @tzmfreedom)
10.0.0
Changed
- Breaking on methods now stops on the first effective line of a method, not on
the line containing thedefkeyword.
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_byebugshortcut to start the most common case for remote debugging (#141).