simplecov 0.19.0 → 0.21.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ce95c806215694affa2356c6f0bf9fe8d47813bbec6f0e1da5b456a1ce422dce
4
- data.tar.gz: df4d15141796de0d521c2ead90cc879b471f2bd1798f045e9e974aa262c80622
3
+ metadata.gz: 4e5385d84c9f26fc48afe9fb5b4883d431a7f346c116ea21ca7b65a744e19db8
4
+ data.tar.gz: 78f2089648f1167fac351d819c7eb7579ae4a4cae323882a2b56f245481296e7
5
5
  SHA512:
6
- metadata.gz: ac5f3424df21a80c8a4928ce81687f9bd7b12d150ce4cd22717191f84a3e7e5bbd1ca71c39b7c7d52a462ec9fb8c1b2af8c1fd59257ac904458a024267bced73
7
- data.tar.gz: 19cffa90875681622501392be03292bf3aea50e48921f30488a1ae7300d48c2ff460b0e9db42f517f3c3b3163e2580d13962dda786dc552844e741fc5a39cdcb
6
+ metadata.gz: 071375d821a918217c1318bca354dde933d04c572761c247ecb77f976b8085a489d3dfe7463994b88705685f1c0f5d1e7861d79df0f949935982f45e342ad862
7
+ data.tar.gz: ca85cde65a7f2f6987be16d542e571312cd763f6fadca1ebcc1f44be7a7fc70f7375ba79a3afe44c893f4db118fd6e6ef81292e858f962647df19defa80f0ebc
@@ -1,3 +1,49 @@
1
+ 0.21.2 (2021-01-09)
2
+ ==========
3
+
4
+ ## Bugfixes
5
+ * `maximum_coverage_drop` won't fail any more if `.last_run.json` is still in the old format. Thanks [@petertellgren](https://github.com/petertellgren)
6
+ * `maximum_coverage_drop` won't fail if an expectation is specified for a previous unrecorded criterion, it will just pass (there's nothing, so nothing to drop)
7
+ * fixed bug in `maximum_coverage_drop` calculation that could falsely report it had dropped for minimal differences
8
+
9
+ 0.21.1 (2021-01-04)
10
+ ==========
11
+
12
+ ## Bugfixes
13
+ * `minimum_coverage_by_file` works again as expected (errored out before 😱)
14
+
15
+ 0.21.0 (2021-01-03)
16
+ ==========
17
+
18
+ The "Collate++" release making it more viable for big CI setups by limiting memory consumption. Also includes some nice new additions for branch coverage settings.
19
+
20
+ ## Enhancements
21
+ * Performance of `SimpleCov.collate` improved - it should both run faster and consume much less memory esp. when run with many files (memory consumption should not increase with number of files any more)
22
+ * Can now define the minimum_coverage_by_file, maximum_coverage_drop and refuse_coverage_drop by branch as well as line coverage. Thanks to [@jemmaissroff](https://github.com/jemmaissroff)
23
+ * Can set primary coverage to something other than line by setting `primary_coverage :branch` in SimpleCov Configuration. Thanks to [@jemmaissroff](https://github.com/jemmaissroff)
24
+
25
+ ## Misc
26
+ * reduce gem size by splitting Changelog into `Changelog.md` and a pre 0.18 `Changelog.old.md`, the latter of which is not included in the gem
27
+ * The interface of `ResultMeger.merge_and_store` is changed to support the `collate` performance improvements mentioned above. It's not considered an official API, hence this is not in the breaking section. For people using it to merge results from different machines, it's recommended to migrate to [collate](https://github.com/simplecov-ruby/simplecov#merging-test-runs-under-different-execution-environments).
28
+
29
+ 0.20.0 (2020-11-29)
30
+ ==========
31
+
32
+ The "JSON formatter" release. Starting now a JSON formatter is included by default in the release. This is mostly done for Code Climate reasons, you can find more details [in this issue](https://github.com/codeclimate/test-reporter/issues/413).
33
+ Shipping with so much by default is sub-optimal, we know. It's the long term plan to also provide `simplecov-core` without the HTML or JSON formatters for those who don't need them/for other formatters to rely on.
34
+
35
+ ## Enhancements
36
+ * `simplecov_json_formatter` included by default ([docs](https://github.com/simplecov-ruby/simplecov#json-formatter)), this should enable the Code Climate test reporter to work again once it's updated
37
+ * invalidate internal cache after switching `SimpleCov.root`, should help with some bugs
38
+
39
+ 0.19.1 (2020-10-25)
40
+ ==========
41
+
42
+ ## Bugfixes
43
+
44
+ * No more warnings triggered by `enable_for_subprocesses`. Thanks to [@mame](https://github.com/mame)
45
+ * Avoid trying to patch `Process.fork` when it isn't available. Thanks to [@MSP-Greg](https://github.com/MSP-Greg)
46
+
1
47
  0.19.0 (2020-08-16)
2
48
  ==========
3
49
 
@@ -129,510 +175,7 @@ On a personal note from [@PragTob](https://github.com/PragTob/) thanks to [ruby
129
175
 
130
176
  * Add new instance of `Minitest` constant. The `MiniTest` constant (with the capital T) will be removed in the next major release of Minitest. See [#757](https://github.com/simplecov-ruby/simplecov/pull/757) (thanks [@adam12](https://github.com/adam12))
131
177
 
132
- 0.17.1 (2019-09-16)
133
- ===================
134
-
135
- Bugfix release for problems with ParallelTests.
136
-
137
- ## Bugfixes
138
-
139
- * Avoid hanging with parallel_tests. See [#746](https://github.com/simplecov-ruby/simplecov/pull/746) (thanks [@annaswims](https://github.com/annaswims))
140
-
141
- 0.17.0 (2019-07-02)
142
- ===================
143
-
144
- Maintenance release with nice convenience features and important bugfixes.
145
- Notably this **will be the last release to support ruby versions that have reached their end of life**. Moving forward official CRuby support will be 2.4+ and JRuby support will be 9.2+. Older versions might still work but no guarantees.
146
-
147
- ## Enhancements
148
-
149
- * Per default filter hidden files and folders. See [#721](https://github.com/simplecov-ruby/simplecov/pull/721) (thanks [Renuo AG](https://www.renuo.ch))
150
- * Print the exit status explicitly when it's not a successful build so it's easier figure out SimpleCov failed the build in the output. See [#688](https://github.com/simplecov-ruby/simplecov/pull/688) (thanks [@daemonsy](https://github.com/daemonsy))
151
-
152
- ## Bugfixes
153
-
154
- * Avoid a premature failure exit code when setting `minimum_coverage` in combination with using [parallel_tests](https://github.com/grosser/parallel_tests). See [#706](https://github.com/simplecov-ruby/simplecov/pull/706) (thanks [@f1sherman](https://github.com/f1sherman))
155
- * Project roots with special characters no longer cause crashes. See [#717](https://github.com/simplecov-ruby/simplecov/pull/717) (thanks [@deivid-rodriguez](https://github.com/deivid-rodriguez))
156
- * Avoid continously overriding test results with manual `ResultMergere.store_results` usage. See [#674](https://github.com/simplecov-ruby/simplecov/pull/674) (thanks [@tomeon](https://github.com/tomeon))
157
-
158
- 0.16.1 (2018-03-16)
159
- ===================
160
-
161
- ## Bugfixes
162
-
163
- * Include the LICENSE in the distributed gem again (accidentally removed in 0.16.0). (thanks @tas50)
164
-
165
- 0.16.0 (2018-03-15)
166
- ===================
167
-
168
- ## Enhancements
169
-
170
- * Relax version constraint on `docile`, per SemVer
171
- * exception that occurred on exit is available as `exit_exception`! See [#639](https://github.com/simplecov-ruby/simplecov/pull/639) (thanks @thomas07vt)
172
- * Performance: processing results now runs from 2.5x to 3.75x faster. See [#662](https://github.com/simplecov-ruby/simplecov/pull/662) (thanks @BMorearty & @eregon)
173
- * Decrease gem size by only shipping lib and docs
174
-
175
- ## Bugfixes
176
-
177
- * (breaking) Stop handling string filters as regular expressions, use the dedicated regex filter if you need that behaviour. See [#616](https://github.com/simplecov-ruby/simplecov/pull/616) (thanks @yujinakayama)
178
- * Avoid overwriting the last coverage results on unsuccessful test runs. See [#625](https://github.com/simplecov-ruby/simplecov/pull/625) (thanks @thomas07vt)
179
- * Don't crash on invalid UTF-8 byte sequences. (thanks @BMorearty)
180
-
181
- 0.15.1 (2017-09-11) ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.15.0...v0.15.1))
182
- =======
183
-
184
- ## Bugfixes
185
-
186
- * Filter directories outside SimpleCov.root that have it as a prefix. See [#617](https://github.com/simplecov-ruby/simplecov/pull/617) (thanks @jenseng)
187
- * Fix standard rails profile rails filter (didn't work). See [#618](https://github.com/simplecov-ruby/simplecov/pull/618) (thanks @jenseng again!)
188
-
189
- 0.15.0 (2017-08-14) ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.14.1...v0.15.0))
190
- =======
191
-
192
- ## Enhancements
193
-
194
- * Ability to use regex filters for removing files from the output. See [#589](https://github.com/simplecov-ruby/simplecov/pull/589) (thanks @jsteel)
195
-
196
- ## Bugfixes
197
-
198
- * Fix merging race condition when running tests in parallel and merging them. See [#570](https://github.com/simplecov-ruby/simplecov/pull/570) (thanks @jenseng)
199
- * Fix relevant lines for unloaded files - comments, skipped code etc. are correctly classified as irrelevant. See [#605](https://github.com/simplecov-ruby/simplecov/pull/605) (thanks @odlp)
200
- * Allow using simplecov with frozen-string-literals enabled. See [#590](https://github.com/simplecov-ruby/simplecov/pull/590) (thanks @pat)
201
- * Make sure Array Filter can use all other filter types. See [#589](https://github.com/simplecov-ruby/simplecov/pull/589) (thanks @jsteel)
202
- * Make sure file names use `Simplecov.root` as base avoiding using full absolute project paths. See [#589](https://github.com/simplecov-ruby/simplecov/pull/589) (thanks @jsteel)
203
-
204
- 0.14.1 2017-03-18 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.14.0...v0.14.1))
205
- ========
206
-
207
- ## Bugfixes
208
-
209
- * Files that were skipped as a whole/had no relevant coverage could lead to Float errors. See [#564](https://github.com/simplecov-ruby/simplecov/pull/564) (thanks to @stevehanson for the report in [#563](https://github.com/simplecov-ruby/simplecov/issues/563))
210
-
211
- 0.14.0 2017-03-15 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.13.0...v0.14.0))
212
- ==========
213
-
214
- ## Enhancements
215
-
216
- * Officially support JRuby 9.1+ going forward (should also work with previous releases). See [#547](https://github.com/simplecov-ruby/simplecov/pull/547) (ping @PragTob when encountering issues)
217
- * Add Channel group to Rails profile, when `ActionCable` is loaded. See [#492](https://github.com/simplecov-ruby/simplecov/pull/492) (thanks @BenMorganIO)
218
- * Stop `extend`ing instances of `Array` and `Hash` during merging results avoiding problems frozen results while manually merging results. See [#558](https://github.com/simplecov-ruby/simplecov/pull/558) (thanks @aroben)
219
-
220
- ## Bugfixes
221
-
222
- * Fix parallel_tests when a thread ends up running no tests. See [#533](https://github.com/simplecov-ruby/simplecov/pull/533) (thanks @cshaffer)
223
- * Skip the `:nocov:` comments along with the code that they skip. See [#551](https://github.com/simplecov-ruby/simplecov/pull/551) (thanks @ebiven)
224
- * Fix crash when Home environment variable is unset. See [#482](https://github.com/simplecov-ruby/simplecov/pull/482) (thanks @waldyr)
225
- * Make track_files work again when explicitly setting it to nil. See [#463](https://github.com/simplecov-ruby/simplecov/pull/463) (thanks @craiglittle)
226
- * Do not overwrite .last_run.json file when refuse_coverage_drop option is enabled and the coverage has dropped (lead to you being able to just rerun tests and everything was _fine_). See [#553](https://github.com/simplecov-ruby/simplecov/pull/553) (thanks @Miloshes)
227
-
228
- 0.13.0 2017-01-25 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.12.0...v0.13.0))
229
- ==========
230
-
231
- ## Enhancements
232
-
233
- * Faster run times when a very large number of files is loaded into SimpleCov. See [#520](https://github.com/simplecov-ruby/simplecov/pull/520) (thanks @alyssais)
234
- * Only read in source code files that are actually used (faster when files are ignored etc.). See [#540](https://github.com/simplecov-ruby/simplecov/pull/540) (thanks @yui-knk)
235
-
236
- ## Bugfixes
237
-
238
- * Fix merging of resultsets if a file is missing on one side. See [#513](https://github.com/simplecov-ruby/simplecov/pull/513) (thanks @hanazuki)
239
- * Fix Ruby 2.4 deprecation warnings by using Integer instead of Fixnum. See [#523](https://github.com/simplecov-ruby/simplecov/pull/523) (thanks @nobu)
240
- * Force Ruby 2 to json 2. See [dc7417d50](https://github.com/simplecov-ruby/simplecov/commit/dc7417d5049b1809cea214314c15dd93a5dd964f) (thanks @amatsuda)
241
- * Various other gem dependency fixes for different gems on different ruby versions. (thanks @amatsuda)
242
-
243
- 0.12.0 2016-07-02 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.11.2...v0.12.0))
244
- =================
245
-
246
- ## Enhancements
247
-
248
- * Add support for JSON versions 2.x
249
-
250
- ## Bugfixes
251
-
252
- * Fix coverage rate of the parallel_tests. See [#441](https://github.com/simplecov-ruby/simplecov/pull/441) (thanks @sinsoku)
253
- * Fix a regression on old rubies that failed to work with the recently introduced frozen VERSION string. See [#461](https://github.com/simplecov-ruby/simplecov/pull/461) (thanks @leafle)
254
-
255
- 0.11.2 2016-02-03 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.11.1...v0.11.2))
256
- =================
257
-
258
- ## Enhancements
259
-
260
- * Do not globally pollute Array and Hash with `merge_resultset` utility methods. See [#449](https://github.com/simplecov-ruby/simplecov/pull/449) (thanks @amatsuda)
261
- * Do not `mkdir_p` the `coverage_path` on every access of the method (See [#453](https://github.com/simplecov-ruby/simplecov/pull/453) (thanks @paddor)
262
- * Fixes a Ruby warning related to the `track_files` configuration. See [#447](https://github.com/simplecov-ruby/simplecov/pull/447) (thanks @craiglittle)
263
- * Add a group for background jobs to default Rails profile. See [#442](https://github.com/simplecov-ruby/simplecov/pull/442) (thanks @stve)
264
-
265
- ## Bugfixes
266
-
267
- * Fix root_filter evaluates SimpleCov.root before initialization. See [#437](https://github.com/simplecov-ruby/simplecov/pull/437) (thanks @tmtm)
268
-
269
- 0.11.1 2015-12-01 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.11.0...v0.11.1))
270
- =================
271
-
272
- ## Enhancements
273
-
274
- ## Bugfixes
275
-
276
- * Fixed regression in `MultiFormatter.[]` with multiple arguments. See [#431](https://github.com/simplecov-ruby/simplecov/pull/431) (thanks @dillondrobena)
277
-
278
- 0.11.0 2015-11-29 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.10.0...v0.11.0))
279
- =================
280
-
281
- ## Enhancements
282
-
283
- * Added `SimpleCov.minimum_coverage_by_file` for per-file coverage thresholds. See [#392](https://github.com/simplecov-ruby/simplecov/pull/392) (thanks @ptashman)
284
- * Added `track_files` configuration option to specify a glob to always include in coverage results, whether or not those files are required. By default, this is enabled in the Rails profile for common Rails directories. See [#422](https://github.com/simplecov-ruby/simplecov/pull/422) (thanks @hugopeixoto)
285
- * Speed up `root_filter` by an order of magnitude. See [#396](https://github.com/simplecov-ruby/simplecov/pull/396) (thanks @raszi)
286
-
287
- ## Bugfixes
288
-
289
- * Fix warning about global variable `$ERROR_INFO`. See [#400](https://github.com/simplecov-ruby/simplecov/pull/400) (thanks @amatsuda)
290
- * Actually recurse upward looking for `.simplecov`, as claimed by the documentation, rather than only the working directory. See [#423](https://github.com/simplecov-ruby/simplecov/pull/423) (thanks @alexdowad)
291
-
292
- 0.10.0 2015-04-18 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.9.2...v0.10.0))
293
- =================
294
-
295
- ## Enhancements
296
-
297
- * Add writeup about using with Spring to README. See [#341](https://github.com/simplecov-ruby/simplecov/issues/341) (thanks @swrobel and @onebree)
298
- * Add support to pass in an Array when creating filter groups (original PR #104)
299
- * Filter `/vendor/bundle` by default. See [#331](https://github.com/simplecov-ruby/simplecov/pull/331) (thanks @andyw8)
300
- * Add some helpful singleton methods to the version string.
301
- * Allow array to be passed in a filter. See [375](https://github.com/simplecov-ruby/simplecov/pull/375) (thanks @JanStevens)
302
- * Enforce consistent code formatting with RuboCop.
303
-
304
- ## Bugfixes
305
-
306
- * Fix order dependencies in unit tests. See [#376](https://github.com/simplecov-ruby/simplecov/pull/376) (thanks @hugopeixoto)
307
- * Only run the at_exit behaviors if the current PID matches the PID that called SimpleCov.start. See [#377](https://github.com/simplecov-ruby/simplecov/pull/377) (thanks @coderanger)
308
-
309
- 0.9.2, 2015-02-18 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.9.1...v0.9.2))
310
- =================
311
-
312
- This is a minor bugfix release for simplecov-html, released as `0.9.0`. Due to the tight version constraint in the gemspec
313
- a new release of simplecov had to be shipped to allow using simplecov-html `~> 0.9.0`.
314
-
315
- * The browser back / forward button should now work again. See [#36](https://github.com/simplecov-ruby/simplecov-html/pull/36) and
316
- [#35](https://github.com/simplecov-ruby/simplecov-html/pull/35). Thanks @whatasunnyday and @justinsteele for submitting PRs to fix this.
317
- * Fix "warning: possibly useless use of a variable in void context" See [#31](https://github.com/simplecov-ruby/simplecov-html/pull/31). Thanks @cbandy
318
- * Always use binary file format. See [#32](https://github.com/simplecov-ruby/simplecov-html/pull/32). Thanks @andy128k
319
- * Avoid slow file output with JRuby/Windows. See [#16](https://github.com/simplecov-ruby/simplecov-html/pull/16). Thanks @pschambacher
320
-
321
- Other than the release includes a bunch of mostly documentation improvements:
322
-
323
- * Update Rails path for Rails 4+. See [#336](https://github.com/simplecov-ruby/simplecov/pull/336). Thanks @yazinsai
324
- * Encourage use of .simplecov to avoid lost files. See [#338](https://github.com/simplecov-ruby/simplecov/pull/338). thanks @dankohn
325
- * Specified in the gemspec that simplecov needs ruby 1.8.7. See [#343](https://github.com/simplecov-ruby/simplecov/pull/343). thanks @iainbeeston
326
- * Fix mispointed link in CHANGELOG.md. See [#353](https://github.com/simplecov-ruby/simplecov/pull/353). Thanks @dleve123
327
- * Improve command name docs. See [#356](https://github.com/simplecov-ruby/simplecov/pull/356). Thanks @gtd
328
-
329
-
330
-
331
- 0.9.1, 2014-09-21 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.9.0...v0.9.1))
332
- =================
333
-
334
- ## Bugfixes
335
-
336
- * In 0.9.0, we introduced a regression that made SimpleCov no-op mode fail on Ruby 1.8, while
337
- dropping 1.8 support altogether is announced only for v1.0. This has been fixed.
338
- See [#333](https://github.com/simplecov-ruby/simplecov/issues/333) (thanks (@sferik)
339
-
340
-
341
- 0.9.0, 2014-07-17 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.8.2...v0.9.0))
342
- =================
343
-
344
- **A warm welcome and big thank you to the new contributors [@xaviershay](https://github.com/xaviershay), [@sferik](https://github.com/sferik) and especially [@bf4](https://github.com/bf4) for tackling a whole lot of issues and pull requests for this release!**
345
-
346
- ## Enhancements
347
-
348
- * New interface to specify multiple formatters.
349
- See [#317](https://github.com/simplecov-ruby/simplecov/pull/317) (thanks @sferik)
350
- * Document in the README how to exclude code from coverage reports,
351
- and that the feature shouldn't be abused for skipping untested
352
- private code.
353
- See [#304](https://github.com/simplecov-ruby/simplecov/issues/304)
354
- * Clarify Ruby version support.
355
- See [#279](https://github.com/simplecov-ruby/simplecov/pull/279) (thanks @deivid-rodriguez)
356
-
357
- ## Bugfixes
358
-
359
- * Ensure calculations return Floats, not Fixnum or Rational. Fixes segfaults with mathn.
360
- See [#245](https://github.com/simplecov-ruby/simplecov/pull/245) (thanks to @bf4)
361
- * Using `Kernel.exit` instead of exit to avoid uncaught throw :IRB_EXIT when
362
- exiting irb sessions.
363
- See [#287](https://github.com/simplecov-ruby/simplecov/pull/287) (thanks @wless1)
364
- See [#285](https://github.com/simplecov-ruby/simplecov/issues/285)
365
- * Does not look for .simplecov in ~/ when $HOME is not set.
366
- See [#311](https://github.com/simplecov-ruby/simplecov/pull/311) (thanks @lasseebert)
367
- * Exit with code only if it's Numeric > 0.
368
- See [#302](https://github.com/simplecov-ruby/simplecov/pull/302) (thanks @hajder)
369
- * Make default filter case insensitive.
370
- See [#280](https://github.com/simplecov-ruby/simplecov/pull/280) (thanks @ryanatball)
371
- * Improve regexp that matches functional tests.
372
- See [#276](https://github.com/simplecov-ruby/simplecov/pull/276) (thanks @sferik)
373
- * Fix TravisCI [#272](https://github.com/simplecov-ruby/simplecov/pull/272) [#278](https://github.com/simplecov-ruby/simplecov/pull/278), [#302](https://github.com/simplecov-ruby/simplecov/pull/302)
374
- * Fix global config load.
375
- See [#311](https://github.com/simplecov-ruby/simplecov/pull/311) (thanks @lasseebert)
376
-
377
- v0.8.2, 2013-11-20 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.8.1...v0.8.2))
378
- ==================
379
-
380
- ## Bugfixes
381
-
382
- * Replaced the locking behaviour [via lockfile gem](https://github.com/simplecov-ruby/simplecov/pull/185) with
383
- plain Ruby explicit file locking when merging results. This should make simplecov merging to behave well
384
- on Windows again.
385
- See [#258](https://github.com/simplecov-ruby/simplecov/issues/258) and
386
- [#223](https://github.com/simplecov-ruby/simplecov/pull/223) (thanks to @tomykaira)
387
-
388
- v0.8.1, 2013-11-10 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.8.0...v0.8.1))
389
- ==================
390
-
391
- ## Bugfixes
392
-
393
- * Fixed a regression introduced in 0.8.0 - the Forwardable STDLIB module is now required explicitly.
394
- See [#256](https://github.com/simplecov-ruby/simplecov/pull/256) (thanks to @kylev)
395
-
396
- v0.8.0, 2013-11-10 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.7.1...v0.8.0))
397
- ==================
398
-
399
- **Note: Yanked the same day because of the regression that 0.8.1 fixes, see above**
400
-
401
- ## TL;DR
402
-
403
- It's been way too long since the last official release 0.7.1, but this was partly due to it proving itself
404
- quite stable in most circumstances. This release brings various further stability improvements to result set merging
405
- (especially when working with parallel_tests), the configuration, source file encodings, and command name guessing.
406
-
407
- The 0.8 line is the last one to cooperate with Ruby < 1.9. Starting with 0.9, SimpleCov will assume to be running in
408
- Ruby 1.9+, and will not try to detect or bail silently on older Ruby versions. An appropriate deprecation warning
409
- has been added.
410
-
411
- ## Features
412
-
413
- * Configuration blocks now have access to variables and methods outside of the block's scope.
414
- See [#238](https://github.com/simplecov-ruby/simplecov/pull/238) (thanks to @ms-tg)
415
- * You can now have a global `~/.simplecov` configuration file.
416
- See [#195](https://github.com/simplecov-ruby/simplecov/pull/195) (thanks to @spagalloco)
417
- * simplecov-html now uses the MIT-licensed colorbox plugin. Some adjustments when viewing source files,
418
- including retaining the currently open file on refresh have been added.
419
- See [simplecov-html #15](https://github.com/simplecov-ruby/simplecov-html/pull/15) (thanks to @chetan)
420
- * Adds support for Rails 4 command guessing, removes default group `vendor/plugins`.
421
- See [#181](https://github.com/simplecov-ruby/simplecov/pull/181) and
422
- [#203](https://github.com/simplecov-ruby/simplecov/pull/203) (thanks to @semanticart and @phallstrom)
423
- * You can now load simplecov without the default settings by doing `require 'simplecov/no_defaults'`
424
- or setting `ENV['SIMPLECOV_NO_DEFAULTS']`. Check `simplecov/defaults` to see what preconfigurations are getting
425
- dropped by using this. See [#209](https://github.com/simplecov-ruby/simplecov/pull/209) (thanks to @ileitch)
426
- * The result set merging now uses the `lockfile` gem to avoid race conditions.
427
- See [#185](https://github.com/simplecov-ruby/simplecov/pull/185) (thanks to @jshraibman-mdsol).
428
- * Automatically detect the usage of parallel_tests and adjust the command name with the test env number accordingly,
429
- See [#64](https://github.com/simplecov-ruby/simplecov/issues/64) and
430
- [#185](https://github.com/simplecov-ruby/simplecov/pull/185) (thanks to @jshraibman-mdsol).
431
-
432
- ## Enhancements
433
-
434
- * Rename adapters to "profiles" given that they are bundles of settings. The old adapter methods are
435
- deprecated, but remain available for now.
436
- See [#207](https://github.com/simplecov-ruby/simplecov/pull/207) (thanks to @mikerobe)
437
- * Tweaks to the automatic test suite naming. In particular, `rspec/features` should now
438
- be correctly attributed to RSpec, not Cucumber.
439
- See [#212](https://github.com/simplecov-ruby/simplecov/pull/212) (thanks to @ersatzryan and @betelgeuse)
440
- * MiniTest should now be identified correctly by the command name guesser.
441
- See [#244](https://github.com/simplecov-ruby/simplecov/pull/244) (thanks to @envygeeks)
442
- * Makes SimpleCov resilient to inclusion of mathn library.
443
- See [#175](https://github.com/simplecov-ruby/simplecov/pull/175) and
444
- [#140](https://github.com/simplecov-ruby/simplecov/issues/140) (thanks to @scotje)
445
- * Allow coverage_dir to be an absolute path.
446
- * See [#190](https://github.com/simplecov-ruby/simplecov/pull/190) (thanks to @jshraibman-mdsol)
447
- * The internal cucumber test suite now uses Capybara 2.
448
- See [#206](https://github.com/simplecov-ruby/simplecov/pull/206) (thanks to @infertux)
449
- * Work-arounds for the Coverage library shipped in JRuby 1.6 to behave in line with MRI.
450
- See [#174](https://github.com/simplecov-ruby/simplecov/pull/174) (thanks to @grddev)
451
- * Fix warning: instance variable @exit_status not initialized.
452
- See [#242](https://github.com/simplecov-ruby/simplecov/pull/242) and
453
- [#213](https://github.com/simplecov-ruby/simplecov/pull/213) (thanks to @sferik and @infertux)
454
-
455
- ## Bugfixes
456
-
457
- * Correct result calculations for people using :nocov: tags.
458
- See [#215](https://github.com/simplecov-ruby/simplecov/pull/215) (thanks to @aokolish)
459
- * Average hits per line for groups of files is now computed correctly.
460
- See [#192](http://github.com/simplecov-ruby/simplecov/pull/192) and
461
- [#179](http://github.com/simplecov-ruby/simplecov/issues/179) (thanks to @graysonwright)
462
- * Compatibility with BINARY internal encoding.
463
- See [#194](https://github.com/simplecov-ruby/simplecov/pull/194) and
464
- [#127](https://github.com/simplecov-ruby/simplecov/issues/127) (thanks to @justfalter)
465
- * Special characters in `SimpleCov.root` are now correctly escaped before being used as a RegExp.
466
- See [#204](https://github.com/simplecov-ruby/simplecov/issues/204) and
467
- [#237](https://github.com/simplecov-ruby/simplecov/pull/237) (thanks to @rli9)
468
-
469
- v0.7.1, 2012-10-12 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.7.0...v0.7.1))
470
- ==================
471
-
472
- * [BUGFIX] The gem packages of 0.7.0 (both simplecov and simplecov-html) pushed to Rubygems had some file
473
- permission issues, leading to problems when installing SimpleCov in a root/system Rubygems install and then
474
- trying to use it as a normal user (see https://github.com/simplecov-ruby/simplecov/issues/171, thanks @envygeeks
475
- for bringing it up). The gem build process has been changed to always enforce proper permissions before packaging
476
- to avoid this issue in the future.
477
-
478
-
479
- v0.7.0, 2012-10-10 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.6.4...v0.7.0))
480
- ==================
481
-
482
- * [FEATURE] The new `maximum_coverage_drop` and `minimum_coverage` now allow you to fail your build when the
483
- coverage dropped by more than what you allowed or is below a minimum value required. Also, `refuse_coverage_drop` disallows
484
- any coverage drops between test runs.
485
- See https://github.com/simplecov-ruby/simplecov/pull/151, https://github.com/simplecov-ruby/simplecov/issues/11,
486
- https://github.com/simplecov-ruby/simplecov/issues/90, and https://github.com/simplecov-ruby/simplecov/issues/96 (thanks to @infertux)
487
- * [FEATURE] SimpleCov now ships with a built-in MultiFormatter which allows the easy usage of multiple result formatters at
488
- the same time without the need to write custom wrapper code.
489
- See https://github.com/simplecov-ruby/simplecov/pull/158 (thanks to @nikitug)
490
- * [BUGFIX] The usage of digits, hyphens and underscores in group names could lead to broken tab navigation
491
- in the default simplecov-html reports. See https://github.com/simplecov-ruby/simplecov-html/pull/14 (thanks to @ebelgarts)
492
- * [REFACTORING] A few more ruby warnings removed. See https://github.com/simplecov-ruby/simplecov/issues/106 and
493
- https://github.com/simplecov-ruby/simplecov/pull/139. (thanks to @lukejahnke)
494
- * A [Pledgie button](https://github.com/simplecov-ruby/simplecov/commit/63cfa99f8658fa5cc66a38c83b3195fdf71b9e93) for those that
495
- feel generous :)
496
- * The usual bunch of README fixes and documentation tweaks. Thanks to everyone who contributed those!
497
-
498
- v0.6.4, 2012-05-10 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.6.3...v0.6.4))
499
- ==================
500
-
501
- * [BUGFIX] Encoding issues with ISO-8859-encoded source files fixed.
502
- See https://github.com/simplecov-ruby/simplecov/pull/117. (thanks to @Deradon)
503
- * [BUGFIX] Ensure ZeroDivisionErrors won't occur when calculating the coverage result, which previously
504
- could happen in certain cases. See https://github.com/simplecov-ruby/simplecov/pull/128. (thanks to @japgolly)
505
- * [REFACTORING] Changed a couple instance variable lookups so SimpleCov does not cause a lot of warnings when
506
- running ruby at a higher warning level. See https://github.com/simplecov-ruby/simplecov/issues/106 and
507
- https://github.com/simplecov-ruby/simplecov/pull/119. (thanks to @mvz and @gioele)
508
-
509
-
510
- v0.6.3, 2012-05-10 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.6.2...v0.6.3))
511
- ==================
512
-
513
- * [BUGFIX] Modified the API-changes for newer multi_json versions introduced with #122 and v0.6.2 so
514
- they are backwards-compatible with older multi_json gems in order to avoid simplecov polluting
515
- the multi_json minimum version requirement for entire applications.
516
- See https://github.com/simplecov-ruby/simplecov/issues/132
517
- * Added appraisal gem to the test setup in order to run the test suite against both 1.0 and 1.3
518
- multi_json gems and ensure the above actually works :)
519
-
520
- v0.6.2, 2012-04-20 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.6.1...v0.6.2))
521
- ==================
522
-
523
- * [Updated to latest version of MultiJSON and its new API (thanks to @sferik and @ronen).
524
- See https://github.com/simplecov-ruby/simplecov/pull/122
525
-
526
- v0.6.1, 2012-02-24 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.6.0...v0.6.1))
527
- ==================
528
-
529
- * [BUGFIX] Don't force-load Railtie on Rails < 3. Fixes regression introduced with
530
- #83. See https://github.com/simplecov-ruby/simplecov/issues/113
531
-
532
- v0.6.0, 2012-02-22 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.5.4...v0.6.0))
533
- ==================
534
-
535
- * [FEATURE] Auto-magic `rake simplecov` task for rails
536
- (see https://github.com/simplecov-ruby/simplecov/pull/83, thanks @sunaku)
537
- * [BUGFIX] Treat source files as UTF-8 to avoid encoding errors
538
- (see https://github.com/simplecov-ruby/simplecov/pull/103, thanks @joeyates)
539
- * [BUGFIX] Store the invoking terminal command right after loading so they are safe from
540
- other libraries tampering with ARGV. Among other makes automatic Rails test suite splitting
541
- (Unit/Functional/Integration) work with recent rake versions again
542
- (see https://github.com/simplecov-ruby/simplecov/issues/110)
543
- * [FEATURE] If guessing command name from the terminal command fails, try guessing from defined constants
544
- (see https://github.com/simplecov-ruby/simplecov/commit/37afca54ef503c33d888e910f950b3b943cb9a6c)
545
- * Some refactorings and cleanups as usual. Please refer to the github compare view for a full
546
- list of changes: https://github.com/simplecov-ruby/simplecov/compare/v0.5.4...v0.6.0
547
-
548
- v0.5.4, 2011-10-12 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.5.3...v0.5.4))
549
- ==================
550
-
551
- * Do not give exit code 0 when there are exceptions prior to tests
552
- (see https://github.com/simplecov-ruby/simplecov/issues/41, thanks @nbogie)
553
- * The API for building custom filter classes is now more obvious, using #matches? instead of #passes? too.
554
- (see https://github.com/simplecov-ruby/simplecov/issues/85, thanks @robinroestenburg)
555
- * Mailers are now part of the Rails adapter as their own group (see
556
- https://github.com/simplecov-ruby/simplecov/issues/79, thanks @geetarista)
557
- * Removed fix for JRuby 1.6 RC1 float bug because it's been fixed
558
- (see https://github.com/simplecov-ruby/simplecov/issues/86)
559
- * Readme formatted in Markdown :)
560
-
561
- v0.5.3, 2011-09-13 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.5.2...v0.5.3))
562
- ==================
563
-
564
- * Fix for encoding issues that came from the nocov processing mechanism
565
- (see https://github.com/simplecov-ruby/simplecov/issues/71)
566
- * :nocov: lines are now actually being reflected in the HTML report and are marked in yellow.
567
-
568
- * The Favicon in the HTML report is now determined by the overall coverage and will have the color
569
- that the coverage percentage gets as a css class to immediately indicate coverage status on first sight.
570
-
571
- * Introduced SimpleCov::SourceFile::Line#status method that returns the coverage status
572
- as a string for this line - made SimpleCov::HTML use that.
573
- * Refactored nocov processing and made it configurable using SimpleCov.ncov_token (or it's
574
- alias SimpleCov.skip_token)
575
-
576
- v0.5.2, 2011-09-12 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.5.1...v0.5.2))
577
- ==================
578
-
579
- * Another fix for a bug in JSON processing introduced with MultiJSON in 0.5.1
580
- (see https://github.com/simplecov-ruby/simplecov/pull/75, thanks @sferik)
581
-
582
- v0.5.1, 2011-09-12 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.5.0...v0.5.1))
583
- ==================
584
- **Note: Yanked 2011-09-12 because the MultiJSON-patch had a crucial bug**
585
-
586
- * Fix for invalid gemspec dependency string (see https://github.com/simplecov-ruby/simplecov/pull/70,
587
- http://blog.rubygems.org/2011/08/31/shaving-the-yaml-yacc.html, thanks @jspradlin)
588
-
589
- * Added JSON in the form of the multi_json gem as dependency for those cases when built-in JSON
590
- is unavailable (see https://github.com/simplecov-ruby/simplecov/issues/72
591
- and https://github.com/simplecov-ruby/simplecov/pull/74, thanks @sferik)
592
-
593
- v0.5.0, 2011-09-09 ([changes](https://github.com/simplecov-ruby/simplecov/compare/v0.4.2...v0.5.4))
594
- ==================
595
- **Note: Yanked 2011-09-09 because of trouble with the gemspec.**
596
-
597
- * JSON is now used instead of YAML for resultset caching (used for merging). Should resolve
598
- a lot of problems people used to have because of YAML parser errors.
599
-
600
- * There's a new adapter 'test_frameworks'. Use it outside of Rails to remove `test/`,
601
- `spec/`, `features/` and `autotest/` dirs from your coverage reports, either directly
602
- with `SimpleCov.start 'test_frameworks'` or with `SimpleCov.load_adapter 'test_frameworks'`
603
-
604
- * SimpleCov configuration can now be placed centrally in a text file `.simplecov`, which will
605
- be automatically read on `require 'simplecov'`. This makes using custom configuration like
606
- groups and filters across your test suites much easier as you only have to specify your config
607
- once. Just put the whole `SimpleCov.start (...)` code into `APP_ROOT/.simplecov`
608
-
609
- * Lines can now be skipped by using the :nocov: flag in comments that wrap the code that should be
610
- skipped, like in this example (thanks @phillipkoebbe)
611
-
612
- <pre>
613
- #:nocov:
614
- def skipped
615
- @foo * 2
616
- end
617
- #:nocov:
618
- </pre>
619
-
620
- * Moved file set coverage analytics from simplecov-html to SimpleCov::FileList, a new subclass
621
- of Array that is always returned for SourceFile lists (i.e. in groups) and can now be used
622
- in all formatters without the need to roll your own.
623
-
624
- * The exceptions you used to get after removing some code and re-running your tests because SimpleCov
625
- couldn't find the cached source lines should be resolved (thanks @goneflyin)
626
-
627
- * Coverage strength metric: Average hits/line per source file and result group (thanks @trans)
178
+ Older Changelogs
179
+ ================
628
180
 
629
- * Finally, SimpleCov has an extensive Cucumber test suite
630
-
631
- * Full compatibility with Ruby 1.9.3.preview1
632
-
633
- ### HTML Formatter:
634
-
635
- * The display of source files has been improved a lot. Weird scrolling trouble, out-of-scope line hit counts
636
- and such should be a thing of the past. Also, it is prettier now.
637
- * Source files are now syntax highlighted
638
- * File paths no longer have that annoying './' in front of them
181
+ Looking for older changelogs? Please check the [old Changelog](https://github.com/simplecov-ruby/simplecov/blob/main/CHANGELOG.old.md)