Skip to content

Commit d586216

Browse files
committed
chore(release): 3.0.9 [skip ci]
1 parent cf8fe08 commit d586216

File tree

3 files changed

+25
-13
lines changed

3 files changed

+25
-13
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [3.0.9](https://github.com/salesforcecli/plugin-apex/compare/3.0.8...3.0.9) (2023-12-12)
2+
3+
### Bug Fixes
4+
5+
- **deps:** devScripts update ([#305](https://github.com/salesforcecli/plugin-apex/issues/305)) ([cf8fe08](https://github.com/salesforcecli/plugin-apex/commit/cf8fe082b09d058748f460a6514c0ba09a1adad4))
6+
17
## [3.0.8](https://github.com/salesforcecli/plugin-apex/compare/3.0.7...3.0.8) (2023-11-27)
28

39
### Bug Fixes

README.md

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,8 @@ FLAGS
106106
-d, --output-dir=<value> Directory for saving the log files.
107107
-i, --log-id=<value> ID of the specific log to display.
108108
-n, --number=<value> Number of the most recent logs to display.
109-
-o, --target-org=<value> (required) Username or alias of the target org.
109+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
110+
configuration variable is already set.
110111
--api-version=<value> Override the api version used for api requests made by this command
111112
112113
GLOBAL FLAGS
@@ -145,7 +146,7 @@ FLAG DESCRIPTIONS
145146
directory.
146147
```
147148

148-
_See code: [src/commands/apex/get/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.8/src/commands/apex/get/log.ts)_
149+
_See code: [src/commands/apex/get/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.9/src/commands/apex/get/log.ts)_
149150

150151
## `sf apex get test`
151152

@@ -160,7 +161,8 @@ FLAGS
160161
-c, --code-coverage Retrieve code coverage results.
161162
-d, --output-dir=<value> Directory in which to store test result files.
162163
-i, --test-run-id=<value> (required) ID of the test run.
163-
-o, --target-org=<value> (required) Username or alias of the target org.
164+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
165+
configuration variable is already set.
164166
-r, --result-format=<option> [default: human] Format of the results.
165167
<options: human|tap|junit|json>
166168
--api-version=<value> Override the api version used for api requests made by this command
@@ -197,7 +199,7 @@ EXAMPLES
197199
me@myorg',
198200
```
199201

200-
_See code: [src/commands/apex/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.8/src/commands/apex/get/test.ts)_
202+
_See code: [src/commands/apex/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.9/src/commands/apex/get/test.ts)_
201203

202204
## `sf apex list log`
203205

@@ -208,7 +210,8 @@ USAGE
208210
$ sf apex list log -o <value> [--json] [--api-version <value>]
209211
210212
FLAGS
211-
-o, --target-org=<value> (required) Username or alias of the target org.
213+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
214+
configuration variable is already set.
212215
--api-version=<value> Override the api version used for api requests made by this command
213216
214217
GLOBAL FLAGS
@@ -235,7 +238,7 @@ EXAMPLES
235238
$ sf apex list log --target-org [email protected]
236239
```
237240

238-
_See code: [src/commands/apex/list/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.8/src/commands/apex/list/log.ts)_
241+
_See code: [src/commands/apex/list/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.9/src/commands/apex/list/log.ts)_
239242

240243
## `sf apex run`
241244

@@ -247,7 +250,8 @@ USAGE
247250
248251
FLAGS
249252
-f, --file=<value> Path to a local file that contains Apex code.
250-
-o, --target-org=<value> (required) Username or alias of the target org.
253+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
254+
configuration variable is already set.
251255
--api-version=<value> Override the api version used for api requests made by this command
252256
253257
GLOBAL FLAGS
@@ -280,7 +284,7 @@ EXAMPLES
280284
$ sf apex run
281285
```
282286

283-
_See code: [src/commands/apex/run.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.8/src/commands/apex/run.ts)_
287+
_See code: [src/commands/apex/run.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.9/src/commands/apex/run.ts)_
284288

285289
## `sf apex run test`
286290

@@ -298,7 +302,8 @@ FLAGS
298302
-l, --test-level=<option> Level of tests to run; default is RunLocalTests.
299303
<options: RunLocalTests|RunAllTestsInOrg|RunSpecifiedTests>
300304
-n, --class-names=<value>... Apex test class names to run; default is all classes.
301-
-o, --target-org=<value> (required) Username or alias of the target org.
305+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
306+
configuration variable is already set.
302307
-r, --result-format=<option> [default: human] Format of the test results.
303308
<options: human|tap|junit|json>
304309
-s, --suite-names=<value>... Apex test suite names to run.
@@ -386,7 +391,7 @@ FLAG DESCRIPTIONS
386391
--tests Test1 --tests Test2
387392
```
388393

389-
_See code: [src/commands/apex/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.8/src/commands/apex/run/test.ts)_
394+
_See code: [src/commands/apex/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.9/src/commands/apex/run/test.ts)_
390395

391396
## `sf apex tail log`
392397

@@ -399,7 +404,8 @@ USAGE
399404
FLAGS
400405
-c, --color Apply default colors to noteworthy log lines.
401406
-d, --debug-level=<value> Debug level to set on the DEVELOPER_LOG trace flag for your user.
402-
-o, --target-org=<value> (required) Username or alias of the target org.
407+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
408+
configuration variable is already set.
403409
-s, --skip-trace-flag Skip trace flag setup. Assumes that a trace flag and debug level are fully set up.
404410
--api-version=<value> Override the api version used for api requests made by this command
405411
@@ -425,6 +431,6 @@ EXAMPLES
425431
$ sf apex tail log --color --skip-trace-flag
426432
```
427433

428-
_See code: [src/commands/apex/tail/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.8/src/commands/apex/tail/log.ts)_
434+
_See code: [src/commands/apex/tail/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.9/src/commands/apex/tail/log.ts)_
429435

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

0 commit comments

Comments
 (0)