Skip to content

Releases: cicirello/jacoco-badge-generator

jacoco-badge-generator, v2.12.1

16 Jul 19:23
7226618
Compare
Choose a tag to compare

[2.12.1] - 2025-07-16

Dependencies (GitHub Actions Mode)

  • Updated Docker file to use new tag format for cicirello/pyaction
  • Bumps cicirello/pyaction to 3.13.5-gh-2.75.1 (Python 3.13.5).

jacoco-badge-generator, v2.12.0

20 May 19:39
188d0c9
Compare
Choose a tag to compare

[2.12.0] - 2025-05-20

Added

  • Added inputs for disabling failure on decrease when coverage is above a specified limit:
    • coverage-decrease-limit: Overrides fail-on-coverage-decrease when coverage is at least this limit
    • branches-decrease-limit: Overrides fail-on-branches-decrease when branches coverage is at least this limit

Dependencies

  • Bump cicirello/pyaction from 4.23.0 to 4.33.0, including upgrading Python to 3.13 within the Docker container of the action.

CI/CD

  • Bump Python to 3.13 in CI/CD workflows when running unit tests.
  • Matrix testing for Python versions 3.8 through 3.13 for unit tests.
  • Matrix testing the CLI mode for Python versions 3.8 through 3.13.

jacoco-badge-generator, v2.11.0

15 Sep 20:56
Compare
Choose a tag to compare

[2.11.0] - 2023-09-15

Added

  • Option to customize heading for GitHub Actions workflow job summary

Dependencies

  • Bump cicirello/pyaction from 4.22.0 to 4.23.0

jacoco-badge-generator, v2.10.0

04 Sep 17:08
0f2af7c
Compare
Choose a tag to compare

[2.10.0] - 2023-09-04

Added

  • Option to suppress workflow job summary in GitHub Actions Mode (#126).

Dependencies

  • Bump cicirello/pyaction from 4.19.0 to 4.22.0

New Contributors

Full Changelog: v2...v2.10.0

jacoco-badge-generator, v2.9.0

24 May 19:53
a0c1eb1
Compare
Choose a tag to compare

[2.9.0] - 2023-05-24

Added

  • Support for glob patterns in GitHub Actions mode for specifying multiple JaCoCo reports for multi-module projects (note: CLI mode already supported this indirectly since the shell expands globs automatically).

Dependencies

  • Bump cicirello/pyaction from 4.11.1 to 4.19.0, including upgrading Python within the Docker container to 3.11.

CI/CD

  • Bump Python to 3.11 in CI/CD workflows.

jacoco-badge-generator, v2.8.1

24 Oct 18:32
2dc380e
Compare
Choose a tag to compare

[2.8.1] - 2022-10-24

Fixed

  • The replacement for GitHub Action's deprecated set-output is not available yet for all self-hosted users. This patch
    handles that by using the new $GITHUB_OUTPUT environment file if it exists, and otherwise falling back to set-output.

Dependencies

  • Bump cicirello/pyaction from 4.11.0 to 4.11.1

jacoco-badge-generator, v2.8.0

21 Oct 17:01
7ad148a
Compare
Choose a tag to compare

[2.8.0] - 2022-10-21

Added

  • Generate and output a GitHub Actions workflow job summary with the coverage percentages.

Fixed

  • Replaced use of GitHub Action's deprecated set-output workflow command.

Dependencies

  • Bump cicirello/pyaction from 4.6.0 to 4.11.0, which includes upgrading Python within the Docker container to 3.10.7.

jacoco-badge-generator, v2.7.0

28 Jun 17:29
38a092e
Compare
Choose a tag to compare

[2.7.0] - 2022-06-28

Added

  • CLI Mode: Ability to run as a command-line utility outside of GitHub Actions, such as part of a local build script, etc.

Changed

  • Refactored main control block to improve maintainability (#63).
  • Refactored organization of source files (#64).
  • Bumped base Docker image cicirello/pyaction from 4.1.0 to 4.6.0.

CI/CD

  • Added workflow to automatically publish CLI utility to PyPI on new releases of GitHub Action to GitHub Marketplace.

jacoco-badge-generator, v2.6.1

18 Feb 14:51
bce93b1
Compare
Choose a tag to compare

[2.6.1] - 2022-02-18

Fixed

  • Suppressed Python's pycache on imports (fixes Issue #46).

jacoco-badge-generator, v2.6.0

17 Feb 21:59
7675fff
Compare
Choose a tag to compare

[2.6.0] - 2022-02-17

Added

  • Option to specify custom labels for the left side of the badges controlled
    by the new inputs coverage-label and branches-label.

Changed

  • Left-side text width and position calculated rather than hard-coded to
    width of "coverage" and "branches".
  • Changed Dockerfile to pull base image from GitHub Container Registry, assuming
    within GitHub Actions likely faster to pull from GitHub rather than Docker Hub.
  • Repository reorganized to move Python source code to a new src directory.