Change Log

gcovr Release History and Change Log

5.2 (06 August 2022)

Known bugs:

Breaking changes:

New features and notable changes:

  • Log additional info on gcov parsing errors. (#%s589)
  • Add support for branch exclude markers. (#%s644)
  • Additional options to configure the thresholds for lines and branches in HTML separate. (#%s645)

Bug fixes and small improvements:

  • Remove function coverage from sonarcube report. (#%s591)
  • Fix parallel processing of gcov data. (#%s592)
  • Better diagnostics when dealing with corrupted input files. (#%s593)
  • Accept metadata lines without values (introduced in gcc-11). (#%s601)
  • Properly close <a> element in detailed HTML report. (#%s602)
  • Use sign instead of >= in HTML legend. (#%s603)
  • Using --add-tracefile will now correctly merge branch coverage. (#%s600)
  • Fix package-level function coverage statistics in Cobertura XML reports. (#%s605)
  • Respect excluded/noncode lines for aggregated branchcoverage. (#%s611)
  • Fix list options in configuration file (search-path). (#%s612)
  • Fix assert and key error in --decisions flag. (#%s642)
  • Fix adding none existing lines by decision analysis to data model. (#%s617)
  • Always treat relative paths in config files as relative to the directory of the file. (#%s615)
  • More flexible .gcov parsing to support files generated by third party tools. (#%s621, #%s623)

Documentation:

Internal changes:

  • Fix black check to fail on format errors. (#%s594)
  • Change session black with no arguments to format all files. (#%s595)
  • Add gcc-10 and gcc-11 to the test suite. (#%s597)
  • Improved internal coverage data model to simplify processing. (#%s600)
  • Use pretty print for cobertura and coveralls in test suite. (#%s606)
  • Forward nox options --reuse-existing-virtualenvs and --no-install to call inside docker. (#%s616)

5.1 (26 March 2022)

Breaking changes:

  • Dropped support for Python 3.6 (#%s550)
  • Changed xml configuration key to cobertura (#%s552)
  • JSON summary output: all percentages are now reported from 0 to 100 (#%s570)

New features and notable changes:

Bug fixes and small improvements:

  • Gcov is invoked without localization by setting LC_ALL=C (#%s513)
  • Gcov is invoked without temporary directories (#%s525)
  • Gcov: solved problems with file name limitations. (#%s528)
  • Fixed “root” path in JSON summary report. (#%s548)
  • Correctly resolve relative filters in configuration files. (#%s568)
  • HTML output: indicate lines with excluded coverage (#%s503)
  • HTML output: fixed sanity check to support empty files (#%s571)
  • HTML output: support jinja2 >= 3.1 (#%s576)

Documentation:

  • Split documentation into smaller pages (#%s552)
  • Document used options for gcov (#%s528)

Internal changes:

  • Replaced own logger with Python’s logging module. (#%s540)
  • New parser for .gcov file format, should be more robust. (#%s512)
  • New tests
    • more compilers: clang-10 (#%s484), clang-13 (#%s527), gcc-9 (#%s527)
    • -fprofile-abs-path compiler option (#%s521)
    • enabled symlink tests for Windows (#%s539)
  • Improvements to the test suite
    • Use Nox instead of Makefiles to manage QA checks (#%s516, #%s555)
    • Can run tests for all compiler versions in one go (#%s514)
    • More linter checks (#%s566) and code style enforcement with black (#%s579)
    • Better XML diffing with yaxmldiff (#%s495, #%s509)
    • Share test reference data between compiler versions where possible (#%s556)
    • Better environment variable handling (#%s493, #%s541)
    • Fixed glob patterns for collecting reference files (#%s533)
    • Add timeout for each single test. (#%s572)
  • Improvements and fixes to the release process (#%s494, #%s537)
  • Normalize shell scripts to Unix line endings (#%s538, #%s547)

5.0 (11 June 2021)

Breaking changes:

  • Dropped support for Python 2 and Python 3.5. From now on, gcovr will only support Python versions that enjoy upstream support.

Improvements and new features:

Documentation:

Internal changes:

  • Add makefile + dockerfile for simpler testing.
  • Add .gitbugtraq to link comments to issue tracker in GUIs. (#%s429)
  • Add GitHub actions to test PRs and master branch. (#%s404)
  • Remove Travis CI. (#%s419)
  • Remove Appveyor CI and upload coverage report from Windows and Ubuntu from the GitHub actions. (#%s455)
  • Add check if commit is mentioned in the CHANGELOG.rst. (#%s457)
  • Move flake8 config to setup.cfg and add black code formatter. (#%s444)
  • Fix filter/exclude relative path issue in Windows. (#%s320, #%s479)
  • Extend test framework for CI:
    • Set make variable TEST_OPTS as environment variable inside docker. (#%s372)
    • Add make variable USE_COVERAGE to extend flags for coverage report in GitHub actions. (#%s404)
    • Extend tests to use an unified diff in the assert. Add test options --generate_reference, --update_reference and --skip_clean. (#%s379)
    • Support multiple output patterns in integration tests. (#%s383)
    • New option --archive_differences to save the different files as ZIP. Use this ZIP as artifact in AppVeyor. (#%s392)
    • Add support for gcc-8 to test suite and docker tests. (#%s423)
    • Run as limited user inside docker container and add test with read only directory. (#%s445)

4.2 (6 November 2019)

Breaking changes:

  • Dropped support for Python 3.4.
  • Format flag parameters like --xml or --html now take an optional output file name. This potentially changes the interpretation of search paths. In gcovr --xml foo, previous gcovr versions would search the foo directory for coverage data. Now, gcovr will try to write the Cobertura report to the foo file. To keep the old meaning, separate positional arguments like gcovr --xml -- foo.

Improvements and new features:

Known issues:

  • The --keep option only works when using existing gcov files with -g/--use-gcov-files. (#%s285, #%s286)
  • Gcovr may get confused when header files in different directories have the same name. (#%s271)
  • Gcovr may not work when no en_US locale is available. (#%s166)

Documentation:

Internal changes:

4.1 (2 July 2018)

  • Fixed/improved --exclude-directories option. (#%s266)
  • New “Cookbook” section in the documentation. (#%s265)

4.0 (17 June 2018)

Breaking changes:

  • This release drops support for Python 2.6. (#%s250)
  • PIP is the only supported installation method.
  • No longer encoding-agnostic under Python 2.7. If your source files do not use the system encoding (probably UTF-8), you will have to specify a --source-encoding. (#%s148, #%s156, #%s256)
  • Filters now use forward slashes as path separators, even on Windows. (#%s191, #%s257)
  • Filters are no longer normalized into pseudo-paths. This could change the interpretation of filters in some edge cases.

Improvements and new features:

  • Improved --help output. (#%s236)
  • Parse the GCC 8 gcov format. (#%s226, #%s228)
  • New --source-encoding option, which fixes decoding under Python 3. (#%s256)
  • New --gcov-ignore-parse-errors flag. By default, gcovr will now abort upon parse errors. (#%s228)
  • Detect the error when gcov cannot create its output files (#%s243, #%s244)
  • Add -j flag to run gcov processes in parallel. (#%s3, #%s36, #%s239)
  • The --html-details flag now implies --html. (#%s93, #%s211)
  • The --html output can now be used without an --output filename (#%s223)
  • The docs are now managed with Sphinx. (#%s235, #%s248, #%s249, #%s252, #%s253)
  • New --html-title option to change the title of the HTML report. (#%s261, #%s263)
  • New options --html-medium-threshold and --html-high-threshold to customize the color legend. (#%s261, #%s264)

Internal changes:

3.4 (12 February 2018)

  • Added --html-encoding command line option (#%s139).
  • Added --fail-under-line and --fail-under-branch options, which will error under a given minimum coverage. (#%s173, #%s116)
  • Better pathname resolution heuristics for --use-gcov-file. (#%s146)
  • The --root option defaults to current directory ‘.’.
  • Improved reports for “(”, “)”, “;” lines.
  • HTML reports show full timestamp, not just date. (#%s165)
  • HTML reports treat 0/0 coverage as NaN, not 100% or 0%. (#%s105, #%s149, #%s196)
  • Add support for coverage-04.dtd Cobertura XML format (#%s164, #%s186)
  • Only Python 2.6+ is supported, with 2.7+ or 3.4+ recommended. (#%s195)
  • Added CI testing for Windows using Appveyor. (#%s189, #%s200)
  • Reports use forward slashes in paths, even on Windows. (#%s200)
  • Fix to support filtering with absolute paths.
  • Fix HTML generation with Python 3. (#%s168, #%s182, #%s163)
  • Fix --html-details under Windows. (#%s157)
  • Fix filters under Windows. (#%s158)
  • Fix verbose output when using existing gcov files (#%s143, #%s144)

3.3 (6 August 2016)

  • Added CI testing using TravisCI
  • Added more tests for out of source builds and other nested builds
  • Avoid common file prefixes in HTML output (#%s103)
  • Added the --execlude-directories argument to exclude directories from the search for symlinks (#%s87)
  • Added branches taken/not taken to HTML (#%s75)
  • Use --object-directory to scan for gcov data files (#%s72)
  • Improved logic for nested makefiles (#%s135)
  • Fixed unexpected semantics with --root argument (#%s108)
  • More careful checks for covered lines (#%s109)

3.2 (5 July 2014)

  • Adding a test for out of source builds
  • Using the starting directory when processing gcov filenames. (#%s42)
  • Making relative paths the default in html output.
  • Simplify html bar with coverage is zero.
  • Add option for using existing gcov files (#%s35)
  • Fixing --root argument processing (#%s27)
  • Adding logic to cover branches that are ignored (#%s28)

3.1 (6 December 2013)

  • Change to make the -r/--root options define the root directory for source files.
  • Fix to apply the -p option when the --html option is used.
  • Adding new option, ‘--exclude-unreachable-branches’ that will exclude branches in certain lines from coverage report.
  • Simplifying and standardizing the processing of linked files.
  • Adding tests for deeply nested code, and symbolic links.
  • Add support for multiple —filter options in same manner as —exclude option.

3.0 (10 August 2013)

  • Adding the ‘--gcov-executable’ option to specify the name/location of the gcov executable. The command line option overrides the environment variable, which overrides the default ‘gcov’.
  • Adding an empty “<methods/>” block to <classes/> in the XML output: this makes out XML complient with the Cobertura DTD. (#3951)
  • Allow the GCOV environment variable to override the default ‘gcov’ executable. The default is to search the PATH for ‘gcov’ if the GCOV environment variable is not set. (#3950)
  • Adding support for LCOV-style flags for excluding certain lines from coverage analysis. (#3942)
  • Setup additional logic to test with Python 2.5.
  • Added the --html and --html-details options to generate HTML.
  • Sort output for XML to facilitate baseline tests.
  • Added error when the --object-directory option specifies a bad directory.
  • Added more flexible XML testing, which can ignore XML elements that frequently change (e.g. timestamps).
  • Added the ‘—xml-pretty’ option, which is used to generate pretty XML output for the user manual.
  • Many documentation updates

2.4 (13 April 2012)

  • New approach to walking the directory tree that is more robust to symbolic links (#3908)
  • Normalize all reported path names
    • Normalize using the full absolute path (#3921)
    • Attempt to resolve files referenced through symlinks to a common project-relative path
  • Process gcno files when there is no corresponding gcda file to provide coverage information for unexecuted modules (#3887)
  • Windows compatibility fixes
    • Fix for how we parse source: file names (#3913)
    • Better handling od EOL indicators (#3920)
  • Fix so that gcovr cleans up all .gcov files, even those filtered by command line arguments
  • Added compatibility with GCC 4.8 (#3918)
  • Added a check to warn users who specify an empty --root option (see #3917)
  • Force gcov to run with en_US localization, so the gcovr parser runs correctly on systems with non-English locales (#3898, #3902).
  • Segregate warning/error information onto the stderr stream (#3924)
  • Miscellaneous (Python 3.x) portability fixes
  • Added the master svn revision number as part of the verson identifier

2.3.1 (6 January 2012)

  • Adding support for Python 3.x

2.3 (11 December 2011)

  • Adding the --gcov-filter and --gcov-exclude options.

2.2 (10 December 2011)

  • Added a test driver for gcovr.
  • Improved estimation of the <sources> element when using gcovr with filters.
  • Added revision and date keywords to gcovr so it is easier to identify what version of the script users are using (especially when they are running a snapshot from trunk).
  • Addressed special case mentioned in [comment:ticket:3884:1]: do not truncate the reported file name if the filter does not start matching at the beginning of the string.
  • Overhaul of the --root / --filter logic. This should resolve the issue raised in #3884, along with the more general filter issue raised in [comment:ticket:3884:1]
  • Overhaul of gcovr’s logic for determining gcc/g++’s original working directory. This resolves issues introduced in the original implementation of --object-directory (#3872, #3883).
  • Bugfix: gcovr was only including a <sources> element in the XML report if the user specified -r (#3869)
  • Adding timestamp and version attributes to the gcovr XML report (see #3877). It looks like the standard Cobertura output reports number of seconds since the epoch for the timestamp and a doted decimal version string. Now, gcovr reports seconds since the epoch and “gcovr ``"+``__version__ (e.g. “gcovr 2.2”) to differentiate it from a pure Cobertura report.

2.1 (26 November 2010)

  • Added the --object-directory option, which allows for a flexible specification of the directory that contains the objects generated by gcov.

  • Adding fix to compare the absolute path of a filename to an exclusion pattern.

  • Adding error checking when no coverage results are found. The line and branch counts can be zero.

  • Adding logic to process the -o/--output option (#3870).

  • Adding patch to scan for lines that look like:

    creating `foo'
    

    as well as

    creating 'foo'
    
  • Changing the semantics for EOL to be portable for MS Windows.

  • Add attributes to xml format so that it could be used by hudson/bamboo with cobertura plug-in.

2.0 (22 August 2010)

  • Initial release as a separate package. Earlier versions of gcovr were managed within the ‘fast’ Python package.