Skip to content

Latest commit

 

History

History
249 lines (145 loc) · 9.89 KB

CHANGELOG.md

File metadata and controls

249 lines (145 loc) · 9.89 KB

Change log

v0.10.0 (2021-03-01)

  • [NEW] Add support for Golang coverage generated using -coverpkg flag #461
  • [NEW] Add support for Simplecov 0.20.0 #441
  • [NEW] Add support for the llvm.coverage.json.export format. This is the format generated by the Swift Package Manager. #439
  • [NEW] Add show-coverage command #424
  • [NEW] Add Bitrise.io vars #421
  • [FIX] Docs #405
  • [NEW] Add support to xccov JSON report (Swift/Xcode 11) #399
  • [NEW] Updates release strategy to build a new Linux binary that uses netcgo #382
  • [NEW] Updates release strategy to build a new Linux binary that uses netcgo #355
  • [NEW] Add support for multiple JaCoCo source paths [#348][]
  • [FIX] Support clover path attribute on file nodes in XML report #349
  • [FIX] Update Gcov formatter to report the correct source file paths #338
  • [FIX] Update Cobertura formatter to ignore invalid line numbers in a cobertura.xml file #335
  • [FIX] Fix bug with formatting JaCoCo test coverage #318
  • [NEW] Add flag to upload coverage insecurely #310
  • [FIX] Add partial automated support for Heroku CI builds #305
  • [FIX] Add support for Codeship CI environment variables #300
  • [FIX] Fix logging to not include extraneous newline, correct spelling #288
  • [FIX] Improved performance of the Cobertura, Gcov, and Jacoco formatters #285
  • [FIX] Improved performance of the LCOV formatter #270
  • [NEW] Add support for excoveralls json report (Elixir) #278
  • [FIX] sum-coverage command when merging source files with different coverage length but same blob ID #272
  • [FIX] Treat 409 report upload status as warning and exit 0 #268
  • [FIX] Update coverage.py formatter to parse <source> tags and correctly create source file paths. #247
  • [FIX] "format-coverage" "--add-prefix" option when is an empty string
  • [NEW] "format-coverage" now supports a new option "--add-prefix" for prefixing a path to all file paths
  • [FIX] JaCoCo formatter now properly takes into account package when creating file paths
  • [FIX] "format-coverage" "--prefix" option now accepts paths with or without trailing slash
  • [FIX] Fix build task to statically compile binaries #221
  • [FIX] Update Cobertura formatter to parse <source> tags and correctly source file paths. #218
  • [NEW] Add support for DroneCI by @teohm #215
  • [FIX] Fix Clover formatter #213
  • [FIX] Raise an error when report is empty #214

v0.1.14 (2017-08-02)

  • [NEW] Add support for SSL_CERT_FILE env var on after-build/upload-coverage commands
  • [FIX] Update Cobertura formatter to correctly parse coverage information when file contains inner classes.

v0.1.13 (2017-07-14)

  • [FIX] Update Cobertura formatter to correctly parse coverage information from a cobertura.xml file that has lines not sorted by number or when lines with the same number are present more than one time.

v0.1.12 (2017-07-14)

  • [FIX] format-coverage/after-build --debug outputs codeclimate.json content

v0.1.11 (2017-07-06)

  • [NEW] Add JaCoCo support
  • [FIX] upload-coverage outputs message when successful

v0.1.10 (2017-06-08)

  • [NEW] Add support on format-coverage for Travis ENV vars to infer correctly git commit sha and git branch name
  • [FIX] format-coverage when --input-type is specified without a file path
  • [NEW] Add SwiftCov support
  • [NEW] Add Cobertura support
  • [FIX] sum-coverage output to stdout
  • [NEW] sum-coverage when merging source file coverage it preserves nulls
  • [FIX] Raise an error when invalid format-coverage path usage
  • [FIX] Avoid accessing the git repository for sum-coverage
  • [FIX] Avoid accessing the git repository for upload-coverage
  • [FIX] Improve performance of sum-coverage
  • [FIX] format-coverage when COVERAGE_FILE arg is not present
  • [NEW] Add coverage file path argument to format-coverage
  • [NEW] Add debug logs to Git commands
  • [NEW] Add Gocov support
  • [NEW] Add Clover XML support
  • [NEW] Add coverage strength for tools that don't calculate it.
  • [FIX] Ensure "blank" lines on source file's coverage
  • [NEW] Add --parts(-p) flag to sum-coverage
  • [NEW] Add support to repositories without .git access
  • [NEW] Add after-build command
  • [NEW] Add support for coverage.py
  • [NEW] Add before-build command
  • [NEW] Add --prefix(-p) flag to format-coverage
  • [NEW] Add --input-type(-t) flag to format-coverage
  • [NEW] Add --debug(-d) flag
  • [NEW] Add lcov support
  • [FIX] Source file blob_id

New features

  • [NEW] Add format-coverage command
  • [NEW] Add sum-coverage command
  • [NEW] Add upload-coverage command
  • [NEW] Add simplecov support