• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="UTF-8" ?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
4<head>
5  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6  <link rel="stylesheet" href="resources/doc.css" charset="UTF-8" type="text/css" />
7  <link rel="shortcut icon" href="resources/report.gif" type="image/gif" />
8  <title>JaCoCo - Change History</title>
9</head>
10<body>
11
12<div class="breadcrumb">
13  <a href="../index.html" class="el_report">JaCoCo</a> &gt;
14  <a href="index.html" class="el_group">Documentation</a> &gt;
15  <span class="el_source">Change History</span>
16</div>
17<div id="content">
18
19<h1>Change History</h1>
20
21<h2>Release 0.8.0 (2018/01/02)</h2>
22
23<h3>New Features</h3>
24<ul>
25  <li>JaCoCo now officially supports Java 9
26      (GitHub <a href="https://github.com/jacoco/jacoco/issues/600">#600</a>).</li>
27  <li>JaCoCo now comes with a simple command line interface
28      (GitHub <a href="https://github.com/jacoco/jacoco/issues/525">#525</a>).</li>
29  <li>Limit configuration of Maven <code>check</code> goal and Ant
30      <code>check</code> element now also supports percentage values
31      (GitHub <a href="https://github.com/jacoco/jacoco/issues/534">#534</a>).</li>
32  <li>Manifests of JAR files now have <code>Automatic-Module-Name</code> for Java 9
33      (GitHub <a href="https://github.com/jacoco/jacoco/issues/565">#565</a>).</li>
34  <li>Maven aggregated reports will now also include modules of <code>runtime</code>
35      and <code>provided</code> dependencies
36      (GitHub <a href="https://github.com/jacoco/jacoco/issues/498">#498</a>,
37      <a href="https://github.com/jacoco/jacoco/issues/572">#572</a>).</li>
38</ul>
39
40<p>
41  During creation of reports various compiler generated artifacts are filtered
42  out, which otherwise require unnecessary and sometimes impossible tricks to
43  not have partial or missed coverage:
44</p>
45
46<ul>
47  <li>Methods <code>valueOf</code> and <code>values</code> of enum types
48      (GitHub <a href="https://github.com/jacoco/jacoco/issues/491">#491</a>).</li>
49  <li>Private empty no-argument constructors
50      (GitHub <a href="https://github.com/jacoco/jacoco/issues/529">#529</a>).</li>
51  <li>Methods annotated with <code>@lombok.Generated</code> to better integrate
52      with Lombok >= 1.16.14. Initial analysis and contribution by Rüdiger zu Dohna
53      (GitHub <a href="https://github.com/jacoco/jacoco/issues/513">#513</a>).</li>
54  <li>Methods annotated with <code>@groovy.transform.Generated</code> to better
55      integrate with Groovy >= 2.5.0. Thanks to Andres Almiray for adding the annotation to Groovy
56      (GitHub <a href="https://github.com/jacoco/jacoco/issues/610">#610</a>).</li>
57  <li>Part of bytecode for <code>synchronized</code> blocks
58      (GitHub <a href="https://github.com/jacoco/jacoco/issues/501">#501</a>).</li>
59  <li>Part of bytecode for try-with-resources statements
60      (GitHub <a href="https://github.com/jacoco/jacoco/issues/500">#500</a>).</li>
61  <li>Part of bytecode for <code>finally</code> blocks
62      (GitHub <a href="https://github.com/jacoco/jacoco/issues/604">#604</a>).</li>
63  <li>Part of bytecode for <code>switch</code> statements on
64      <code>java.lang.String</code> values
65      (GitHub <a href="https://github.com/jacoco/jacoco/issues/596">#596</a>).</li>
66</ul>
67
68<p>
69  Note: Tools that directly read <code>exec</code> files and embed JaCoCo for
70  this (such as SonarQube or Jenkins) will provide filtering functionality only
71  after they updated to this version of JaCoCo.
72</p>
73
74<h3>Fixed Bugs</h3>
75<ul>
76  <li>Fixed bug in instrumentation of exception handlers, which was causing damage
77      of structured locking in certain situations and as consequence poor
78      performance of instrumented methods, analysis and fix contributed by Allen Hair
79      (GitHub <a href="https://github.com/jacoco/jacoco/issues/627">#627</a>).</li>
80  <li><code>dump</code> commands now report error when server unexpectedly
81      closes connection without sending response
82      (GitHub <a href="https://github.com/jacoco/jacoco/issues/538">#538</a>).</li>
83  <li>Reduced chance of conflict with other agents
84      (GitHub <a href="https://github.com/jacoco/jacoco/issues/555">#555</a>).</li>
85  <li>Restored Maven <code>help</code> goal that was missing in version 0.7.9
86      (GitHub <a href="https://github.com/jacoco/jacoco/issues/559">#559</a>).</li>
87  <li><code>NullPointerException</code> during offline instrumentation of
88      <code>module-info.class</code>
89      (GitHub <a href="https://github.com/jacoco/jacoco/issues/600">#600</a>,
90      GitHub <a href="https://github.com/jacoco/jacoco/issues/634">#634</a>).</li>
91  <li>Incorrect update of frames caused by bug in ASM library
92      (GitHub <a href="https://github.com/jacoco/jacoco/issues/600">#600</a>).</li>
93  <li>Loss of <code>InnerClasses</code> attribute caused by bug in ASM library
94      (GitHub <a href="https://github.com/jacoco/jacoco/issues/600">#600</a>).</li>
95  <li><code>NegativeArraySizeException</code> during instrumentation caused by bug
96      in ASM library
97      (GitHub <a href="https://github.com/jacoco/jacoco/issues/600">#600</a>).</li>
98</ul>
99
100<h3>Non-functional Changes</h3>
101<ul>
102  <li>JaCoCo now depends on ASM 6.0
103      (GitHub <a href="https://github.com/jacoco/jacoco/issues/600">#600</a>).</li>
104  <li>More information about context is provided when unable to read input during
105      instrumentation
106      (GitHub <a href="https://github.com/jacoco/jacoco/issues/527">#527</a>).</li>
107  <li>More information about context is provided when unable to read stream during
108      analysis
109      (GitHub <a href="https://github.com/jacoco/jacoco/issues/541">#541</a>).</li>
110</ul>
111
112<h2>Release 0.7.9 (2017/02/05)</h2>
113
114<h3>Fixed Bugs</h3>
115<ul>
116  <li>"<code>java.lang.ClassFormatError: Short length on BootstrapMethods in class file</code>"
117      caused by bug in ASM library
118      (GitHub <a href="https://github.com/jacoco/jacoco/issues/462">#462</a>).</li>
119  <li>Do not recompute frames in case of large methods, otherwise
120      <code>java.lang.ClassNotFoundException</code> might be thrown
121      (GitHub <a href="https://github.com/jacoco/jacoco/issues/177">#177</a>).</li>
122  <li><code>ExecutionDataWriter.FORMAT_VERSION</code> is not a compile-time constant
123      (GitHub <a href="https://github.com/jacoco/jacoco/issues/474">#474</a>).</li>
124  <li>Maven goal "prepare-agent" should not overwrite existing property value if execution was skipped
125      (GitHub <a href="https://github.com/jacoco/jacoco/issues/486">#486</a>).</li>
126</ul>
127
128<h3>API Changes</h3>
129<ul>
130  <li><code>JaCoCo.ASM_API_VERSION</code> removed
131      (GitHub <a href="https://github.com/jacoco/jacoco/issues/474">#474</a>).</li>
132</ul>
133
134<h3>Non-functional Changes</h3>
135<ul>
136  <li>JaCoCo now depends on ASM 5.2.</li>
137  <li>OSGi metadata now generated automatically and additionally include
138      <code>uses</code> directives, <code>Require-Capability</code> attribute,
139      and export of all internal packages with <code>x-internal:=true</code> directive
140      (GitHub <a href="https://github.com/jacoco/jacoco/issues/211">#211</a>).</li>
141  <li>Removed OSGi attributes that were mistakenly added in version 0.6.1 into
142      <code>jacocoant.jar</code> that contains all dependencies
143      (GitHub <a href="https://github.com/jacoco/jacoco/issues/211">#211</a>).</li>
144</ul>
145
146<h2>Release 0.7.8 (2016/12/09)</h2>
147
148<h3>New Features</h3>
149<ul>
150  <li>User property <code>jacoco.dataFile</code> for parameter <code>dataFile</code>
151      of Maven <code>report</code> goal
152      (GitHub <a href="https://github.com/jacoco/jacoco/issues/322">#322</a>).</li>
153</ul>
154
155<h3>Fixed Bugs</h3>
156<ul>
157  <li>Use <code>RoundingMode#FLOOR</code> instead of
158      <code>RoundingMode#HALF_EVEN</code> for percentages in HTML report, so that
159      "99.5" is displayed as "99%", not as "100%"
160      (GitHub <a href="https://github.com/jacoco/jacoco/issues/452">#452</a>).</li>
161  <li>Do not add useless members into Java 8 interfaces that have only interface
162      initialization and abstract methods
163      (GitHub <a href="https://github.com/jacoco/jacoco/issues/441">#441</a>).</li>
164  <li>Fix instrumentation to not violate Java Virtual Machine Specification regarding
165      initialization of final fields, otherwise <code>IllegalAccessError</code>
166      will be thrown starting from OpenJDK 9 EA b127
167      (GitHub <a href="https://github.com/jacoco/jacoco/issues/434">#434</a>).</li>
168  <li>Fix instrumentation of interfaces with default methods to not create incorrect
169      constant pool entries, which lead to <code>IncompatibleClassChangeError</code>
170      starting from OpenJDK 9 EA b122
171      (GitHub <a href="https://github.com/jacoco/jacoco/issues/428">#428</a>).</li>
172  <li>Add Maven goal <code>report-aggregate</code> to lifecycle-mapping-metadata.xml
173      (GitHub <a href="https://github.com/jacoco/jacoco/issues/427">#427</a>).</li>
174</ul>
175
176<h3>Non-functional Changes</h3>
177<ul>
178  <li>Released JaCoCo JARs are not signed any more. Signed versions of JaCoCo are
179      now available from the Eclipse Orbit project
180      (GitHub <a href="https://github.com/jacoco/jacoco/issues/466">#466</a>).</li>
181  <li>Simplified numbering of versions - JaCoCo JARs in Maven Central repository
182      do not have qualifier any more
183      (GitHub <a href="https://github.com/jacoco/jacoco/issues/468">#468</a>).</li>
184</ul>
185
186<h2>Release 0.7.7 (2016/06/06)</h2>
187
188<h3>New Features</h3>
189<ul>
190  <li>New Maven goal <code>report-aggregate</code> to create reports for
191      multi-module projects
192      (GitHub <a href="https://github.com/jacoco/jacoco/issues/388">#388</a>).</li>
193  <li>New parameters <code>title</code> and <code>footer</code> for Maven
194      reporting goals allow customization of generated reports.</li>
195  <li>Renamed "dot" resources in generated HTML reports to become more web
196      hosting friendly
197      (GitHub <a href="https://github.com/jacoco/jacoco/issues/401">#401</a>).</li>
198  <li>Experimental support for Java 9 class files
199      (GitHub <a href="https://github.com/jacoco/jacoco/issues/406">#406</a>).</li>
200</ul>
201
202<h3>Fixed Bugs</h3>
203<ul>
204  <li>Don't suppress EOF errors in case of truncated execution data files
205      (GitHub <a href="https://github.com/jacoco/jacoco/issues/397">#397</a>).</li>
206</ul>
207
208<h3>Non-functional Changes</h3>
209<ul>
210  <li>JaCoCo now depends on ASM 5.1.</li>
211  <li>Empty probe arrays are not written to execution data files any more. This
212      reduces exec file size significantly for per-test data dumps.
213      (GitHub <a href="https://github.com/jacoco/jacoco/issues/387">#387</a>).</li>
214  <li>More information about context is provided when unable to read input during
215      analysis.
216      (GitHub <a href="https://github.com/jacoco/jacoco/issues/400">#400</a>).</li>
217  <li>Require at least Maven 3.0 for build of JaCoCo.</li>
218</ul>
219
220
221<h2>Release 0.7.6 (2016/02/18)</h2>
222
223<h3>New Features</h3>
224<ul>
225  <li>New agent option <code>inclnolocationclasses</code> to support execution
226      environments like Android where no source location is provided with classes
227      (GitHub <a href="https://github.com/jacoco/jacoco/issues/288">#288</a>).</li>
228  <li>Improved error message in case of incompatible execution data files.
229      (GitHub <a href="https://github.com/jacoco/jacoco/issues/319">#319</a>).</li>
230  <li>Command line agent options now supports comma in file names. Contributed
231      by Jochen Berger.
232      (GitHub <a href="https://github.com/jacoco/jacoco/issues/358">#358</a>).</li>
233</ul>
234
235<h3>Fixed Bugs</h3>
236<ul>
237  <li>Fix <code>MBeanClient</code> example
238      (GitHub <a href="https://github.com/jacoco/jacoco/issues/333">#333</a>).</li>
239  <li>Avoid <code>ConcurrentModificationException</code> during shutdown
240      (GitHub <a href="https://github.com/jacoco/jacoco/issues/364">#364</a>).</li>
241</ul>
242
243<h3>API Changes</h3>
244<ul>
245  <li>In case of incompatible execution data formats read from another JaCoCo
246  version <code>ExecutionDataReader.read()</code> now throws a
247  <code>IncompatibleExecDataVersionException</code>.</li>
248</ul>
249
250<h3>Non-functional Changes</h3>
251<ul>
252  <li>JaCoCo now depends on ASM 5.0.4.</li>
253</ul>
254
255
256<h2>Release 0.7.5 (2015/05/24)</h2>
257
258<h3>New Features</h3>
259<ul>
260  <li>Better detection of coverage in code blocks with implicit exceptions.
261      (GitHub <a href="https://github.com/jacoco/jacoco/issues/310">#310</a>).</li>
262  <li>Added lifecycle-mapping-metadata.xml for M2E
263      (GitHub <a href="https://github.com/jacoco/jacoco/issues/203">#203</a>).</li>
264  <li>Allow locales with country and variant for Ant report task
265      (GitHub <a href="https://github.com/jacoco/jacoco/issues/289">#289</a>).</li>
266</ul>
267
268<h3>Fixed Bugs</h3>
269<ul>
270  <li>For the Ant tasks <code>coverage</code> and <code>agent</code> the
271      <code>destfile</code> attribute is now passed as an absolute path also in
272      the default case
273      (GitHub <a href="https://github.com/jacoco/jacoco/issues/301">#301</a>).</li>
274</ul>
275
276<h3>API Changes</h3>
277<ul>
278  <li>The exec file version has been updated and is not compatible with previous
279      versions.</li>
280</ul>
281
282<h2>Release 0.7.4 (2015/02/26)</h2>
283
284<h3>Fixed Bugs</h3>
285<ul>
286  <li>Restored exec file compatibility with version 0.7.2 by fixing missing
287      probes in case of try/catch blocks which are jump targets.
288      (GitHub <a href="https://github.com/jacoco/jacoco/issues/286">#286</a>).</li>
289</ul>
290
291
292<h2>Release 0.7.3 (2015/02/19)</h2>
293
294<h3>New Features</h3>
295<ul>
296  <li>For offline instrumemtation agent configuration supports system properties
297      replacements. Implementation based on pull request of GitHub user 'debugger'
298      (GitHub <a href="https://github.com/jacoco/jacoco/issues/262">#262</a>).</li>
299  <li>Exclude dynamically generated classes from instrumentation for better
300      interoperability with JMockit, analysis contributed by Rogério Liesenfeld
301      (GitHub <a href="https://github.com/jacoco/jacoco/issues/272">#272</a>).</li>
302</ul>
303
304<h3>Fixed Bugs</h3>
305<ul>
306  <li>Instrumented bytecode now compatible with Android ART runtime, analysis
307      and fix contributed by Allen Hair
308      (GitHub <a href="https://github.com/jacoco/jacoco/issues/265">#265</a>).</li>
309</ul>
310
311<h2>Release 0.7.2 (2014/09/12)</h2>
312
313<h3>Fixed Bugs</h3>
314<ul>
315  <li>Do not ignore synthetic lambda methods to get code coverage for Java 8
316      lambda expressions
317      (GitHub <a href="https://github.com/jacoco/jacoco/issues/232">#232</a>).</li>
318</ul>
319
320<h3>New Features</h3>
321<ul>
322  <li>New configuration option for the JaCoCo agent
323      <code>inclbootstrapclasses</code> to also instrument classes from the
324      bootstrap class loader
325      (GitHub <a href="https://github.com/jacoco/jacoco/issues/49">#49</a>).</li>
326  <li>Agent uses unique file names to dump class files
327      (GitHub <a href="https://github.com/jacoco/jacoco/issues/225">#225</a>).</li>
328</ul>
329
330<h2>Release 0.7.1 (2014/05/08)</h2>
331
332<h3>Fixed Bugs</h3>
333<ul>
334  <li>Fixed failure with default methods in Java 8 interfaces
335      (GitHub <a href="https://github.com/jacoco/jacoco/issues/201">#201</a>).</li>
336  <li>Better interoperability with JMockit, analysis and fix contributed by Rogério
337      Liesenfeld (GitHub <a href="https://github.com/jacoco/jacoco/issues/35">#35</a>
338      and <a href="https://github.com/jacoco/jacoco/issues/54">#54</a>).</li>
339</ul>
340
341<h3>Non-functional Changes</h3>
342<ul>
343  <li>JaCoCo now depends on ASM 5.0.1
344      (GitHub <a href="https://github.com/jacoco/jacoco/issues/201">#201</a>).</li>
345</ul>
346
347<h2>Release 0.7.0 (2014/03/18)</h2>
348
349<h3>New Features</h3>
350<ul>
351  <li>JaCoCo now supports Java 8
352      (GitHub <a href="https://github.com/jacoco/jacoco/issues/74">#74</a>).</li>
353</ul>
354
355<h3>Non-functional Changes</h3>
356<ul>
357  <li>JaCoCo now depends on ASM 5.0 using asm-debug-all instead of asm-all
358      (GitHub <a href="https://github.com/jacoco/jacoco/issues/199">#199</a>).</li>
359</ul>
360
361<h2>Release 0.6.5 (2014/03/03)</h2>
362
363<h3>New Features</h3>
364<ul>
365  <li>Warnings are logged during report generation if different versions of
366      classes are used than at runtime (GitHub <a href="https://github.com/jacoco/jacoco/issues/185">#185</a>).</li>
367  <li>Signatures are removed from instrumented JAR files
368      (GitHub <a href="https://github.com/jacoco/jacoco/issues/186">#186</a>).</li>
369</ul>
370
371<h3>Fixed Bugs</h3>
372<ul>
373  <li>Skip jacoco instrumentation for mvn modules with package type ear (GitHub <a href="https://github.com/jacoco/jacoco/issues/169">#169</a>).</li>
374  <li>Align skip conditions and messages for Maven goals and give reasons. This
375      includes removal of the specific skip condition for packages e.g. POMs and
376      instead checks existence of <tt>target/classes</tt> in appropriate goals
377      (GitHub <a href="https://github.com/jacoco/jacoco/issues/171">#171</a>).</li>
378  <li>GitHub #44: (Regression) Agent Mojo should set empty property, if execution was skipped
379      (GitHub <a href="https://github.com/jacoco/jacoco/issues/192">#192</a>).</li>
380</ul>
381
382<h3>API Changes</h3>
383<ul>
384  <li>Restrict visibility of methods in abstract classes of jacoco-maven-plugin (GitHub <a href="https://github.com/jacoco/jacoco/issues/175">#175</a>).</li>
385</ul>
386
387<h2>Release 0.6.4 (2013/12/10)</h2>
388
389<h3>New Features</h3>
390<ul>
391  <li>Support for Android <i>Strict Mode</i> (GitHub <a href="https://github.com/jacoco/jacoco/issues/113">#113</a>).</li>
392  <li>New dump Mojo for Maven plug-in (GitHub <a href="https://github.com/jacoco/jacoco/issues/107">#107</a>).</li>
393  <li>New merge Mojo for Maven plug-in, contributed by Mads Mohr Christensen
394      (GitHub <a href="https://github.com/jacoco/jacoco/issues/126">#126</a>).</li>
395  <li>Additional list of source files for every package in HTML report
396      (GitHub <a href="https://github.com/jacoco/jacoco/issues/142">#142</a>).</li>
397  <li>Additional report-integration and prepare-agent-integration goals for
398      integration tests. (GitHub <a href="https://github.com/jacoco/jacoco/issues/152">#152</a>, <a href="https://github.com/jacoco/jacoco/issues/161">#161</a>).</li>
399</ul>
400
401<h3>Fixed Bugs</h3>
402<ul>
403  <li>Multiple executions of Maven goal "prepare-agent" should not lead to
404      incorrect configuration (GitHub <a href="https://github.com/jacoco/jacoco/issues/40">#40</a>).</li>
405  <li>Avoid direct dependency on java.lang.management APIs to allow usage on
406      Android (GitHub <a href="https://github.com/jacoco/jacoco/issues/150">#150</a>).</li>
407  <li>All JaCoCo Maven goals are marked as thread-safe (GitHub <a href="https://github.com/jacoco/jacoco/issues/133">#133</a>).</li>
408  <li>check and merge goal failures in jacoco-maven-plugin with Maven 2.2.1
409      due to incompatible configuration (GitHub <a href="https://github.com/jacoco/jacoco/issues/129">#129</a>).</li>
410</ul>
411
412<h3>API Changes</h3>
413<ul>
414  <li>New API package <code>org.jacoco.core.tools</code> for shared high-level
415      tools. (GitHub <a href="https://github.com/jacoco/jacoco/issues/159">#159</a>).</li>
416</ul>
417
418<h2>Release 0.6.3 (2013/06/03)</h2>
419
420<h3>New Features</h3>
421<ul>
422  <li>Support for archives in Pack200 format (GitHub <a href="https://github.com/jacoco/jacoco/issues/91">#91</a>).</li>
423  <li>The coverage check has been reworked to allow checks on all counter values
424      on all element types (GitHub <a href="https://github.com/jacoco/jacoco/issues/106">#106</a>).</li>
425  <li>Coverage checks are now also available in Ant (GitHub <a href="https://github.com/jacoco/jacoco/issues/106">#106</a>).</li>
426</ul>
427
428<h3>Fixed Bugs</h3>
429<ul>
430  <li>Fixed inconsistent stackmap frames when instrumenting class files produced
431      by certain tools like ProGuard (GitHub <a href="https://github.com/jacoco/jacoco/issues/85">#85</a>).</li>
432</ul>
433
434<h3>Non-functional Changes</h3>
435<ul>
436  <li>More context information when exceptions occur during analysis or
437      instrumentation (GitHub <a href="https://github.com/jacoco/jacoco/issues/104">#104</a>).</li>
438  <li>If analysis is performed on offline instrumented classes - which is an
439      build configuration error - an exception is now thrown (GitHub <a href="https://github.com/jacoco/jacoco/issues/108">#108</a>).</li>
440</ul>
441
442<h3>API Changes</h3>
443<ul>
444  <li>The configuration of the Maven check goal has been reworked to support
445      checks on any element type (GitHub <a href="https://github.com/jacoco/jacoco/issues/106">#106</a>).</li>
446  <li><code>Analyzer</code> and <code>Instrumenter</code> expect resource name
447      as additional parameter for better error messages (GitHub <a href="https://github.com/jacoco/jacoco/issues/104">#104</a>).</li>
448</ul>
449
450<h2>Release 0.6.2 (2013/02/03)</h2>
451
452<h3>New Features</h3>
453<ul>
454  <li>Support for offline instrumentation (GitHub <a href="https://github.com/jacoco/jacoco/issues/4">#4</a>, <a href="https://github.com/jacoco/jacoco/issues/64">#64</a>).</li>
455  <li>JaCoCo agent exposes runtime API for direct integration with application
456      under test (GitHub <a href="https://github.com/jacoco/jacoco/issues/61">#61</a>).</li>
457  <li>Support for parallel test execution: Different agents can now safely write
458      to the same <code>*.exec</code> file (GitHub <a href="https://github.com/jacoco/jacoco/issues/52">#52</a>).</li>
459  <li>New output mode 'none' can be used when agent is only controlled via JMX
460      or its new runtime API (GitHub <a href="https://github.com/jacoco/jacoco/issues/63">#63</a>).</li>
461  <li>Better error message in case of invalid stackmap frames (GitHub <a href="https://github.com/jacoco/jacoco/issues/73">#73</a>).</li>
462  <li>jacoco-maven-plugin: default phase for goal "report" - "verify"
463      (GitHub <a href="https://github.com/jacoco/jacoco/issues/72">#72</a>).</li>
464</ul>
465
466<h3>Non-functional Changes</h3>
467<ul>
468  <li>For every build the corresponding Git commit hash is included as
469      <code>Eclipse-SourceReferences</code> manifest headers (GitHub <a href="https://github.com/jacoco/jacoco/issues/7">#7</a>, <a href="https://github.com/jacoco/jacoco/issues/59">#59</a>).</li>
470  <li>Adjust saturation of red source highlighting in HTML reports to make
471      JaCoCo reports more accessible to red/green blind users.</li>
472</ul>
473
474<h3>API Changes</h3>
475<ul>
476  <li>The <code>output</code> mode <code>mbean</code> of the agent has been
477      dropped in favor of the new boolean option <code>jmx</code>. This allows
478      to combine JMX access with any other output mode (GitHub <a href="https://github.com/jacoco/jacoco/issues/62">#62</a>).</li>
479</ul>
480
481<h2>Release 0.6.1 (2012/12/23)</h2>
482
483<h3>New Features</h3>
484<ul>
485  <li>Add a coverage check Mojo, contributed by Kyle Lieber (GitHub <a href="https://github.com/jacoco/jacoco/issues/6">#6</a>).</li>
486</ul>
487
488<h3>Fixed Bugs</h3>
489<ul>
490  <li>jacocoant.jar should not conflict with ASM 3.x (GitHub <a href="https://github.com/jacoco/jacoco/issues/39">#39</a>).</li>
491  <li>Agent Mojo should set empty property, if execution was skipped
492      (GitHub <a href="https://github.com/jacoco/jacoco/issues/44">#44</a>).</li>
493</ul>
494
495<h3>Non-functional Changes</h3>
496<ul>
497  <li>Upgrade to ASM 4.1 (GitHub <a href="https://github.com/jacoco/jacoco/issues/37">#37</a>).</li>
498  <li>Log location of merged execution data file in Ant <code>merge</code> task
499      (GitHub <a href="https://github.com/jacoco/jacoco/issues/29">#29</a>).</li>
500</ul>
501
502<h2>Release 0.6.0 (2012/10/06)</h2>
503
504<h3>New Features</h3>
505<ul>
506  <li>Full support for Java 7 including INVOKEDYNAMIC as JaCoCo is now based
507      on ASM 4.0 (GitHub <a href="https://github.com/jacoco/jacoco/issues/5">#5</a>).</li>
508</ul>
509
510<h3>Fixed Bugs</h3>
511<ul>
512  <li>Maven plugin should skip creation of report if the execution data file is
513      missing. This avoids appearance of stack traces in case when JVM was not
514      forked, e.g. if there are no tests to run (SF #3563431, GitHub <a href="https://github.com/jacoco/jacoco/issues/19">#19</a>).</li>
515  <li>Maven plugin should fail if unable to read execution data file or create
516      report (GitHub <a href="https://github.com/jacoco/jacoco/issues/19">#19</a>).</li>
517</ul>
518
519<h3>API Changes</h3>
520<ul>
521  <li>Only colon as separator character supported in agent parameters. The
522      deprecated pipe character is no longer supported.</li>
523</ul>
524
525<h2>Release 0.5.10 (2012/08/31)</h2>
526
527<h3>Fixed Bugs</h3>
528<ul>
529  <li>Correct stackmap frames for new <code>long[]</code> arrays (SF #3553210).</li>
530  <li>Properly resolve the <code>fork</code> variable for tasks wrapped by the
531      <code>coverage</code> Ant task (Trac #213).</li>
532</ul>
533
534<h3>Non-functional Changes</h3>
535<ul>
536  <li>Source tree has been migrated to Git and is now hosted on Github at
537  <a href="https://github.com/jacoco/jacoco">https://github.com/jacoco/jacoco</a>.</li>
538</ul>
539
540<h2>Release 0.5.9 (2012/07/30)</h2>
541
542<h3>Fixed Bugs</h3>
543<ul>
544  <li>Don't produce invalid class files in case of unexpected stackmap frames
545      (SF #3543758).</li>
546</ul>
547
548<h2>Release 0.5.8 (2012/07/11)</h2>
549
550<h3>New Features</h3>
551<ul>
552  <li>Support for parallel Maven builds (Trac #191).</li>
553  <li>New agent option <code>classdumpdir</code> to dump all class files seen
554      by the JaCoCo agent to disk. This option is also available for Ant and
555      Maven (Trac #208).</li>
556</ul>
557
558<h3>Fixed Bugs</h3>
559<ul>
560  <li>Allow instrumentation of classes with dead code (SF #3538112).</li>
561  <li>Reworked instrumentation strategy to avoid verifier error "Uninitialized
562      object exists on backward branch" with certain Java 7 class files
563      (Trac #154).</li>
564</ul>
565
566<h3>Non-functional Changes</h3>
567<ul>
568  <li>Documentation now includes Maven example and Maven goal documentation
569      (Trac #201, #202).</li>
570</ul>
571
572<h2>Release 0.5.7 (2012/04/19)</h2>
573
574<h3>New Features</h3>
575<ul>
576  <li>Support for class redefinitions by other agents like JMockit (SF #3509409).</li>
577  <li>Remove class file attributes with invalid code offsets caused by other
578      byte code processing tools to avoid verifier errors (Trac #196).</li>
579  <li>Improved logging for Ant tasks (SF #3518429).</li>
580</ul>
581
582<h3>Fixed Bugs</h3>
583<ul>
584  <li>In case of failures the agent should log the original exception.</li>
585</ul>
586
587<h2>Release 0.5.6 (2012/01/23)</h2>
588
589<h3>New Features</h3>
590<ul>
591  <li>jacoco-maven-plugin can be used together with maven-site-plugin (Trac #181).</li>
592  <li>The <code>report</code> Ant task now also supports directory resources to
593      specify source folders. This allows reading source files from multiple
594      directories. Contributed by Dominik Stadler (Trac #119).</li>
595</ul>
596
597<h3>Fixed Bugs</h3>
598<ul>
599  <li>Don't insert stackmap frames for class files before version 1.6.</li>
600  <li>Regression, which was introduced in 0.5.4 - restored compatibility of jacoco-maven-plugin with Maven 2 (Trac #182).</li>
601</ul>
602
603<h2>Release 0.5.5 (2011/12/15)</h2>
604
605<h3>Fixed Bugs</h3>
606<ul>
607  <li>Correct default value for the <code>append</code> property of the
608      <code>dump</code> Ant task is <code>true</code> (Trac #178).</li>
609  <li>Try/catch blocks must not be counted as instructions (Trac #179).</li>
610</ul>
611
612<h3>Non-functional Changes</h3>
613<ul>
614  <li>Upgrade to ASM 3.3.1.</li>
615</ul>
616
617<h2>Release 0.5.4 (2011/11/11)</h2>
618
619<h3>New Features</h3>
620<ul>
621  <li>Maven plug-in: respect <code>includes</code> and <code>excludes</code>
622      properties in report Mojo (Trac #160).
623      Also note that:
624<pre class="source lang-xml">
625&lt;configuration&gt;
626  &lt;includes&gt;org.foo.*:org.bar.*&lt;/includes&gt;
627  &lt;excludes&gt;com.foo.*:com.bar.*&lt;/excludes&gt;
628&lt;/configuration&gt;
629</pre>
630      must be replaced on:
631<pre class="source lang-xml">
632&lt;configuration&gt;
633  &lt;includes&gt;
634    &lt;include>org.foo.*&lt;/include&gt;
635    &lt;include>org.bar.*&lt;/include&gt;
636  &lt;/includes&gt;
637  &lt;excludes&gt;
638    &lt;exclude&gt;com.foo.*&lt;/exclude&gt;
639    &lt;exclude&gt;com.bar.*&lt;/exclude&gt;
640  &lt;/excludes&gt;
641&lt;/configuration&gt;
642</pre>
643  </li>
644</ul>
645
646<h3>API Changes</h3>
647<ul>
648  <li><code>Instrumenter</code> now only requires
649      <code>IExecutionDataAccessorGenerator</code> instead of
650      <code>IRuntime</code> (Trac #174).</li>
651  <li>Removed reference to internal implementation classes from
652      <code>CoverageBuilder</code> API.</li>
653</ul>
654
655<h3>Non-functional Changes</h3>
656<ul>
657  <li>Release bundles from now on signed again.</li>
658  <li>Several documentation updates.</li>
659</ul>
660
661<h2>Release 0.5.3 (2011/07/06)</h2>
662
663<h3>New Features</h3>
664<ul>
665  <li>New Maven plug-in for JaCoCo agent setup and basic reporting (Trac #25).</li>
666  <li>Additional output mode implementation for JaCoCo agent based on JMX.</li>
667</ul>
668
669<h3>Fixed Bugs</h3>
670<ul>
671  <li>Fixed problem with reporting of nested group structures (Trac #157).</li>
672</ul>
673
674<h3>Non-functional Changes</h3>
675<ul>
676  <li>JaCoCo build based on Maven (Trac #136).</li>
677  <li>JaCoCo published to Maven repository (Trac #149).</li>
678</ul>
679
680<h2>Release 0.5.2 (2011/05/19)</h2>
681
682<h3>New Features</h3>
683<ul>
684  <li>JaCoCo reports cyclomatic complexity numbers (Trac #129).</li>
685  <li>For HTML reports the tab width can be specified on the
686      <code>sourcefiles</code> attribute of the <code>report</code> Ant task
687      (Track #152).</li>
688</ul>
689
690<h3>Fixed Bugs</h3>
691<ul>
692  <li>Removed duplicate counters in the root node of XML reports (Trac #155).</li>
693  <li>Avoid <code>StackOverflowException</code> when analyzing methods with very
694      long instruction sequences (Trac #156). Many thanks to Jean-Eric Cuendet
695      for reporting and analyzing this!</li>
696</ul>
697
698<h3>API Changes</h3>
699<ul>
700  <li><code>ICoverageNode</code> API has been extended for cyclomatic
701      complexity (Trac #129).</li>
702  <li>XML and CSV report includes new counter type <code>COMPLEXITY</code>
703      (Trac #129).</li>
704  <li>New method <code>getTabWidth()</code> in callback interface
705      <code>ISourceFileLocator</code> instead of
706      <code>HTMLReportFormatter.setTabWidth()</code> which has been removed.
707      (Trac #152).</li>
708</ul>
709
710<h2>Release 0.5.1 (2011/03/21)</h2>
711
712<h3>New Features</h3>
713<ul>
714  <li>Duplicate classes with identical identifiers are now ignored during
715      analysis.</li>
716  <li>Added support for TestNG to Ant task Coverage (Track #144).</li>
717</ul>
718
719<h3>Fixed Bugs</h3>
720<ul>
721  <li>Calculate correct stackmap frames for Java 1.6 branches (Trac #139).</li>
722  <li>Link source files also for classes in default package (Trac #151).</li>
723</ul>
724
725<h3>Non-functional Changes</h3>
726<ul>
727  <li>API documentation cleanup (Track #140).</li>
728  <li>Removed obsolete examples from documentation (Trac #141).</li>
729  <li>Added reporting API example (Trac #146).</li>
730  <li>Reduced file size of HTML report source pages (Trac #148).</li>
731</ul>
732
733<h3>API Changes</h3>
734<ul>
735  <li>Simplified reporting API (Trac #53).</li>
736  <li>Use colon as separator character in agent parameters (Trac #143).</li>
737  <li>Now also empty files are accepted as <code>*.exec</code> files (Trac #150).</li>
738</ul>
739
740<h2>Release 0.5.0 (2011/01/19)</h2>
741
742<h3>New Features</h3>
743<ul>
744  <li>JaCoCo now reports branch coverage (Track #66).</li>
745</ul>
746
747<h3>Fixed Bugs</h3>
748<ul>
749  <li>Only process actual Java class files during analysis (SF #3106102).</li>
750  <li>Fix broken source links due to sort hash (Track #125).</li>
751  <li>Fixed invalid OSGi headers in MANIFEST.MF files (Track #127).</li>
752  <li>Try to avoid interference with Hibernate (SF #3134190).</li>
753  <li>Provide proper error message in case of duplicate class names in the same
754      group (SF #3110219).</li>
755  <li>Allow any number of probes in static interface initializers (SF #3161106).</li>
756</ul>
757
758<h3>API Changes</h3>
759<ul>
760  <li>All analysis specific APIs have been moved to package
761      <code>org.jacoco.core.analysis</code>.</li>
762  <li>The <code>IStructureVisitor</code> interface has been replaced by a
763      simplified version called <code>ICoverageVisitor</code> (Track #132).</li>
764  <li>All counter creation and update APIs now accept <i>missed items</i> and
765      <i>covered items</i> as parameters (Track #131).</li>
766  <li>Instructions are now counted on a per line basis. Therefore some
767      interfaces in the <code>org.jacoco.core.analysis</code> package have
768      changed as well as the <code>line</code> element in the XML report
769      (Track #130).</li>
770  <li>Several internal implementation classes have removed from the core APIs or
771      have been replaced by new interfaces (Track #133).</li>
772</ul>
773
774<h2>Release 0.4.1 (2010/10/07)</h2>
775
776<h3>New Features</h3>
777<ul>
778  <li>New attribute <code>line</code> for <code>method</code> elements in the
779      XML report containing the first source line number of the method.
780      (Track #120).</li>
781  <li>Optional <code>locale</code> attribute for number rendering HTML reports,
782      also available as an attribute of the <code>html</code> tag of the
783      <code>report</code> Ant task (Track #122).</li>
784  <li>Coverage tables in HTML report are now sortable (Track #98).</li>
785  <li>The <code>report</code> Ant task issues a warning if source files are
786      provided but class files do not contain debug information to collect line
787      numbers (SF #3024486).</li>
788</ul>
789
790<h3>Non-functional Changes</h3>
791<ul>
792  <li>Reduced memory footprint for coverage data by 30% (Track #106).</li>
793  <li>Moved to Eclipse 3.6.x as development environment (Trac #115).</li>
794  <li>All delivered bundles and JAR files are signed (Trac #118).</li>
795</ul>
796
797<h3>Fixed Bugs</h3>
798<ul>
799  <li>Better error message when multiple JaCoCo agents are specified
800      (Track #103).</li>
801  <li>Fixed potential NPE at shutdown when running agent in
802      <code>tcpserver</code> mode (Track #117).</li>
803  <li>Agent now fails at startup when execution data file can't be opened
804      (Track #121).</li>
805</ul>
806
807<h2>Release 0.4.0 (2010/06/04)</h2>
808
809<h3>New Features</h3>
810<ul>
811  <li>Execution data now includes session information: an arbitrary identifier,
812      the start time and dump time (Trac #88).</li>
813  <li>Added session information to XML report (Trac #92).</li>
814  <li>New "Sessions" page in the HTML report shows information about each
815      sessions wherein execution data has been collected for the report
816      (Trac #93). Additionally all classes with execution data available are
817      listed on this page (Trac #94).</li>
818  <li>The agent now supports remote dumps via TCP/IP connections (Trac #82).</li>
819  <li>New Ant task <code>dump</code> to remotely collect coverage data from
820      agents (Trac #100).</li>
821</ul>
822
823<h3>API Changes</h3>
824<ul>
825  <li>Execution data file header is written and read in any case (Trac #72).</li>
826  <li>Added <code>dumponexit</code> to agent options (Trac #82).</li>
827  <li>Added <code>sessionid</code> to agent options (Trac #88).</li>
828  <li>Added <code>output, address and port</code> to agent options (Trac #82).</li>
829  <li>Additional and modified methods in <code>IRuntime</code> to produce
830      session information (Trac #88).</li>
831  <li>Coverage element type <code>SESSION</code> removed (Trac #95).</li>
832  <li>Removed several internal APIs from package
833      <code>org.jacoco.core.instr</code> used for class instrumentation.</li>
834  <li>Renamed class <code>org.jacoco.report.csv.CsvFormatter</code> to
835      <code>CSVFormatter</code> (upper case) for consistency with other
836      formatters.</li>
837</ul>
838
839<h2>Release 0.3.3 (2010/04/19)</h2>
840
841<h3>New Features</h3>
842<ul>
843  <li>Support for different archives (jar, war, ear etc.) and nested archives
844      (Trac #78).</li>
845  <li>XML report with line level coverage information (requested for Sonar).</li>
846</ul>
847
848<h3>Fixed Bugs</h3>
849<ul>
850  <li>Correct stackmap frames for Java 1.6 class files. (Track #81).</li>
851  <li>Avoid usage of <code>LocalVariableSorter</code> due to ASM bug #314563
852      (Track #69).</li>
853  <li>Nested Java/JUnit Ant tasks not being executed when coverage task disabled. (Track #85).</li>
854</ul>
855
856<h2>Release 0.3.2 (2010/04/01)</h2>
857
858<h3>New Features</h3>
859<ul>
860  <li>New HTML report option to directly create a zip file containing the report
861      (Trac #12).</li>
862  <li>Code coverage for static initializers in interfaces (Trac #21).</li>
863  <li>Better error handling for <code>report</code> Ant task (Trac #71).</li>
864  <li>Classes without instructions are excluded from reports (Trac #73).</li>
865</ul>
866
867<h3>Fixed Bugs</h3>
868<ul>
869  <li>XML and CSV report output now also works for structures without groups
870      (Track #76).</li>
871</ul>
872
873<h3>API Changes</h3>
874<ul>
875  <li>Consistent usage of the term "Missed" instead of "NotCovered" in all APIs
876      (Trac #72).</li>
877  <li>To support "off-line" instrumentation scenarios it is not required any
878      more to register instrumented classes with the runtime (Trac #74).</li>
879</ul>
880
881<h2>Release 0.3.1 (2010/02/09)</h2>
882
883<h3>Fixed Bugs</h3>
884<ul>
885  <li>Ant tasks broken on Linux (Trac #68).</li>
886</ul>
887
888<h2>Release 0.3.0 (2010/02/02)</h2>
889
890<h3>New Features</h3>
891<ul>
892  <li>Report renders anonymous classes with type information (Trac #46).</li>
893  <li><code>enabled</code> property added to <code>agent</code> and
894      <code>coverage</code> Ant tasks (Trac #63).</li>
895  <li>Ant task <code>merge</code> added (Trac #52).</li>
896</ul>
897
898<h3>Fixed Bugs</h3>
899<ul>
900  <li>New <code>IRuntime</code> implementation enables JaCoCo usage for J2EE
901  application servers like Glassfish.</li>
902</ul>
903
904<h3>API Changes</h3>
905<ul>
906  <li>Agent option and Ant task parameter <code>file</code> changed to
907      <code>destfile</code> (Trac #59).</li>
908  <li>Agent option and Ant task parameter <code>merge</code> changed to
909      <code>append</code> (Trac #51).</li>
910</ul>
911
912<h2>Release 0.2.0 (2010/01/08)</h2>
913
914<h3>New Features</h3>
915
916<ul>
917  <li>Simplified probe data structure reduces memory usage (Trac #47).</li>
918  <li>Performance test becomes part of the build.</li>
919  <li>New bundle <code>org.jacoco.agent</code> that provides the Java agent
920      as a resource (Trac #50).</li>
921</ul>
922
923<h3>Fixed Bugs</h3>
924
925<ul>
926  <li><code>ArrayIndexOutOfBoundsException</code> due to inconsistent processing
927      while instrumentation and analysis (Trac #44).</li>
928</ul>
929
930<h2>Release 0.1.0 (2009/10/28)</h2>
931
932<p>
933  The very first JaCoCo release.
934</p>
935
936</div>
937<div class="footer">
938  <span class="right"><a href="@jacoco.home.url@">JaCoCo</a> @qualified.bundle.version@</span>
939  <a href="license.html">Copyright</a> &copy; @copyright.years@ Mountainminds GmbH &amp; Co. KG and Contributors
940</div>
941
942</body>
943</html>
944