rspec-core 3.13.1 → 3.13.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
- checksums.yaml.gz.sig +0 -0
- data/Changelog.md +278 -260
- data/lib/rspec/core/bisect/fork_runner.rb +2 -0
- data/lib/rspec/core/configuration.rb +7 -2
- data/lib/rspec/core/configuration_options.rb +2 -0
- data/lib/rspec/core/did_you_mean.rb +6 -0
- data/lib/rspec/core/drb.rb +1 -1
- data/lib/rspec/core/example.rb +1 -1
- data/lib/rspec/core/filter_manager.rb +2 -2
- data/lib/rspec/core/formatters/exception_presenter.rb +6 -0
- data/lib/rspec/core/formatters/html_snippet_extractor.rb +2 -0
- data/lib/rspec/core/metadata.rb +1 -1
- data/lib/rspec/core/option_parser.rb +2 -0
- data/lib/rspec/core/rake_task.rb +2 -0
- data/lib/rspec/core/reporter.rb +6 -5
- data/lib/rspec/core/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +21 -134
- metadata.gz.sig +0 -0
data/Changelog.md
CHANGED
@@ -1,29 +1,47 @@
|
|
1
1
|
### Development
|
2
|
-
[Full Changelog](
|
2
|
+
[Full Changelog](https://github.com/rspec/rspec/compare/rspec-core-v3.13.3...3-13-maintenance)
|
3
|
+
|
4
|
+
### 3.13.3 / 2025-02-06
|
5
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.13.2...v3.13.3)
|
6
|
+
|
7
|
+
Bug fixes:
|
8
|
+
|
9
|
+
* Fix reporter memorisation of `ExamplesNotification` used in `RSpec::Core::Reporter#finish`
|
10
|
+
by reusing an instance across notifcations. (Maxime Lapointe, rspec/rspec#172)
|
11
|
+
* Fix memorisation of `RSpec::Core::Example#location_rerun_argument`.
|
12
|
+
(Maxime Lapointe, rspec/rspec#173)
|
13
|
+
|
14
|
+
### 3.13.2 / 2024-10-18
|
15
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.13.1...v3.13.2)
|
16
|
+
|
17
|
+
Bug fixes:
|
18
|
+
|
19
|
+
* `RSpec::Configuration#requires` will reflect files already required, whilst requiring
|
20
|
+
them. (Jon Rowe, rspec/rspec-core#3117)
|
3
21
|
|
4
22
|
### 3.13.1 / 2024-09-02
|
5
23
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.13.0...v3.13.1)
|
6
24
|
|
7
25
|
Bug fixes:
|
8
26
|
|
9
|
-
* Sort ids to run as the original order to fix `--bisect`. (Maki Kawahara, #3093)
|
27
|
+
* Sort ids to run as the original order to fix `--bisect`. (Maki Kawahara, rspec/rspec-core#3093)
|
10
28
|
|
11
29
|
### 3.13.0 / 2024-02-04
|
12
30
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.12.3...v3.13.0)
|
13
31
|
|
14
32
|
Enhancements:
|
15
33
|
|
16
|
-
* Support the `--backtrace` flag when using the JSON formatter. (Matt Larraz, #2980)
|
17
|
-
* Ignore commented out lines in CLI config files (e.g. `.rspec`). (Junichi Ito, #2984)
|
34
|
+
* Support the `--backtrace` flag when using the JSON formatter. (Matt Larraz, rspec/rspec-core#2980)
|
35
|
+
* Ignore commented out lines in CLI config files (e.g. `.rspec`). (Junichi Ito, rspec/rspec-core#2984)
|
18
36
|
* Add `pending_failure_output` config option to allow skipping backtraces or
|
19
|
-
muting pending specs output. (Phil Pirozhkov, #2957)
|
37
|
+
muting pending specs output. (Phil Pirozhkov, rspec/rspec-core#2957)
|
20
38
|
* Process `--dry-run` before configuration flags that read files so that introspecting
|
21
|
-
it returns the correct value. (Xenor Chang, #3008)
|
22
|
-
* Allow specifying custom ordering strategies via `--order`. (Jon Rowe, #3025)
|
39
|
+
it returns the correct value. (Xenor Chang, rspec/rspec-core#3008)
|
40
|
+
* Allow specifying custom ordering strategies via `--order`. (Jon Rowe, rspec/rspec-core#3025)
|
23
41
|
* Use the improved `syntax_suggest` output for `SyntaxError` when available.
|
24
|
-
(Richard Schneeman, #3015, #3026)
|
42
|
+
(Richard Schneeman, rspec/rspec-core#3015, rspec/rspec-core#3026)
|
25
43
|
* Add config option (`RSpec::Core::Configuration#full_cause_backtrace`) to print the
|
26
|
-
entire backtrace of an exception cause. (David Taylor, #3046)
|
44
|
+
entire backtrace of an exception cause. (David Taylor, rspec/rspec-core#3046)
|
27
45
|
|
28
46
|
### 3.12.3 / 2024-02-04
|
29
47
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.12.2...v3.12.3)
|
@@ -31,14 +49,14 @@ Enhancements:
|
|
31
49
|
Bug fixes:
|
32
50
|
|
33
51
|
* Use `__send__` in output wrapper to avoid issues with IO objects that implement `send`
|
34
|
-
like `Socket`. (Richard Platel, #3045)
|
52
|
+
like `Socket`. (Richard Platel, rspec/rspec-core#3045)
|
35
53
|
|
36
54
|
### 3.12.2 / 2023-04-18
|
37
55
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.12.1...v3.12.2)
|
38
56
|
|
39
57
|
Bug fixes:
|
40
58
|
|
41
|
-
* Remove link to outdated documentation in generated output. (Jon Rowe, #3035)
|
59
|
+
* Remove link to outdated documentation in generated output. (Jon Rowe, rspec/rspec-core#3035)
|
42
60
|
|
43
61
|
### 3.12.1 / 2023-02-03
|
44
62
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.12.0...v3.12.1)
|
@@ -46,7 +64,7 @@ Bug fixes:
|
|
46
64
|
Bug fixes:
|
47
65
|
|
48
66
|
* Prevent multiple calls to `extra_failure_lines` from adding additional whitespace
|
49
|
-
around them when the lines already contain whitespace. (Jon Rowe, #3006)
|
67
|
+
around them when the lines already contain whitespace. (Jon Rowe, rspec/rspec-core#3006)
|
50
68
|
|
51
69
|
### 3.12.0 / 2022-10-26
|
52
70
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.11.0...v3.12.0)
|
@@ -58,26 +76,26 @@ Bug fixes:
|
|
58
76
|
|
59
77
|
Enhancements:
|
60
78
|
|
61
|
-
* Improve pluralisation of words ending with `s` (like process). (Joshua Pinter, #2779)
|
62
|
-
* Add ordering by file modification time (most recent first). (Matheus Richard, #2778)
|
63
|
-
* Add `to_s` to reserved names for #let and #subject. (Nick Flückiger, #2886)
|
79
|
+
* Improve pluralisation of words ending with `s` (like process). (Joshua Pinter, rspec/rspec-core#2779)
|
80
|
+
* Add ordering by file modification time (most recent first). (Matheus Richard, rspec/rspec-core#2778)
|
81
|
+
* Add `to_s` to reserved names for #let and #subject. (Nick Flückiger, rspec/rspec-core#2886)
|
64
82
|
* Introduce `RSpec.current_scope` to expose the current scope in which
|
65
|
-
RSpec is executing. e.g. `:before_example_hook`, `:example` etc. (@odinhb, #2895)
|
66
|
-
* Add named bold colours as options for custom colours. (#2913, #2914)
|
67
|
-
* Warn when (but not prevent) a `SystemExit` occurs. (Jared Beck, #2926)
|
83
|
+
RSpec is executing. e.g. `:before_example_hook`, `:example` etc. (@odinhb, rspec/rspec-core#2895)
|
84
|
+
* Add named bold colours as options for custom colours. (rspec/rspec-core#2913, rspec/rspec-core#2914)
|
85
|
+
* Warn when (but not prevent) a `SystemExit` occurs. (Jared Beck, rspec/rspec-core#2926)
|
68
86
|
|
69
87
|
### 3.10.2 / 2022-01-27
|
70
88
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.10.1...v3.10.2)
|
71
89
|
|
72
90
|
Bug fixes:
|
73
91
|
|
74
|
-
* Ensure bisect communication uses consistent encoding. (Mike Jarema, #2852)
|
92
|
+
* Ensure bisect communication uses consistent encoding. (Mike Jarema, rspec/rspec-core#2852)
|
75
93
|
* Fix exception presenter when the root cause exception has nil backtrace.
|
76
|
-
(Zinovyev Ivan, #2903)
|
94
|
+
(Zinovyev Ivan, rspec/rspec-core#2903)
|
77
95
|
* Fix `inspect` output of `RSpec::Core::Example::Procsy` to namespace correctly.
|
78
|
-
(Keiko Kaneko, #2915)
|
96
|
+
(Keiko Kaneko, rspec/rspec-core#2915)
|
79
97
|
* Ensure formatters not exposing `#output` will not crash duplicate check.
|
80
|
-
(@niceking, #2916)
|
98
|
+
(@niceking, rspec/rspec-core#2916)
|
81
99
|
|
82
100
|
### 3.10.1 / 2020-12-27
|
83
101
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.10.0...v3.10.1)
|
@@ -85,7 +103,7 @@ Bug fixes:
|
|
85
103
|
Bug fixes:
|
86
104
|
|
87
105
|
* RSpec warning output was missing deprecations from Ruby, these are now included.
|
88
|
-
(Jon Rowe, #2811)
|
106
|
+
(Jon Rowe, rspec/rspec-core#2811)
|
89
107
|
|
90
108
|
### 3.10.0 / 2020-10-30
|
91
109
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.9.3...v3.10.0)
|
@@ -93,26 +111,26 @@ Bug fixes:
|
|
93
111
|
Enhancements:
|
94
112
|
|
95
113
|
* Memoize `RSpec::Core::Formatters::ExceptionPresenter#exception_lines` to improve performance
|
96
|
-
with slow exception messages. (Maxime Lapointe, #2743)
|
114
|
+
with slow exception messages. (Maxime Lapointe, rspec/rspec-core#2743)
|
97
115
|
* Add configuration for an error exit code (to disambiguate errored builds from failed builds
|
98
|
-
by exit status). (Dana Sherson, #2749)
|
116
|
+
by exit status). (Dana Sherson, rspec/rspec-core#2749)
|
99
117
|
|
100
118
|
### 3.9.3 / 2020-09-30
|
101
119
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.9.2...v3.9.3)
|
102
120
|
|
103
121
|
Bug Fixes:
|
104
122
|
|
105
|
-
* Declare `ruby2_keywords` on `method_missing` for other gems. (Jon Rowe, #2731)
|
106
|
-
* Ensure custom error codes are returned from bisect runs. (Jon Rowe, #2732)
|
123
|
+
* Declare `ruby2_keywords` on `method_missing` for other gems. (Jon Rowe, rspec/rspec-core#2731)
|
124
|
+
* Ensure custom error codes are returned from bisect runs. (Jon Rowe, rspec/rspec-core#2732)
|
107
125
|
* Ensure `RSpec::Core::Configuration` predicate config methods return booleans.
|
108
|
-
(Marc-André Lafortune, #2736)
|
126
|
+
(Marc-André Lafortune, rspec/rspec-core#2736)
|
109
127
|
* Prevent `rspec --bisect` from generating zombie processes while executing
|
110
|
-
bisect runs. (Benoit Tigeot, Jon Rowe, #2739)
|
128
|
+
bisect runs. (Benoit Tigeot, Jon Rowe, rspec/rspec-core#2739)
|
111
129
|
* Predicates for pending examples, (in `RSpec::Core::Example`, `#pending?`, `#skipped?` and
|
112
130
|
`#pending_fixed?`) now return boolean values rather than truthy values.
|
113
|
-
(Marc-André Lafortune, #2756, #2758)
|
131
|
+
(Marc-André Lafortune, rspec/rspec-core#2756, rspec/rspec-core#2758)
|
114
132
|
* Exceptions which have a message which cannot be cast to a string will no longer
|
115
|
-
cause a crash. (Jon Rowe, #2761)
|
133
|
+
cause a crash. (Jon Rowe, rspec/rspec-core#2761)
|
116
134
|
|
117
135
|
### 3.9.2 / 2020-05-02
|
118
136
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.9.1...v3.9.2)
|
@@ -120,14 +138,14 @@ Bug Fixes:
|
|
120
138
|
Bug Fixes:
|
121
139
|
|
122
140
|
* Emit a warning when `around` hook is used with `:context` scope
|
123
|
-
(Phil Pirozhkov, #2687)
|
141
|
+
(Phil Pirozhkov, rspec/rspec-core#2687)
|
124
142
|
* Prevent invalid implementations of `Exception#cause` from being treated as a
|
125
143
|
valid cause (and causing strange errors) in `RSpec::Core::Formatters::ExceptionPresenter`.
|
126
|
-
(Jon Rowe, #2703)
|
144
|
+
(Jon Rowe, rspec/rspec-core#2703)
|
127
145
|
* Correctly detect patterns when `rspec_opts` is an array in `RSpec::Core::RakeTask`.
|
128
|
-
(Marc-André Lafortune, #2704)
|
146
|
+
(Marc-André Lafortune, rspec/rspec-core#2704)
|
129
147
|
* Make `RSpec.clear_examples` reset example counts for example groups. This fixes
|
130
|
-
an issue with re-running specs not matching ids. (Agis Anastasopoulos, #2723)
|
148
|
+
an issue with re-running specs not matching ids. (Agis Anastasopoulos, rspec/rspec-core#2723)
|
131
149
|
|
132
150
|
### 3.9.1 / 2019-12-28
|
133
151
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.9.0...v3.9.1)
|
@@ -135,8 +153,8 @@ Bug Fixes:
|
|
135
153
|
Bug Fixes:
|
136
154
|
|
137
155
|
* Prevent bisect command from blocking when number of specs exceeds file
|
138
|
-
descriptor limit on OSX or Linux. (Benoit Tigeot, #2669)
|
139
|
-
* Prevent warnings being issued on Ruby 2.7.0. (Jon Rowe, #2680)
|
156
|
+
descriptor limit on OSX or Linux. (Benoit Tigeot, rspec/rspec-core#2669)
|
157
|
+
* Prevent warnings being issued on Ruby 2.7.0. (Jon Rowe, rspec/rspec-core#2680)
|
140
158
|
|
141
159
|
### 3.9.0 / 2019-10-07
|
142
160
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.8.2...v3.9.0)
|
@@ -145,21 +163,21 @@ Enhancements:
|
|
145
163
|
|
146
164
|
* Improve the handling of errors during loading support files, if a file
|
147
165
|
errors before loading specs, RSpec will now skip loading the specs.
|
148
|
-
(David Rodríguez, #2568)
|
166
|
+
(David Rodríguez, rspec/rspec-core#2568)
|
149
167
|
* Add support for --example-matches to run examples by regular expression.
|
150
|
-
(Sam Joseph, Matt Rider, @okothkongo1, #2586)
|
168
|
+
(Sam Joseph, Matt Rider, @okothkongo1, rspec/rspec-core#2586)
|
151
169
|
* Add `did_you_mean` suggestions for file names encountering a `LoadError`
|
152
|
-
outside of examples. (@obromios, #2601)
|
170
|
+
outside of examples. (@obromios, rspec/rspec-core#2601)
|
153
171
|
* Add a minimalist quick fix style formatter, only outputs failures as
|
154
|
-
`file:line:message`. (Romain Tartière, #2614)
|
172
|
+
`file:line:message`. (Romain Tartière, rspec/rspec-core#2614)
|
155
173
|
* Convert string number values to integer when used for `RSpec::Configuration#fail_fast`
|
156
|
-
(Viktor Fonic, #2634)
|
174
|
+
(Viktor Fonic, rspec/rspec-core#2634)
|
157
175
|
* Issue warning when invalid values are used for `RSpec::Configuration#fail_fast`
|
158
|
-
(Viktor Fonic, #2634)
|
176
|
+
(Viktor Fonic, rspec/rspec-core#2634)
|
159
177
|
* Add support for running the Rake task in a clean environment.
|
160
|
-
(Jon Rowe, #2632)
|
178
|
+
(Jon Rowe, rspec/rspec-core#2632)
|
161
179
|
* Indent messages by there example group / example in the documentation formatter.
|
162
|
-
(Samuel Williams, #2649)
|
180
|
+
(Samuel Williams, rspec/rspec-core#2649)
|
163
181
|
|
164
182
|
### 3.8.2 / 2019-06-29
|
165
183
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.8.1...v3.8.2)
|
@@ -168,7 +186,7 @@ Bug Fixes:
|
|
168
186
|
|
169
187
|
* Fix `config.define_derived_metadata` so that cascades are not triggered
|
170
188
|
until metadata has been assigned to the example or example group
|
171
|
-
(Myron Marston, #2635).
|
189
|
+
(Myron Marston, rspec/rspec-core#2635).
|
172
190
|
|
173
191
|
### 3.8.1 / 2019-06-13
|
174
192
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.8.0...v3.8.1)
|
@@ -176,12 +194,12 @@ Bug Fixes:
|
|
176
194
|
Bug Fixes:
|
177
195
|
|
178
196
|
* Handle RSpec description(s) with japanese chars in CP932 encoded files.
|
179
|
-
(Benoit Tigeot, #2575)
|
197
|
+
(Benoit Tigeot, rspec/rspec-core#2575)
|
180
198
|
* When defining `let` methods that overwrite an existing method, prevent
|
181
|
-
a warning being issued by removing the old definition. (Jon Rowe, #2593)
|
182
|
-
* Prevent warning on Ruby 2.6.0-rc1 (Keiji Yoshimi, #2582)
|
199
|
+
a warning being issued by removing the old definition. (Jon Rowe, rspec/rspec-core#2593)
|
200
|
+
* Prevent warning on Ruby 2.6.0-rc1 (Keiji Yoshimi, rspec/rspec-core#2582)
|
183
201
|
* Fix `config.define_derived_metadata` so that it supports cascades.
|
184
|
-
(Myron Marston, #2630).
|
202
|
+
(Myron Marston, rspec/rspec-core#2630).
|
185
203
|
|
186
204
|
### 3.8.0 / 2018-08-04
|
187
205
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.7.1...v3.8.0)
|
@@ -189,28 +207,28 @@ Bug Fixes:
|
|
189
207
|
Enhancements:
|
190
208
|
|
191
209
|
* Improve shell escaping used by `RSpec::Core::RakeTask` and `--bisect` so
|
192
|
-
that it works on `Pathname` objects. (Andrew Vit, #2479)
|
210
|
+
that it works on `Pathname` objects. (Andrew Vit, rspec/rspec-core#2479)
|
193
211
|
* Nicely format errors encountered while loading files specified
|
194
|
-
by `--require` option. (Myron Marston, #2504)
|
212
|
+
by `--require` option. (Myron Marston, rspec/rspec-core#2504)
|
195
213
|
* Significantly improve the performance of `--bisect` on platforms that
|
196
214
|
support forking by replacing the shell-based runner with one that uses
|
197
215
|
forking so that RSpec and the application environment can be booted only
|
198
|
-
once, instead of once per spec run. (Myron Marston, #2511)
|
216
|
+
once, instead of once per spec run. (Myron Marston, rspec/rspec-core#2511)
|
199
217
|
* Provide a configuration API to pick which bisect runner is used for
|
200
218
|
`--bisect`. Pick a runner via `config.bisect_runner = :shell` or
|
201
219
|
`config.bisect_runner = :fork` in a file loaded by a `--require`
|
202
|
-
option passed at the command line or set in `.rspec`. (Myron Marston, #2511)
|
220
|
+
option passed at the command line or set in `.rspec`. (Myron Marston, rspec/rspec-core#2511)
|
203
221
|
* Support the [XDG Base Directory
|
204
222
|
Specification](https://specifications.freedesktop.org/basedir-spec/latest/)
|
205
223
|
for the global options file. `~/.rspec` is still supported when no
|
206
|
-
options file is found in `$XDG_CONFIG_HOME/rspec/options` (Magnus Bergmark, #2538)
|
224
|
+
options file is found in `$XDG_CONFIG_HOME/rspec/options` (Magnus Bergmark, rspec/rspec-core#2538)
|
207
225
|
* Extract `RSpec.world.prepare_example_filtering` that sets up the
|
208
|
-
example filtering for custom RSpec runners. (Oleg Pudeyev, #2552)
|
226
|
+
example filtering for custom RSpec runners. (Oleg Pudeyev, rspec/rspec-core#2552)
|
209
227
|
|
210
228
|
Bug Fixes:
|
211
229
|
|
212
230
|
* Prevent an `ArgumentError` when truncating backtraces with two identical
|
213
|
-
backtraces. (Systho, #2515, Benoit Tigeot, #2539)
|
231
|
+
backtraces. (Systho, rspec/rspec-core#2515, Benoit Tigeot, rspec/rspec-core#2539)
|
214
232
|
|
215
233
|
### 3.7.1 / 2018-01-02
|
216
234
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.7.0...v3.7.1)
|
@@ -218,52 +236,52 @@ Bug Fixes:
|
|
218
236
|
Bug Fixes:
|
219
237
|
|
220
238
|
* Work around duplicate config hook regression introduced
|
221
|
-
by Ruby 2.5's lazy proc allocation. (Myron Marston, #2497)
|
239
|
+
by Ruby 2.5's lazy proc allocation. (Myron Marston, rspec/rspec-core#2497)
|
222
240
|
|
223
241
|
### 3.7.0 / 2017-10-17
|
224
242
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.6.0...v3.7.0)
|
225
243
|
|
226
244
|
Enhancements:
|
227
245
|
|
228
|
-
* Add `-n` alias for `--next-failure`. (Ian Ker-Seymer, #2434)
|
246
|
+
* Add `-n` alias for `--next-failure`. (Ian Ker-Seymer, rspec/rspec-core#2434)
|
229
247
|
* Improve compatibility with `--enable-frozen-string-literal` option
|
230
|
-
on Ruby 2.3+. (Pat Allan, #2425, #2427, #2437)
|
248
|
+
on Ruby 2.3+. (Pat Allan, rspec/rspec-core#2425, rspec/rspec-core#2427, rspec/rspec-core#2437)
|
231
249
|
* Do not run `:context` hooks for example groups that have been skipped.
|
232
|
-
(Devon Estes, #2442)
|
250
|
+
(Devon Estes, rspec/rspec-core#2442)
|
233
251
|
* Add `errors_outside_of_examples_count` to the JSON formatter.
|
234
|
-
(Takeshi Arabiki, #2448)
|
252
|
+
(Takeshi Arabiki, rspec/rspec-core#2448)
|
235
253
|
|
236
254
|
Bug Fixes:
|
237
255
|
|
238
|
-
* Improve compatibility with frozen string literal flag. (#2425, Pat Allan)
|
256
|
+
* Improve compatibility with frozen string literal flag. (rspec/rspec-core#2425, Pat Allan)
|
239
257
|
|
240
258
|
### 3.6.0 / 2017-05-04
|
241
259
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.6.0.beta2...v3.6.0)
|
242
260
|
|
243
261
|
Enhancements:
|
244
262
|
|
245
|
-
* Add seed information to JSON formatter output. (#2388, Mitsutaka Mimura)
|
246
|
-
* Include example id in the JSON formatter output. (#2369, Xavier Shay)
|
263
|
+
* Add seed information to JSON formatter output. (rspec/rspec-core#2388, Mitsutaka Mimura)
|
264
|
+
* Include example id in the JSON formatter output. (rspec/rspec-core#2369, Xavier Shay)
|
247
265
|
* Respect changes to `config.output_stream` after formatters have been
|
248
|
-
setup. (#2401, #2419, Ilya Lavrov)
|
266
|
+
setup. (rspec/rspec-core#2401, rspec/rspec-core#2419, Ilya Lavrov)
|
249
267
|
|
250
268
|
Bug Fixes:
|
251
269
|
|
252
270
|
* Delay formatter loading until the last minute to allow accessing the reporter
|
253
|
-
without triggering formatter setup. (Jon Rowe, #2243)
|
271
|
+
without triggering formatter setup. (Jon Rowe, rspec/rspec-core#2243)
|
254
272
|
* Ensure context hook failures running before an example can access the
|
255
|
-
reporter. (Jon Jensen, #2387)
|
273
|
+
reporter. (Jon Jensen, rspec/rspec-core#2387)
|
256
274
|
* Multiple fixes to allow using the runner multiple times within the same
|
257
275
|
process: `RSpec.clear_examples` resets the formatter and no longer clears
|
258
276
|
shared examples, and streams can be used across multiple runs rather than
|
259
|
-
being closed after the first. (#2368, Xavier Shay)
|
277
|
+
being closed after the first. (rspec/rspec-core#2368, Xavier Shay)
|
260
278
|
* Prevent unexpected `example_group_finished` notifications causing an error.
|
261
|
-
(#2396, VTJamie)
|
279
|
+
(rspec/rspec-core#2396, VTJamie)
|
262
280
|
* Fix bugs where `config.when_first_matching_example_defined` hooks would fire
|
263
|
-
multiple times in some cases. (Yuji Nakayama, #2400)
|
281
|
+
multiple times in some cases. (Yuji Nakayama, rspec/rspec-core#2400)
|
264
282
|
* Default `last_run_status` to "unknown" when the `status` field in the
|
265
|
-
persistence file contains an unrecognized value. (#2360, matrinox)
|
266
|
-
* Prevent `let` from defining an `initialize` method. (#2414, Jon Rowe)
|
283
|
+
persistence file contains an unrecognized value. (rspec/rspec-core#2360, matrinox)
|
284
|
+
* Prevent `let` from defining an `initialize` method. (rspec/rspec-core#2414, Jon Rowe)
|
267
285
|
|
268
286
|
### 3.6.0.beta2 / 2016-12-12
|
269
287
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.6.0.beta1...v3.6.0.beta2)
|
@@ -271,10 +289,10 @@ Bug Fixes:
|
|
271
289
|
Enhancements:
|
272
290
|
|
273
291
|
* Include count of errors occurring outside examples in default summaries.
|
274
|
-
(#2351, Jon Rowe)
|
275
|
-
* Warn when including shared example groups recursively. (#2356, Jon Rowe)
|
292
|
+
(rspec/rspec-core#2351, Jon Rowe)
|
293
|
+
* Warn when including shared example groups recursively. (rspec/rspec-core#2356, Jon Rowe)
|
276
294
|
* Improve failure snippet syntax highlighting with CodeRay to highlight
|
277
|
-
RSpec "keywords" like `expect`. (#2358, Myron Marston)
|
295
|
+
RSpec "keywords" like `expect`. (rspec/rspec-core#2358, Myron Marston)
|
278
296
|
|
279
297
|
### 3.6.0.beta1 / 2016-10-09
|
280
298
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.4...v3.6.0.beta1)
|
@@ -282,18 +300,18 @@ Enhancements:
|
|
282
300
|
Enhancements:
|
283
301
|
|
284
302
|
* Warn when duplicate shared examples definitions are loaded due to being
|
285
|
-
defined in files matching the spec pattern (e.g. `_spec.rb`) (#2278, Devon Estes)
|
303
|
+
defined in files matching the spec pattern (e.g. `_spec.rb`) (rspec/rspec-core#2278, Devon Estes)
|
286
304
|
* Improve metadata filtering so that it can match against any object
|
287
305
|
that implements `===` instead of treating regular expressions as
|
288
|
-
special. (Myron Marston, #2294)
|
306
|
+
special. (Myron Marston, rspec/rspec-core#2294)
|
289
307
|
* Improve `rspec -v` so that it prints out the versions of each part of
|
290
|
-
RSpec to prevent confusion. (Myron Marston, #2304)
|
308
|
+
RSpec to prevent confusion. (Myron Marston, rspec/rspec-core#2304)
|
291
309
|
* Add `config.fail_if_no_examples` option which causes RSpec to fail if
|
292
|
-
no examples are found. (Ewa Czechowska, #2302)
|
310
|
+
no examples are found. (Ewa Czechowska, rspec/rspec-core#2302)
|
293
311
|
* Nicely format errors encountered while loading spec files.
|
294
|
-
(Myron Marston, #2323)
|
312
|
+
(Myron Marston, rspec/rspec-core#2323)
|
295
313
|
* Improve the API for enabling and disabling color output (Josh
|
296
|
-
Justice, #2321):
|
314
|
+
Justice, rspec/rspec-core#2321):
|
297
315
|
* Automatically enable color if the output is a TTY, since color is
|
298
316
|
nearly always desirable if the output can handle it.
|
299
317
|
* Introduce new CLI flag to force color on (`--force-color`), even
|
@@ -308,7 +326,7 @@ Enhancements:
|
|
308
326
|
Bug Fixes:
|
309
327
|
|
310
328
|
* Remove accumulated `ExampleGroup` constants when reseting RSpec,
|
311
|
-
preventing a memory leak. (TravisSpangle, #2328)
|
329
|
+
preventing a memory leak. (TravisSpangle, rspec/rspec-core#2328)
|
312
330
|
|
313
331
|
### 3.5.3 / 2016-09-02
|
314
332
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.2...v3.5.3)
|
@@ -318,11 +336,11 @@ Bug Fixes:
|
|
318
336
|
* When applying shared group metadata to a host group, overwrite
|
319
337
|
conflicting keys if the value in the host group was inherited from
|
320
338
|
a parent group instead of being specified at that level.
|
321
|
-
(Myron Marston, #2307)
|
339
|
+
(Myron Marston, rspec/rspec-core#2307)
|
322
340
|
* Handle errors in `:suite` hooks and provide the same nicely formatted
|
323
|
-
output as errors that happen in examples. (Myron Marston, #2316)
|
341
|
+
output as errors that happen in examples. (Myron Marston, rspec/rspec-core#2316)
|
324
342
|
* Set the exit status to non-zero when an error occurs in an
|
325
|
-
`after(:context)` hook. (Myron Marston, #2320)
|
343
|
+
`after(:context)` hook. (Myron Marston, rspec/rspec-core#2320)
|
326
344
|
|
327
345
|
### 3.5.2 / 2016-07-28
|
328
346
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.1...v3.5.2)
|
@@ -330,11 +348,11 @@ Bug Fixes:
|
|
330
348
|
Bug Fixes:
|
331
349
|
|
332
350
|
* Wait to report `example_finished` until the example's `execution_result`
|
333
|
-
has been completely filled in. (Myron Marston, #2291)
|
351
|
+
has been completely filled in. (Myron Marston, rspec/rspec-core#2291)
|
334
352
|
* Make sure example block is still available when using `duplicate_with`
|
335
|
-
to clone examples. (bootstraponline, #2298)
|
353
|
+
to clone examples. (bootstraponline, rspec/rspec-core#2298)
|
336
354
|
* Don't include the default `--pattern` in the Rake task when
|
337
|
-
`rspec_opts` specifies its own. (Jon Rowe, #2305)
|
355
|
+
`rspec_opts` specifies its own. (Jon Rowe, rspec/rspec-core#2305)
|
338
356
|
|
339
357
|
### 3.5.1 / 2016-07-06
|
340
358
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.0...v3.5.1)
|
@@ -342,7 +360,7 @@ Bug Fixes:
|
|
342
360
|
Bug Fixes:
|
343
361
|
|
344
362
|
* Ensure that config hooks that are added to existing example groups are
|
345
|
-
added only once. (Eugene Kenny, #2280)
|
363
|
+
added only once. (Eugene Kenny, rspec/rspec-core#2280)
|
346
364
|
|
347
365
|
### 3.5.0 / 2016-07-01
|
348
366
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.0.beta4...v3.5.0)
|
@@ -350,12 +368,12 @@ Bug Fixes:
|
|
350
368
|
Enhancements:
|
351
369
|
|
352
370
|
* Include any `SPEC_OPTS` in reproduction command printed at the end of
|
353
|
-
a bisect run. (Simon Coffey, #2274)
|
371
|
+
a bisect run. (Simon Coffey, rspec/rspec-core#2274)
|
354
372
|
|
355
373
|
Bug Fixes:
|
356
374
|
|
357
375
|
* Handle `--bisect` in `SPEC_OPTS` environment variable correctly so as
|
358
|
-
to avoid infinite recursion. (Simon Coffey, #2271)
|
376
|
+
to avoid infinite recursion. (Simon Coffey, rspec/rspec-core#2271)
|
359
377
|
|
360
378
|
### 3.5.0.beta4 / 2016-06-05
|
361
379
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.0.beta3...v3.5.0.beta4)
|
@@ -364,30 +382,30 @@ Enhancements:
|
|
364
382
|
|
365
383
|
* Filter out bundler stackframes from backtraces by default, since
|
366
384
|
Bundler 1.12 now includes its own frames in stack traces produced
|
367
|
-
by using `bundle exec`. (Myron Marston, #2240)
|
385
|
+
by using `bundle exec`. (Myron Marston, rspec/rspec-core#2240)
|
368
386
|
* HTML Formatter uses exception presenter to get failure message
|
369
|
-
for consistency with other formatters. (@mrageh, #2222)
|
387
|
+
for consistency with other formatters. (@mrageh, rspec/rspec-core#2222)
|
370
388
|
* Load spec files in the order of the directories or files passed
|
371
389
|
at the command line, making it easy to make some specs run before
|
372
390
|
others in a one-off manner. For example, `rspec spec/unit
|
373
391
|
spec/acceptance --order defined` will run unit specs before acceptance
|
374
|
-
specs. (Myron Marston, #2253)
|
392
|
+
specs. (Myron Marston, rspec/rspec-core#2253)
|
375
393
|
* Add new `config.include_context` API for configuring global or
|
376
394
|
filtered inclusion of shared contexts in example groups.
|
377
|
-
(Myron Marston, #2256)
|
395
|
+
(Myron Marston, rspec/rspec-core#2256)
|
378
396
|
* Add new `config.shared_context_metadata_behavior = :apply_to_host_groups`
|
379
397
|
option, which causes shared context metadata to be inherited by the
|
380
398
|
metadata hash of all host groups and examples instead of configuring
|
381
|
-
implicit auto-inclusion based on the passed metadata. (Myron Marston, #2256)
|
399
|
+
implicit auto-inclusion based on the passed metadata. (Myron Marston, rspec/rspec-core#2256)
|
382
400
|
|
383
401
|
Bug Fixes:
|
384
402
|
|
385
403
|
* Fix `--bisect` so it works on large spec suites that were previously triggering
|
386
404
|
"Argument list too long errors" due to all the spec locations being passed as
|
387
|
-
CLI args. (Matt Jones, #2223).
|
405
|
+
CLI args. (Matt Jones, rspec/rspec-core#2223).
|
388
406
|
* Fix deprecated `:example_group`-based filtering so that it properly
|
389
|
-
applies to matching example groups. (Myron Marston, #2234)
|
390
|
-
* Fix `NoMethodError` caused by Java backtraces on JRuby. (Michele Piccirillo, #2244)
|
407
|
+
applies to matching example groups. (Myron Marston, rspec/rspec-core#2234)
|
408
|
+
* Fix `NoMethodError` caused by Java backtraces on JRuby. (Michele Piccirillo, rspec/rspec-core#2244)
|
391
409
|
|
392
410
|
### 3.5.0.beta3 / 2016-04-02
|
393
411
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.0.beta2...v3.5.0.beta3)
|
@@ -396,15 +414,15 @@ Enhancements:
|
|
396
414
|
|
397
415
|
* Add new `config.filter_run_when_matching` API, intended to replace
|
398
416
|
the combination of `config.filter_run` and
|
399
|
-
`config.run_all_when_everything_filtered` (Myron Marston, #2206)
|
417
|
+
`config.run_all_when_everything_filtered` (Myron Marston, rspec/rspec-core#2206)
|
400
418
|
|
401
419
|
Bug Fixes:
|
402
420
|
|
403
|
-
* Use the encoded string logic for source extraction. (Jon Rowe, #2183)
|
404
|
-
* Fix rounding issue in duration formatting helper. (Fabersky, Jon Rowe, #2208)
|
421
|
+
* Use the encoded string logic for source extraction. (Jon Rowe, rspec/rspec-core#2183)
|
422
|
+
* Fix rounding issue in duration formatting helper. (Fabersky, Jon Rowe, rspec/rspec-core#2208)
|
405
423
|
* Fix failure snippet extraction so that `def-end` snippets
|
406
424
|
ending with `end`-only line can be extracted properly.
|
407
|
-
(Yuji Nakayama, #2215)
|
425
|
+
(Yuji Nakayama, rspec/rspec-core#2215)
|
408
426
|
|
409
427
|
### 3.5.0.beta2 / 2016-03-10
|
410
428
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.5.0.beta1...v3.5.0.beta2)
|
@@ -412,13 +430,13 @@ Bug Fixes:
|
|
412
430
|
Enhancements:
|
413
431
|
|
414
432
|
* Remove unneeded `:execution_result` example group metadata, saving a
|
415
|
-
bit of memory. (Myron Marston, #2172)
|
433
|
+
bit of memory. (Myron Marston, rspec/rspec-core#2172)
|
416
434
|
* Apply hooks registered with `config` to previously defined groups.
|
417
|
-
(Myron Marston, #2189)
|
435
|
+
(Myron Marston, rspec/rspec-core#2189)
|
418
436
|
* `RSpec::Core::Configuration#reporter` is now public API under SemVer.
|
419
|
-
(Jon Rowe, #2193)
|
437
|
+
(Jon Rowe, rspec/rspec-core#2193)
|
420
438
|
* Add new `config.when_first_matching_example_defined` hook. (Myron
|
421
|
-
Marston, #2175)
|
439
|
+
Marston, rspec/rspec-core#2175)
|
422
440
|
|
423
441
|
### 3.5.0.beta1 / 2016-02-06
|
424
442
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.4.4...v3.5.0.beta1)
|
@@ -426,12 +444,12 @@ Enhancements:
|
|
426
444
|
Enhancements:
|
427
445
|
|
428
446
|
* Add `RSpec::Core::ExampleGroup.currently_executing_a_context_hook?`,
|
429
|
-
primarily for use by rspec-rails. (Sam Phippen, #2131)
|
447
|
+
primarily for use by rspec-rails. (Sam Phippen, rspec/rspec-core#2131)
|
430
448
|
|
431
449
|
Bug Fixes:
|
432
450
|
|
433
451
|
* Ensure `MultipleExceptionError` does not contain a recursive reference
|
434
|
-
to itself. (Sam Phippen, #2133)
|
452
|
+
to itself. (Sam Phippen, rspec/rspec-core#2133)
|
435
453
|
|
436
454
|
### 3.4.4 / 2016-03-09
|
437
455
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.4.3...v3.4.4)
|
@@ -439,7 +457,7 @@ Bug Fixes:
|
|
439
457
|
Bug Fixes:
|
440
458
|
|
441
459
|
* Fix `RSpec::Core::RakeTask` so that it works with Rake 11.
|
442
|
-
(Travis Grathwell, #2197)
|
460
|
+
(Travis Grathwell, rspec/rspec-core#2197)
|
443
461
|
|
444
462
|
### 3.4.3 / 2016-02-19
|
445
463
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.4.2...v3.4.3)
|
@@ -447,15 +465,15 @@ Bug Fixes:
|
|
447
465
|
Bug Fixes:
|
448
466
|
|
449
467
|
* Prevent a `TypeError` from occurring when running via the rake task when
|
450
|
-
Ruby crashes. (Patrik Wenger, #2161)
|
468
|
+
Ruby crashes. (Patrik Wenger, rspec/rspec-core#2161)
|
451
469
|
* Only consider example and group declaration lines from a specific file
|
452
470
|
when applying line number filtering, instead of considering all
|
453
|
-
declaration lines from all spec files. (Myron Marston, #2170)
|
471
|
+
declaration lines from all spec files. (Myron Marston, rspec/rspec-core#2170)
|
454
472
|
* Fix failure snippet extraction so that snippets that contain `do-end` style
|
455
473
|
block and end with `end`-only line can be extracted properly.
|
456
|
-
(Yuji Nakayama, #2173)
|
474
|
+
(Yuji Nakayama, rspec/rspec-core#2173)
|
457
475
|
* Prevent infinite recursion when an exception is caused by itself.
|
458
|
-
(Jon Rowe, #2128)
|
476
|
+
(Jon Rowe, rspec/rspec-core#2128)
|
459
477
|
|
460
478
|
### 3.4.2 / 2016-01-26
|
461
479
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.4.1...v3.4.2)
|
@@ -463,13 +481,13 @@ Bug Fixes:
|
|
463
481
|
Bug Fixes:
|
464
482
|
|
465
483
|
* Fix `rspec --profile` when an example calls `abort` or `exit`.
|
466
|
-
(Bradley Schaefer, #2144)
|
484
|
+
(Bradley Schaefer, rspec/rspec-core#2144)
|
467
485
|
* Fix `--drb` so that when no DRb server is running, it prevents
|
468
486
|
the DRb connection error from being listed as the cause of all
|
469
|
-
expectation failures. (Myron Marston, #2156)
|
487
|
+
expectation failures. (Myron Marston, rspec/rspec-core#2156)
|
470
488
|
* Fix syntax highlighter so that it works when the `coderay` gem is
|
471
489
|
installed as a rubygem but not already available on your load path
|
472
|
-
(as happens when you use bundler). (Myron Marston, #2159)
|
490
|
+
(as happens when you use bundler). (Myron Marston, rspec/rspec-core#2159)
|
473
491
|
|
474
492
|
### 3.4.1 / 2015-11-18
|
475
493
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.4.0...v3.4.1)
|
@@ -477,7 +495,7 @@ Bug Fixes:
|
|
477
495
|
Bug Fixes:
|
478
496
|
|
479
497
|
* Fix backtrace formatter to handle backtraces that are `nil`.
|
480
|
-
(Myron Marston, #2118)
|
498
|
+
(Myron Marston, rspec/rspec-core#2118)
|
481
499
|
|
482
500
|
### 3.4.0 / 2015-11-11
|
483
501
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.3.2...v3.4.0)
|
@@ -485,68 +503,68 @@ Bug Fixes:
|
|
485
503
|
Enhancements:
|
486
504
|
|
487
505
|
* Combine multiple `--pattern` arguments making them equivalent to
|
488
|
-
`--pattern=1,2,...,n`. (Jon Rowe, #2002)
|
506
|
+
`--pattern=1,2,...,n`. (Jon Rowe, rspec/rspec-core#2002)
|
489
507
|
* Improve `inspect` and `to_s` output for `RSpec::Core::Example`
|
490
|
-
objects, replacing Ruby's excessively verbose output. (Gavin Miller, #1922)
|
508
|
+
objects, replacing Ruby's excessively verbose output. (Gavin Miller, rspec/rspec-core#1922)
|
491
509
|
* Add `silence_filter_announcements` configuration option.
|
492
|
-
(David Raffensperger, #2007)
|
510
|
+
(David Raffensperger, rspec/rspec-core#2007)
|
493
511
|
* Add optional `example_finished` notification to the reporter protocol for
|
494
|
-
when you don't care about the example outcome. (Jon Rowe, #2013)
|
512
|
+
when you don't care about the example outcome. (Jon Rowe, rspec/rspec-core#2013)
|
495
513
|
* Switch `--bisect` to a recursion-based bisection algorithm rather than
|
496
514
|
a permutation-based one. This better handles cases where an example
|
497
515
|
depends upon multiple other examples instead of just one and minimizes
|
498
516
|
the number of runs necessary to determine that an example set cannot be
|
499
|
-
minimized further. (Simon Coffey, #1997)
|
517
|
+
minimized further. (Simon Coffey, rspec/rspec-core#1997)
|
500
518
|
* Allow simple filters (e.g. `:symbol` key only) to be triggered by truthey
|
501
|
-
values. (Tim Mertens, #2035)
|
519
|
+
values. (Tim Mertens, rspec/rspec-core#2035)
|
502
520
|
* Remove unneeded warning about need for `ansicon` on Windows when using
|
503
|
-
RSpec's `--color` option. (Ashley Engelund, #2038)
|
521
|
+
RSpec's `--color` option. (Ashley Engelund, rspec/rspec-core#2038)
|
504
522
|
* Add option to configure RSpec to raise errors when issuing warnings.
|
505
|
-
(Jon Rowe, #2052)
|
523
|
+
(Jon Rowe, rspec/rspec-core#2052)
|
506
524
|
* Append the root `cause` of a failure or error to the printed failure
|
507
525
|
output when a `cause` is available. (Adam Magan)
|
508
526
|
* Stop rescuing `NoMemoryError`, `SignalExcepetion`, `Interrupt` and
|
509
|
-
`SystemExit`. It is dangerous to interfere with these. (Myron Marston, #2063)
|
527
|
+
`SystemExit`. It is dangerous to interfere with these. (Myron Marston, rspec/rspec-core#2063)
|
510
528
|
* Add `config.project_source_dirs` setting which RSpec uses to determine
|
511
529
|
if a backtrace line comes from your project source or from some
|
512
530
|
external library. It defaults to `spec`, `lib` and `app` but can be
|
513
|
-
configured differently. (Myron Marston, #2088)
|
531
|
+
configured differently. (Myron Marston, rspec/rspec-core#2088)
|
514
532
|
* Improve failure line detection so that it looks for the failure line
|
515
533
|
in any project source directory instead of just in the spec file.
|
516
534
|
In addition, if no backtrace lines can be found from a project source
|
517
535
|
file, we fall back to displaying the source of the first backtrace
|
518
536
|
line. This should virtually eliminate the "Unable to find matching
|
519
|
-
line from backtrace" messages. (Myron Marston, #2088)
|
537
|
+
line from backtrace" messages. (Myron Marston, rspec/rspec-core#2088)
|
520
538
|
* Add support for `:extra_failure_lines` example metadata that will
|
521
|
-
be appended to the failure output. (bootstraponline, #2092).
|
539
|
+
be appended to the failure output. (bootstraponline, rspec/rspec-core#2092).
|
522
540
|
* Add `RSpec::Core::Example#duplicate_with` to produce new examples
|
523
|
-
with cloned metadata. (bootstraponline, #2098)
|
541
|
+
with cloned metadata. (bootstraponline, rspec/rspec-core#2098)
|
524
542
|
* Add `RSpec::Core::Configuration#on_example_group_definition` to register
|
525
|
-
hooks to be invoked when example groups are created. (bootstraponline, #2094)
|
543
|
+
hooks to be invoked when example groups are created. (bootstraponline, rspec/rspec-core#2094)
|
526
544
|
* Add `add_example` and `remove_example` to `RSpec::Core::ExampleGroup` to
|
527
|
-
allow manipulating an example groups examples. (bootstraponline, #2095)
|
545
|
+
allow manipulating an example groups examples. (bootstraponline, rspec/rspec-core#2095)
|
528
546
|
* Display multiline failure source lines in failure output when Ripper is
|
529
547
|
available (MRI >= 1.9.2, and JRuby >= 1.7.5 && < 9.0.0.0.rc1).
|
530
|
-
(Yuji Nakayama, #2083)
|
548
|
+
(Yuji Nakayama, rspec/rspec-core#2083)
|
531
549
|
* Add `max_displayed_failure_line_count` configuration option
|
532
|
-
(defaults to 10). (Yuji Nakayama, #2083)
|
550
|
+
(defaults to 10). (Yuji Nakayama, rspec/rspec-core#2083)
|
533
551
|
* Enhance `fail_fast` option so it can take a number (e.g. `--fail-fast=3`)
|
534
552
|
to force the run to abort after the specified number of failures.
|
535
|
-
(Jack Scotti, #2065)
|
553
|
+
(Jack Scotti, rspec/rspec-core#2065)
|
536
554
|
* Syntax highlight the failure snippets in text formatters when `color`
|
537
555
|
is enabled and the `coderay` gem is installed on a POSIX system.
|
538
|
-
(Myron Marston, #2109)
|
556
|
+
(Myron Marston, rspec/rspec-core#2109)
|
539
557
|
|
540
558
|
Bug Fixes:
|
541
559
|
|
542
560
|
* Lock `example_status_persistence_file` when reading from and writing
|
543
561
|
to it to prevent race conditions when multiple processes try to use
|
544
|
-
it. (Ben Woosley, #2029)
|
562
|
+
it. (Ben Woosley, rspec/rspec-core#2029)
|
545
563
|
* Fix regression in 3.3 that caused spec file names with square brackets in
|
546
|
-
them (such as `1[]_spec.rb`) to not be loaded properly. (Myron Marston, #2041)
|
547
|
-
* Fix output encoding issue caused by ASCII literal on 1.9.3 (Jon Rowe, #2072)
|
564
|
+
them (such as `1[]_spec.rb`) to not be loaded properly. (Myron Marston, rspec/rspec-core#2041)
|
565
|
+
* Fix output encoding issue caused by ASCII literal on 1.9.3 (Jon Rowe, rspec/rspec-core#2072)
|
548
566
|
* Fix requires in `rspec/core/rake_task.rb` to avoid double requires
|
549
|
-
seen by some users. (Myron Marston, #2101)
|
567
|
+
seen by some users. (Myron Marston, rspec/rspec-core#2101)
|
550
568
|
|
551
569
|
### 3.3.2 / 2015-07-15
|
552
570
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.3.1...v3.3.2)
|
@@ -554,9 +572,9 @@ Bug Fixes:
|
|
554
572
|
Bug Fixes:
|
555
573
|
|
556
574
|
* Fix formatters to handle exceptions for which `backtrace` returns `nil`.
|
557
|
-
(Myron Marston, #2023)
|
575
|
+
(Myron Marston, rspec/rspec-core#2023)
|
558
576
|
* Fix duplicate formatter detection so that it allows subclasses of formatters
|
559
|
-
to be added. (Sebastián Tello, #2019)
|
577
|
+
to be added. (Sebastián Tello, rspec/rspec-core#2019)
|
560
578
|
|
561
579
|
### 3.3.1 / 2015-06-18
|
562
580
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.3.0...v3.3.1)
|
@@ -565,7 +583,7 @@ Bug Fixes:
|
|
565
583
|
|
566
584
|
* Correctly run `before(:suite)` (and friends) in the context of an example
|
567
585
|
group instance, thus making the expected RSpec environment available.
|
568
|
-
(Jon Rowe, #1986)
|
586
|
+
(Jon Rowe, rspec/rspec-core#1986)
|
569
587
|
|
570
588
|
### 3.3.0 / 2015-06-12
|
571
589
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.2.3...v3.3.0)
|
@@ -573,74 +591,74 @@ Bug Fixes:
|
|
573
591
|
Enhancements:
|
574
592
|
|
575
593
|
* Expose the reporter used to run examples via `RSpec::Core::Example#reporter`.
|
576
|
-
(Jon Rowe, #1866)
|
577
|
-
* Make `RSpec::Core::Reporter#message` a public supported API. (Jon Rowe, #1866)
|
594
|
+
(Jon Rowe, rspec/rspec-core#1866)
|
595
|
+
* Make `RSpec::Core::Reporter#message` a public supported API. (Jon Rowe, rspec/rspec-core#1866)
|
578
596
|
* Allow custom formatter events to be published via
|
579
|
-
`RSpec::Core::Reporter#publish(event_name, hash_of_attributes)`. (Jon Rowe, #1869)
|
597
|
+
`RSpec::Core::Reporter#publish(event_name, hash_of_attributes)`. (Jon Rowe, rspec/rspec-core#1869)
|
580
598
|
* Remove dependency on the standard library `Set` and replace with `RSpec::Core::Set`.
|
581
|
-
(Jon Rowe, #1870)
|
599
|
+
(Jon Rowe, rspec/rspec-core#1870)
|
582
600
|
* Assign a unique id to each example and group so that they can be
|
583
601
|
uniquely identified, even for shared examples (and similar situations)
|
584
|
-
where the location isn't unique. (Myron Marston, #1884)
|
602
|
+
where the location isn't unique. (Myron Marston, rspec/rspec-core#1884)
|
585
603
|
* Use the example id in the rerun command printed for failed examples
|
586
|
-
when the location is not unique. (Myron Marston, #1884)
|
604
|
+
when the location is not unique. (Myron Marston, rspec/rspec-core#1884)
|
587
605
|
* Add `config.example_status_persistence_file_path` option, which is
|
588
|
-
used to persist the last run status of each example. (Myron Marston, #1888)
|
606
|
+
used to persist the last run status of each example. (Myron Marston, rspec/rspec-core#1888)
|
589
607
|
* Add `:last_run_status` metadata to each example, which indicates what
|
590
|
-
happened the last time an example ran. (Myron Marston, #1888)
|
608
|
+
happened the last time an example ran. (Myron Marston, rspec/rspec-core#1888)
|
591
609
|
* Add `--only-failures` CLI option which filters to only the examples
|
592
|
-
that failed the last time they ran. (Myron Marston, #1888)
|
610
|
+
that failed the last time they ran. (Myron Marston, rspec/rspec-core#1888)
|
593
611
|
* Add `--next-failure` CLI option which allows you to repeatedly focus
|
594
612
|
on just one of the currently failing examples, then move on to the
|
595
|
-
next failure, etc. (Myron Marston, #1888)
|
613
|
+
next failure, etc. (Myron Marston, rspec/rspec-core#1888)
|
596
614
|
* Make `--order random` ordering stable, so that when you rerun a
|
597
615
|
subset with a given seed, the examples will be order consistently
|
598
|
-
relative to each other. (Myron Marston, #1908)
|
616
|
+
relative to each other. (Myron Marston, rspec/rspec-core#1908)
|
599
617
|
* Set example group constant earlier so errors when evaluating the context
|
600
|
-
include the example group name (Myron Marson, #1911)
|
601
|
-
* Make `let` and `subject` threadsafe. (Josh Cheek, #1858)
|
602
|
-
* Add version information into the JSON formatter. (Mark Swinson, #1883)
|
618
|
+
include the example group name (Myron Marson, rspec/rspec-core#1911)
|
619
|
+
* Make `let` and `subject` threadsafe. (Josh Cheek, rspec/rspec-core#1858)
|
620
|
+
* Add version information into the JSON formatter. (Mark Swinson, rspec/rspec-core#1883)
|
603
621
|
* Add `--bisect` CLI option, which will repeatedly run your suite in
|
604
622
|
order to isolate the failures to the smallest reproducible case.
|
605
|
-
(Myron Marston, #1917)
|
623
|
+
(Myron Marston, rspec/rspec-core#1917)
|
606
624
|
* For `config.include`, `config.extend` and `config.prepend`, apply the
|
607
|
-
module to previously defined matching example groups. (Eugene Kenny, #1935)
|
625
|
+
module to previously defined matching example groups. (Eugene Kenny, rspec/rspec-core#1935)
|
608
626
|
* When invalid options are parsed, notify users where they came from
|
609
627
|
(e.g. `.rspec` or `~/.rspec` or `ENV['SPEC_OPTS']`) so they can
|
610
|
-
easily find the source of the problem. (Myron Marston, #1940)
|
611
|
-
* Add pending message contents to the json formatter output. (Jon Rowe, #1949)
|
628
|
+
easily find the source of the problem. (Myron Marston, rspec/rspec-core#1940)
|
629
|
+
* Add pending message contents to the json formatter output. (Jon Rowe, rspec/rspec-core#1949)
|
612
630
|
* Add shared group backtrace to the output displayed by the built-in
|
613
|
-
formatters for pending examples that have been fixed. (Myron Marston, #1946)
|
631
|
+
formatters for pending examples that have been fixed. (Myron Marston, rspec/rspec-core#1946)
|
614
632
|
* Add support for `:aggregate_failures` metadata. Tag an example or
|
615
633
|
group with this metadata and it'll use rspec-expectations'
|
616
634
|
`aggregate_failures` feature to allow multiple failures in an example
|
617
635
|
and list them all, rather than aborting on the first failure. (Myron
|
618
|
-
Marston, #1946)
|
636
|
+
Marston, rspec/rspec-core#1946)
|
619
637
|
* When no formatter implements #message add a fallback to prevent those
|
620
|
-
messages being lost. (Jon Rowe, #1980)
|
638
|
+
messages being lost. (Jon Rowe, rspec/rspec-core#1980)
|
621
639
|
* Profiling examples now takes into account time spent in `before(:context)`
|
622
|
-
hooks. (Denis Laliberté, Jon Rowe, #1971)
|
640
|
+
hooks. (Denis Laliberté, Jon Rowe, rspec/rspec-core#1971)
|
623
641
|
* Improve failure output when an example has multiple exceptions, such
|
624
|
-
as one from an `it` block and one from an `after` block. (Myron Marston, #1985)
|
642
|
+
as one from an `it` block and one from an `after` block. (Myron Marston, rspec/rspec-core#1985)
|
625
643
|
|
626
644
|
Bug Fixes:
|
627
645
|
|
628
|
-
* Handle invalid UTF-8 strings within exception methods. (Benjamin Fleischer, #1760)
|
646
|
+
* Handle invalid UTF-8 strings within exception methods. (Benjamin Fleischer, rspec/rspec-core#1760)
|
629
647
|
* Fix Rake Task quoting of file names with quotes to work properly on
|
630
|
-
Windows. (Myron Marston, #1887)
|
648
|
+
Windows. (Myron Marston, rspec/rspec-core#1887)
|
631
649
|
* Fix `RSpec::Core::RakeTask#failure_message` so that it gets printed
|
632
|
-
when the task failed. (Myron Marston, #1905)
|
650
|
+
when the task failed. (Myron Marston, rspec/rspec-core#1905)
|
633
651
|
* Make `let` work properly when defined in a shared context that is applied
|
634
|
-
to an individual example via metadata. (Myron Marston, #1912)
|
635
|
-
* Ensure `rspec/autorun` respects configuration defaults. (Jon Rowe, #1933)
|
652
|
+
to an individual example via metadata. (Myron Marston, rspec/rspec-core#1912)
|
653
|
+
* Ensure `rspec/autorun` respects configuration defaults. (Jon Rowe, rspec/rspec-core#1933)
|
636
654
|
* Prevent modules overriding example group defined methods when included,
|
637
|
-
prepended or extended by config defined after an example group. (Eugene Kenny, #1935)
|
655
|
+
prepended or extended by config defined after an example group. (Eugene Kenny, rspec/rspec-core#1935)
|
638
656
|
* Fix regression which caused shared examples to be mistakenly run when specs
|
639
|
-
where filtered to a particular location. (Ben Axnick, #1963)
|
657
|
+
where filtered to a particular location. (Ben Axnick, rspec/rspec-core#1963)
|
640
658
|
* Fix time formatting logic so that it displays 70 seconds as "1 minute,
|
641
|
-
10 seconds" rather than "1 minute, 1 second". (Paul Brennan, #1984)
|
659
|
+
10 seconds" rather than "1 minute, 1 second". (Paul Brennan, rspec/rspec-core#1984)
|
642
660
|
* Fix regression where the formatter loader would allow duplicate formatters.
|
643
|
-
(Jon Rowe, #1990)
|
661
|
+
(Jon Rowe, rspec/rspec-core#1990)
|
644
662
|
|
645
663
|
### 3.2.3 / 2015-04-06
|
646
664
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.2.2...v3.2.3)
|
@@ -649,10 +667,10 @@ Bug Fixes:
|
|
649
667
|
|
650
668
|
* Fix how the DSL methods are defined so that RSpec is compatible with
|
651
669
|
gems that define methods of the same name on `Kernel` (such as
|
652
|
-
the `its-it` gem). (Alex Kwiatkowski, Ryan Ong, #1907)
|
670
|
+
the `its-it` gem). (Alex Kwiatkowski, Ryan Ong, rspec/rspec-core#1907)
|
653
671
|
* Fix `before(:context) { skip }` so that it does not wrongly cause the
|
654
672
|
spec suite to exit with a non-zero status when no examples failed.
|
655
|
-
(Myron Marston, #1926)
|
673
|
+
(Myron Marston, rspec/rspec-core#1926)
|
656
674
|
|
657
675
|
### 3.2.2 / 2015-03-11
|
658
676
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.2.1...v3.2.2)
|
@@ -662,7 +680,7 @@ Bug Fixes:
|
|
662
680
|
* Fix regression in 3.2.0 that allowed tag-filtered examples to
|
663
681
|
run even if there was a location filter applied to the spec
|
664
682
|
file that was intended to limit the file to other examples.
|
665
|
-
(#1894, Myron Marston)
|
683
|
+
(rspec/rspec-core#1894, Myron Marston)
|
666
684
|
|
667
685
|
### 3.2.1 / 2015-02-23
|
668
686
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.2.0...v3.2.1)
|
@@ -670,95 +688,95 @@ Bug Fixes:
|
|
670
688
|
Bug Fixes:
|
671
689
|
|
672
690
|
* Notify start-of-run seed _before_ `start` notification rather than
|
673
|
-
_after_ so that formatters like Fuubar work properly. (Samuel Esposito, #1882)
|
691
|
+
_after_ so that formatters like Fuubar work properly. (Samuel Esposito, rspec/rspec-core#1882)
|
674
692
|
|
675
693
|
### 3.2.0 / 2015-02-03
|
676
694
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.7...v3.2.0)
|
677
695
|
|
678
696
|
Enhancements:
|
679
697
|
|
680
|
-
* Improve the `inspect` output of example groups. (Mike Dalton, #1687)
|
698
|
+
* Improve the `inspect` output of example groups. (Mike Dalton, rspec/rspec-core#1687)
|
681
699
|
* When rake task fails, only output the command if `verbose` flag is
|
682
|
-
set. (Ben Snape, #1704)
|
700
|
+
set. (Ben Snape, rspec/rspec-core#1704)
|
683
701
|
* Add `RSpec.clear_examples` as a clear way to reset examples in between
|
684
|
-
spec runs, whilst retaining user configuration. (Alexey Fedorov, #1706)
|
702
|
+
spec runs, whilst retaining user configuration. (Alexey Fedorov, rspec/rspec-core#1706)
|
685
703
|
* Reduce string allocations when defining and running examples by 70%
|
686
|
-
and 50% respectively. (Myron Marston, #1738)
|
687
|
-
* Removed dependency on pathname from stdlib. (Sam Phippen, #1703)
|
704
|
+
and 50% respectively. (Myron Marston, rspec/rspec-core#1738)
|
705
|
+
* Removed dependency on pathname from stdlib. (Sam Phippen, rspec/rspec-core#1703)
|
688
706
|
* Improve the message presented when a user hits Ctrl-C.
|
689
|
-
(Alex Chaffee #1717, #1742)
|
707
|
+
(Alex Chaffee rspec/rspec-core#1717, rspec/rspec-core#1742)
|
690
708
|
* Improve shared example group inclusion backtrace displayed
|
691
709
|
in failed example output so that it works for all methods
|
692
710
|
of including shared example groups and shows all inclusion
|
693
|
-
locations. (Myron Marston, #1763)
|
711
|
+
locations. (Myron Marston, rspec/rspec-core#1763)
|
694
712
|
* Issue seed notification at start (as well as the end) of the reporter
|
695
|
-
run. (Arlandis Word, #1761)
|
696
|
-
* Improve the documentation of around hooks. (Jim Kingdon, #1772)
|
713
|
+
run. (Arlandis Word, rspec/rspec-core#1761)
|
714
|
+
* Improve the documentation of around hooks. (Jim Kingdon, rspec/rspec-core#1772)
|
697
715
|
* Support prepending of modules into example groups from config and allow
|
698
|
-
filtering based on metadata. (Arlandis Word, #1806)
|
716
|
+
filtering based on metadata. (Arlandis Word, rspec/rspec-core#1806)
|
699
717
|
* Emit warnings when `:suite` hooks are registered on an example group
|
700
718
|
(where it has always been ignored) or are registered with metadata
|
701
|
-
(which has always been ignored). (Myron Marston, #1805)
|
719
|
+
(which has always been ignored). (Myron Marston, rspec/rspec-core#1805)
|
702
720
|
* Provide a friendly error message when users call RSpec example group
|
703
721
|
APIs (e.g. `context`, `describe`, `it`, `let`, `before`, etc) from
|
704
|
-
within an example where those APIs are unavailable. (Myron Marston, #1819)
|
722
|
+
within an example where those APIs are unavailable. (Myron Marston, rspec/rspec-core#1819)
|
705
723
|
* Provide a friendly error message when users call RSpec example
|
706
724
|
APIs (e.g. `expect`, `double`, `stub_const`, etc) from
|
707
725
|
within an example group where those APIs are unavailable.
|
708
|
-
(Myron Marston, #1819)
|
726
|
+
(Myron Marston, rspec/rspec-core#1819)
|
709
727
|
* Add new `RSpec::Core::Sandbox.sandboxed { }` API that facilitates
|
710
728
|
testing RSpec with RSpec, allowing you to define example groups
|
711
729
|
and example from within an example without affecting the global
|
712
730
|
`RSpec.world` state. (Tyler Ball, 1808)
|
713
731
|
* Apply line-number filters only to the files they are scoped to,
|
714
|
-
allowing you to mix filtered and unfiltered files. (Myron Marston, #1839)
|
732
|
+
allowing you to mix filtered and unfiltered files. (Myron Marston, rspec/rspec-core#1839)
|
715
733
|
* When dumping pending examples, include the failure details so that you
|
716
|
-
don't have to un-pend the example to see it. (Myron Marston, #1844)
|
734
|
+
don't have to un-pend the example to see it. (Myron Marston, rspec/rspec-core#1844)
|
717
735
|
* Make `-I` option support multiple values when separated by
|
718
736
|
`File::PATH_SEPARATOR`, such as `rspec -I foo:bar`. This matches
|
719
|
-
the behavior of Ruby's `-I` option. (Fumiaki Matsushima, #1855).
|
737
|
+
the behavior of Ruby's `-I` option. (Fumiaki Matsushima, rspec/rspec-core#1855).
|
720
738
|
* Treat each example as having a singleton example group for the
|
721
739
|
purposes of applying metadata-based features that normally apply
|
722
740
|
to example groups to individually tagged examples. For example,
|
723
741
|
`RSpec.shared_context "Uses redis", :uses_redis` will now apply
|
724
742
|
to individual examples tagged with `:uses_redis`, as will
|
725
743
|
`config.include RedisHelpers, :uses_redis`, and
|
726
|
-
`config.before(:context, :uses_redis) { }`, etc. (Myron Marston, #1749)
|
744
|
+
`config.before(:context, :uses_redis) { }`, etc. (Myron Marston, rspec/rspec-core#1749)
|
727
745
|
|
728
746
|
Bug Fixes:
|
729
747
|
|
730
748
|
* When assigning generated example descriptions, surface errors
|
731
749
|
raised by `matcher.description` in the example description.
|
732
|
-
(Myron Marston, #1771)
|
750
|
+
(Myron Marston, rspec/rspec-core#1771)
|
733
751
|
* Don't consider expectations from `after` hooks when generating
|
734
|
-
example descriptions. (Myron Marston, #1771)
|
752
|
+
example descriptions. (Myron Marston, rspec/rspec-core#1771)
|
735
753
|
* Don't apply metadata-filtered config hooks to examples in groups
|
736
754
|
with matching metadata when those examples override the parent
|
737
|
-
metadata value to not match. (Myron Marston, #1796)
|
755
|
+
metadata value to not match. (Myron Marston, rspec/rspec-core#1796)
|
738
756
|
* Fix `config.expect_with :minitest` so that `skip` uses RSpec's
|
739
|
-
implementation rather than Minitest's. (Jonathan Rochkind, #1822)
|
757
|
+
implementation rather than Minitest's. (Jonathan Rochkind, rspec/rspec-core#1822)
|
740
758
|
* Fix `NameError` caused when duplicate example group aliases are defined and
|
741
|
-
the DSL is not globally exposed. (Aaron Kromer, #1825)
|
759
|
+
the DSL is not globally exposed. (Aaron Kromer, rspec/rspec-core#1825)
|
742
760
|
* When a shared example defined in an external file fails, use the host
|
743
761
|
example group (from a loaded spec file) for the re-run command to
|
744
|
-
ensure the command will actually work. (Myron Marston, #1835)
|
762
|
+
ensure the command will actually work. (Myron Marston, rspec/rspec-core#1835)
|
745
763
|
* Fix location filtering to work properly for examples defined in
|
746
764
|
a nested example group within a shared example group defined in
|
747
|
-
an external file. (Bradley Schaefer, Xavier Shay, Myron Marston, #1837)
|
765
|
+
an external file. (Bradley Schaefer, Xavier Shay, Myron Marston, rspec/rspec-core#1837)
|
748
766
|
* When a pending example fails (as expected) due to a mock expectation,
|
749
767
|
set `RSpec::Core::Example::ExecutionResult#pending_exception` --
|
750
|
-
previously it was not being set but should have been. (Myron Marston, #1844)
|
768
|
+
previously it was not being set but should have been. (Myron Marston, rspec/rspec-core#1844)
|
751
769
|
* Fix rake task to work when `rspec-core` is installed in a directory
|
752
|
-
containing a space. (Guido Günther, #1845)
|
770
|
+
containing a space. (Guido Günther, rspec/rspec-core#1845)
|
753
771
|
* Fix regression in 3.1 that caused `describe Regexp` to raise errors.
|
754
|
-
(Durran Jordan, #1853)
|
772
|
+
(Durran Jordan, rspec/rspec-core#1853)
|
755
773
|
* Fix regression in 3.x that caused the profile information to be printed
|
756
|
-
after the summary. (Max Lincoln, #1857)
|
774
|
+
after the summary. (Max Lincoln, rspec/rspec-core#1857)
|
757
775
|
* Apply `--seed` before loading `--require` files so that required files
|
758
|
-
can access the provided seed. (Myron Marston, #1745)
|
776
|
+
can access the provided seed. (Myron Marston, rspec/rspec-core#1745)
|
759
777
|
* Handle `RSpec::Core::Formatters::DeprecationFormatter::FileStream` being
|
760
778
|
reopened with an IO stream, which sometimes happens with spring.
|
761
|
-
(Kevin Mook, #1757)
|
779
|
+
(Kevin Mook, rspec/rspec-core#1757)
|
762
780
|
|
763
781
|
### 3.1.7 / 2014-10-11
|
764
782
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.6...v3.1.7)
|
@@ -767,14 +785,14 @@ Bug Fixes:
|
|
767
785
|
|
768
786
|
* Fix `Metadata.relative_path` so that for a current directory of
|
769
787
|
`/foo/bar`, `/foo/bar_1` is not wrongly converted to `._1`.
|
770
|
-
(Akos Vandra, #1730)
|
788
|
+
(Akos Vandra, rspec/rspec-core#1730)
|
771
789
|
* Prevent constant lookup mistakenly finding `RSpec::ExampleGroups` generated
|
772
790
|
constants on 1.9.2 by appending a trailing `_` to the generated names.
|
773
|
-
(Jon Rowe, #1737)
|
791
|
+
(Jon Rowe, rspec/rspec-core#1737)
|
774
792
|
* Fix bug in `:pending` metadata. If it got set in any way besides passing
|
775
793
|
it as part of the metadata literal passed to `it` (such as by using
|
776
794
|
`define_derived_metadata`), it did not have the desired effect,
|
777
|
-
instead marking the example as `:passed`. (Myron Marston, #1739)
|
795
|
+
instead marking the example as `:passed`. (Myron Marston, rspec/rspec-core#1739)
|
778
796
|
|
779
797
|
### 3.1.6 / 2014-10-08
|
780
798
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.5...v3.1.6)
|
@@ -783,9 +801,9 @@ Bug Fixes:
|
|
783
801
|
|
784
802
|
* Fix regression in rake task pattern handling, that prevented patterns
|
785
803
|
that were relative from the current directory rather than from `spec`
|
786
|
-
from working properly. (Myron Marston, #1734)
|
804
|
+
from working properly. (Myron Marston, rspec/rspec-core#1734)
|
787
805
|
* Prevent rake task from generating duplicate load path entries.
|
788
|
-
(Myron Marston, #1735)
|
806
|
+
(Myron Marston, rspec/rspec-core#1735)
|
789
807
|
|
790
808
|
### 3.1.5 / 2014-09-29
|
791
809
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.4...v3.1.5)
|
@@ -793,12 +811,12 @@ Bug Fixes:
|
|
793
811
|
Bug Fixes:
|
794
812
|
|
795
813
|
* Fix issue with the rake task incorrectly escaping strings on Windows.
|
796
|
-
(Jon Rowe #1718)
|
814
|
+
(Jon Rowe rspec/rspec-core#1718)
|
797
815
|
* Support absolute path patterns. While this wasn't officially supported
|
798
816
|
previously, setting `rake_task.pattern` to an absolute path pattern in
|
799
817
|
RSpec 3.0 and before worked since it delegated to `FileList` internally
|
800
818
|
(but now just forwards the pattern on to the `rspec` command).
|
801
|
-
(Myron Marston, #1726)
|
819
|
+
(Myron Marston, rspec/rspec-core#1726)
|
802
820
|
|
803
821
|
### 3.1.4 / 2014-09-18
|
804
822
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.3...v3.1.4)
|
@@ -807,10 +825,10 @@ Bug Fixes:
|
|
807
825
|
|
808
826
|
* Fix implicit `subject` when using `describe false` or `describe nil`
|
809
827
|
so that it returns the provided primitive rather than the string
|
810
|
-
representation. (Myron Marston, #1710)
|
828
|
+
representation. (Myron Marston, rspec/rspec-core#1710)
|
811
829
|
* Fix backtrace filtering to allow code in subdirectories of your
|
812
830
|
current working directory (such as vendor/bundle/...) to be filtered
|
813
|
-
from backtraces. (Myron Marston, #1708)
|
831
|
+
from backtraces. (Myron Marston, rspec/rspec-core#1708)
|
814
832
|
|
815
833
|
### 3.1.3 / 2014-09-15
|
816
834
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.2...v3.1.3)
|
@@ -820,12 +838,12 @@ Bug Fixes:
|
|
820
838
|
* Fix yet another regression in rake task pattern handling, to allow
|
821
839
|
`task.pattern = FileList["..."]` to work. That was never intended
|
822
840
|
to be supported but accidentally worked in 3.0 and earlier.
|
823
|
-
(Myron Marston, #1701)
|
841
|
+
(Myron Marston, rspec/rspec-core#1701)
|
824
842
|
* Fix pattern handling so that files are normalized to absolute paths
|
825
843
|
before subtracting the `--exclude-pattern` matched files from the
|
826
844
|
`--pattern` matched files so that it still works even if the patterns
|
827
845
|
are in slightly different forms (e.g. one starting with `./`).
|
828
|
-
(Christian Nelson, #1698)
|
846
|
+
(Christian Nelson, rspec/rspec-core#1698)
|
829
847
|
|
830
848
|
### 3.1.2 / 2014-09-08
|
831
849
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.1...v3.1.2)
|
@@ -833,7 +851,7 @@ Bug Fixes:
|
|
833
851
|
Bug Fixes:
|
834
852
|
|
835
853
|
* Fix another regression in rake task pattern handling, so that patterns
|
836
|
-
that start with `./` still work. (Christian Nelson, #1696)
|
854
|
+
that start with `./` still work. (Christian Nelson, rspec/rspec-core#1696)
|
837
855
|
|
838
856
|
### 3.1.1 / 2014-09-05
|
839
857
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.0...v3.1.1)
|
@@ -843,7 +861,7 @@ Bug Fixes:
|
|
843
861
|
* Fix a regression in rake task pattern handling, so that `rake_task.pattern = array`
|
844
862
|
works again. While we never intended to support array values (or even knew that worked!),
|
845
863
|
the implementation from 3.0 and earlier used `FileList` internally, which allows arrays.
|
846
|
-
The fix restores the old behavior. (Myron Marston, #1694)
|
864
|
+
The fix restores the old behavior. (Myron Marston, rspec/rspec-core#1694)
|
847
865
|
|
848
866
|
### 3.1.0 / 2014-09-04
|
849
867
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.4...v3.1.0)
|
@@ -852,57 +870,57 @@ Enhancements:
|
|
852
870
|
|
853
871
|
* Update files generated by `rspec --init` so that warnings are enabled
|
854
872
|
in commented out section of `spec_helper` rather than `.rspec` so users
|
855
|
-
have to consciously opt-in to the setting. (Andrew Hooker, #1572)
|
873
|
+
have to consciously opt-in to the setting. (Andrew Hooker, rspec/rspec-core#1572)
|
856
874
|
* Update `spec_helper` generated by `rspec --init` so that it sets the new
|
857
875
|
rspec-expectations `include_chain_clauses_in_custom_matcher_descriptions`
|
858
876
|
config option (which will be on by default in RSpec 4) and also sets the
|
859
877
|
rspec-mocks `verify_partial_doubles` option (which will also default
|
860
|
-
to on in RSpec 4). (Myron Marston, #1647)
|
878
|
+
to on in RSpec 4). (Myron Marston, rspec/rspec-core#1647)
|
861
879
|
* Provide an `inspect` output for example procsy objects (used in around
|
862
|
-
hooks) that doesn't make them look like procs. (Jon Rowe, #1620)
|
880
|
+
hooks) that doesn't make them look like procs. (Jon Rowe, rspec/rspec-core#1620)
|
863
881
|
* Remove a few unneeded `require` statements from
|
864
882
|
`rspec/core/rake_task.rb`, making it even more lighterweight.
|
865
|
-
(Myron Marston, #1640)
|
883
|
+
(Myron Marston, rspec/rspec-core#1640)
|
866
884
|
* Allow rspec-core to be used when neither rspec-mocks or
|
867
885
|
rspec-expectations are installed, without requiring any
|
868
|
-
user configuration. (Sam Phippen, Myron Marston, #1615)
|
886
|
+
user configuration. (Sam Phippen, Myron Marston, rspec/rspec-core#1615)
|
869
887
|
* Don't filter out gems from backtraces by default. (The RSpec
|
870
888
|
gems will still be filtered). User feedback has indicated
|
871
889
|
that including gems in default backtraces will be useful.
|
872
|
-
(Myron Marston, #1641)
|
890
|
+
(Myron Marston, rspec/rspec-core#1641)
|
873
891
|
* Add new `config.filter_gems_from_backtrace "rack", "rake"` API
|
874
|
-
to easily filter the named gems from backtraces. (Myron Marston, #1682)
|
892
|
+
to easily filter the named gems from backtraces. (Myron Marston, rspec/rspec-core#1682)
|
875
893
|
* Fix default backtrace filters so that the RSpec binary is
|
876
894
|
excluded when installing RSpec as a bundler `:git` dependency.
|
877
|
-
(Myron Marston, #1648)
|
895
|
+
(Myron Marston, rspec/rspec-core#1648)
|
878
896
|
* Simplify command generated by the rake task so that it no longer
|
879
|
-
includes unnecessary `-S`. (Myron Marston, #1559)
|
897
|
+
includes unnecessary `-S`. (Myron Marston, rspec/rspec-core#1559)
|
880
898
|
* Add `--exclude-pattern` CLI option, `config.exclude_pattern =` config
|
881
899
|
option and `task.exclude_pattern =` rake task config option. Matching
|
882
|
-
files will be excluded. (John Gesimondo, Myron Marston, #1651, #1671)
|
900
|
+
files will be excluded. (John Gesimondo, Myron Marston, rspec/rspec-core#1651, rspec/rspec-core#1671)
|
883
901
|
* When an around hook fails to execute the example, mark it as
|
884
902
|
pending (rather than passing) so the user is made aware of the
|
885
|
-
fact that the example did not actually run. (Myron Marston, #1660)
|
903
|
+
fact that the example did not actually run. (Myron Marston, rspec/rspec-core#1660)
|
886
904
|
* Remove dependency on `FileUtils` from the standard library so that users do
|
887
905
|
not get false positives where their code relies on it but they are not
|
888
|
-
requiring it. (Sam Phippen, #1565)
|
906
|
+
requiring it. (Sam Phippen, rspec/rspec-core#1565)
|
889
907
|
|
890
908
|
Bug Fixes:
|
891
909
|
|
892
910
|
* Fix rake task `t.pattern =` option so that it does not run all specs
|
893
911
|
when it matches no files, by passing along a `--pattern` option to
|
894
912
|
the `rspec` command, rather than resolving the file list and passing
|
895
|
-
along the files individually. (Evgeny Zislis, #1653)
|
913
|
+
along the files individually. (Evgeny Zislis, rspec/rspec-core#1653)
|
896
914
|
* Fix rake task default pattern so that it follows symlinks properly.
|
897
|
-
(Myron Marston, #1672)
|
915
|
+
(Myron Marston, rspec/rspec-core#1672)
|
898
916
|
* Fix default pattern used with `rspec` command so that it follows
|
899
|
-
symlinks properly. (Myron Marston, #1672)
|
917
|
+
symlinks properly. (Myron Marston, rspec/rspec-core#1672)
|
900
918
|
* Change how we assign constant names to example group classes so that
|
901
|
-
it avoids a problem with `describe "Core"`. (Daniela Wellisz, #1679)
|
919
|
+
it avoids a problem with `describe "Core"`. (Daniela Wellisz, rspec/rspec-core#1679)
|
902
920
|
* Handle rendering exceptions that have a different encoding than that
|
903
|
-
of their original source file. (Jon Rowe, #1681)
|
921
|
+
of their original source file. (Jon Rowe, rspec/rspec-core#1681)
|
904
922
|
* Allow access to message_lines without colour for failed examples even
|
905
|
-
when they're part of a shared example group. (tomykaira, #1689)
|
923
|
+
when they're part of a shared example group. (tomykaira, rspec/rspec-core#1689)
|
906
924
|
|
907
925
|
### 3.0.4 / 2014-08-14
|
908
926
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.3...v3.0.4)
|
@@ -911,9 +929,9 @@ Bug Fixes:
|
|
911
929
|
|
912
930
|
* Fix processing order of CLI options so that if `config.files_to_run`
|
913
931
|
is accessed from a file loaded by `--require`, `--pattern` is still
|
914
|
-
applied. (Myron Marston, #1652)
|
932
|
+
applied. (Myron Marston, rspec/rspec-core#1652)
|
915
933
|
* Fix `config.pattern=` so that it still takes affect even if
|
916
|
-
`config.files_to_run` has already been accessed. (Myron Marston, #1652)
|
934
|
+
`config.files_to_run` has already been accessed. (Myron Marston, rspec/rspec-core#1652)
|
917
935
|
|
918
936
|
### 3.0.3 / 2014-07-21
|
919
937
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.2...v3.0.3)
|
@@ -921,11 +939,11 @@ Bug Fixes:
|
|
921
939
|
Bug Fixes:
|
922
940
|
|
923
941
|
* Properly convert both parts of a description into strings before
|
924
|
-
concatenation. (@nicklink483, #1636)
|
942
|
+
concatenation. (@nicklink483, rspec/rspec-core#1636)
|
925
943
|
* Exclude the working directory when figuring out folders to ignore.
|
926
|
-
(Jon Rowe, Myron Marston, #1616)
|
944
|
+
(Jon Rowe, Myron Marston, rspec/rspec-core#1616)
|
927
945
|
* Allow `::RSpec::Core::Notifications::FailedExampleNotification#message_lines`
|
928
|
-
to be accessed without a colouriser. (@tomykaira, #1637)
|
946
|
+
to be accessed without a colouriser. (@tomykaira, rspec/rspec-core#1637)
|
929
947
|
|
930
948
|
### 3.0.2 / 2014-06-19
|
931
949
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.1...v3.0.2)
|
@@ -934,14 +952,14 @@ Bug Fixes:
|
|
934
952
|
|
935
953
|
* Fix regression in CLI option handling that prevented `--tag slow`
|
936
954
|
passed at the command line from overriding `--tag ~slow` in `.rspec`.
|
937
|
-
(Colin Jones, #1602)
|
955
|
+
(Colin Jones, rspec/rspec-core#1602)
|
938
956
|
* Fix metadata `:example_group` deprecation warning so that it gets
|
939
957
|
issued at the call site of the configuration that specified it as
|
940
958
|
a filter rather than later when an example group is defined.
|
941
|
-
(Myron Marston, #1562)
|
959
|
+
(Myron Marston, rspec/rspec-core#1562)
|
942
960
|
* Make the line that is printed when a shared example group fails indicating
|
943
961
|
where the concrete example group is white, separating it from the stack trace
|
944
|
-
that is produced for the failure. (Sam Phippen, Jon Rowe, #1606)
|
962
|
+
that is produced for the failure. (Sam Phippen, Jon Rowe, rspec/rspec-core#1606)
|
945
963
|
|
946
964
|
### 3.0.1 / 2014-06-12
|
947
965
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.0...v3.0.1)
|
@@ -949,9 +967,9 @@ Bug Fixes:
|
|
949
967
|
Bug Fixes:
|
950
968
|
|
951
969
|
* Fix a couple ruby warnings caused by rspec-core when loaded.
|
952
|
-
(Prem Sichanugrist, #1584)
|
970
|
+
(Prem Sichanugrist, rspec/rspec-core#1584)
|
953
971
|
* Example groups named `Config` will no longer cause a Ruby warning to be
|
954
|
-
issued. (Jimmy Cuadra, #1580)
|
972
|
+
issued. (Jimmy Cuadra, rspec/rspec-core#1580)
|
955
973
|
|
956
974
|
### 3.0.0 / 2014-06-01
|
957
975
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.0.rc1...v3.0.0)
|
@@ -967,7 +985,7 @@ Bug Fixes:
|
|
967
985
|
Enhancements:
|
968
986
|
|
969
987
|
* Alter the default `spec_helper.rb` to no longer recommend
|
970
|
-
`config.full_backtrace = true` see #1536 for discussion. (Jon Rowe)
|
988
|
+
`config.full_backtrace = true` see rspec/rspec-core#1536 for discussion. (Jon Rowe)
|
971
989
|
|
972
990
|
### 3.0.0.rc1 / 2014-05-18
|
973
991
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.0.beta2...v3.0.0.rc1)
|
@@ -1220,7 +1238,7 @@ Bug Fixes:
|
|
1220
1238
|
or `default_path`. (Matijs van Zuijlen)
|
1221
1239
|
* Fix failure line detection so that it handles relative file paths
|
1222
1240
|
(which can happen when running specs through `ruby` using `rspec/autorun`).
|
1223
|
-
(Myron Marston, #1829)
|
1241
|
+
(Myron Marston, rspec/rspec-core#1829)
|
1224
1242
|
|
1225
1243
|
### 3.0.0.beta1 / 2013-11-07
|
1226
1244
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.1...v3.0.0.beta1)
|
@@ -1300,7 +1318,7 @@ Deprecations:
|
|
1300
1318
|
Enhancements:
|
1301
1319
|
|
1302
1320
|
* Improve deprecation warning for RSpec 3 change in `describe <a symbol>`
|
1303
|
-
behavior. (Jon Rowe, #1667)
|
1321
|
+
behavior. (Jon Rowe, rspec/rspec-core#1667)
|
1304
1322
|
|
1305
1323
|
### 2.99.1 / 2014-06-19
|
1306
1324
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.0...v2.99.1)
|
@@ -1310,11 +1328,11 @@ Bug Fixes:
|
|
1310
1328
|
* Add missing deprecation warning for when `RSpec::Core::Runner` is used
|
1311
1329
|
multiple times in the same process. In 2.x RSpec's global state was
|
1312
1330
|
automatically cleared between runs but in 3.0 you need to call `RSpec.reset`
|
1313
|
-
manually in these situations. (Sam Phippen, #1587)
|
1331
|
+
manually in these situations. (Sam Phippen, rspec/rspec-core#1587)
|
1314
1332
|
* Prevent deprecation being accidentally issues when doubles used with `be_`
|
1315
|
-
matchers due to automatically generated descriptions. (Jon Rowe, #1573)
|
1333
|
+
matchers due to automatically generated descriptions. (Jon Rowe, rspec/rspec-core#1573)
|
1316
1334
|
* Load `rspec/core` when loading `rspec/core/rake_task` to ensure we can
|
1317
|
-
issue deprecations correctly. (Jon Rowe, #1612)
|
1335
|
+
issue deprecations correctly. (Jon Rowe, rspec/rspec-core#1612)
|
1318
1336
|
|
1319
1337
|
### 2.99.0 / 2014-06-01
|
1320
1338
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.0.rc1...v2.99.0)
|
@@ -1335,7 +1353,7 @@ Enhancements:
|
|
1335
1353
|
* Add `--deprecation-out` CLI option which directs deprecation warnings
|
1336
1354
|
to the named file. (Myron Marston)
|
1337
1355
|
* Backport support for `skip` in metadata to skip execution of an example.
|
1338
|
-
(Xavier Shay, #1472)
|
1356
|
+
(Xavier Shay, rspec/rspec-core#1472)
|
1339
1357
|
* Add `Pathname` support for setting all output streams. (Aaron Kromer)
|
1340
1358
|
* Add `test_unit` and `minitest` expectation frameworks. (Aaron Kromer)
|
1341
1359
|
|
@@ -1671,7 +1689,7 @@ Bug fixes
|
|
1671
1689
|
matcher description (as `Example#description` already did) when no
|
1672
1690
|
doc string has been provided (David Chelimsky).
|
1673
1691
|
* Fix the memoized methods (`let` and `subject`) leaking `define_method`
|
1674
|
-
as a `public` method. (Thomas Holmes and Jon Rowe) (#873)
|
1692
|
+
as a `public` method. (Thomas Holmes and Jon Rowe) (rspec/rspec-core#873)
|
1675
1693
|
* Fix warnings coming from the test suite. (Pete Higgins)
|
1676
1694
|
|
1677
1695
|
Deprecations
|