2015-03-21 21:12:58 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Fri Mar 20 05:33:10 UTC 2015 - coolo@suse.com
|
|
|
|
|
|
|
|
- updated to version 4.0.3
|
|
|
|
### Fixed
|
|
|
|
* Unused variable warning in context.c
|
|
|
|
|
2015-03-18 16:41:12 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Wed Mar 18 15:39:52 UTC 2015 - coolo@suse.com
|
|
|
|
|
|
|
|
- updated to version 4.0.2
|
|
|
|
### Fixed
|
|
|
|
* Removed `rb-readline` as a dependency and show a help message whenever
|
|
|
|
requiring readline fails instead (#118)
|
|
|
|
|
|
|
|
## 4.0.1 - 2014-03-13
|
|
|
|
### Fixed
|
|
|
|
* .yml files needed for printers support were missing from the release... :S
|
|
|
|
* Add `rb-readline` as a dependency (#118)
|
|
|
|
|
|
|
|
## 4.0.0 - 2014-03-13
|
|
|
|
### Added
|
|
|
|
- `untracevar` command that stops tracing a global variable.
|
|
|
|
- Window CI build through AppVeyor.
|
|
|
|
- OSX CI build through Travis.
|
|
|
|
- Style enforcement through RuboCop.
|
|
|
|
- C style enforment using the `indent` command line utility.
|
|
|
|
- Some remote debugging tests (thanks @eric-hu).
|
|
|
|
- Printer's support (thanks @astashov).
|
|
|
|
|
|
|
|
### Changed
|
|
|
|
- A lot of internal refactoring.
|
|
|
|
- `tracevar` now requires the full global variable name (with "$").
|
|
|
|
- `catch` command is not allowed in post_mortem mode anymore. It was not
|
|
|
|
working anyways (#92).
|
|
|
|
- `step` is now more user friendly when used in combination with `up` (see #85).
|
|
|
|
- `var const` can now be called without an argument and will show constants in
|
|
|
|
the current scope.
|
|
|
|
- `break` with a class name now creates breakpoints regardless of class not
|
|
|
|
being yet defined. If that's the case, it gives a warning but the class is
|
|
|
|
created anyways.
|
|
|
|
|
|
|
|
### Fixed
|
|
|
|
- Code reloading issues.
|
|
|
|
- `set fullpath` was not showing fullpaths. Now it is.
|
|
|
|
- `up`, `down` and `frame` commands now work in post_mortem mode (#93).
|
|
|
|
- Fixes in rc file (.byebugrc): invalid commands are just ignored instead of
|
|
|
|
aborting, global (home) rc file is now properly loaded before project's file.
|
|
|
|
- Backtraces not working in `post_mortem` mode (#93).
|
|
|
|
- 'cmd1 ; cmd2 ; ...; cmdN' syntax which allows running several commands
|
|
|
|
sequentially.
|
|
|
|
- Finish command not stopping at the correct line (#101).
|
|
|
|
- `break` with namespaced class, like `break A::B#c` should now work (#106).
|
|
|
|
- Command history is now persisted before exiting byebug.
|
|
|
|
- Setting breakpoint in a method would stop not only at the beginning of the
|
|
|
|
method but also at the beginning of every block inside the method.
|
|
|
|
- Setting breakpoints on module methods (#122, @x-yuri).
|
|
|
|
|
|
|
|
### Removed
|
|
|
|
- `autoreload` setting as it's not necessary anymore. Code should always be up
|
|
|
|
to date.
|
|
|
|
- `reload` command for the same reason.
|
|
|
|
- Gem dependency on `debugger-linecache`.
|
|
|
|
- `step+`, `step-`, `next+`, `next-`, `set/show linetrace_plus` and
|
|
|
|
`set/show forcestep` commands. These were all mechanisms to deal with TracePoint
|
|
|
|
API event dupplication, but this duplicated events have been completely removed
|
|
|
|
from the API since
|
|
|
|
[r48609](bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/48609), so
|
|
|
|
they are no longer necessary.
|
|
|
|
- `info file` subcommands: `info file breakpoints`, `info file mtime`, `info
|
|
|
|
file sha1`, `info file all`. Now all information is listed under `info file`.
|
|
|
|
- `testing` setting. It was just a hack to be able to test `byebug`. Nobody was
|
|
|
|
supposed to actually use it!
|
|
|
|
- `var class` command, just use Ruby (`self.class.class_variables`).
|
|
|
|
- `p` command, just use `eval`, or just type your expression and `byebug` will
|
|
|
|
autoevaluate it.
|
|
|
|
- `exit` alias for `quit`.
|
|
|
|
|
2014-12-17 11:29:31 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Wed Dec 17 10:11:03 UTC 2014 - tboerger@suse.com
|
|
|
|
|
|
|
|
- Added rpmlintrc for devel files filter
|
|
|
|
- Updated to 3.5.1
|
|
|
|
- 3.5.1
|
|
|
|
- Windows installation (#79).
|
|
|
|
- condition command not properly detecting invalid breakpoint ids.
|
|
|
|
- 3.5.0
|
|
|
|
- Byebug's history messing other programs using Readline (#81).
|
|
|
|
- Readline's history not being properly saved and inmediately available.
|
|
|
|
- User not being notified when trying to debug a non existent script.
|
|
|
|
- Complete rewrite of byebug's history.
|
|
|
|
- Complete rewrite of list command.
|
|
|
|
- Docs about stacktrace related commands (up, down, frame, backtrace).
|
|
|
|
- 3.4.2
|
|
|
|
- Debugging commands invoked by ruby exectuable (#67), as in byebug --
|
|
|
|
ruby -Itest test/controllers/posts_controller_test.rb -n test_should_get_index.
|
|
|
|
- 3.4.1
|
|
|
|
- Use of threads inside eval command (#54).
|
|
|
|
- list command not listing backwards after reaching the end of the file.
|
|
|
|
- 3.4.0
|
|
|
|
- deivid-rodriguez/pry-byebug#32 in a better way.
|
|
|
|
- 3.3.0
|
|
|
|
- set verbose command.
|
|
|
|
- set post_mortem false command.
|
|
|
|
- Debugger stopping in byebug's internal frames in some cases.
|
|
|
|
- backtrace crashing when fullpath setting disabled and calculated
|
|
|
|
stack size being smaller than the real one.
|
|
|
|
- The -t option for bin/byebug now turns tracing on whereas the -x
|
|
|
|
option tells byebug to run the initialization file (.byebugrc) on
|
|
|
|
startup. This is the default behaviour though.
|
|
|
|
- bin/byebug libified and tests added.
|
|
|
|
- Removed info locals command. Use var local instead.
|
|
|
|
- Removed info instance_variables command. Use var instance instead.
|
|
|
|
- Removed info global_variables command. Use var global instead.
|
|
|
|
- Removed info variables command. Use var all instead.
|
|
|
|
- Removed irb command stepping capabilities, see 8e226d0.
|
|
|
|
- Removed script and restart-script options for bin/byebug.
|
|
|
|
- 3.2.0
|
|
|
|
- Remote debugging (#71), thanks @shuky19.
|
|
|
|
- source command (#68), thanks @Olgagr.
|
|
|
|
- ruby-head support (#71).
|
|
|
|
- Removed post_mortem activation through Byebug.post_mortem. Use set post_mortem instead.
|
|
|
|
- Removed info stack command. Use where instead.
|
|
|
|
- Removed method iv command. Use var instance instead.
|
|
|
|
- Removed Warning reported in #77.
|
|
|
|
- 3.1.2
|
|
|
|
- (Really) post_mortem mode in bin/byebug.
|
|
|
|
- Line tracing in bin/byebug.
|
|
|
|
- 3.1.1
|
|
|
|
- post_mortem mode in bin/byebug.
|
|
|
|
- 3.1.0
|
|
|
|
- Removed show commands command. Use history instead.
|
|
|
|
- Removed Byebug.start accepting options. Any program settings you want applied from the start should be set in .byebugrc.
|
|
|
|
- Removed trace command. Use set linetrace for line tracing and tracevar for global variable tracing.
|
|
|
|
- Removed show version command. Use byebug --version to check byebug's version.
|
|
|
|
- Removed set arg setting. Use the restart command instead.
|
|
|
|
- linetrace_plus setting renamed to tracing_plus.
|
|
|
|
- history command to check byebug's history of previous commands.
|
|
|
|
- 3.0.0
|
|
|
|
- Plain byebug not working when pry-byebug installed.
|
|
|
|
- post_mortem mode.
|
|
|
|
- Command history not being saved after regular program termination.
|
|
|
|
- (Again) Calling Byebug.start with Timeout.timeout (#54), thanks @zmoazeni!
|
|
|
|
- Allow disabling post_mortem mode.
|
|
|
|
- show commands command for listing history of previous commands now behaves like shell's history command.
|
|
|
|
- show/set history filename is now show/set histfile
|
|
|
|
- show/set history size is now show/set histsize
|
|
|
|
- show/set history save is now show/set autosave
|
|
|
|
- finish semantic, see 61f9b4d.
|
|
|
|
- Use per project history file by default.
|
|
|
|
- Removed The init option for Byebug.start. Information to make the restart command work is always saved now.
|
|
|
|
|
2014-10-13 09:11:34 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Mon Oct 13 05:45:36 UTC 2014 - coolo@suse.com
|
|
|
|
|
|
|
|
- adapt to new rubygem packaging
|
|
|
|
|
2014-03-24 19:47:41 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Mon Mar 24 18:47:24 UTC 2014 - kkaempf@suse.com
|
|
|
|
|
|
|
|
- Fix openSUSE 13.1 build
|
|
|
|
|
2014-03-20 10:00:42 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Wed Mar 19 14:34:24 UTC 2014 - tboerger@novell.com
|
|
|
|
|
|
|
|
- Intial package 2.7.0
|
|
|
|
|