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