Skip to content

Commit 16eac66

Browse files
committed
chore(release): 3.8.1 [skip ci]
1 parent 30e8bc6 commit 16eac66

File tree

3 files changed

+27
-15
lines changed

3 files changed

+27
-15
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [3.8.1](https://github.com/salesforcecli/plugin-apex/compare/3.8.0...3.8.1) (2025-09-21)
2+
3+
### Bug Fixes
4+
5+
- **deps:** bump @salesforce/apex-node from 8.3.2 to 8.3.3 ([d6de54c](https://github.com/salesforcecli/plugin-apex/commit/d6de54ce29601cf6ccd2242511bc74231010a76f))
6+
17
# [3.8.0](https://github.com/salesforcecli/plugin-apex/compare/3.7.1...3.8.0) (2025-09-16)
28

39
### Bug Fixes

README.md

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ FLAG DESCRIPTIONS
150150
directory.
151151
```
152152

153-
_See code: [src/commands/apex/get/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.8.0/src/commands/apex/get/log.ts)_
153+
_See code: [src/commands/apex/get/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.8.1/src/commands/apex/get/log.ts)_
154154

155155
## `sf apex get test`
156156

@@ -210,7 +210,7 @@ EXAMPLES
210210
me@myorg'
211211
```
212212

213-
_See code: [src/commands/apex/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.8.0/src/commands/apex/get/test.ts)_
213+
_See code: [src/commands/apex/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.8.1/src/commands/apex/get/test.ts)_
214214

215215
## `sf apex list log`
216216

@@ -250,7 +250,7 @@ EXAMPLES
250250
$ sf apex list log --target-org [email protected]
251251
```
252252

253-
_See code: [src/commands/apex/list/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.8.0/src/commands/apex/list/log.ts)_
253+
_See code: [src/commands/apex/list/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.8.1/src/commands/apex/list/log.ts)_
254254

255255
## `sf apex run`
256256

@@ -297,7 +297,7 @@ EXAMPLES
297297
$ sf apex run
298298
```
299299

300-
_See code: [src/commands/apex/run.ts](https://github.com/salesforcecli/plugin-apex/blob/3.8.0/src/commands/apex/run.ts)_
300+
_See code: [src/commands/apex/run.ts](https://github.com/salesforcecli/plugin-apex/blob/3.8.1/src/commands/apex/run.ts)_
301301

302302
## `sf apex run test`
303303

@@ -443,7 +443,7 @@ FLAG DESCRIPTIONS
443443
--tests Test1 --tests Test2
444444
```
445445

446-
_See code: [src/commands/apex/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.8.0/src/commands/apex/run/test.ts)_
446+
_See code: [src/commands/apex/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.8.1/src/commands/apex/run/test.ts)_
447447

448448
## `sf apex tail log`
449449

@@ -486,7 +486,7 @@ EXAMPLES
486486
$ sf apex tail log --color --skip-trace-flag
487487
```
488488

489-
_See code: [src/commands/apex/tail/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.8.0/src/commands/apex/tail/log.ts)_
489+
_See code: [src/commands/apex/tail/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.8.1/src/commands/apex/tail/log.ts)_
490490

491491
## `sf logic get test`
492492

@@ -534,7 +534,7 @@ EXAMPLES
534534
$ sf logic get test --test-run-id <test run id> --result-format junit --target-org my-scratch
535535
```
536536

537-
_See code: [src/commands/logic/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.8.0/src/commands/logic/get/test.ts)_
537+
_See code: [src/commands/logic/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.8.1/src/commands/logic/get/test.ts)_
538538

539539
## `sf logic run test`
540540

@@ -583,11 +583,16 @@ DESCRIPTION
583583
retrieve the results. If you want to wait for the test run to complete and see the results in the command output, use
584584
the --synchronous flag.
585585
586-
To run specific tests, use the --tests flag, passing it the Apex test class names or the Flow tests in the form
587-
Flowtest.<name>. You can also run specific test methods, although if you run the tests synchronously, the methods must
588-
belong to a single Apex class or Flow test. To run all tests of a certain category, use --test-level with
589-
--test-category. If neither flag is specified, all local tests for all categories are run by default. You can also use
590-
the --class-names and --suite-names flags to run Apex test classes or suites.
586+
To run specific tests, use the --tests flag and pass it the names of Apex and Flow tests. For Apex, simply specify the
587+
name of the Apex test class. For Flows, use the format "FlowTesting.<name-of-flow-test>". To find the name of all the
588+
flow tests in your org, run this command and specify the Flow category, such as "sf logic run test --synchronous
589+
--test-category Flow --test-level RunAllTestsInOrg". The command displays a table of all the flow tests it ran; see
590+
the "TEST NAME" column for the full name of all available flow tests in your org.
591+
592+
You can also run specific test methods, although if you run the tests synchronously, the methods must belong to a
593+
single Apex class or Flow test. To run all tests of a certain category, use --test-category and --test-level together.
594+
If neither of these flags is specified, all local tests for all categories are run by default. You can also use the
595+
--class-names and --suite-names flags to run Apex test classes or suites.
591596
592597
To see code coverage results, use the --code-coverage flag with --result-format. The output displays a high-level
593598
summary of the test run and the code coverage values for the tested classes or flows. If you specify human-readable
@@ -599,7 +604,8 @@ DESCRIPTION
599604
EXAMPLES
600605
Run a mix of specific Apex and Flow tests asynchronously in your default org:
601606
602-
$ sf logic run test --tests MyApexClassTest,FlowTest.ProcessOrder
607+
$ sf logic run test --tests \
608+
MyApexClassTest,FlowTesting.Modify_Account_Desc.Modify_Account_Desc_TestAccountDescription
603609
604610
Run all local Apex and Flow tests and wait for the results to complete; run the tests in the org with alias
605611
"my-scratch":
@@ -650,6 +656,6 @@ FLAG DESCRIPTIONS
650656
--tests Test1 --tests Test2
651657
```
652658

653-
_See code: [src/commands/logic/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.8.0/src/commands/logic/run/test.ts)_
659+
_See code: [src/commands/logic/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.8.1/src/commands/logic/run/test.ts)_
654660

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

0 commit comments

Comments
 (0)