Skip to content

Commit bdb45c2

Browse files
committed
chore(release): 1.1.2 [skip ci]
1 parent 15b951f commit bdb45c2

File tree

3 files changed

+51
-8
lines changed

3 files changed

+51
-8
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## [1.1.2](https://github.com/salesforcecli/plugin-agent/compare/1.1.1...1.1.2) (2024-11-01)
2+
3+
### Bug Fixes
4+
5+
- add a nut ([1563e12](https://github.com/salesforcecli/plugin-agent/commit/1563e12031d59f2ef44e3e5281489ec588f9b225))
6+
- add agent test cancel ([29983c2](https://github.com/salesforcecli/plugin-agent/commit/29983c2f70347aff24ad1b78effe801b15bee9a3))
7+
- agent test run ([71b85f0](https://github.com/salesforcecli/plugin-agent/commit/71b85f0ed28024a815ad6faba81e4d77842e48fe))
8+
- agent test run ([d7db1ea](https://github.com/salesforcecli/plugin-agent/commit/d7db1ea7d5b6f5c86dbd3956919e6b722bc10a1c))
9+
- nut needs an org ([6dddb61](https://github.com/salesforcecli/plugin-agent/commit/6dddb6118c9b529eb2266b7dcd81b53e7c300076))
10+
- test ([a76728f](https://github.com/salesforcecli/plugin-agent/commit/a76728fe2fea58e5a61383aa9dbb1ab6757e85d6))
11+
112
## [1.1.1](https://github.com/salesforcecli/plugin-agent/compare/1.1.0...1.1.1) (2024-10-30)
213

314
### Bug Fixes

README.md

Lines changed: 39 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ sf plugins
6363

6464
- [`sf agent create`](#sf-agent-create)
6565
- [`sf agent create spec`](#sf-agent-create-spec)
66-
- [`sf agent run test`](#sf-agent-run-test)
66+
- [`sf agent test cancel`](#sf-agent-test-cancel)
67+
- [`sf agent test run`](#sf-agent-test-run)
6768

6869
## `sf agent create`
6970

@@ -101,7 +102,7 @@ FLAG DESCRIPTIONS
101102
command.
102103
```
103104

104-
_See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.1.1/src/commands/agent/create.ts)_
105+
_See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.1.2/src/commands/agent/create.ts)_
105106

106107
## `sf agent create spec`
107108

@@ -143,15 +144,46 @@ EXAMPLES
143144
--company-description "A meaningful description"
144145
```
145146

146-
_See code: [src/commands/agent/create/spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.1.1/src/commands/agent/create/spec.ts)_
147+
_See code: [src/commands/agent/create/spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.1.2/src/commands/agent/create/spec.ts)_
147148

148-
## `sf agent run test`
149+
## `sf agent test cancel`
150+
151+
Cancel a running test for an Agent.
152+
153+
```
154+
USAGE
155+
$ sf agent test cancel -o <value> -i <value> [--json] [--flags-dir <value>] [-r]
156+
157+
FLAGS
158+
-i, --job-id=<value> (required) The AiEvaluation ID.
159+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
160+
configuration variable is already set.
161+
-r, --use-most-recent Use the job ID of the most recent test evaluation.
162+
163+
GLOBAL FLAGS
164+
--flags-dir=<value> Import flag values from a directory.
165+
--json Format output as json.
166+
167+
DESCRIPTION
168+
Cancel a running test for an Agent.
169+
170+
Cancel a running test for an Agent, providing the AiEvaluation ID.
171+
172+
EXAMPLES
173+
Cancel a test for an Agent:
174+
175+
$ sf agent test cancel --id AiEvalId
176+
```
177+
178+
_See code: [src/commands/agent/test/cancel.ts](https://github.com/salesforcecli/plugin-agent/blob/1.1.2/src/commands/agent/test/cancel.ts)_
179+
180+
## `sf agent test run`
149181

150182
Start a test for an Agent.
151183

152184
```
153185
USAGE
154-
$ sf agent run test -o <value> -i <value> [--json] [--flags-dir <value>] [-w <value>] [-d <value>]
186+
$ sf agent test run -o <value> -i <value> [--json] [--flags-dir <value>] [-w <value>] [-d <value>]
155187
156188
FLAGS
157189
-d, --output-dir=<value> Directory in which to store test run files.
@@ -173,7 +205,7 @@ DESCRIPTION
173205
EXAMPLES
174206
Start a test for an Agent:
175207
176-
$ sf agent run test --id AiEvalDefVerId
208+
$ sf agent test run --id AiEvalDefVerId
177209
178210
FLAG DESCRIPTIONS
179211
-i, --id=<value> The AiEvalDefinitionVersion ID.
@@ -185,6 +217,6 @@ FLAG DESCRIPTIONS
185217
If the command continues to run after the wait period, the CLI returns control of the terminal window to you.
186218
```
187219

188-
_See code: [src/commands/agent/run/test.ts](https://github.com/salesforcecli/plugin-agent/blob/1.1.1/src/commands/agent/run/test.ts)_
220+
_See code: [src/commands/agent/test/run.ts](https://github.com/salesforcecli/plugin-agent/blob/1.1.2/src/commands/agent/test/run.ts)_
189221

190222
<!-- 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-agent",
33
"description": "Commands to interact with Salesforce agents",
4-
"version": "1.1.1",
4+
"version": "1.1.2",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)