Skip to content

Commit b68b95a

Browse files
committed
chore(release): 3.9.0 [skip ci]
1 parent e10f85d commit b68b95a

File tree

3 files changed

+17
-10
lines changed

3 files changed

+17
-10
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# [3.9.0](https://github.com/salesforcecli/plugin-apex/compare/3.8.10...3.9.0) (2025-12-04)
2+
3+
### Features
4+
5+
- adds --poll-interval flag to test command @W-20268166@ ([71576db](https://github.com/salesforcecli/plugin-apex/commit/71576db2e9354e0ddcb2e9f660b1ec1641916053))
6+
17
## [3.8.10](https://github.com/salesforcecli/plugin-apex/compare/3.8.9...3.8.10) (2025-12-02)
28

39
### Bug Fixes

README.md

Lines changed: 10 additions & 9 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.10/src/commands/apex/get/log.ts)_
153+
_See code: [src/commands/apex/get/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.9.0/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.10/src/commands/apex/get/test.ts)_
213+
_See code: [src/commands/apex/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.9.0/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.10/src/commands/apex/list/log.ts)_
253+
_See code: [src/commands/apex/list/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.9.0/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.10/src/commands/apex/run.ts)_
300+
_See code: [src/commands/apex/run.ts](https://github.com/salesforcecli/plugin-apex/blob/3.9.0/src/commands/apex/run.ts)_
301301

302302
## `sf apex run test`
303303

@@ -307,11 +307,12 @@ Invoke Apex tests in an org.
307307
USAGE
308308
$ sf apex run test -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-d <value>] [-l
309309
RunLocalTests|RunAllTestsInOrg|RunSpecifiedTests] [-n <value>... | -s <value>... | -t <value>...] [-r
310-
human|tap|junit|json] [-w <value>] [-y] [-v -c] [--concise]
310+
human|tap|junit|json] [-i <value>] [-w <value>] [-y] [-v -c] [--concise]
311311
312312
FLAGS
313313
-c, --code-coverage Retrieve code coverage results.
314314
-d, --output-dir=<value> Directory in which to store test run files.
315+
-i, --poll-interval=<value> Number of seconds to wait between retries.
315316
-l, --test-level=<option> Level of tests to run; default is RunLocalTests.
316317
<options: RunLocalTests|RunAllTestsInOrg|RunSpecifiedTests>
317318
-n, --class-names=<value>... Apex test class names to run; default is all classes.
@@ -443,7 +444,7 @@ FLAG DESCRIPTIONS
443444
--tests Test1 --tests Test2
444445
```
445446

446-
_See code: [src/commands/apex/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.8.10/src/commands/apex/run/test.ts)_
447+
_See code: [src/commands/apex/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.9.0/src/commands/apex/run/test.ts)_
447448

448449
## `sf apex tail log`
449450

@@ -486,7 +487,7 @@ EXAMPLES
486487
$ sf apex tail log --color --skip-trace-flag
487488
```
488489

489-
_See code: [src/commands/apex/tail/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.8.10/src/commands/apex/tail/log.ts)_
490+
_See code: [src/commands/apex/tail/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.9.0/src/commands/apex/tail/log.ts)_
490491

491492
## `sf logic get test`
492493

@@ -534,7 +535,7 @@ EXAMPLES
534535
$ sf logic get test --test-run-id <test run id> --result-format junit --target-org my-scratch
535536
```
536537

537-
_See code: [src/commands/logic/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.8.10/src/commands/logic/get/test.ts)_
538+
_See code: [src/commands/logic/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.9.0/src/commands/logic/get/test.ts)_
538539

539540
## `sf logic run test`
540541

@@ -656,6 +657,6 @@ FLAG DESCRIPTIONS
656657
--tests Test1 --tests Test2
657658
```
658659

659-
_See code: [src/commands/logic/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.8.10/src/commands/logic/run/test.ts)_
660+
_See code: [src/commands/logic/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.9.0/src/commands/logic/run/test.ts)_
660661

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

0 commit comments

Comments
 (0)