From a127b101568083b9847f3ade71c8f08f2d46de73 Mon Sep 17 00:00:00 2001 From: Juliet Shackell <63259011+jshackell-sfdc@users.noreply.github.com> Date: Mon, 20 Apr 2026 08:45:55 -0400 Subject: [PATCH 1/3] Update release notes for version changes --- releasenotes/README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/releasenotes/README.md b/releasenotes/README.md index bedfc5619..57b0fc720 100644 --- a/releasenotes/README.md +++ b/releasenotes/README.md @@ -25,19 +25,23 @@ Additional documentation: * [Salesforce CLI Plugin Developer Guide](https://github.com/salesforcecli/cli/wiki/Quick-Introduction-to-Developing-sf-Plugins) * [Salesforce CLI Setup Guide](https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_setup_intro.htm) -## 2.131.6 (April 22, 2026) [stable-rc] +## 2.132.14 (April 29, 2026) [stable-rc] These changes are in the Salesforce CLI release candidate. We plan to include these changes in next week's official release. This list isn't final and is subject to change. ------------ +* FIX: Salesforce DX projects now support the DynamicUiCardDefinition [metadata type](https://github.com/forcedotcom/source-deploy-retrieve/blob/main/src/registry/metadataRegistry.json). + +## 2.131.6 (April 22, 2026) [stable] + * FIX: We fixed some under-the-hood bugs. ## April 15, 2026 Due to [TDX 2026](https://www.salesforce.com/tdx/), we aren't releasing a new stable or stable-rc version on this day. Hope to see you at the conference! -## 2.130.9 (April 8, 2026) [stable] +## 2.130.9 (April 8, 2026) * NEW: We standardized the error codes that `agent` commands throw when they run into issues. For example, both `agent publish authoring-bundle` and `agent validate authoring-bundle` now throw the same error code if they run into Agent Script compilation errors. These are the error codes that the `agent` commands might throw: From 6ca2e8376d4dca594e69fe14c582aacfade84f26 Mon Sep 17 00:00:00 2001 From: Steve Hetzel Date: Tue, 21 Apr 2026 10:21:57 -0600 Subject: [PATCH 2/3] add a few AFDX changes --- releasenotes/README.md | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/releasenotes/README.md b/releasenotes/README.md index 57b0fc720..e48dc673f 100644 --- a/releasenotes/README.md +++ b/releasenotes/README.md @@ -33,9 +33,23 @@ These changes are in the Salesforce CLI release candidate. We plan to include th * FIX: Salesforce DX projects now support the DynamicUiCardDefinition [metadata type](https://github.com/forcedotcom/source-deploy-retrieve/blob/main/src/registry/metadataRegistry.json). -## 2.131.6 (April 22, 2026) [stable] +## 2.131.7 (April 22, 2026) [stable] -* FIX: We fixed some under-the-hood bugs. +* CHANGE: The agent script compiler version used by the `agent` commands in `@salesforce/plugin-agent` and the [Agentforce DX VS Code Extension](https://marketplace.visualstudio.com/items?itemName=salesforce.salesforcedx-vscode-agents) was updated to 2.0.0 to support the latest version of the Agent Script language. The v2.0.0 compiler is backward compatible with previous versions. + +* CHANGE: All references to `topic` in Agent Script files have been changed to `subagent` to align with industry standards. For example, to define a subagent: + +``` +subagent eligibility: +``` + +To refer to that subagent: + +``` +@subagent.eligibility +``` + +For more details refer to the [Agent Script Documentation](https://developer.salesforce.com/docs/ai/agentforce/guide/ascript-lang.html) ## April 15, 2026 From 1d8f2a6549aab5f0ae88ee06f0822bab3f052a8f Mon Sep 17 00:00:00 2001 From: Steve Hetzel Date: Tue, 21 Apr 2026 10:26:36 -0600 Subject: [PATCH 3/3] Apply suggestion from @iowillhoit Co-authored-by: Willhoit --- releasenotes/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/releasenotes/README.md b/releasenotes/README.md index e48dc673f..2d2bee75c 100644 --- a/releasenotes/README.md +++ b/releasenotes/README.md @@ -31,7 +31,9 @@ These changes are in the Salesforce CLI release candidate. We plan to include th ------------ -* FIX: Salesforce DX projects now support the DynamicUiCardDefinition [metadata type](https://github.com/forcedotcom/source-deploy-retrieve/blob/main/src/registry/metadataRegistry.json). +* FIX: Salesforce DX projects now support these [metadata types](https://github.com/forcedotcom/source-deploy-retrieve/blob/main/src/registry/metadataRegistry.json): + * [DynamicUiCardDefinition](https://github.com/forcedotcom/source-deploy-retrieve/blob/main/src/registry/metadataRegistry.json) + * [AiAgentScorerDefinition](https://github.com/forcedotcom/source-deploy-retrieve/pull/1746) ## 2.131.7 (April 22, 2026) [stable]