Accepting request 346625 from devel:languages:ruby:extensions
1 OBS-URL: https://build.opensuse.org/request/show/346625 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/rubygem-byebug?expand=0&rev=9
This commit is contained in:
commit
dc917e0c93
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ecdbe6164ddd8ee4dd0ba2fdf5226554acf2c2a4c4fa5fa1d2cc64b870826714
|
||||
size 76288
|
3
byebug-8.2.1.gem
Normal file
3
byebug-8.2.1.gem
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ccde5ca7cd8134235523b5a4148e6c7805158ba0ff58147ddfab16b8cf4aa8fb
|
||||
size 78336
|
@ -1,3 +1,94 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 27 05:29:15 UTC 2015 - coolo@suse.com
|
||||
|
||||
- updated to version 8.2.1
|
||||
see installed CHANGELOG.md
|
||||
|
||||
## 8.2.1 - 2015-11-26
|
||||
### Fixed
|
||||
* Bug in evaluations using "eval.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 23 05:28:32 UTC 2015 - coolo@suse.com
|
||||
|
||||
- updated to version 8.2.0
|
||||
see installed CHANGELOG.md
|
||||
|
||||
## Master (Unreleased)
|
||||
|
||||
## 8.2.0 - 2015-11-12
|
||||
### Fixed
|
||||
* [#184](https://github.com/deivid-rodriguez/byebug/issues/184) &
|
||||
[#188](https://github.com/deivid-rodriguez/byebug/issues/188), both due
|
||||
to the way of running evaluations in a separate thread.
|
||||
|
||||
### Added
|
||||
* `debug` command to evaluate things in a separate thread, since this behavior
|
||||
was removed from default `eval` to fix the above issues.
|
||||
|
||||
## 8.1.0 - 2015-11-09
|
||||
### Fixed
|
||||
* Command history should be specific per project.
|
||||
* Better error message in certain edge cases when printing the backtrace.
|
||||
* Bug in evaluator which would show information about having stopped at a
|
||||
breakpoint in some cases.
|
||||
|
||||
### Added
|
||||
* Ability to autolist source code after `frame` command.
|
||||
* Ability to stop at lines where methods return.
|
||||
|
||||
## 8.0.1 - 2015-11-07
|
||||
### Fixed
|
||||
* Error stream wouldn't be properly reset when using standalone `byebug`.
|
||||
* Confusing error message for invalid breakpoint locations.
|
||||
|
||||
## 8.0.0 - 2015-11-05
|
||||
### Fixed
|
||||
* [#183](https://github.com/deivid-rodriguez/byebug/issues/183). Compilation
|
||||
in Ruby 2.0. Regression introduced in 7.0.0
|
||||
* "Return value is: nil" would be displayed when stopping right before the end
|
||||
of a class definition. We want to avoid showing anything instead.
|
||||
|
||||
## Changed
|
||||
* Plugins now need to implement an `at_end` method (separate from `at_return`)
|
||||
in their custom processors.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 5 05:28:49 UTC 2015 - coolo@suse.com
|
||||
|
||||
- updated to version 7.0.0
|
||||
see installed CHANGELOG.md
|
||||
|
||||
## 7.0.0 - 2015-11-04
|
||||
### Fixed
|
||||
* [#177](https://github.com/deivid-rodriguez/byebug/issues/177). Some issues
|
||||
with formatting results of evaluations.
|
||||
* [#144](https://github.com/deivid-rodriguez/byebug/issues/144). Ruby process
|
||||
after using byebug does no longer get slow.
|
||||
* [#121](https://github.com/deivid-rodriguez/byebug/issues/121). `byebug`
|
||||
commands inside code evaluated from debugger's prompt are now properly working.
|
||||
* Another evaluation bug in autocommands.
|
||||
* `finish 0` command would sometimes fail to stop right before exiting the
|
||||
current frame.
|
||||
* Runner's `--[no-]stop` option now works (thanks @windwiny).
|
||||
* Change variable name `bool`, avoid conflict clang's predefined macro
|
||||
|
||||
### Removed
|
||||
* `ps` command.
|
||||
|
||||
### Changed
|
||||
* [#166](https://github.com/deivid-rodriguez/byebug/issues/166). Don't load
|
||||
the entire library on require, but only when a `byebug` call is issued. Thanks
|
||||
@bquorning.
|
||||
* The above fix to the `finish 0` command cause `byebug`'s entrypoint to
|
||||
require 3 steps out instead of 2. In general, plugins using
|
||||
`Byebug::Context.step_out` will need to be changed to consider "c return events"
|
||||
as well.
|
||||
|
||||
### Added
|
||||
* `autopry` setting that calls `pry` on every stop.
|
||||
* Return value information to debugger's output when `finish 0` is used.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 24 04:28:30 UTC 2015 - coolo@suse.com
|
||||
|
||||
|
@ -24,7 +24,7 @@
|
||||
#
|
||||
|
||||
Name: rubygem-byebug
|
||||
Version: 6.0.2
|
||||
Version: 8.2.1
|
||||
Release: 0
|
||||
%define mod_name byebug
|
||||
%define mod_full_name %{mod_name}-%{version}
|
||||
|
Loading…
x
Reference in New Issue
Block a user