Skip to content

Commit a2bc526

Browse files
committed
chore(release): 3.1.0 [skip ci]
1 parent 0a51739 commit a2bc526

File tree

3 files changed

+34
-19
lines changed

3 files changed

+34
-19
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# [3.1.0](https://github.com/salesforcecli/plugin-apex/compare/3.0.31...3.1.0) (2024-03-25)
2+
3+
### Features
4+
5+
- bump sf-plugins-core ([1d0c71d](https://github.com/salesforcecli/plugin-apex/commit/1d0c71dd2f2a5e46f522a866aed85c96b6a8f270))
6+
17
## [3.0.31](https://github.com/salesforcecli/plugin-apex/compare/3.0.30...3.0.31) (2024-03-17)
28

39
### Bug Fixes

README.md

Lines changed: 27 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ Fetch the specified log or given number of most recent logs from the org.
100100

101101
```
102102
USAGE
103-
$ sf apex get log -o <value> [--json] [--api-version <value>] [-i <value>] [-n <value>] [-d <value>]
103+
$ sf apex get log -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-i <value>] [-n <value>]
104+
[-d <value>]
104105
105106
FLAGS
106107
-d, --output-dir=<value> Directory for saving the log files.
@@ -111,7 +112,8 @@ FLAGS
111112
--api-version=<value> Override the api version used for api requests made by this command
112113
113114
GLOBAL FLAGS
114-
--json Format output as json.
115+
--flags-dir=<value> Import flag values from a directory.
116+
--json Format output as json.
115117
116118
DESCRIPTION
117119
Fetch the specified log or given number of most recent logs from the org.
@@ -146,16 +148,16 @@ FLAG DESCRIPTIONS
146148
directory.
147149
```
148150

149-
_See code: [src/commands/apex/get/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.31/src/commands/apex/get/log.ts)_
151+
_See code: [src/commands/apex/get/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.1.0/src/commands/apex/get/log.ts)_
150152

151153
## `sf apex get test`
152154

153155
Display test results for a specific asynchronous test run.
154156

155157
```
156158
USAGE
157-
$ sf apex get test -o <value> -i <value> [--json] [--api-version <value>] [-c] [-d <value>] [-r
158-
human|tap|junit|json]
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]
159161
160162
FLAGS
161163
-c, --code-coverage Retrieve code coverage results.
@@ -168,7 +170,8 @@ FLAGS
168170
--api-version=<value> Override the api version used for api requests made by this command
169171
170172
GLOBAL FLAGS
171-
--json Format output as json.
173+
--flags-dir=<value> Import flag values from a directory.
174+
--json Format output as json.
172175
173176
DESCRIPTION
174177
Display test results for a specific asynchronous test run.
@@ -199,23 +202,24 @@ EXAMPLES
199202
me@myorg',
200203
```
201204

202-
_See code: [src/commands/apex/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.31/src/commands/apex/get/test.ts)_
205+
_See code: [src/commands/apex/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.1.0/src/commands/apex/get/test.ts)_
203206

204207
## `sf apex list log`
205208

206209
Display a list of IDs and general information about debug logs.
207210

208211
```
209212
USAGE
210-
$ sf apex list log -o <value> [--json] [--api-version <value>]
213+
$ sf apex list log -o <value> [--json] [--flags-dir <value>] [--api-version <value>]
211214
212215
FLAGS
213216
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
214217
configuration variable is already set.
215218
--api-version=<value> Override the api version used for api requests made by this command
216219
217220
GLOBAL FLAGS
218-
--json Format output as json.
221+
--flags-dir=<value> Import flag values from a directory.
222+
--json Format output as json.
219223
220224
DESCRIPTION
221225
Display a list of IDs and general information about debug logs.
@@ -238,15 +242,15 @@ EXAMPLES
238242
$ sf apex list log --target-org [email protected]
239243
```
240244

241-
_See code: [src/commands/apex/list/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.31/src/commands/apex/list/log.ts)_
245+
_See code: [src/commands/apex/list/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.1.0/src/commands/apex/list/log.ts)_
242246

243247
## `sf apex run`
244248

245249
Execute anonymous Apex code entered on the command line or from a local file.
246250

247251
```
248252
USAGE
249-
$ sf apex run -o <value> [--json] [--api-version <value>] [-f <value>]
253+
$ sf apex run -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-f <value>]
250254
251255
FLAGS
252256
-f, --file=<value> Path to a local file that contains Apex code.
@@ -255,7 +259,8 @@ FLAGS
255259
--api-version=<value> Override the api version used for api requests made by this command
256260
257261
GLOBAL FLAGS
258-
--json Format output as json.
262+
--flags-dir=<value> Import flag values from a directory.
263+
--json Format output as json.
259264
260265
DESCRIPTION
261266
Execute anonymous Apex code entered on the command line or from a local file.
@@ -284,15 +289,15 @@ EXAMPLES
284289
$ sf apex run
285290
```
286291

287-
_See code: [src/commands/apex/run.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.31/src/commands/apex/run.ts)_
292+
_See code: [src/commands/apex/run.ts](https://github.com/salesforcecli/plugin-apex/blob/3.1.0/src/commands/apex/run.ts)_
288293

289294
## `sf apex run test`
290295

291296
Invoke Apex tests in an org.
292297

293298
```
294299
USAGE
295-
$ sf apex run test -o <value> [--json] [--api-version <value>] [-d <value>] [-l
300+
$ sf apex run test -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-d <value>] [-l
296301
RunLocalTests|RunAllTestsInOrg|RunSpecifiedTests] [-n <value> | -s <value> | -t <value>] [-r human|tap|junit|json]
297302
[-w <value>] [-y] [-v -c]
298303
@@ -317,7 +322,8 @@ FLAGS
317322
--api-version=<value> Override the api version used for api requests made by this command
318323
319324
GLOBAL FLAGS
320-
--json Format output as json.
325+
--flags-dir=<value> Import flag values from a directory.
326+
--json Format output as json.
321327
322328
DESCRIPTION
323329
Invoke Apex tests in an org.
@@ -391,15 +397,15 @@ FLAG DESCRIPTIONS
391397
--tests Test1 --tests Test2
392398
```
393399

394-
_See code: [src/commands/apex/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.31/src/commands/apex/run/test.ts)_
400+
_See code: [src/commands/apex/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.1.0/src/commands/apex/run/test.ts)_
395401

396402
## `sf apex tail log`
397403

398404
Activate debug logging and display logs in the terminal.
399405

400406
```
401407
USAGE
402-
$ sf apex tail log -o <value> [--api-version <value>] [-c] [-d <value> | -s]
408+
$ sf apex tail log -o <value> [--flags-dir <value>] [--api-version <value>] [-c] [-d <value> | -s]
403409
404410
FLAGS
405411
-c, --color Apply default colors to noteworthy log lines.
@@ -409,6 +415,9 @@ FLAGS
409415
-s, --skip-trace-flag Skip trace flag setup. Assumes that a trace flag and debug level are fully set up.
410416
--api-version=<value> Override the api version used for api requests made by this command
411417
418+
GLOBAL FLAGS
419+
--flags-dir=<value> Import flag values from a directory.
420+
412421
DESCRIPTION
413422
Activate debug logging and display logs in the terminal.
414423
@@ -431,6 +440,6 @@ EXAMPLES
431440
$ sf apex tail log --color --skip-trace-flag
432441
```
433442

434-
_See code: [src/commands/apex/tail/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.31/src/commands/apex/tail/log.ts)_
443+
_See code: [src/commands/apex/tail/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.1.0/src/commands/apex/tail/log.ts)_
435444

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

0 commit comments

Comments
 (0)