apex-code-coverage-transformer 2.8.1 → 2.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@
5
5
 
6
6
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
7
7
 
8
+ ## [2.8.2](https://github.com/mcarvin8/apex-code-coverage-transformer/compare/v2.8.1...v2.8.2) (2025-02-07)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * include file path in jacoco sourcefile ([c3df27e](https://github.com/mcarvin8/apex-code-coverage-transformer/commit/c3df27ed3544bd7145267b3cdde617f2719bd034))
14
+
8
15
  ## [2.8.1](https://github.com/mcarvin8/apex-code-coverage-transformer/compare/v2.8.0...v2.8.1) (2025-02-07)
9
16
 
10
17
 
@@ -18,7 +18,7 @@ export class JaCoCoCoverageHandler {
18
18
  }
19
19
  processFile(filePath, fileName, lines) {
20
20
  const sourceFileObj = {
21
- '@name': fileName,
21
+ '@name': filePath,
22
22
  lines: { line: [] },
23
23
  counters: { counter: [] },
24
24
  };
@@ -86,5 +86,5 @@
86
86
  ]
87
87
  }
88
88
  },
89
- "version": "2.8.1"
89
+ "version": "2.8.2"
90
90
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "apex-code-coverage-transformer",
3
3
  "description": "Transform Salesforce Apex code coverage JSONs created during deployments and test runs into other formats accepted by SonarQube, GitHub, GitLab, Azure, Bitbucket, etc.",
4
- "version": "2.8.1",
4
+ "version": "2.8.2",
5
5
  "dependencies": {
6
6
  "@oclif/core": "^4.0.37",
7
7
  "@salesforce/core": "^8.8.0",