Skip to content

Releases: hcoles/pitest

1.13.1

02 May 10:01
90c936e
Compare
Choose a tag to compare

1.13.0

21 Apr 12:01
Compare
Choose a tag to compare
  • #1188 Allow mutators to produce multiple distinct mutations
  • #1190 Provide test prioritiser to interceptors
  • #1191 Enable mutation of annotations of methods and fields

1.12.0

05 Apr 13:58
Compare
Choose a tag to compare
  • #1186 New extension points

Adds new extension points to allow plugins to make changes in the environment in which tests are run.

1.11.7

26 Mar 21:01
Compare
Choose a tag to compare

#1178 Commas in killing test name break csv export (thanks @Bonajo)
#1177 Apply features in a consistent order
#1176 Upgrade to ASM 9.5

1.11.6

22 Mar 21:48
Compare
Choose a tag to compare

#1171 Prevent double instantiation of features
#1170 Update links to https (thanks @romani)

1.11.5

16 Mar 09:29
Compare
Choose a tag to compare
  • #1167 Fix poor static analysis performance for large methods
  • #1166 Update pitest web link to https (thanks @romani)

1.11.4

03 Mar 14:30
Compare
Choose a tag to compare

#1161 Prevent duplicate clinit when synthetic clinit present
#1162 Auto add kotlin source dirs to maven when present

1.11.3

27 Feb 16:05
Compare
Choose a tag to compare
  • #1159 Include only mutated classes in line coverage stats

The line coverage data displayed on the console previously included all targetted
code, while the figures shown in the report were implicitly limited to mutated classes.

This caused considerable confusion.

The console stats are now also limited to include only mutated classes.

1.11.2

27 Feb 16:02
Compare
Choose a tag to compare
  • #1157 Report only target code lines

The line coverage stats reported on the console included code lines for the entire project, even when filters were applied. This resulted in dramatically low coverage scores.

1.11.1

23 Feb 09:42
4d593e9
Compare
Choose a tag to compare

#1156 Prevent synthetic lines being counted in coverage

Synthetic methods were being included in the line coverage calculations resulting in an over calculation of coverage. For some kotlin classes this could result in more code lines having coverage than actually existed in a file. #1156 fixes this, but still intstruments the synthetic methods used to implement lambdas in java classes.