@salesforce/sfdx-agent-sdk 0.17.0 → 0.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to `@salesforce/sfdx-agent-sdk` are documented in this file.
|
|
4
4
|
Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
5
5
|
|
|
6
|
+
## [0.18.0] - 2026-06-09
|
|
7
|
+
|
|
8
|
+
### Tests
|
|
9
|
+
- **agent-sdk**: parallel consumer-tool batch e2e (#559) ([#574](https://github.com/forcedotcom/agentic-dx/pull/574))
|
|
10
|
+
|
|
11
|
+
### Chores
|
|
12
|
+
- **deps**: bump dependencies across packages @W-22695116@ ([#577](https://github.com/forcedotcom/agentic-dx/pull/577))
|
|
13
|
+
- resolve unrelated it.todo placeholders in agent.test.ts and client.test.ts ([#573](https://github.com/forcedotcom/agentic-dx/pull/573))
|
|
14
|
+
- **deps-dev**: bump @types/node from 22.19.19 to 22.19.20 in the dev-dependencies group ([#568](https://github.com/forcedotcom/agentic-dx/pull/568))
|
|
15
|
+
|
|
6
16
|
## [0.17.0] - 2026-06-09
|
|
7
17
|
|
|
8
18
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/sfdx-agent-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.0",
|
|
4
4
|
"description": "Harness-agnostic agentic infrastructure for Salesforce developer experience tooling",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -40,29 +40,29 @@
|
|
|
40
40
|
"LICENSE.txt"
|
|
41
41
|
],
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/agentic-common": "0.
|
|
44
|
-
"@salesforce/llm-gateway-sdk": "0.
|
|
43
|
+
"@salesforce/agentic-common": "0.10.0",
|
|
44
|
+
"@salesforce/llm-gateway-sdk": "0.14.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@eslint/js": "^10.0.1",
|
|
48
|
-
"@salesforce/sfdx-agent-harness-claude": "0.
|
|
49
|
-
"@salesforce/sfdx-agent-harness-mastra": "0.
|
|
50
|
-
"@types/node": "^22.19.
|
|
48
|
+
"@salesforce/sfdx-agent-harness-claude": "0.14.0",
|
|
49
|
+
"@salesforce/sfdx-agent-harness-mastra": "0.17.0",
|
|
50
|
+
"@types/node": "^22.19.20",
|
|
51
51
|
"@vitest/coverage-istanbul": "^4.1.8",
|
|
52
52
|
"@vitest/eslint-plugin": "^1.6.19",
|
|
53
53
|
"eslint": "^10.4.1",
|
|
54
54
|
"eslint-config-prettier": "^10.1.8",
|
|
55
55
|
"eslint-import-resolver-typescript": "^4.4.5",
|
|
56
56
|
"eslint-plugin-import": "^2.32.0",
|
|
57
|
-
"eslint-plugin-n": "^18.0
|
|
57
|
+
"eslint-plugin-n": "^18.1.0",
|
|
58
58
|
"globals": "^17.6.0",
|
|
59
59
|
"lint-staged": "^17.0.7",
|
|
60
|
-
"prettier": "^3.8.
|
|
60
|
+
"prettier": "^3.8.4",
|
|
61
61
|
"rimraf": "^6.1.3",
|
|
62
62
|
"tsx": "^4.22.4",
|
|
63
63
|
"typescript": "^6.0.3",
|
|
64
|
-
"typescript-eslint": "^8.
|
|
65
|
-
"vitest": "^4.1.
|
|
64
|
+
"typescript-eslint": "^8.61.0",
|
|
65
|
+
"vitest": "^4.1.8"
|
|
66
66
|
},
|
|
67
67
|
"engines": {
|
|
68
68
|
"node": ">=22.19.0"
|