Chris@0
|
1 # Changes in PHP_CodeCoverage 2.2
|
Chris@0
|
2
|
Chris@0
|
3 All notable changes of the PHP_CodeCoverage 2.2 release series are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
|
Chris@0
|
4
|
Chris@0
|
5 ## [2.2.4] - 2015-10-06
|
Chris@0
|
6
|
Chris@0
|
7 ### Fixed
|
Chris@0
|
8
|
Chris@0
|
9 * Fixed [#391](https://github.com/sebastianbergmann/php-code-coverage/pull/391): Missing `</abbr>` tag
|
Chris@0
|
10
|
Chris@0
|
11 ## [2.2.3] - 2015-09-14
|
Chris@0
|
12
|
Chris@0
|
13 ### Fixed
|
Chris@0
|
14
|
Chris@0
|
15 * Fixed [#368](https://github.com/sebastianbergmann/php-code-coverage/pull/368): Blacklists and whitelists are not merged when merging data sets
|
Chris@0
|
16 * Fixed [#370](https://github.com/sebastianbergmann/php-code-coverage/issues/370): Confusing statistics for source file that declares a class without methods
|
Chris@0
|
17 * Fixed [#372](https://github.com/sebastianbergmann/php-code-coverage/pull/372): Nested classes and functions are not handled correctly
|
Chris@0
|
18 * Fixed [#382](https://github.com/sebastianbergmann/php-code-coverage/issues/382): Crap4J report generates incorrect XML logfile
|
Chris@0
|
19
|
Chris@0
|
20 ## [2.2.2] - 2015-08-04
|
Chris@0
|
21
|
Chris@0
|
22 ### Added
|
Chris@0
|
23
|
Chris@0
|
24 * Reintroduced the `PHP_CodeCoverage_Driver_HHVM` driver as an extension of `PHP_CodeCoverage_Driver_Xdebug` that does not use `xdebug_start_code_coverage()` with options not supported by HHVM
|
Chris@0
|
25
|
Chris@0
|
26 ### Changed
|
Chris@0
|
27
|
Chris@0
|
28 * Bumped required version of `sebastian/environment` to 1.3.2 for [#365](https://github.com/sebastianbergmann/php-code-coverage/issues/365)
|
Chris@0
|
29
|
Chris@0
|
30 ## [2.2.1] - 2015-08-02
|
Chris@0
|
31
|
Chris@0
|
32 ### Changed
|
Chris@0
|
33
|
Chris@0
|
34 * Bumped required version of `sebastian/environment` to 1.3.1 for [#365](https://github.com/sebastianbergmann/php-code-coverage/issues/365)
|
Chris@0
|
35
|
Chris@0
|
36 ## [2.2.0] - 2015-08-01
|
Chris@0
|
37
|
Chris@0
|
38 ### Added
|
Chris@0
|
39
|
Chris@0
|
40 * Added a driver for PHPDBG (requires PHP 7)
|
Chris@0
|
41 * Added `PHP_CodeCoverage::setDisableIgnoredLines()` to disable the ignoring of lines using annotations such as `@codeCoverageIgnore`
|
Chris@0
|
42
|
Chris@0
|
43 ### Changed
|
Chris@0
|
44
|
Chris@0
|
45 * Annotating a method with `@deprecated` now has the same effect as annotating it with `@codeCoverageIgnore`
|
Chris@0
|
46
|
Chris@0
|
47 ### Removed
|
Chris@0
|
48
|
Chris@0
|
49 * The dedicated driver for HHVM, `PHP_CodeCoverage_Driver_HHVM` has been removed
|
Chris@0
|
50
|
Chris@0
|
51 [2.2.4]: https://github.com/sebastianbergmann/php-code-coverage/compare/2.2.3...2.2.4
|
Chris@0
|
52 [2.2.3]: https://github.com/sebastianbergmann/php-code-coverage/compare/2.2.2...2.2.3
|
Chris@0
|
53 [2.2.2]: https://github.com/sebastianbergmann/php-code-coverage/compare/2.2.1...2.2.2
|
Chris@0
|
54 [2.2.1]: https://github.com/sebastianbergmann/php-code-coverage/compare/2.2.0...2.2.1
|
Chris@0
|
55 [2.2.0]: https://github.com/sebastianbergmann/php-code-coverage/compare/2.1...2.2.0
|
Chris@0
|
56
|