Skip to content

Commit 618a339

Browse files
committed
chore(release): 3.5.0 [skip ci]
1 parent 1e66e83 commit 618a339

File tree

3 files changed

+20
-9
lines changed

3 files changed

+20
-9
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# [3.5.0](https://github.com/salesforcecli/plugin-apex/compare/3.4.10...3.5.0) (2024-10-01)
2+
3+
### Features
4+
5+
- **`apex get test`:** support detailed-coverage ([#597](https://github.com/salesforcecli/plugin-apex/issues/597)) ([1e66e83](https://github.com/salesforcecli/plugin-apex/commit/1e66e839f7da79b9f66d04e70c15e2113559837f))
6+
17
## [3.4.10](https://github.com/salesforcecli/plugin-apex/compare/3.4.9...3.4.10) (2024-09-15)
28

39
### Bug Fixes

README.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -148,16 +148,16 @@ FLAG DESCRIPTIONS
148148
directory.
149149
```
150150

151-
_See code: [src/commands/apex/get/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.4.10/src/commands/apex/get/log.ts)_
151+
_See code: [src/commands/apex/get/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.5.0/src/commands/apex/get/log.ts)_
152152

153153
## `sf apex get test`
154154

155155
Display test results for a specific asynchronous test run.
156156

157157
```
158158
USAGE
159-
$ sf apex get test -o <value> -i <value> [--json] [--flags-dir <value>] [--api-version <value>] [-c] [-d <value>]
160-
[-r human|tap|junit|json] [--concise]
159+
$ sf apex get test -o <value> -i <value> [--json] [--flags-dir <value>] [--api-version <value>]
160+
[--detailed-coverage -c] [-d <value>] [-r human|tap|junit|json] [--concise]
161161
162162
FLAGS
163163
-c, --code-coverage Retrieve code coverage results.
@@ -169,6 +169,7 @@ FLAGS
169169
<options: human|tap|junit|json>
170170
--api-version=<value> Override the api version used for api requests made by this command
171171
--concise Display only failed test results; works with human-readable output only.
172+
--detailed-coverage Display detailed code coverage per test.
172173
173174
GLOBAL FLAGS
174175
--flags-dir=<value> Import flag values from a directory.
@@ -180,6 +181,10 @@ DESCRIPTION
180181
Provide a test run ID to display test results for an enqueued or completed asynchronous test run. The test run ID is
181182
displayed after running the "sf apex test run" command.
182183
184+
To see code coverage results, use the --code-coverage flag with --result-format. The output displays a high-level
185+
summary of the test run and the code coverage values for classes in your org. If you specify human-readable result
186+
format, use the --detailed-coverage flag to see detailed coverage results for each test method run.
187+
183188
ALIASES
184189
$ sf force apex test report
185190
@@ -203,7 +208,7 @@ EXAMPLES
203208
me@myorg'
204209
```
205210

206-
_See code: [src/commands/apex/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.4.10/src/commands/apex/get/test.ts)_
211+
_See code: [src/commands/apex/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.5.0/src/commands/apex/get/test.ts)_
207212

208213
## `sf apex list log`
209214

@@ -243,7 +248,7 @@ EXAMPLES
243248
$ sf apex list log --target-org me@my.org
244249
```
245250

246-
_See code: [src/commands/apex/list/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.4.10/src/commands/apex/list/log.ts)_
251+
_See code: [src/commands/apex/list/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.5.0/src/commands/apex/list/log.ts)_
247252

248253
## `sf apex run`
249254

@@ -290,7 +295,7 @@ EXAMPLES
290295
$ sf apex run
291296
```
292297

293-
_See code: [src/commands/apex/run.ts](https://github.com/salesforcecli/plugin-apex/blob/3.4.10/src/commands/apex/run.ts)_
298+
_See code: [src/commands/apex/run.ts](https://github.com/salesforcecli/plugin-apex/blob/3.5.0/src/commands/apex/run.ts)_
294299

295300
## `sf apex run test`
296301

@@ -430,7 +435,7 @@ FLAG DESCRIPTIONS
430435
--tests Test1 --tests Test2
431436
```
432437

433-
_See code: [src/commands/apex/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.4.10/src/commands/apex/run/test.ts)_
438+
_See code: [src/commands/apex/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.5.0/src/commands/apex/run/test.ts)_
434439

435440
## `sf apex tail log`
436441

@@ -473,6 +478,6 @@ EXAMPLES
473478
$ sf apex tail log --color --skip-trace-flag
474479
```
475480

476-
_See code: [src/commands/apex/tail/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.4.10/src/commands/apex/tail/log.ts)_
481+
_See code: [src/commands/apex/tail/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.5.0/src/commands/apex/tail/log.ts)_
477482

478483
<!-- commandsstop -->

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@salesforce/plugin-apex",
33
"description": "Apex commands",
4-
"version": "3.4.10",
4+
"version": "3.5.0",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)