From 1b4b3ae0b1016cb4066711f81920d170d8742de5 Mon Sep 17 00:00:00 2001 From: Juliet Shackell <63259011+jshackell-sfdc@users.noreply.github.com> Date: Thu, 12 Feb 2026 09:45:59 -0800 Subject: [PATCH 1/7] Update release notes for version 2.124.6 Updated release notes to reflect new features and changes for version 2.124.6, including the addition of commands for generating Experience Cloud sites and FlexiPages. --- releasenotes/README.md | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/releasenotes/README.md b/releasenotes/README.md index 462a64cb6..bed9ecbb6 100644 --- a/releasenotes/README.md +++ b/releasenotes/README.md @@ -25,12 +25,28 @@ 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.123.1 (Feb 18, 2026) [stable-rc] +## 2.124.6 (Feb 25, 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. ------------ +* NEW: Generate an Experience Cloud site in your DX project with the new `template generate digital-experience site` command. After you pass the command the name of a template (currently only `BuildYourOwnLWR`), the new site name, and an URL path prefix, all the required metadata files are created locally. The metadata files correspond to metadata components such as DigitalExperienceConfig, DigitalExperienceBundle, Network, and CustomSite. + + The `BuildYourOwnLWR` template creates suepr fast digital experiences, such as websites, microsites, and portals, using the Lightning Web Components programming model. Powered by Lightning Web Runtime (LWR), this customizable template delivers unparalleled site performance. For additional details, see this Salesforce Help topic: https://help.salesforce.com/s/articleView?id=experience.rss_build_your_own_lwr.htm. + + Here's an example that generates the metadata files in the `force-app/main/default` directory: + + ```bash + sf template generate digital-experience site --template BuildYourOwnLWR --name mysite --url-path-prefix mysite --output-dir force-app/main/default + ``` + + (plugin-templates PR [#829](https://github.com/salesforcecli/plugin-templates/pull/829))## 2.123.1 (Feb 18, 2026) [stable-rc] + +* NEW: Generate a FlexiPage, also known as a Lightning Page, in your DX project with the new `template generate flexipage` command. More... (plugin-templates PR [#833](https://github.com/salesforcecli/plugin-templates/pull/833)) + +## 2.123.1 (Feb 18, 2026) [stable] + * NEW: Generate a package ZIP file that you can use for debugging or to examine the package contents when you run `package version create` with the new `--generate-pkg-zip` flag. This example creates a package version from the contents of the `common` directory and gives it an installation key of `password123` and generates a package ZIP file: @@ -46,7 +62,7 @@ These changes are in the Salesforce CLI release candidate. We plan to include th * FIX: CLI commands that don't require an org no longer run really slowly in directories in which the `target-org` config variable points to a long-expired scratch org. (GitHub Issue [#3425](https://github.com/forcedotcom/cli/issues/3425), jsforce PR [#1772](https://github.com/jsforce/jsforce/pull/1772)) -## 2.122.6 (Feb 11, 2026) [stable] +## 2.122.6 (Feb 11, 2026) * NEW: Skip retrieving new or changed metadata from your org when you publish an agent's authoring bundle with the new `--skip-retrieve` flag of `agent publish authoring-bundle`. This feature is useful when you publish the authoring bundle in a CI job and don't need to retrieve the metadata back to your DX project because it already has it; skipping the retrieve can save time. This example shows how to publish an authoring bundle with API name `MyAuthoringBundle` to the org with alias `my-dev-org`, but not retrieve any of the metadata: From 5afd7bc4c9b3d164b18441ea8b6bbac9bbba9b00 Mon Sep 17 00:00:00 2001 From: Juliet Shackell <63259011+jshackell-sfdc@users.noreply.github.com> Date: Thu, 12 Feb 2026 12:14:12 -0800 Subject: [PATCH 2/7] Reorganize commands in plugin-templates for clarity Reorganized commands in plugin-templates under a new top-level topic for better usability, with deprecation warnings for old command names. --- releasenotes/README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/releasenotes/README.md b/releasenotes/README.md index bed9ecbb6..6314e824d 100644 --- a/releasenotes/README.md +++ b/releasenotes/README.md @@ -45,6 +45,27 @@ These changes are in the Salesforce CLI release candidate. We plan to include th * NEW: Generate a FlexiPage, also known as a Lightning Page, in your DX project with the new `template generate flexipage` command. More... (plugin-templates PR [#833](https://github.com/salesforcecli/plugin-templates/pull/833)) +* CHANGE: We reorganized all the commands in [plugin-templates](https://github.com/salesforcecli/plugin-templates) under a top-level topic called `template generate`. As a result, you can now take advantage of autocomplete to list all the available templates to generate things, such as DX projects or Apex classes. + + But don't worry, we also added aliases to the moved commands, so that the old command names will still work. But they display a deprecation warning that the command name has changed. + + Here are all the affected commands. (plugin-templates PR [#840](https://github.com/salesforcecli/plugin-templates/pull/840), + + | Old command | New command | + | ----------- | ----------- | + | apex generate class | template generate apex class | + | apex generate trigger | template generate apex trigger | + | analytics generate template | template generate analytics template | + | lightning generate app | template generate lightning app | + | lightning generate component | template generate lightning component | + | lightning generate event | template generate lightning event | + | lightning generate interface | template generate lightning interface | + | lightning generate test | template generate lightning test | + | project generate | template generate project | + | static-resource generate | template generate static-resource | + | visualforce generate component | template generate visualforce component | + | visualforce generate page | template generate visualforce page | + ## 2.123.1 (Feb 18, 2026) [stable] * NEW: Generate a package ZIP file that you can use for debugging or to examine the package contents when you run `package version create` with the new `--generate-pkg-zip` flag. From f79a4f28faaf53370ca01ed15ed4db5d942021f0 Mon Sep 17 00:00:00 2001 From: Juliet Shackell <63259011+jshackell-sfdc@users.noreply.github.com> Date: Tue, 17 Feb 2026 09:00:47 -0800 Subject: [PATCH 3/7] Update release notes with new features and changes Added new features for Agentforce DX and updated FlexiPage generation command details. --- releasenotes/README.md | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/releasenotes/README.md b/releasenotes/README.md index 6314e824d..707f27154 100644 --- a/releasenotes/README.md +++ b/releasenotes/README.md @@ -31,9 +31,21 @@ These changes are in the Salesforce CLI release candidate. We plan to include th ------------ +* NEW: (Generally Available) Build enterprise-ready agents with Agent Script and Agentforce DX. + + After a successful [beta](./README.md#211515-dec-10-2025), we're happy to announce the generally availability of Agentforce DX to build hybrid reasoning Salesforce agents that use Agent Script. These new types of agents have both the predictability that your business demands and the creativity that large language models (LLMs) make possible. Agentforce DX helps pro-code developers build these agents by minimizing context switching, enabling professional DevOps, and simplifying collaboration between low-code and pro-code developers. + + For the list of beta features, see the [release notes](https://help.salesforce.com/s/articleView?id=release-notes.rn_tools_afdx_nga_beta.htm&release=260&type=5). Since then we've added these new features: + + - **Improved Agent Preview**: Works the same for any kind of agent state (local Agent Script, published, etc). i.e. no extra security (connected app) required for published agents. + - **Programmatic Agent Preview**: 4 new “agent preview” command to converse with an agent without starting an interactive session. + - **Enhanced Session Tracer**: Enhanced tracer features in the UI (vs code extension). + - **Generate an AAB**: no longer requires an agent spec. You can also create one easily from the Agentforce DX panel. + - **Vibe Coding rules**: Built-in AFV rules and workflows + * NEW: Generate an Experience Cloud site in your DX project with the new `template generate digital-experience site` command. After you pass the command the name of a template (currently only `BuildYourOwnLWR`), the new site name, and an URL path prefix, all the required metadata files are created locally. The metadata files correspond to metadata components such as DigitalExperienceConfig, DigitalExperienceBundle, Network, and CustomSite. - The `BuildYourOwnLWR` template creates suepr fast digital experiences, such as websites, microsites, and portals, using the Lightning Web Components programming model. Powered by Lightning Web Runtime (LWR), this customizable template delivers unparalleled site performance. For additional details, see this Salesforce Help topic: https://help.salesforce.com/s/articleView?id=experience.rss_build_your_own_lwr.htm. + The `BuildYourOwnLWR` template creates super-fast digital experiences, such as websites, microsites, and portals, using the Lightning Web Components programming model. Powered by Lightning Web Runtime (LWR), this customizable template delivers unparalleled site performance. For additional details, see this Salesforce Help topic: https://help.salesforce.com/s/articleView?id=experience.rss_build_your_own_lwr.htm. Here's an example that generates the metadata files in the `force-app/main/default` directory: @@ -41,9 +53,15 @@ These changes are in the Salesforce CLI release candidate. We plan to include th sf template generate digital-experience site --template BuildYourOwnLWR --name mysite --url-path-prefix mysite --output-dir force-app/main/default ``` - (plugin-templates PR [#829](https://github.com/salesforcecli/plugin-templates/pull/829))## 2.123.1 (Feb 18, 2026) [stable-rc] + (plugin-templates PR [#829](https://github.com/salesforcecli/plugin-templates/pull/829)) -* NEW: Generate a FlexiPage, also known as a Lightning Page, in your DX project with the new `template generate flexipage` command. More... (plugin-templates PR [#833](https://github.com/salesforcecli/plugin-templates/pull/833)) +* NEW: Generate a FlexiPage in your DX project with the new `template generate flexipage` command. FlexiPages are the metadata types associated with a Lightning page, which represents a customizable screen made up of regions containing Lightning components. You can generate these types of FlexiPages: `AppPage`, `HomePage`, or `RecordPage`. + + This example generates a `RecordPage` Flexipage for the Account object in the `force-app/main/default/flexipages` directory: + ```bash + sf template generate flexipage --name Account_Record_Page --template RecordPage --sobject Account--output-dir force-app/main/default/flexipages + ``` + (plugin-templates PR [#833](https://github.com/salesforcecli/plugin-templates/pull/833)) * CHANGE: We reorganized all the commands in [plugin-templates](https://github.com/salesforcecli/plugin-templates) under a top-level topic called `template generate`. As a result, you can now take advantage of autocomplete to list all the available templates to generate things, such as DX projects or Apex classes. From 2ab149c935023650758598c3190ebf2ca81f5d1c Mon Sep 17 00:00:00 2001 From: Juliet Shackell <63259011+jshackell-sfdc@users.noreply.github.com> Date: Tue, 17 Feb 2026 12:38:28 -0800 Subject: [PATCH 4/7] Enhance release notes formatting and content clarity Updated formatting and wording for clarity in release notes. --- releasenotes/README.md | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/releasenotes/README.md b/releasenotes/README.md index 707f27154..18cdfe883 100644 --- a/releasenotes/README.md +++ b/releasenotes/README.md @@ -31,17 +31,21 @@ These changes are in the Salesforce CLI release candidate. We plan to include th ------------ -* NEW: (Generally Available) Build enterprise-ready agents with Agent Script and Agentforce DX. +* NEW: **(Generally Available) Build enterprise-ready agents with Agent Script and Agentforce DX.** After a successful [beta](./README.md#211515-dec-10-2025), we're happy to announce the generally availability of Agentforce DX to build hybrid reasoning Salesforce agents that use Agent Script. These new types of agents have both the predictability that your business demands and the creativity that large language models (LLMs) make possible. Agentforce DX helps pro-code developers build these agents by minimizing context switching, enabling professional DevOps, and simplifying collaboration between low-code and pro-code developers. - For the list of beta features, see the [release notes](https://help.salesforce.com/s/articleView?id=release-notes.rn_tools_afdx_nga_beta.htm&release=260&type=5). Since then we've added these new features: - - - **Improved Agent Preview**: Works the same for any kind of agent state (local Agent Script, published, etc). i.e. no extra security (connected app) required for published agents. - - **Programmatic Agent Preview**: 4 new “agent preview” command to converse with an agent without starting an interactive session. - - **Enhanced Session Tracer**: Enhanced tracer features in the UI (vs code extension). - - **Generate an AAB**: no longer requires an agent spec. You can also create one easily from the Agentforce DX panel. - - **Vibe Coding rules**: Built-in AFV rules and workflows + See [these release notes](https://help.salesforce.com/s/articleView?id=release-notes.rn_tools_afdx_nga_beta.htm&release=260&type=5) for the list of features we announced for the beta. These are the new or changed features since then: + + - **Agentforce Vibes Rules for Agent Script**: Agentforce Vibes now includes a global rule specifically for coding Agent Script files. + - **Improved Agent Preview**: Previewing an agent now works the same regardless of how you start it, either using the Agent Script file or a published agent. Previously you had to configure additional security using a connected app to preview a published agent. + - **Programmatic Agent Preview**: Preview an agent programmatically, without starting an interactive session, with these four new CLI commands; this feature is particularly useful when you want an agent to test your agent. + - `agent preview start`: Start a programmatic agent preview session. + - `agent preview send`: Send a message to an existing agent preview session. + - `agent preview sessions`: List all known programmatic agent preview sessions. + - `agent preview end`: End an existing programmatic agent preview session and get trace location. + - **Enhanced Session Tracer**: Get oodles of useful session trace information with the enhanced Agent Tracer panel in VS Code. + - **Generate an authoring bundlee**: You're no longer required to generate an agent spec YAML file when generating an authoring bundle. This feature makes it even easier to get started with Agent Script agents. * NEW: Generate an Experience Cloud site in your DX project with the new `template generate digital-experience site` command. After you pass the command the name of a template (currently only `BuildYourOwnLWR`), the new site name, and an URL path prefix, all the required metadata files are created locally. The metadata files correspond to metadata components such as DigitalExperienceConfig, DigitalExperienceBundle, Network, and CustomSite. From 750e344a254ee88d6ef2c0f0195b9aca930a9096 Mon Sep 17 00:00:00 2001 From: Juliet Shackell <63259011+jshackell-sfdc@users.noreply.github.com> Date: Tue, 17 Feb 2026 12:55:56 -0800 Subject: [PATCH 5/7] Revise release notes for Agentforce DX updates Updated the release notes to reflect changes in Agentforce DX and Agent Script, including improved features and simplified authoring bundle generation. --- releasenotes/README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/releasenotes/README.md b/releasenotes/README.md index 18cdfe883..9f397765b 100644 --- a/releasenotes/README.md +++ b/releasenotes/README.md @@ -31,21 +31,22 @@ These changes are in the Salesforce CLI release candidate. We plan to include th ------------ -* NEW: **(Generally Available) Build enterprise-ready agents with Agent Script and Agentforce DX.** +* NEW: **(Generally Available) Build Enterprise-Ready Agents with Agentforce DX and Agent Script** After a successful [beta](./README.md#211515-dec-10-2025), we're happy to announce the generally availability of Agentforce DX to build hybrid reasoning Salesforce agents that use Agent Script. These new types of agents have both the predictability that your business demands and the creativity that large language models (LLMs) make possible. Agentforce DX helps pro-code developers build these agents by minimizing context switching, enabling professional DevOps, and simplifying collaboration between low-code and pro-code developers. - See [these release notes](https://help.salesforce.com/s/articleView?id=release-notes.rn_tools_afdx_nga_beta.htm&release=260&type=5) for the list of features we announced for the beta. These are the new or changed features since then: - - - **Agentforce Vibes Rules for Agent Script**: Agentforce Vibes now includes a global rule specifically for coding Agent Script files. - - **Improved Agent Preview**: Previewing an agent now works the same regardless of how you start it, either using the Agent Script file or a published agent. Previously you had to configure additional security using a connected app to preview a published agent. + For the list of features we announced in the beta, see [these release notes](https://help.salesforce.com/s/articleView?id=release-notes.rn_tools_afdx_nga_beta.htm&release=260&type=5). Since the beta announcement, we've added or improved the following features: + - **Agentforce Vibes Rules for Agent Script**: Agentforce Vibes now includes a global rule for coding Agent Script files. + - **Improved Agent Preview**: Previewing an agent now works the same regardless of how you started the conversation (using an Agent Script file or a published agent.) Previously you had to configure additional security using a connected app to preview a published agent. - **Programmatic Agent Preview**: Preview an agent programmatically, without starting an interactive session, with these four new CLI commands; this feature is particularly useful when you want an agent to test your agent. - `agent preview start`: Start a programmatic agent preview session. - `agent preview send`: Send a message to an existing agent preview session. - `agent preview sessions`: List all known programmatic agent preview sessions. - `agent preview end`: End an existing programmatic agent preview session and get trace location. - **Enhanced Session Tracer**: Get oodles of useful session trace information with the enhanced Agent Tracer panel in VS Code. - - **Generate an authoring bundlee**: You're no longer required to generate an agent spec YAML file when generating an authoring bundle. This feature makes it even easier to get started with Agent Script agents. + - **Simpler Authoring Bundle Generation**: You're no longer required to generate an agent spec YAML file when generating an authoring bundle. This feature makes it even easier to get started with Agent Script agents. + + See the [Build Agents with Agentforce DX](https://developer.salesforce.com/docs/ai/agentforce/guide/agent-dx.html) section of the _Agentforce Developer Guide_ for details. * NEW: Generate an Experience Cloud site in your DX project with the new `template generate digital-experience site` command. After you pass the command the name of a template (currently only `BuildYourOwnLWR`), the new site name, and an URL path prefix, all the required metadata files are created locally. The metadata files correspond to metadata components such as DigitalExperienceConfig, DigitalExperienceBundle, Network, and CustomSite. From 072acf7c5c6a4376505883fbb8a29c96bf7cf2ca Mon Sep 17 00:00:00 2001 From: Juliet Shackell <63259011+jshackell-sfdc@users.noreply.github.com> Date: Tue, 17 Feb 2026 12:59:50 -0800 Subject: [PATCH 6/7] Restore Agentforce DX details in release notes Restored details about building enterprise-ready agents with Agentforce DX and Agent Script, including new features and improvements since the beta release. --- releasenotes/README.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/releasenotes/README.md b/releasenotes/README.md index 9f397765b..5b731cef3 100644 --- a/releasenotes/README.md +++ b/releasenotes/README.md @@ -30,24 +30,7 @@ Additional documentation: 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. ------------ - -* NEW: **(Generally Available) Build Enterprise-Ready Agents with Agentforce DX and Agent Script** - - After a successful [beta](./README.md#211515-dec-10-2025), we're happy to announce the generally availability of Agentforce DX to build hybrid reasoning Salesforce agents that use Agent Script. These new types of agents have both the predictability that your business demands and the creativity that large language models (LLMs) make possible. Agentforce DX helps pro-code developers build these agents by minimizing context switching, enabling professional DevOps, and simplifying collaboration between low-code and pro-code developers. - - For the list of features we announced in the beta, see [these release notes](https://help.salesforce.com/s/articleView?id=release-notes.rn_tools_afdx_nga_beta.htm&release=260&type=5). Since the beta announcement, we've added or improved the following features: - - **Agentforce Vibes Rules for Agent Script**: Agentforce Vibes now includes a global rule for coding Agent Script files. - - **Improved Agent Preview**: Previewing an agent now works the same regardless of how you started the conversation (using an Agent Script file or a published agent.) Previously you had to configure additional security using a connected app to preview a published agent. - - **Programmatic Agent Preview**: Preview an agent programmatically, without starting an interactive session, with these four new CLI commands; this feature is particularly useful when you want an agent to test your agent. - - `agent preview start`: Start a programmatic agent preview session. - - `agent preview send`: Send a message to an existing agent preview session. - - `agent preview sessions`: List all known programmatic agent preview sessions. - - `agent preview end`: End an existing programmatic agent preview session and get trace location. - - **Enhanced Session Tracer**: Get oodles of useful session trace information with the enhanced Agent Tracer panel in VS Code. - - **Simpler Authoring Bundle Generation**: You're no longer required to generate an agent spec YAML file when generating an authoring bundle. This feature makes it even easier to get started with Agent Script agents. - - See the [Build Agents with Agentforce DX](https://developer.salesforce.com/docs/ai/agentforce/guide/agent-dx.html) section of the _Agentforce Developer Guide_ for details. - + * NEW: Generate an Experience Cloud site in your DX project with the new `template generate digital-experience site` command. After you pass the command the name of a template (currently only `BuildYourOwnLWR`), the new site name, and an URL path prefix, all the required metadata files are created locally. The metadata files correspond to metadata components such as DigitalExperienceConfig, DigitalExperienceBundle, Network, and CustomSite. The `BuildYourOwnLWR` template creates super-fast digital experiences, such as websites, microsites, and portals, using the Lightning Web Components programming model. Powered by Lightning Web Runtime (LWR), this customizable template delivers unparalleled site performance. For additional details, see this Salesforce Help topic: https://help.salesforce.com/s/articleView?id=experience.rss_build_your_own_lwr.htm. @@ -91,6 +74,23 @@ These changes are in the Salesforce CLI release candidate. We plan to include th ## 2.123.1 (Feb 18, 2026) [stable] +* NEW: **(Generally Available) Build Enterprise-Ready Agents with Agentforce DX and Agent Script** + + After a successful [beta](./README.md#211515-dec-10-2025), we're happy to announce the generally availability of Agentforce DX to build hybrid reasoning Salesforce agents that use Agent Script. These new types of agents have both the predictability that your business demands and the creativity that large language models (LLMs) make possible. Agentforce DX helps pro-code developers build these agents by minimizing context switching, enabling professional DevOps, and simplifying collaboration between low-code and pro-code developers. + + For the list of features we announced in the beta, see [these release notes](https://help.salesforce.com/s/articleView?id=release-notes.rn_tools_afdx_nga_beta.htm&release=260&type=5). Since the beta announcement, we've added or improved the following features: + - **Agentforce Vibes Rules for Agent Script**: Agentforce Vibes now includes a global rule for coding Agent Script files. + - **Improved Agent Preview**: Previewing an agent now works the same regardless of how you started the conversation (using an Agent Script file or a published agent.) Previously you had to configure additional security using a connected app to preview a published agent. + - **Programmatic Agent Preview**: Preview an agent programmatically, without starting an interactive session, with these four new CLI commands; this feature is particularly useful when you want an agent to test your agent. + - `agent preview start`: Start a programmatic agent preview session. + - `agent preview send`: Send a message to an existing agent preview session. + - `agent preview sessions`: List all known programmatic agent preview sessions. + - `agent preview end`: End an existing programmatic agent preview session and get trace location. + - **Enhanced Session Tracer**: Get oodles of useful session trace information with the enhanced Agent Tracer panel in VS Code. + - **Simpler Authoring Bundle Generation**: You're no longer required to generate an agent spec YAML file when generating an authoring bundle. This feature makes it even easier to get started with Agent Script agents. + + See the [Build Agents with Agentforce DX](https://developer.salesforce.com/docs/ai/agentforce/guide/agent-dx.html) section of the _Agentforce Developer Guide_ for details. + * NEW: Generate a package ZIP file that you can use for debugging or to examine the package contents when you run `package version create` with the new `--generate-pkg-zip` flag. This example creates a package version from the contents of the `common` directory and gives it an installation key of `password123` and generates a package ZIP file: From 49714e76db3ebecb43b7d0615e7ee93b6e659eb7 Mon Sep 17 00:00:00 2001 From: Juliet Shackell <63259011+jshackell-sfdc@users.noreply.github.com> Date: Tue, 17 Feb 2026 16:23:55 -0800 Subject: [PATCH 7/7] Apply suggestions from code review Co-authored-by: Willhoit --- releasenotes/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/releasenotes/README.md b/releasenotes/README.md index 5b731cef3..73b916f33 100644 --- a/releasenotes/README.md +++ b/releasenotes/README.md @@ -47,7 +47,7 @@ These changes are in the Salesforce CLI release candidate. We plan to include th This example generates a `RecordPage` Flexipage for the Account object in the `force-app/main/default/flexipages` directory: ```bash - sf template generate flexipage --name Account_Record_Page --template RecordPage --sobject Account--output-dir force-app/main/default/flexipages + sf template generate flexipage --name Account_Record_Page --template RecordPage --sobject Account --output-dir force-app/main/default/flexipages ``` (plugin-templates PR [#833](https://github.com/salesforcecli/plugin-templates/pull/833)) @@ -55,7 +55,7 @@ These changes are in the Salesforce CLI release candidate. We plan to include th But don't worry, we also added aliases to the moved commands, so that the old command names will still work. But they display a deprecation warning that the command name has changed. - Here are all the affected commands. (plugin-templates PR [#840](https://github.com/salesforcecli/plugin-templates/pull/840), + Here are all the affected commands. (plugin-templates PR [#840](https://github.com/salesforcecli/plugin-templates/pull/840), plugin-templates PR [#838](https://github.com/salesforcecli/plugin-templates/pull/838)) | Old command | New command | | ----------- | ----------- |