runger_byebug 11.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +954 -0
- data/CONTRIBUTING.md +58 -0
- data/GUIDE.md +1806 -0
- data/LICENSE +23 -0
- data/README.md +199 -0
- data/exe/byebug +6 -0
- data/ext/byebug/breakpoint.c +521 -0
- data/ext/byebug/byebug.c +900 -0
- data/ext/byebug/byebug.h +145 -0
- data/ext/byebug/context.c +687 -0
- data/ext/byebug/extconf.rb +12 -0
- data/ext/byebug/locker.c +96 -0
- data/ext/byebug/threads.c +241 -0
- data/lib/byebug/attacher.rb +48 -0
- data/lib/byebug/breakpoint.rb +94 -0
- data/lib/byebug/command.rb +111 -0
- data/lib/byebug/command_list.rb +34 -0
- data/lib/byebug/commands/break.rb +114 -0
- data/lib/byebug/commands/catch.rb +78 -0
- data/lib/byebug/commands/condition.rb +55 -0
- data/lib/byebug/commands/continue.rb +68 -0
- data/lib/byebug/commands/debug.rb +38 -0
- data/lib/byebug/commands/delete.rb +55 -0
- data/lib/byebug/commands/disable/breakpoints.rb +42 -0
- data/lib/byebug/commands/disable/display.rb +43 -0
- data/lib/byebug/commands/disable.rb +33 -0
- data/lib/byebug/commands/display.rb +66 -0
- data/lib/byebug/commands/down.rb +45 -0
- data/lib/byebug/commands/edit.rb +69 -0
- data/lib/byebug/commands/enable/breakpoints.rb +42 -0
- data/lib/byebug/commands/enable/display.rb +43 -0
- data/lib/byebug/commands/enable.rb +33 -0
- data/lib/byebug/commands/finish.rb +57 -0
- data/lib/byebug/commands/frame.rb +57 -0
- data/lib/byebug/commands/help.rb +64 -0
- data/lib/byebug/commands/history.rb +39 -0
- data/lib/byebug/commands/info/breakpoints.rb +65 -0
- data/lib/byebug/commands/info/display.rb +49 -0
- data/lib/byebug/commands/info/file.rb +80 -0
- data/lib/byebug/commands/info/line.rb +35 -0
- data/lib/byebug/commands/info/program.rb +49 -0
- data/lib/byebug/commands/info.rb +37 -0
- data/lib/byebug/commands/interrupt.rb +34 -0
- data/lib/byebug/commands/irb.rb +50 -0
- data/lib/byebug/commands/kill.rb +45 -0
- data/lib/byebug/commands/list.rb +159 -0
- data/lib/byebug/commands/method.rb +53 -0
- data/lib/byebug/commands/next.rb +40 -0
- data/lib/byebug/commands/pry.rb +41 -0
- data/lib/byebug/commands/quit.rb +42 -0
- data/lib/byebug/commands/restart.rb +64 -0
- data/lib/byebug/commands/save.rb +72 -0
- data/lib/byebug/commands/set.rb +79 -0
- data/lib/byebug/commands/show.rb +45 -0
- data/lib/byebug/commands/skip.rb +85 -0
- data/lib/byebug/commands/source.rb +40 -0
- data/lib/byebug/commands/step.rb +40 -0
- data/lib/byebug/commands/thread/current.rb +37 -0
- data/lib/byebug/commands/thread/list.rb +43 -0
- data/lib/byebug/commands/thread/resume.rb +45 -0
- data/lib/byebug/commands/thread/stop.rb +43 -0
- data/lib/byebug/commands/thread/switch.rb +46 -0
- data/lib/byebug/commands/thread.rb +34 -0
- data/lib/byebug/commands/tracevar.rb +54 -0
- data/lib/byebug/commands/undisplay.rb +51 -0
- data/lib/byebug/commands/untracevar.rb +36 -0
- data/lib/byebug/commands/up.rb +45 -0
- data/lib/byebug/commands/var/all.rb +41 -0
- data/lib/byebug/commands/var/args.rb +39 -0
- data/lib/byebug/commands/var/const.rb +49 -0
- data/lib/byebug/commands/var/global.rb +37 -0
- data/lib/byebug/commands/var/instance.rb +39 -0
- data/lib/byebug/commands/var/local.rb +39 -0
- data/lib/byebug/commands/var.rb +37 -0
- data/lib/byebug/commands/where.rb +64 -0
- data/lib/byebug/commands.rb +40 -0
- data/lib/byebug/context.rb +157 -0
- data/lib/byebug/core.rb +115 -0
- data/lib/byebug/errors.rb +29 -0
- data/lib/byebug/frame.rb +185 -0
- data/lib/byebug/helpers/bin.rb +47 -0
- data/lib/byebug/helpers/eval.rb +134 -0
- data/lib/byebug/helpers/file.rb +63 -0
- data/lib/byebug/helpers/frame.rb +75 -0
- data/lib/byebug/helpers/parse.rb +80 -0
- data/lib/byebug/helpers/path.rb +40 -0
- data/lib/byebug/helpers/reflection.rb +19 -0
- data/lib/byebug/helpers/string.rb +33 -0
- data/lib/byebug/helpers/thread.rb +67 -0
- data/lib/byebug/helpers/toggle.rb +62 -0
- data/lib/byebug/helpers/var.rb +70 -0
- data/lib/byebug/history.rb +130 -0
- data/lib/byebug/interface.rb +146 -0
- data/lib/byebug/interfaces/local_interface.rb +63 -0
- data/lib/byebug/interfaces/remote_interface.rb +50 -0
- data/lib/byebug/interfaces/script_interface.rb +33 -0
- data/lib/byebug/interfaces/test_interface.rb +67 -0
- data/lib/byebug/option_setter.rb +95 -0
- data/lib/byebug/printers/base.rb +68 -0
- data/lib/byebug/printers/plain.rb +44 -0
- data/lib/byebug/printers/texts/base.yml +115 -0
- data/lib/byebug/printers/texts/plain.yml +33 -0
- data/lib/byebug/processors/command_processor.rb +173 -0
- data/lib/byebug/processors/control_processor.rb +24 -0
- data/lib/byebug/processors/post_mortem_processor.rb +18 -0
- data/lib/byebug/processors/script_processor.rb +49 -0
- data/lib/byebug/remote/client.rb +57 -0
- data/lib/byebug/remote/server.rb +47 -0
- data/lib/byebug/remote.rb +85 -0
- data/lib/byebug/runner.rb +198 -0
- data/lib/byebug/setting.rb +79 -0
- data/lib/byebug/settings/autoirb.rb +29 -0
- data/lib/byebug/settings/autolist.rb +29 -0
- data/lib/byebug/settings/autopry.rb +29 -0
- data/lib/byebug/settings/autosave.rb +17 -0
- data/lib/byebug/settings/basename.rb +16 -0
- data/lib/byebug/settings/callstyle.rb +20 -0
- data/lib/byebug/settings/fullpath.rb +16 -0
- data/lib/byebug/settings/histfile.rb +20 -0
- data/lib/byebug/settings/histsize.rb +20 -0
- data/lib/byebug/settings/linetrace.rb +22 -0
- data/lib/byebug/settings/listsize.rb +21 -0
- data/lib/byebug/settings/post_mortem.rb +27 -0
- data/lib/byebug/settings/savefile.rb +20 -0
- data/lib/byebug/settings/stack_on_error.rb +15 -0
- data/lib/byebug/settings/width.rb +20 -0
- data/lib/byebug/source_file_formatter.rb +71 -0
- data/lib/byebug/subcommands.rb +54 -0
- data/lib/byebug/version.rb +8 -0
- data/lib/byebug.rb +3 -0
- metadata +194 -0
data/CHANGELOG.md
ADDED
@@ -0,0 +1,954 @@
|
|
1
|
+
## v11.2.0 (2025-02-04)
|
2
|
+
|
3
|
+
- Release via RubyGems as `runger_byebug`.
|
4
|
+
- Delete `.bundle/config`.
|
5
|
+
|
6
|
+
### Changed
|
7
|
+
|
8
|
+
* [#690](https://github.com/deivid-rodriguez/byebug/pull/690): `break` without any arguments now sets a breakpoint on the current line, just like `gdb`.
|
9
|
+
|
10
|
+
### Fixed
|
11
|
+
|
12
|
+
* [#741](https://github.com/deivid-rodriguez/byebug/pull/741): Small consistency issues in help messages.
|
13
|
+
* [#743](https://github.com/deivid-rodriguez/byebug/pull/743): `untracevar` command crashing when giving a non existent global variable.
|
14
|
+
* [#744](https://github.com/deivid-rodriguez/byebug/pull/744): Another punctuation tweak in `enable breakpoints` help message.
|
15
|
+
* [#736](https://github.com/deivid-rodriguez/byebug/pull/736): Skip warning about `$SAFE` global variable on ruby 2.7 when listing global variables.
|
16
|
+
|
17
|
+
### Added
|
18
|
+
|
19
|
+
* [#688](https://github.com/deivid-rodriguez/byebug/pull/688): `where` command now receives an optional numeric argument `<n>` to print the nth first frames.
|
20
|
+
|
21
|
+
### Removed
|
22
|
+
|
23
|
+
* Support for MRI 2.4. Byebug no longer installs on this platform.
|
24
|
+
|
25
|
+
## [11.1.3] - 2020-04-23
|
26
|
+
|
27
|
+
### Fixed
|
28
|
+
|
29
|
+
* [#674](https://github.com/deivid-rodriguez/byebug/pull/674): crash when using byebug on ruby 2.7.0 on Windows.
|
30
|
+
|
31
|
+
## [11.1.2] - 2020-04-17
|
32
|
+
|
33
|
+
### Fixed
|
34
|
+
|
35
|
+
* [#657](https://github.com/deivid-rodriguez/byebug/pull/657): crash when hitting \<TAB\> due to IRB completion mechanism included in the default ruby 2.7 version of the `irb` gem ([@terceiro]).
|
36
|
+
|
37
|
+
## [11.1.1] - 2020-01-24
|
38
|
+
|
39
|
+
### Fixed
|
40
|
+
|
41
|
+
* [#635](https://github.com/deivid-rodriguez/byebug/pull/635): usage on Fedora 31 or any other `byebug` installation performed by a `rubygems` copy customized by setting `Gem.install_extension_in_lib` to false.
|
42
|
+
|
43
|
+
## [11.1.0] - 2020-01-20
|
44
|
+
|
45
|
+
### Added
|
46
|
+
|
47
|
+
* Official support for MRI 2.7 ([@yui-knk]).
|
48
|
+
|
49
|
+
### Fixed
|
50
|
+
|
51
|
+
* [#562](https://github.com/deivid-rodriguez/byebug/pull/562): post mortem mode landing in the wrong line when coming from an exception inside a `Kernel.load` call.
|
52
|
+
|
53
|
+
### Removed
|
54
|
+
|
55
|
+
* Support for MRI 2.3. Byebug no longer installs on this platform.
|
56
|
+
|
57
|
+
## [11.0.1] - 2019-03-18
|
58
|
+
|
59
|
+
### Fixed
|
60
|
+
|
61
|
+
* [#546](https://github.com/deivid-rodriguez/byebug/pull/546): `continue!` to ignore further `byebug` calls.
|
62
|
+
* [#545](https://github.com/deivid-rodriguez/byebug/pull/545): `skip` autolisting code for intermediate skipped breakpoints.
|
63
|
+
|
64
|
+
## [11.0.0] - 2019-02-15
|
65
|
+
|
66
|
+
### Added
|
67
|
+
|
68
|
+
* [#377](https://github.com/deivid-rodriguez/byebug/pull/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]).
|
69
|
+
* [#524](https://github.com/deivid-rodriguez/byebug/pull/524): `continue!` (or `continue unconditionally`) to continue until the end of the program regardless of the currently enabled breakpoints ([@tacnoman]).
|
70
|
+
|
71
|
+
### Fixed
|
72
|
+
|
73
|
+
* [#527](https://github.com/deivid-rodriguez/byebug/pull/527): `break` help text to clarify placeholders from literals.
|
74
|
+
* [#528](https://github.com/deivid-rodriguez/byebug/pull/528): `quit!` help to not show a space between "quit" and "!".
|
75
|
+
|
76
|
+
### Removed
|
77
|
+
|
78
|
+
* Support for MRI 2.2. Byebug no longer installs on this platform.
|
79
|
+
|
80
|
+
## [10.0.2] - 2018-03-30
|
81
|
+
|
82
|
+
### Fixed
|
83
|
+
|
84
|
+
* [#447](https://github.com/deivid-rodriguez/byebug/pull/447): Error when using byebug with `debase` gem ([@tzmfreedom]).
|
85
|
+
|
86
|
+
## [10.0.1] - 2018-03-21
|
87
|
+
|
88
|
+
### Fixed
|
89
|
+
|
90
|
+
* [#443](https://github.com/deivid-rodriguez/byebug/pull/443): Error when using byebug with `debase` gem ([@tzmfreedom]).
|
91
|
+
|
92
|
+
## [10.0.0] - 2018-01-26
|
93
|
+
|
94
|
+
### Changed
|
95
|
+
|
96
|
+
* Breaking on methods now stops on the first effective line of a method, not on the line containing the `def` keyword.
|
97
|
+
|
98
|
+
### Added
|
99
|
+
|
100
|
+
* [#393](https://github.com/deivid-rodriguez/byebug/pull/393): Show valid breakpoint locations when invalid location given ([@ko1]).
|
101
|
+
* [#397](https://github.com/deivid-rodriguez/byebug/pull/397): Ruby 2.5.0 support ([@yui-knk]).
|
102
|
+
* Log host & port when launching byebug's client in remote mode.
|
103
|
+
* [#82](https://github.com/deivid-rodriguez/byebug/issues/82): Some love & tests to remote debugging.
|
104
|
+
* [#141](https://github.com/deivid-rodriguez/byebug/issues/141): `remote_byebug` shortcut to start the most common case for remote debugging.
|
105
|
+
|
106
|
+
### Fixed
|
107
|
+
|
108
|
+
* [#419](https://github.com/deivid-rodriguez/byebug/pull/419): Properly ignore ruby fullpath executable when passed to byebug script.
|
109
|
+
* [#141](https://github.com/deivid-rodriguez/byebug/issues/141): Remote server crash when interrupting client.
|
110
|
+
* [#274](https://github.com/deivid-rodriguez/byebug/issues/274): Remote server crash when interrupting client.
|
111
|
+
* [#239](https://github.com/deivid-rodriguez/byebug/issues/239): Control server thread being able to `interrupt` main thread only a single time.
|
112
|
+
|
113
|
+
## [9.1.0] - 2017-08-22
|
114
|
+
|
115
|
+
### Added
|
116
|
+
|
117
|
+
* Better UI messages for breakpoint management.
|
118
|
+
|
119
|
+
### Fixed
|
120
|
+
|
121
|
+
* `where` command failing on instance_exec block stack frames.
|
122
|
+
* [#321](https://github.com/deivid-rodriguez/byebug/pull/321): `restart` command crashing in certain cases because of a missing `require "English"` ([@akaneko3]).
|
123
|
+
* [#321](https://github.com/deivid-rodriguez/byebug/pull/321): `restart` command crashing when debugged script is not executable or has no shebang ([@akaneko3]).
|
124
|
+
|
125
|
+
### Removed
|
126
|
+
|
127
|
+
* Ruby 2.0 and Ruby 2.1 official & unofficial support. Byebug no longer installs on these platforms.
|
128
|
+
|
129
|
+
## [9.0.6] - 2016-09-29
|
130
|
+
|
131
|
+
### Fixed
|
132
|
+
|
133
|
+
* [#241](https://github.com/deivid-rodriguez/byebug/issues/241): Error when using `byebug` with a ruby compiled against libedit.
|
134
|
+
* [#277](https://github.com/deivid-rodriguez/byebug/pull/277): Allow `Byebug.start_server` to yield the block passed to it when the actual port is already known ([@cben]).
|
135
|
+
* [#275](https://github.com/deivid-rodriguez/byebug/pull/275): Use a standard license name so it can be more reliably used by tools.
|
136
|
+
|
137
|
+
## [9.0.5] - 2016-05-28
|
138
|
+
|
139
|
+
### Fixed
|
140
|
+
|
141
|
+
* Error loading rc file when `ENV["HOME"]` is unset.
|
142
|
+
|
143
|
+
## [9.0.4] - 2016-05-19
|
144
|
+
|
145
|
+
### Fixed
|
146
|
+
|
147
|
+
* Errors in rc file not being displayed to the user.
|
148
|
+
|
149
|
+
## [9.0.3] - 2016-05-16
|
150
|
+
|
151
|
+
### Fixed
|
152
|
+
|
153
|
+
* [#256](https://github.com/deivid-rodriguez/byebug/issues/256): Unfriendly output in byebug's executable when no script specified.
|
154
|
+
* Unfriendly output in byebug's executable when script doesn't exist.
|
155
|
+
* Unfriendly output in byebug's executable when script has invalid code.
|
156
|
+
|
157
|
+
## [9.0.2] - 2016-05-15
|
158
|
+
|
159
|
+
### Fixed
|
160
|
+
|
161
|
+
* [#263](https://github.com/deivid-rodriguez/byebug/pull/263): Skip to get a line in eval context ([@k0kubun]).
|
162
|
+
* [#264](https://github.com/deivid-rodriguez/byebug/pull/264): Debugger getting disabled after `continue` even when linetrace is enabled ([@k0kubun]).
|
163
|
+
|
164
|
+
## [9.0.1] - 2016-05-14
|
165
|
+
|
166
|
+
### Fixed
|
167
|
+
|
168
|
+
* [#201](https://github.com/deivid-rodriguez/byebug/issues/201): `quit` never exiting when remote debugging.
|
169
|
+
|
170
|
+
## [9.0.0] - 2016-05-11
|
171
|
+
|
172
|
+
### Fixed
|
173
|
+
|
174
|
+
* `irb` command unintentionally changing $PROGRAM_NAME.
|
175
|
+
* `pry` command failing.
|
176
|
+
* Unrelated error message when using `pry` command and Pry not installed.
|
177
|
+
* [#239](https://github.com/deivid-rodriguez/byebug/issues/239): Interrupting program execution from remote control interface ([@izaera]).
|
178
|
+
|
179
|
+
### Removed
|
180
|
+
|
181
|
+
* Official Ruby 2.0.0 support. `var local` no longer works in Ruby 2.0. The rest of the commands should still work as before, but `byebug` is no longer tested against this version so they might start breaking in the future.
|
182
|
+
|
183
|
+
## [8.2.5] - 2016-04-27
|
184
|
+
|
185
|
+
### Fixed
|
186
|
+
|
187
|
+
* [#244](https://github.com/deivid-rodriguez/byebug/pull/244): Allows paths with spaces ([@HookyQR]).
|
188
|
+
* [#244](https://github.com/deivid-rodriguez/byebug/pull/244): Allows paths with colons ([@HookyQR]).
|
189
|
+
|
190
|
+
## [8.2.4] - 2016-04-08
|
191
|
+
|
192
|
+
### Fixed
|
193
|
+
|
194
|
+
* Reverts [#211](https://github.com/deivid-rodriguez/byebug/pull/211) which leads to an unusable debugger.
|
195
|
+
|
196
|
+
## [8.2.3] - 2016-04-07
|
197
|
+
|
198
|
+
### Fixed
|
199
|
+
|
200
|
+
* Better interaction with utilities like RSpec when hitting Ctrl-C.
|
201
|
+
* [#197](https://github.com/deivid-rodriguez/byebug/issues/197): `irb` command when original program modified ARGV ([@josephks]).
|
202
|
+
* [#211](https://github.com/deivid-rodriguez/byebug/pull/211): Unusable debugger when stdin redirected ([@sethk]).
|
203
|
+
* [#223](https://github.com/deivid-rodriguez/byebug/issues/223): RC file loading when no explicit flag included.
|
204
|
+
* [#175](https://github.com/deivid-rodriguez/byebug/issues/175): Installation on some Windows systems.
|
205
|
+
* [#226](https://github.com/deivid-rodriguez/byebug/issues/226): Installation on some Windows systems.
|
206
|
+
|
207
|
+
## [8.2.2] - 2016-02-01
|
208
|
+
|
209
|
+
### Fixed
|
210
|
+
|
211
|
+
* Bug in rc file loading where most initialization commands would not be run.
|
212
|
+
|
213
|
+
## [8.2.1] - 2015-11-26
|
214
|
+
|
215
|
+
### Fixed
|
216
|
+
|
217
|
+
* Bug in evaluations using "eval".
|
218
|
+
|
219
|
+
## [8.2.0] - 2015-11-12
|
220
|
+
|
221
|
+
### Fixed
|
222
|
+
|
223
|
+
* [#184](https://github.com/deivid-rodriguez/byebug/issues/184): Due to the way of running evaluations in a separate thread.
|
224
|
+
* [#188](https://github.com/deivid-rodriguez/byebug/issues/188): Due to the way of running evaluations in a separate thread.
|
225
|
+
|
226
|
+
### Added
|
227
|
+
|
228
|
+
* `debug` command to evaluate things in a separate thread, since this behavior was removed from default `eval` to fix the above issues.
|
229
|
+
|
230
|
+
## [8.1.0] - 2015-11-09
|
231
|
+
|
232
|
+
### Fixed
|
233
|
+
|
234
|
+
* Command history should be specific per project.
|
235
|
+
* Better error message in certain edge cases when printing the backtrace.
|
236
|
+
* Bug in evaluator which would show information about having stopped at a breakpoint in some cases.
|
237
|
+
|
238
|
+
### Added
|
239
|
+
|
240
|
+
* Ability to autolist source code after `frame` command.
|
241
|
+
* Ability to stop at lines where methods return.
|
242
|
+
|
243
|
+
## [8.0.1] - 2015-11-07
|
244
|
+
|
245
|
+
### Fixed
|
246
|
+
|
247
|
+
* Error stream wouldn't be properly reset when using standalone `byebug`.
|
248
|
+
* Confusing error message for invalid breakpoint locations.
|
249
|
+
|
250
|
+
## [8.0.0] - 2015-11-05
|
251
|
+
|
252
|
+
### Fixed
|
253
|
+
|
254
|
+
* [#183](https://github.com/deivid-rodriguez/byebug/issues/183). Compilation in Ruby 2.0. Regression introduced in [7.0.0].
|
255
|
+
* "Return value is: nil" would be displayed when stopping right before the end of a class definition. We want to avoid showing anything instead.
|
256
|
+
|
257
|
+
### Changed
|
258
|
+
|
259
|
+
* Plugins now need to implement an `at_end` method (separate from `at_return`) in their custom processors.
|
260
|
+
|
261
|
+
## [7.0.0] - 2015-11-04
|
262
|
+
|
263
|
+
### Fixed
|
264
|
+
|
265
|
+
* [#177](https://github.com/deivid-rodriguez/byebug/issues/177). Some issues with formatting results of evaluations.
|
266
|
+
* [#144](https://github.com/deivid-rodriguez/byebug/issues/144). Ruby process after using byebug does no longer get slow.
|
267
|
+
* [#121](https://github.com/deivid-rodriguez/byebug/issues/121). `byebug` commands inside code evaluated from debugger's prompt are now properly working.
|
268
|
+
* Another evaluation bug in autocommands.
|
269
|
+
* `finish 0` command would sometimes fail to stop right before exiting the current frame.
|
270
|
+
* Runner's `--[no-]stop` option now works ([@windwiny]).
|
271
|
+
* Change variable name `bool`, avoid conflict clang's predefined macro.
|
272
|
+
|
273
|
+
### Removed
|
274
|
+
|
275
|
+
* `ps` command.
|
276
|
+
|
277
|
+
### Changed
|
278
|
+
|
279
|
+
* [#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 ([@bquorning]).
|
280
|
+
* 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.
|
281
|
+
|
282
|
+
### Added
|
283
|
+
|
284
|
+
* `autopry` setting that calls `pry` on every stop.
|
285
|
+
* Return value information to debugger's output when `finish 0` is used.
|
286
|
+
|
287
|
+
## [6.0.2] - 2015-08-20
|
288
|
+
|
289
|
+
### Fixed
|
290
|
+
|
291
|
+
* The user should always be given back a prompt unless (s)he explicitly states the opposite. This provides a more general fix to the bug resolved in [6.0.1].
|
292
|
+
|
293
|
+
## [6.0.1] - 2015-08-19
|
294
|
+
|
295
|
+
### Fixed
|
296
|
+
|
297
|
+
* Bug in evaluation where the user would lose the command prompt when entering an expression with a syntax error.
|
298
|
+
|
299
|
+
## [6.0.0] - 2015-08-17
|
300
|
+
|
301
|
+
### Removed
|
302
|
+
|
303
|
+
* `autoeval` setting. I haven't heard of anyone setting it to false.
|
304
|
+
* `pp`, `putl`, `eval`. People just want to evaluate Ruby code, so the less magic the better. Most of the people probably were not aware that `byebug` was overriding stuff like `pp` or `eval`. Only keeping `ps` as the single "enhanced evaluation" command.
|
305
|
+
* `verbose` setting.
|
306
|
+
* `info catch` command. Use `catch` without arguments instead.
|
307
|
+
* `R` command alias for `restart`.
|
308
|
+
|
309
|
+
### Changed
|
310
|
+
|
311
|
+
* `info args` is now `var args`.
|
312
|
+
* `interrupt` is now aliased to `int`, not to `i`.
|
313
|
+
* API to define custom commands and subcommands (see the Command class).
|
314
|
+
|
315
|
+
### Fixed
|
316
|
+
|
317
|
+
* [#140](https://github.com/deivid-rodriguez/byebug/issues/140). `help` command not showing the list of available commands and their descriptions.
|
318
|
+
* [#147](https://github.com/deivid-rodriguez/byebug/issues/147). Setting breakpoints at symlinked files.
|
319
|
+
|
320
|
+
### Added
|
321
|
+
|
322
|
+
* API to define custom command processors (see the CommandProcessor class).
|
323
|
+
|
324
|
+
## [5.0.0] - 2015-05-18
|
325
|
+
|
326
|
+
### Fixed
|
327
|
+
|
328
|
+
* [#136](https://github.com/deivid-rodriguez/byebug/issues/136). `frame` command not working with negative numbers ([@ark6]).
|
329
|
+
|
330
|
+
### Added
|
331
|
+
|
332
|
+
* IDE support and a new command/subcommand API for plugins.
|
333
|
+
* Add a "savefile" setting holding the file where "save" command saves current debugger's state.
|
334
|
+
|
335
|
+
### Changed
|
336
|
+
|
337
|
+
* `disable` no longer disable all breakpoints, it just shows command's help instead. To disable all breakpoints now you need to do `disable breakpoints` (or `dis b`). Similarly, you can't no longer use `dis 1 2 3` but need to do `dis b 1 2 3` to disable specific breakpoints. The same applies to the `enable` command.
|
338
|
+
|
339
|
+
### Removed
|
340
|
+
|
341
|
+
* `help set <setting>` no longer works. `help set` includes that same output and it's not verbose enough so that this is a problem. Same with `help show <setting>`.
|
342
|
+
|
343
|
+
## [4.0.5] - 2015-04-02
|
344
|
+
|
345
|
+
### Fixed
|
346
|
+
|
347
|
+
* [#131](https://github.com/deivid-rodriguez/byebug/issues/131).
|
348
|
+
* Thread commands help format should be consistent with the rest of the help system now.
|
349
|
+
|
350
|
+
## [4.0.4] - 2015-03-27
|
351
|
+
|
352
|
+
### Fixed
|
353
|
+
|
354
|
+
* [#127](https://github.com/deivid-rodriguez/byebug/issues/127).
|
355
|
+
|
356
|
+
## [4.0.3] - 2015-03-19
|
357
|
+
|
358
|
+
### Fixed
|
359
|
+
|
360
|
+
* Unused variable warning in `context.c`.
|
361
|
+
|
362
|
+
## [4.0.2] - 2015-03-16
|
363
|
+
|
364
|
+
### Fixed
|
365
|
+
|
366
|
+
* [#118](https://github.com/deivid-rodriguez/byebug/issues/118). Remove `rb-readline` as a dependency and show a help message whenever requiring `readline` fails instead.
|
367
|
+
|
368
|
+
## [4.0.1] - 2015-03-13
|
369
|
+
|
370
|
+
### Fixed
|
371
|
+
|
372
|
+
* .yml files needed for printers support were missing from the release... :S
|
373
|
+
* [#118](https://github.com/deivid-rodriguez/byebug/issues/118). Add `readline` as a dependency.
|
374
|
+
|
375
|
+
## [4.0.0] - 2015-03-13
|
376
|
+
|
377
|
+
### Added
|
378
|
+
|
379
|
+
* `untracevar` command that stops tracing a global variable.
|
380
|
+
* Window CI build through AppVeyor.
|
381
|
+
* OSX CI build through Travis.
|
382
|
+
* Style enforcement through RuboCop.
|
383
|
+
* C style enforment using the `indent` command line utility.
|
384
|
+
* Some remote debugging tests ([@eric-hu]).
|
385
|
+
* Printer's support ([@astashov]).
|
386
|
+
|
387
|
+
### Changed
|
388
|
+
|
389
|
+
* A lot of internal refactoring.
|
390
|
+
* `tracevar` now requires the full global variable name (with "$").
|
391
|
+
* [#92](https://github.com/deivid-rodriguez/byebug/issues/92). The `catch` command is not allowed in post_mortem mode anymore. It was not working anyways.
|
392
|
+
* [#85](https://github.com/deivid-rodriguez/byebug/issues/85). `step` is now more user friendly when used in combination with `up`.
|
393
|
+
* `var const` can now be called without an argument and will show constants in the current scope.
|
394
|
+
* `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.
|
395
|
+
|
396
|
+
### Fixed
|
397
|
+
|
398
|
+
* Code reloading issues.
|
399
|
+
* `set fullpath` was not showing fullpaths. Now it is.
|
400
|
+
* [#93](https://github.com/deivid-rodriguez/byebug/issues/93): `up`, `down` and `frame` commands now work in post_mortem mode.
|
401
|
+
* rc file (`.byebugrc`) loading: invalid commands are just ignored instead of aborting, global (home) rc file is now properly loaded before project's file.
|
402
|
+
* [#93](https://github.com/deivid-rodriguez/byebug/issues/93). Backtraces not working in `post_mortem` mode.
|
403
|
+
* 'cmd1 ; cmd2 ; ...; cmdN' syntax which allows running several commands sequentially.
|
404
|
+
* [#101](https://github.com/deivid-rodriguez/byebug/issues/101). `finish` command not stopping at the correct line.
|
405
|
+
* [#106](https://github.com/deivid-rodriguez/byebug/issues/106). `break` with namespaced class, like `break A::B#c` should now work.
|
406
|
+
* Command history is now persisted before exiting byebug.
|
407
|
+
* 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.
|
408
|
+
* [#122](https://github.com/deivid-rodriguez/byebug/issues/122). Setting breakpoints on module methods ([@x-yuri]).
|
409
|
+
|
410
|
+
### Removed
|
411
|
+
|
412
|
+
* `autoreload` setting as it's not necessary anymore. Code should always be up to date.
|
413
|
+
* `reload` command for the same reason.
|
414
|
+
* Gem dependency on `debugger-linecache`.
|
415
|
+
* `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.
|
416
|
+
* `info file` subcommands: `info file breakpoints`, `info file mtime`, `info file sha1`, `info file all`. Now all information is listed under `info file`.
|
417
|
+
* `testing` setting. It was just a hack to be able to test `byebug`. Nobody was supposed to actually use it!
|
418
|
+
* `var class` command, just use Ruby (`self.class.class_variables`).
|
419
|
+
* `p` command, just use `eval`, or just type your expression and `byebug` will autoevaluate it.
|
420
|
+
* `exit` alias for `quit`.
|
421
|
+
|
422
|
+
## [3.5.1] - 2014-09-29
|
423
|
+
|
424
|
+
### Fixed
|
425
|
+
|
426
|
+
* [#79](https://github.com/deivid-rodriguez/byebug/issues/79). Windows installation.
|
427
|
+
* `condition` command not properly detecting invalid breakpoint ids.
|
428
|
+
|
429
|
+
## [3.5.0] - 2014-09-28
|
430
|
+
|
431
|
+
### Fixed
|
432
|
+
|
433
|
+
* [#81](https://github.com/deivid-rodriguez/byebug/issues/81). Byebug's history messing up other programs using Readline.
|
434
|
+
* Readline's history not being properly saved and inmediately available.
|
435
|
+
* User not being notified when trying to debug a non existent script.
|
436
|
+
|
437
|
+
### Changed
|
438
|
+
|
439
|
+
* Complete rewrite of byebug's history.
|
440
|
+
* Complete rewrite of list command.
|
441
|
+
* Docs about stacktrace related commands (`up`, `down`, `frame`, `backtrace`).
|
442
|
+
|
443
|
+
## [3.4.2] - 2014-09-26
|
444
|
+
|
445
|
+
### Fixed
|
446
|
+
|
447
|
+
* [#67](https://github.com/deivid-rodriguez/byebug/issues/67). Debugging commands invoked by ruby executable, as in `byebug -- ruby -Itest a_test.rb -n test_something`.
|
448
|
+
|
449
|
+
## [3.4.1] - 2014-09-25
|
450
|
+
|
451
|
+
### Fixed
|
452
|
+
|
453
|
+
* [#54](https://github.com/deivid-rodriguez/byebug/issues/54). Use of threads inside `eval` command.
|
454
|
+
* `list` command not listing backwards after reaching the end of the file.
|
455
|
+
|
456
|
+
## [3.4.0] - 2014-09-01
|
457
|
+
|
458
|
+
### Fixed
|
459
|
+
|
460
|
+
* deivid-rodriguez/pry-byebug#32 in a better way.
|
461
|
+
|
462
|
+
## [3.3.0] - 2014-08-28
|
463
|
+
|
464
|
+
### Fixed
|
465
|
+
|
466
|
+
* `set verbose` command.
|
467
|
+
* `set post_mortem false` command.
|
468
|
+
* Debugger stopping in `byebug`'s internal frames in some cases.
|
469
|
+
* `backtrace` crashing when `fullpath` setting disabled and calculated stack size being smaller than the real one.
|
470
|
+
|
471
|
+
### Changed
|
472
|
+
|
473
|
+
* 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.
|
474
|
+
* `bin/byebug` libified and tests added.
|
475
|
+
|
476
|
+
### Removed
|
477
|
+
|
478
|
+
* `info locals` command. Use `var local` instead.
|
479
|
+
* `info instance_variables` command. Use `var instance` instead.
|
480
|
+
* `info global_variables` command. Use `var global` instead.
|
481
|
+
* `info variables` command. Use `var all` instead.
|
482
|
+
* `irb` command stepping capabilities, see [8e226d0](https://github.com/deivid-rodriguez/byebug/commit/8e226d0).
|
483
|
+
* `script` and `restart-script` options for `bin/byebug`.
|
484
|
+
|
485
|
+
## [3.2.0] - 2014-08-02
|
486
|
+
|
487
|
+
### Fixed
|
488
|
+
|
489
|
+
* [#71](https://github.com/deivid-rodriguez/byebug/issues/71). Remote debugging ([@shuky19]).
|
490
|
+
* [#69](https://github.com/deivid-rodriguez/byebug/issues/69). `source` command ([@Olgagr]).
|
491
|
+
|
492
|
+
### Removed
|
493
|
+
|
494
|
+
* `post_mortem` activation through `Byebug.post_mortem`. Use `set post_mortem` instead.
|
495
|
+
* `info stack` command. Use `where` instead.
|
496
|
+
* `method iv` command. Use `var instance` instead.
|
497
|
+
* [#77](https://github.com/deivid-rodriguez/byebug/issues/77). Warning.
|
498
|
+
|
499
|
+
## [3.1.2] - 2014-04-23
|
500
|
+
|
501
|
+
### Fixed
|
502
|
+
|
503
|
+
* `post_mortem` mode in `bin/byebug` (really).
|
504
|
+
* Line tracing in `bin/byebug`.
|
505
|
+
|
506
|
+
## [3.1.1] - 2014-04-23
|
507
|
+
|
508
|
+
### Fixed
|
509
|
+
|
510
|
+
* `post_mortem` mode in bin/byebug.
|
511
|
+
|
512
|
+
## [3.1.0] - 2014-04-23
|
513
|
+
|
514
|
+
### Removed
|
515
|
+
|
516
|
+
* `show commands` command. Use `history` instead.
|
517
|
+
* Byebug.start accepting options. Any program settings you want applied from the start should be set in `.byebugrc`.
|
518
|
+
* `trace` command. Use `set linetrace` for line tracing and `tracevar` for global variable tracing.
|
519
|
+
* `show version` command. Use `byebug --version` to check byebug's version.
|
520
|
+
* `set arg` setting. Use the `restart` command instead.
|
521
|
+
|
522
|
+
### Changed
|
523
|
+
|
524
|
+
* `linetrace_plus` setting renamed to `tracing_plus`.
|
525
|
+
|
526
|
+
### Added
|
527
|
+
|
528
|
+
* `history` command to check byebug's history of previous commands.
|
529
|
+
|
530
|
+
## [3.0.0] - 2014-04-17
|
531
|
+
|
532
|
+
### Fixed
|
533
|
+
|
534
|
+
* Plain `byebug` not working when `pry-byebug` installed.
|
535
|
+
* `post_mortem` mode.
|
536
|
+
* Command history not being saved after regular program termination.
|
537
|
+
* [#54](https://github.com/deivid-rodriguez/byebug/issues/54). (Again) calling `Byebug.start` with `Timeout.timeout` ([@zmoazeni]).
|
538
|
+
|
539
|
+
### Added
|
540
|
+
|
541
|
+
* Allow disabling `post_mortem` mode.
|
542
|
+
|
543
|
+
### Changed
|
544
|
+
|
545
|
+
* `show commands` command for listing history of previous commands now behaves like shell's `history` command.
|
546
|
+
* `show/set history filename` is now `show/set histfile`.
|
547
|
+
* `show/set history size` is now `show/set histsize`.
|
548
|
+
* `show/set history save` is now `show/set autosave`.
|
549
|
+
* `finish` semantics, see [61f9b4d](https://github.com/deivid-rodriguez/byebug/commit/61f9b4d).
|
550
|
+
* Use per project history file by default.
|
551
|
+
|
552
|
+
### Removed
|
553
|
+
|
554
|
+
* The `init` option for `Byebug.start`. Information to make the `restart` command work is always saved now.
|
555
|
+
|
556
|
+
## [2.7.0] - 2014-02-24
|
557
|
+
|
558
|
+
### Fixed
|
559
|
+
|
560
|
+
* [#52](https://github.com/deivid-rodriguez/byebug/issues/52). `IGNORED_FILES` slowing down startup.
|
561
|
+
* [#53](https://github.com/deivid-rodriguez/byebug/issues/53). Calling `Byebug.start` with `Timeout.timeout`.
|
562
|
+
* [#54](https://github.com/deivid-rodriguez/byebug/issues/54). Calling `Byebug.start` with `Timeout.timeout`.
|
563
|
+
|
564
|
+
## [2.6.0] - 2014-02-08
|
565
|
+
|
566
|
+
### Fixed
|
567
|
+
|
568
|
+
* Circular dependency affecting `pry-byebug` ([@andreychernih]).
|
569
|
+
|
570
|
+
## [2.5.0] - 2013-12-14
|
571
|
+
|
572
|
+
### Added
|
573
|
+
|
574
|
+
* Support for `sublime-debugger`.
|
575
|
+
|
576
|
+
## [2.4.1] - 2013-12-05
|
577
|
+
|
578
|
+
### Fixed
|
579
|
+
|
580
|
+
* [#40](https://github.com/deivid-rodriguez/byebug/issues/40). Installation error in Mac OSX ([@luislavena]).
|
581
|
+
|
582
|
+
## [2.4.0] - 2013-12-02
|
583
|
+
|
584
|
+
### Fixed
|
585
|
+
|
586
|
+
* `thread list` showing too many threads.
|
587
|
+
* Fix setting post mortem mode with `set post_mortem`. Now this is the only post mortem functionality available as specifying `Byebug.post_mortem` with a block has been removed in this version.
|
588
|
+
|
589
|
+
### Added
|
590
|
+
|
591
|
+
* (Again) `debugger` as an alias to `byebug` ([@wallace]).
|
592
|
+
* `-R` option for `bin/byebug` to specify server's hostname:port for remote debugging ([@mrkn]).
|
593
|
+
|
594
|
+
### Changed
|
595
|
+
|
596
|
+
* Use `require` instead of `require_relative` for loading byebug's extension library ([@nobu]).
|
597
|
+
* `trace variable $foo` should be now `trace variable $foo`.
|
598
|
+
|
599
|
+
## [2.3.1] - 2013-10-17
|
600
|
+
|
601
|
+
### Fixed
|
602
|
+
|
603
|
+
* Breakpoint removal.
|
604
|
+
* Broken test suite.
|
605
|
+
|
606
|
+
## [2.3.0] - 2013-10-09
|
607
|
+
|
608
|
+
### Added
|
609
|
+
|
610
|
+
* Compatibility with Phusion Passenger Enterprise ([@FooBarWidget]).
|
611
|
+
|
612
|
+
### Changed
|
613
|
+
|
614
|
+
* More minimalist help system.
|
615
|
+
|
616
|
+
## [2.2.2] - 2013-09-25
|
617
|
+
|
618
|
+
### Fixed
|
619
|
+
|
620
|
+
* Compilation issue in 64 bit systems.
|
621
|
+
|
622
|
+
## [2.2.1] - 2013-09-24
|
623
|
+
|
624
|
+
### Fixed
|
625
|
+
|
626
|
+
* [#26](https://github.com/deivid-rodriguez/byebug/issues/26). Compilation issue introduced in [2.2.0].
|
627
|
+
|
628
|
+
### Changed
|
629
|
+
|
630
|
+
* `show/set stack_trace_on_error` is now `show/set stack_on_error`.
|
631
|
+
|
632
|
+
## [2.2.0] - 2013-09-22
|
633
|
+
|
634
|
+
### Fixed
|
635
|
+
|
636
|
+
* Stack size calculations.
|
637
|
+
* Setting `post_mortem` mode.
|
638
|
+
|
639
|
+
### Added
|
640
|
+
|
641
|
+
* `verbose` setting for TracePoint API event inspection.
|
642
|
+
|
643
|
+
### Changed
|
644
|
+
|
645
|
+
* Warning free byebug.
|
646
|
+
* Allow `edit <filename>` without a line number.
|
647
|
+
|
648
|
+
## [2.1.1] - 2013-09-10
|
649
|
+
|
650
|
+
### Fixed
|
651
|
+
|
652
|
+
* Debugging code inside `-e` Ruby flag.
|
653
|
+
|
654
|
+
## [2.1.0] - 2013-09-08
|
655
|
+
|
656
|
+
### Fixed
|
657
|
+
|
658
|
+
* Remote debugging display.
|
659
|
+
* `eval` crashing when inspecting raised an exception (reported by [@iblue]).
|
660
|
+
|
661
|
+
### Changed
|
662
|
+
|
663
|
+
* `enable breakpoints` now enables every breakpoint.
|
664
|
+
* `disable breakpoints` now disables every breakpoint.
|
665
|
+
|
666
|
+
## [2.0.0] - 2013-08-30
|
667
|
+
|
668
|
+
### Added
|
669
|
+
|
670
|
+
* "Official" definition of a command API.
|
671
|
+
* Thread support.
|
672
|
+
|
673
|
+
### Removed
|
674
|
+
|
675
|
+
* `jump` command. It had never worked.
|
676
|
+
|
677
|
+
### Changed
|
678
|
+
|
679
|
+
* Several internal refactorings.
|
680
|
+
|
681
|
+
## [1.8.2] - 2013-08-16
|
682
|
+
|
683
|
+
### Fixed
|
684
|
+
|
685
|
+
* `save` command now saves the list of `displays`.
|
686
|
+
* Stack size calculation.
|
687
|
+
|
688
|
+
### Changed
|
689
|
+
|
690
|
+
* More user friendly regexps for commands.
|
691
|
+
* Better help for some commands.
|
692
|
+
|
693
|
+
## [1.8.1] - 2013-08-12
|
694
|
+
|
695
|
+
### Fixed
|
696
|
+
|
697
|
+
* Major regression introduced in [1.8.0].
|
698
|
+
|
699
|
+
## [1.8.0] - 2013-08-12
|
700
|
+
|
701
|
+
### Added
|
702
|
+
|
703
|
+
* Remote debugging support.
|
704
|
+
|
705
|
+
## [1.7.0] - 2013-08-03
|
706
|
+
|
707
|
+
### Added
|
708
|
+
|
709
|
+
* List command automatically called after callstack navigation commands.
|
710
|
+
* C-frames specifically marked in the callstack.
|
711
|
+
* C-frames skipped when navigating the callstack.
|
712
|
+
|
713
|
+
## [1.6.1] - 2013-07-10
|
714
|
+
|
715
|
+
### Fixed
|
716
|
+
|
717
|
+
* Windows compatibiliy: compilation and terminal width issues.
|
718
|
+
|
719
|
+
## [1.6.0] - 2013-07-10
|
720
|
+
|
721
|
+
### Fixed
|
722
|
+
|
723
|
+
* `byebug` placed at the end of a block or method call not working as expected.
|
724
|
+
* `autolist` being applied when Ruby `-e` option used.
|
725
|
+
|
726
|
+
### Changed
|
727
|
+
|
728
|
+
* Backtrace callstyles. Use `long` for detailed frames in callstack and `short` for more concise frames.
|
729
|
+
|
730
|
+
## [1.5.0] - 2013-06-21
|
731
|
+
|
732
|
+
### Fixed
|
733
|
+
|
734
|
+
* Incomplete backtraces when the debugger was not started at program startup.
|
735
|
+
|
736
|
+
## [1.4.2] - 2013-06-20
|
737
|
+
|
738
|
+
### Fixed
|
739
|
+
|
740
|
+
* `help command subcommand` command.
|
741
|
+
* Interaction with Rails Console debugging flag.
|
742
|
+
* `post_mortem` mode when running byebug from the outset.
|
743
|
+
* `no-quit` flag when running byebug from the outset.
|
744
|
+
|
745
|
+
## [1.4.1] - 2013-06-15
|
746
|
+
|
747
|
+
### Fixed
|
748
|
+
|
749
|
+
* Crash when printing some filenames in backtraces.
|
750
|
+
* Allow byebug developers to easily use compilers different from gcc ([@GarthSnyder]).
|
751
|
+
|
752
|
+
## [1.4.0] - 2013-06-05
|
753
|
+
|
754
|
+
### Fixed
|
755
|
+
|
756
|
+
* Memory leaks causing `byebug` to randomly crash.
|
757
|
+
|
758
|
+
### Changed
|
759
|
+
|
760
|
+
* Use the Debug Inspector API for backtrace information.
|
761
|
+
|
762
|
+
## [1.3.1] - 2013-06-02
|
763
|
+
|
764
|
+
### Fixed
|
765
|
+
|
766
|
+
* Interaction with Rails debugging flag.
|
767
|
+
* Crash when trying to print lines of code containing the character '%'.
|
768
|
+
* `basename` and `linetrace` options not working together.
|
769
|
+
|
770
|
+
## [1.3.0] - 2013-05-25
|
771
|
+
|
772
|
+
### Added
|
773
|
+
|
774
|
+
* Support colon-delimited include paths in command-line front-end ([@ender672]).
|
775
|
+
|
776
|
+
## [1.2.0] - 2013-05-20
|
777
|
+
|
778
|
+
### Fixed
|
779
|
+
|
780
|
+
* Ctrl+C during command line editing (works like pry/irb).
|
781
|
+
|
782
|
+
### Added
|
783
|
+
|
784
|
+
* `pry` command.
|
785
|
+
|
786
|
+
## [1.1.1] - 2013-05-07
|
787
|
+
|
788
|
+
### Added
|
789
|
+
|
790
|
+
* `pry-byebug` compatibility.
|
791
|
+
|
792
|
+
### Changed
|
793
|
+
|
794
|
+
* Better help system.
|
795
|
+
* Code cleanup.
|
796
|
+
|
797
|
+
## [1.1.0] - 2013-04-30
|
798
|
+
|
799
|
+
### Added
|
800
|
+
|
801
|
+
* Post Mortem support.
|
802
|
+
|
803
|
+
## [1.0.3] - 2013-04-23
|
804
|
+
|
805
|
+
### Fixed
|
806
|
+
|
807
|
+
* Negative line numbers shown by list command at the beginning of file.
|
808
|
+
* `backtrace` command segfaulting when trying to show info on some frame args. Don't know the reason yet, but the exception is handled now and command does not segfault anymore.
|
809
|
+
|
810
|
+
### Changed
|
811
|
+
|
812
|
+
* `autoreload` is set by default now.
|
813
|
+
* Try some thread support (not even close to usable).
|
814
|
+
|
815
|
+
## [1.0.2] - 2013-04-09
|
816
|
+
|
817
|
+
### Fixed
|
818
|
+
|
819
|
+
* backtraces messed up when using both `next`/`step` and backtrace navigation commands.
|
820
|
+
|
821
|
+
### Changed
|
822
|
+
|
823
|
+
* `autolist` and `autoeval` are default settings now.
|
824
|
+
|
825
|
+
## [1.0.1] - 2013-04-06
|
826
|
+
|
827
|
+
### Fixed
|
828
|
+
|
829
|
+
* Byebug not loading properly.
|
830
|
+
|
831
|
+
## [1.0.0] - 2013-03-29
|
832
|
+
|
833
|
+
### Fixed
|
834
|
+
|
835
|
+
* Green test suite.
|
836
|
+
|
837
|
+
## 0.0.1 - 2013-03-18
|
838
|
+
|
839
|
+
### Added
|
840
|
+
|
841
|
+
* Initial release.
|
842
|
+
|
843
|
+
[Unreleased]: https://github.com/deivid-rodriguez/byebug/compare/v11.1.3...HEAD
|
844
|
+
[11.1.3]: https://github.com/deivid-rodriguez/byebug/compare/v11.1.2...v11.1.3
|
845
|
+
[11.1.2]: https://github.com/deivid-rodriguez/byebug/compare/v11.1.1...v11.1.2
|
846
|
+
[11.1.1]: https://github.com/deivid-rodriguez/byebug/compare/v11.1.0...v11.1.1
|
847
|
+
[11.1.0]: https://github.com/deivid-rodriguez/byebug/compare/v11.0.1...v11.1.0
|
848
|
+
[11.0.1]: https://github.com/deivid-rodriguez/byebug/compare/v11.0.0...v11.0.1
|
849
|
+
[11.0.0]: https://github.com/deivid-rodriguez/byebug/compare/v10.0.2...v11.0.0
|
850
|
+
[10.0.2]: https://github.com/deivid-rodriguez/byebug/compare/v10.0.1...v10.0.2
|
851
|
+
[10.0.1]: https://github.com/deivid-rodriguez/byebug/compare/v10.0.0...v10.0.1
|
852
|
+
[10.0.0]: https://github.com/deivid-rodriguez/byebug/compare/v9.1.0...v10.0.0
|
853
|
+
[9.1.0]: https://github.com/deivid-rodriguez/byebug/compare/v9.0.6...v9.1.0
|
854
|
+
[9.0.6]: https://github.com/deivid-rodriguez/byebug/compare/v9.0.5...v9.0.6
|
855
|
+
[9.0.5]: https://github.com/deivid-rodriguez/byebug/compare/v9.0.4...v9.0.5
|
856
|
+
[9.0.4]: https://github.com/deivid-rodriguez/byebug/compare/v9.0.3...v9.0.4
|
857
|
+
[9.0.3]: https://github.com/deivid-rodriguez/byebug/compare/v9.0.2...v9.0.3
|
858
|
+
[9.0.2]: https://github.com/deivid-rodriguez/byebug/compare/v9.0.1...v9.0.2
|
859
|
+
[9.0.1]: https://github.com/deivid-rodriguez/byebug/compare/v9.0.0...v9.0.1
|
860
|
+
[9.0.0]: https://github.com/deivid-rodriguez/byebug/compare/v8.2.5...v9.0.0
|
861
|
+
[8.2.5]: https://github.com/deivid-rodriguez/byebug/compare/v8.2.4...v8.2.5
|
862
|
+
[8.2.4]: https://github.com/deivid-rodriguez/byebug/compare/v8.2.3...v8.2.4
|
863
|
+
[8.2.3]: https://github.com/deivid-rodriguez/byebug/compare/v8.2.2...v8.2.3
|
864
|
+
[8.2.2]: https://github.com/deivid-rodriguez/byebug/compare/v8.2.1...v8.2.2
|
865
|
+
[8.2.1]: https://github.com/deivid-rodriguez/byebug/compare/v8.2.0...v8.2.1
|
866
|
+
[8.2.0]: https://github.com/deivid-rodriguez/byebug/compare/v8.1.0...v8.2.0
|
867
|
+
[8.1.0]: https://github.com/deivid-rodriguez/byebug/compare/v8.0.1...v8.1.0
|
868
|
+
[8.0.1]: https://github.com/deivid-rodriguez/byebug/compare/v8.0.0...v8.0.1
|
869
|
+
[8.0.0]: https://github.com/deivid-rodriguez/byebug/compare/v7.0.0...v8.0.0
|
870
|
+
[7.0.0]: https://github.com/deivid-rodriguez/byebug/compare/v6.0.2...v7.0.0
|
871
|
+
[6.0.2]: https://github.com/deivid-rodriguez/byebug/compare/v6.0.1...v6.0.2
|
872
|
+
[6.0.1]: https://github.com/deivid-rodriguez/byebug/compare/v6.0.0...v6.0.1
|
873
|
+
[6.0.0]: https://github.com/deivid-rodriguez/byebug/compare/v5.0.0...v6.0.0
|
874
|
+
[5.0.0]: https://github.com/deivid-rodriguez/byebug/compare/v4.0.5...v5.0.0
|
875
|
+
[4.0.5]: https://github.com/deivid-rodriguez/byebug/compare/v4.0.4...v4.0.5
|
876
|
+
[4.0.4]: https://github.com/deivid-rodriguez/byebug/compare/v4.0.3...v4.0.4
|
877
|
+
[4.0.3]: https://github.com/deivid-rodriguez/byebug/compare/v4.0.2...v4.0.3
|
878
|
+
[4.0.2]: https://github.com/deivid-rodriguez/byebug/compare/v4.0.1...v4.0.2
|
879
|
+
[4.0.1]: https://github.com/deivid-rodriguez/byebug/compare/v4.0.0...v4.0.1
|
880
|
+
[4.0.0]: https://github.com/deivid-rodriguez/byebug/compare/v3.5.1...v4.0.0
|
881
|
+
[3.5.1]: https://github.com/deivid-rodriguez/byebug/compare/v3.5.0...v3.5.1
|
882
|
+
[3.5.0]: https://github.com/deivid-rodriguez/byebug/compare/v3.4.2...v3.5.0
|
883
|
+
[3.4.2]: https://github.com/deivid-rodriguez/byebug/compare/v3.4.1...v3.4.2
|
884
|
+
[3.4.1]: https://github.com/deivid-rodriguez/byebug/compare/v3.4.0...v3.4.1
|
885
|
+
[3.4.0]: https://github.com/deivid-rodriguez/byebug/compare/v3.3.0...v3.4.0
|
886
|
+
[3.3.0]: https://github.com/deivid-rodriguez/byebug/compare/v3.2.0...v3.3.0
|
887
|
+
[3.2.0]: https://github.com/deivid-rodriguez/byebug/compare/v3.1.2...v3.2.0
|
888
|
+
[3.1.2]: https://github.com/deivid-rodriguez/byebug/compare/v3.1.1...v3.1.2
|
889
|
+
[3.1.1]: https://github.com/deivid-rodriguez/byebug/compare/v3.1.0...v3.1.1
|
890
|
+
[3.1.0]: https://github.com/deivid-rodriguez/byebug/compare/v3.0.0...v3.1.0
|
891
|
+
[3.0.0]: https://github.com/deivid-rodriguez/byebug/compare/v2.7.0...v3.0.0
|
892
|
+
[2.7.0]: https://github.com/deivid-rodriguez/byebug/compare/v2.6.0...v2.7.0
|
893
|
+
[2.6.0]: https://github.com/deivid-rodriguez/byebug/compare/v2.5.0...v2.6.0
|
894
|
+
[2.5.0]: https://github.com/deivid-rodriguez/byebug/compare/v2.4.1...v2.5.0
|
895
|
+
[2.4.1]: https://github.com/deivid-rodriguez/byebug/compare/v2.4.0...v2.4.1
|
896
|
+
[2.4.0]: https://github.com/deivid-rodriguez/byebug/compare/v2.3.1...v2.4.0
|
897
|
+
[2.3.1]: https://github.com/deivid-rodriguez/byebug/compare/v2.3.0...v2.3.1
|
898
|
+
[2.3.0]: https://github.com/deivid-rodriguez/byebug/compare/v2.2.2...v2.3.0
|
899
|
+
[2.2.2]: https://github.com/deivid-rodriguez/byebug/compare/v2.2.1...v2.2.2
|
900
|
+
[2.2.1]: https://github.com/deivid-rodriguez/byebug/compare/v2.2.0...v2.2.1
|
901
|
+
[2.2.0]: https://github.com/deivid-rodriguez/byebug/compare/v2.1.1...v2.2.0
|
902
|
+
[2.1.1]: https://github.com/deivid-rodriguez/byebug/compare/v2.1.0...v2.1.1
|
903
|
+
[2.1.0]: https://github.com/deivid-rodriguez/byebug/compare/v2.0.0...v2.1.0
|
904
|
+
[2.0.0]: https://github.com/deivid-rodriguez/byebug/compare/v1.8.2...v2.0.0
|
905
|
+
[1.8.2]: https://github.com/deivid-rodriguez/byebug/compare/v1.8.1...v1.8.2
|
906
|
+
[1.8.1]: https://github.com/deivid-rodriguez/byebug/compare/v1.8.0...v1.8.1
|
907
|
+
[1.8.0]: https://github.com/deivid-rodriguez/byebug/compare/v1.7.0...v1.8.0
|
908
|
+
[1.7.0]: https://github.com/deivid-rodriguez/byebug/compare/v1.6.1...v1.7.0
|
909
|
+
[1.6.1]: https://github.com/deivid-rodriguez/byebug/compare/v1.6.0...v1.6.1
|
910
|
+
[1.6.0]: https://github.com/deivid-rodriguez/byebug/compare/v1.5.0...v1.6.0
|
911
|
+
[1.5.0]: https://github.com/deivid-rodriguez/byebug/compare/v1.4.2...v1.5.0
|
912
|
+
[1.4.2]: https://github.com/deivid-rodriguez/byebug/compare/v1.4.1...v1.4.2
|
913
|
+
[1.4.1]: https://github.com/deivid-rodriguez/byebug/compare/v1.4.0...v1.4.1
|
914
|
+
[1.4.0]: https://github.com/deivid-rodriguez/byebug/compare/v1.3.1...v1.4.0
|
915
|
+
[1.3.1]: https://github.com/deivid-rodriguez/byebug/compare/v1.3.0...v1.3.1
|
916
|
+
[1.3.0]: https://github.com/deivid-rodriguez/byebug/compare/v1.2.0...v1.3.0
|
917
|
+
[1.2.0]: https://github.com/deivid-rodriguez/byebug/compare/v1.1.1...v1.2.0
|
918
|
+
[1.1.1]: https://github.com/deivid-rodriguez/byebug/compare/v1.1.0...v1.1.1
|
919
|
+
[1.1.0]: https://github.com/deivid-rodriguez/byebug/compare/v1.0.3...v1.1.0
|
920
|
+
[1.0.3]: https://github.com/deivid-rodriguez/byebug/compare/v1.0.2...v1.0.3
|
921
|
+
[1.0.2]: https://github.com/deivid-rodriguez/byebug/compare/v1.0.1...v1.0.2
|
922
|
+
[1.0.1]: https://github.com/deivid-rodriguez/byebug/compare/v1.0.0...v1.0.1
|
923
|
+
[1.0.0]: https://github.com/deivid-rodriguez/byebug/compare/v0.0.1...v1.0.0
|
924
|
+
|
925
|
+
[@akaneko3]: https://github.com/akaneko3
|
926
|
+
[@andreychernih]: https://github.com/andreychernih
|
927
|
+
[@ark6]: https://github.com/ark6
|
928
|
+
[@astashov]: https://github.com/astashov
|
929
|
+
[@bquorning]: https://github.com/bquorning
|
930
|
+
[@cben]: https://github.com/cben
|
931
|
+
[@ender672]: https://github.com/ender672
|
932
|
+
[@eric-hu]: https://github.com/eric-hu
|
933
|
+
[@FooBarWidget]: https://github.com/FooBarWidget
|
934
|
+
[@GarthSnyder]: https://github.com/GarthSnyder
|
935
|
+
[@HookyQR]: https://github.com/HookyQR
|
936
|
+
[@iblue]: https://github.com/iblue
|
937
|
+
[@izaera]: https://github.com/izaera
|
938
|
+
[@josephks]: https://github.com/josephks
|
939
|
+
[@k0kubun]: https://github.com/k0kubun
|
940
|
+
[@ko1]: https://github.com/ko1
|
941
|
+
[@luislavena]: https://github.com/luislavena
|
942
|
+
[@mrkn]: https://github.com/mrkn
|
943
|
+
[@nobu]: https://github.com/nobu
|
944
|
+
[@Olgagr]: https://github.com/Olgagr
|
945
|
+
[@sethk]: https://github.com/sethk
|
946
|
+
[@shuky19]: https://github.com/shuky19
|
947
|
+
[@tacnoman]: https://github.com/tacnoman
|
948
|
+
[@terceiro]: https://github.com/terceiro
|
949
|
+
[@tzmfreedom]: https://github.com/tzmfreedom
|
950
|
+
[@wallace]: https://github.com/wallace
|
951
|
+
[@windwiny]: https://github.com/windwiny
|
952
|
+
[@x-yuri]: https://github.com/x-yuri
|
953
|
+
[@yui-knk]: https://github.com/yui-knk
|
954
|
+
[@zmoazeni]: https://github.com/zmoazeni
|