Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Covered Lines to XML #3

Closed
wants to merge 18 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
df4c760
chore: delete XMLs at the end of the test
mcarvin8 Mar 4, 2024
9e8f102
fix: add covered and uncovered lines to XML
mcarvin8 Mar 4, 2024
3b7f37a
chore(release): 1.4.1-beta.1 [skip ci] ## [1.4.1-beta.1](https://gith…
semantic-release-bot Mar 4, 2024
71f4163
chore: readme and package description update
mcarvin8 Mar 4, 2024
794a9e7
fix: get total number of lines in each file and assume line is covere…
mcarvin8 Mar 5, 2024
fcf7d4c
chore(release): 1.4.1-beta.2 [skip ci] ## [1.4.1-beta.2](https://gith…
semantic-release-bot Mar 5, 2024
594e7cb
fix: print uncovered lines first, then covered lines, ensuring out-of…
mcarvin8 Mar 5, 2024
8bc11e5
chore(release): 1.4.1-beta.3 [skip ci] ## [1.4.1-beta.3](https://gith…
semantic-release-bot Mar 5, 2024
1c29323
fix: switch do statement to a for statement and start random number c…
mcarvin8 Mar 6, 2024
dca9768
chore(release): 1.4.1-beta.4 [skip ci] ## [1.4.1-beta.4](https://gith…
semantic-release-bot Mar 6, 2024
2c6e6bb
fix: ensure covered lines in XML match JSON total
mcarvin8 Mar 6, 2024
1cd06d0
chore(release): 1.4.1-beta.5 [skip ci] ## [1.4.1-beta.5](https://gith…
semantic-release-bot Mar 6, 2024
6e1d527
fix: add break condition
mcarvin8 Mar 6, 2024
69eb2d2
chore(release): 1.4.1-beta.6 [skip ci] ## [1.4.1-beta.6](https://gith…
semantic-release-bot Mar 6, 2024
da2f8da
fix: move break
mcarvin8 Mar 6, 2024
09e6b12
chore(release): 1.4.1-beta.7 [skip ci] ## [1.4.1-beta.7](https://gith…
semantic-release-bot Mar 6, 2024
bc14f0c
fix: don't need to track total covered lines in XML after adding break
mcarvin8 Mar 6, 2024
1f5ac57
chore(release): 1.4.1-beta.8 [skip ci] ## [1.4.1-beta.8](https://gith…
semantic-release-bot Mar 6, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,51 @@
## [1.4.1-beta.8](https://github.com/mcarvin8/apex-code-coverage-transformer/compare/v1.4.1-beta.7...v1.4.1-beta.8) (2024-03-06)

### Bug Fixes

- don't need to track total covered lines in XML after adding break ([bc14f0c](https://github.com/mcarvin8/apex-code-coverage-transformer/commit/bc14f0c98de1d1c22fb5e6df4f3d91b41ee4336b))

## [1.4.1-beta.7](https://github.com/mcarvin8/apex-code-coverage-transformer/compare/v1.4.1-beta.6...v1.4.1-beta.7) (2024-03-06)

### Bug Fixes

- move break ([da2f8da](https://github.com/mcarvin8/apex-code-coverage-transformer/commit/da2f8daff06782650ae79ab0cbf5c3194ccee471))

## [1.4.1-beta.6](https://github.com/mcarvin8/apex-code-coverage-transformer/compare/v1.4.1-beta.5...v1.4.1-beta.6) (2024-03-06)

### Bug Fixes

- add break condition ([6e1d527](https://github.com/mcarvin8/apex-code-coverage-transformer/commit/6e1d5270ef5eeae0fe843e7ec5de0f2f5f0a535e))

## [1.4.1-beta.5](https://github.com/mcarvin8/apex-code-coverage-transformer/compare/v1.4.1-beta.4...v1.4.1-beta.5) (2024-03-06)

### Bug Fixes

- ensure covered lines in XML match JSON total ([2c6e6bb](https://github.com/mcarvin8/apex-code-coverage-transformer/commit/2c6e6bb022924a5b04775a3076d24f24bb6ecc4b))

## [1.4.1-beta.4](https://github.com/mcarvin8/apex-code-coverage-transformer/compare/v1.4.1-beta.3...v1.4.1-beta.4) (2024-03-06)

### Bug Fixes

- switch do statement to a for statement and start random number count at 1 ([1c29323](https://github.com/mcarvin8/apex-code-coverage-transformer/commit/1c293238e059d47eace1fd395d230e51bb399315))

## [1.4.1-beta.3](https://github.com/mcarvin8/apex-code-coverage-transformer/compare/v1.4.1-beta.2...v1.4.1-beta.3) (2024-03-05)

### Bug Fixes

- print uncovered lines first, then covered lines, ensuring out-of-range lines are replaced with a random unused line ([594e7cb](https://github.com/mcarvin8/apex-code-coverage-transformer/commit/594e7cb47b6acf0823a02fb67a3cc681980e8e0f))

## [1.4.1-beta.2](https://github.com/mcarvin8/apex-code-coverage-transformer/compare/v1.4.1-beta.1...v1.4.1-beta.2) (2024-03-05)

### Bug Fixes

- get total number of lines in each file and assume line is covered if it's not listed as "uncovered" in JSON ([794a9e7](https://github.com/mcarvin8/apex-code-coverage-transformer/commit/794a9e7813db182e47f46c2275a8064b8d92e261))

## [1.4.1-beta.1](https://github.com/mcarvin8/apex-code-coverage-transformer/compare/v1.4.0...v1.4.1-beta.1) (2024-03-04)

### Bug Fixes

- add covered and uncovered lines to XML ([9e8f102](https://github.com/mcarvin8/apex-code-coverage-transformer/commit/9e8f102e9e5c848f5bd604fb2755ae7ea2172cc9))

# [1.4.0](https://github.com/mcarvin8/apex-code-coverage-transformer/compare/v1.3.1...v1.4.0) (2024-02-27)

### Features
Expand Down
Loading