Releases: MishaKav/jest-coverage-comment
Releases · MishaKav/jest-coverage-comment
v1.0.29
What's Changed
- Add
text-instead-badgeoption to display simple text instead of badge images for coverage display - Text mode shows coverage in the same format as other columns: "XX.XX% (covered/total)"
- Applies to all coverage reports: main summary and multiple-files tables
- Maintains backward compatibility - badge mode remains the default
Before (badges):
| Lines | Statements | Branches | Functions |
|---|---|---|---|
| 76.74% (33/43) | 100% (0/0) | 33.33% (2/6) |
After (text):
| Lines | Statements | Branches | Functions |
|---|---|---|---|
| 78.57% (33/42) | 76.74% (33/43) | 100% (0/0) | 33.33% (2/6) |
Full Changelog: v1.0.28...v1.0.29
v1
v1.0.28
What's Changed
✨ New Features
- 🚀 Added support for workflow_dispatch and workflow_run events with new issue-number input
- 🎯 Enhanced report-only-changed-files to work with manual PR specification
🔧 Improvements
- 📚 Restructured and enhanced README with better examples and troubleshooting
- ⬆️ Updated all package dependencies to latest versions
This release expands GitHub workflow event support and improves documentation while keeping
dependencies current. 🎉
#108
Full Changelog: v1.0.27...v1.0.28
v1.0.27
What's Changed
- Fix use cases when comment post by not
github-actions[bot]and not updated, thanks to @mluizaa00 for contribution
Full Changelog: v1.0.26...v1.0.27
v1.0.26
What's Changed
- Handle case when testsuites is not the root element of the JUnit xml file, thanks to @JakeFDev for contribution in #86
Full Changelog: v1.0.25...v1.0.26
Change `node16` to `node20`
Change node16 to node20, thanks to @kagankan for contribution
v1.0.24
- Take the right
serverUrlin non github.com environments like selfhosted github, e.g. link to lines uses then the correct link, thanks to @c0un7-z3r0 for contribution
Remove summary error in annotations
- Remove summary error in annotations when provide one of
junitxml-path / coverage-path / multiple-files / multiple-junitxml-filesand not providecoverage-summary-pathwhich have default value - bump dev dependencies
support `pull_request_target` event to add comments
- Support
pull_request_targetevent to add comments, thanks to @chirag-madlani for contribution
Support matrix with individual comments
What's Changed
Support matrix with individual comments. When you run in a matrix, and you want that every job will post a comment, you can use the unique-id-for-comment: ${{ matrix.node-version }}. This will post a comment for every job, and will update them on every run by @MishaKav in #50
New Contributors
- @dependabot made their first contribution in #43
Full Changelog: v1.0.20...v1.0.21