Skip to content

Commit b78a1d9

Browse files
committed
chore(release): 3.4.0 [skip ci]
1 parent acdc36c commit b78a1d9

File tree

3 files changed

+21
-9
lines changed

3 files changed

+21
-9
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# [3.4.0](https://github.com/salesforcecli/plugin-apex/compare/3.3.4...3.4.0) (2024-08-16)
2+
3+
### Features
4+
5+
- add concise flag to apex run test and apex get test ([04df5ab](https://github.com/salesforcecli/plugin-apex/commit/04df5ab605b02d64e84dbd19b1abc1b757b23270))
6+
7+
### Reverts
8+
9+
- undo changes to tsconfig ([6012017](https://github.com/salesforcecli/plugin-apex/commit/60120175aac751ff5e88102bae12597868ce2d82))
10+
111
## [3.3.4](https://github.com/salesforcecli/plugin-apex/compare/3.3.3...3.3.4) (2024-08-04)
212

313
### Bug Fixes

README.md

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

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

153153
## `sf apex get test`
154154

@@ -157,7 +157,7 @@ Display test results for a specific asynchronous test run.
157157
```
158158
USAGE
159159
$ sf apex get test -o <value> -i <value> [--json] [--flags-dir <value>] [--api-version <value>] [-c] [-d <value>]
160-
[-r human|tap|junit|json]
160+
[-r human|tap|junit|json] [--concise]
161161
162162
FLAGS
163163
-c, --code-coverage Retrieve code coverage results.
@@ -168,6 +168,7 @@ FLAGS
168168
-r, --result-format=<option> [default: human] Format of the test results.
169169
<options: human|tap|junit|json>
170170
--api-version=<value> Override the api version used for api requests made by this command
171+
--concise Display only failed test results; works with human-readable output only.
171172
172173
GLOBAL FLAGS
173174
--flags-dir=<value> Import flag values from a directory.
@@ -202,7 +203,7 @@ EXAMPLES
202203
me@myorg'
203204
```
204205

205-
_See code: [src/commands/apex/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.3.4/src/commands/apex/get/test.ts)_
206+
_See code: [src/commands/apex/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.4.0/src/commands/apex/get/test.ts)_
206207

207208
## `sf apex list log`
208209

@@ -242,7 +243,7 @@ EXAMPLES
242243
$ sf apex list log --target-org [email protected]
243244
```
244245

245-
_See code: [src/commands/apex/list/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.3.4/src/commands/apex/list/log.ts)_
246+
_See code: [src/commands/apex/list/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.4.0/src/commands/apex/list/log.ts)_
246247

247248
## `sf apex run`
248249

@@ -289,7 +290,7 @@ EXAMPLES
289290
$ sf apex run
290291
```
291292

292-
_See code: [src/commands/apex/run.ts](https://github.com/salesforcecli/plugin-apex/blob/3.3.4/src/commands/apex/run.ts)_
293+
_See code: [src/commands/apex/run.ts](https://github.com/salesforcecli/plugin-apex/blob/3.4.0/src/commands/apex/run.ts)_
293294

294295
## `sf apex run test`
295296

@@ -299,7 +300,7 @@ Invoke Apex tests in an org.
299300
USAGE
300301
$ sf apex run test -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-d <value>] [-l
301302
RunLocalTests|RunAllTestsInOrg|RunSpecifiedTests] [-n <value>... | -s <value>... | -t <value>...] [-r
302-
human|tap|junit|json] [-w <value>] [-y] [-v -c]
303+
human|tap|junit|json] [-w <value>] [-y] [-v -c] [--concise]
303304
304305
FLAGS
305306
-c, --code-coverage Retrieve code coverage results.
@@ -320,6 +321,7 @@ FLAGS
320321
-y, --synchronous Runs test methods from a single Apex class synchronously; if not specified, tests are
321322
run asynchronously.
322323
--api-version=<value> Override the api version used for api requests made by this command
324+
--concise Display only failed test results; works with human-readable output only.
323325
324326
GLOBAL FLAGS
325327
--flags-dir=<value> Import flag values from a directory.
@@ -428,7 +430,7 @@ FLAG DESCRIPTIONS
428430
--tests Test1 --tests Test2
429431
```
430432

431-
_See code: [src/commands/apex/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.3.4/src/commands/apex/run/test.ts)_
433+
_See code: [src/commands/apex/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.4.0/src/commands/apex/run/test.ts)_
432434

433435
## `sf apex tail log`
434436

@@ -471,6 +473,6 @@ EXAMPLES
471473
$ sf apex tail log --color --skip-trace-flag
472474
```
473475

474-
_See code: [src/commands/apex/tail/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.3.4/src/commands/apex/tail/log.ts)_
476+
_See code: [src/commands/apex/tail/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.4.0/src/commands/apex/tail/log.ts)_
475477

476478
<!-- 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.3.4",
4+
"version": "3.4.0",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)