From 40c9ea3d6ffa0718db8c6c8d2e0718c3dadf5043 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Apr 2026 00:26:31 +0000 Subject: [PATCH] chore: version packages --- .changeset/RELEASE | 2 +- .changeset/cap-commerce-app-packages.md | 17 --------------- .changeset/cap-support-commands.md | 14 ------------ .changeset/retrigger-changesets.md | 5 ----- docs/CHANGELOG.md | 14 ++++++++++++ docs/package.json | 2 +- packages/b2c-cli/CHANGELOG.md | 29 +++++++++++++++++++++++++ packages/b2c-cli/package.json | 2 +- packages/b2c-dx-mcp/CHANGELOG.md | 7 ++++++ packages/b2c-dx-mcp/package.json | 2 +- packages/b2c-tooling-sdk/CHANGELOG.md | 24 ++++++++++++++++++++ packages/b2c-tooling-sdk/package.json | 2 +- packages/b2c-vs-extension/CHANGELOG.md | 21 ++++++++++++++++++ packages/b2c-vs-extension/package.json | 2 +- 14 files changed, 101 insertions(+), 42 deletions(-) delete mode 100644 .changeset/cap-commerce-app-packages.md delete mode 100644 .changeset/cap-support-commands.md delete mode 100644 .changeset/retrigger-changesets.md diff --git a/.changeset/RELEASE b/.changeset/RELEASE index ee5dfe17..c8fa34c5 100644 --- a/.changeset/RELEASE +++ b/.changeset/RELEASE @@ -1 +1 @@ -Tue Apr 21 02:13:31 UTC 2026 +Wed Apr 22 00:26:31 UTC 2026 diff --git a/.changeset/cap-commerce-app-packages.md b/.changeset/cap-commerce-app-packages.md deleted file mode 100644 index f175a6b9..00000000 --- a/.changeset/cap-commerce-app-packages.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -'@salesforce/b2c-cli': minor -'@salesforce/b2c-tooling-sdk': minor -'b2c-vs-extension': minor ---- - -Add `cap` command topic for Commerce App Package (CAP) management. - -New commands: -- `b2c cap validate` — validates CAP structure, manifest, and cartridge rules locally -- `b2c cap package` — packages a CAP directory into a distributable `.zip` -- `b2c cap install` — installs a CAP on an instance via WebDAV + `sfcc-install-commerce-app` job -- `b2c cap uninstall` — uninstalls a CAP via `sfcc-uninstall-commerce-app` job - -New SDK exports in `@salesforce/b2c-tooling-sdk/operations/cap`: `validateCap`, `commerceAppInstall`, `commerceAppUninstall`, `commerceAppPackage`. - -The VS Code extension gains CAP directory detection (badge decoration) and an "Install Commerce App (CAP)" context menu action. diff --git a/.changeset/cap-support-commands.md b/.changeset/cap-support-commands.md deleted file mode 100644 index 7a4cc41d..00000000 --- a/.changeset/cap-support-commands.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -'@salesforce/b2c-cli': minor -'@salesforce/b2c-tooling-sdk': minor -'@salesforce/b2c-dx-docs': patch ---- - -Add `cap list`, `cap tasks`, and `cap pull` commands for managing installed Commerce Apps - -- `cap list` exports and parses `commerce_feature_states` to show installed features with type, source, status, and version -- `cap tasks` displays configuration tasks for an installed app with clickable Business Manager links -- `cap pull` downloads and extracts installed app source packages for cartridge deployment or Storefront Next development -- Standardize all cap commands to use `--site-id` flag (with `--site` as alias) -- `cap uninstall` no longer requires `--domain` — looks it up automatically from the feature state -- `cap install` now keeps the archive on the instance by default (use `--clean-archive` to remove) diff --git a/.changeset/retrigger-changesets.md b/.changeset/retrigger-changesets.md deleted file mode 100644 index b35c7648..00000000 --- a/.changeset/retrigger-changesets.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@salesforce/b2c-dx-docs': patch ---- - -Improved release workflow reliability diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 51031101..760e226a 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,19 @@ # @salesforce/b2c-dx-docs +## 0.2.17 + +### Patch Changes + +- [#370](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/pull/370) [`ee735bb`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/ee735bb0acac89999114c80679b4766216bf463a) - Add `cap list`, `cap tasks`, and `cap pull` commands for managing installed Commerce Apps (Thanks [@clavery](https://github.com/clavery)!) + - `cap list` exports and parses `commerce_feature_states` to show installed features with type, source, status, and version + - `cap tasks` displays configuration tasks for an installed app with clickable Business Manager links + - `cap pull` downloads and extracts installed app source packages for cartridge deployment or Storefront Next development + - Standardize all cap commands to use `--site-id` flag (with `--site` as alias) + - `cap uninstall` no longer requires `--domain` — looks it up automatically from the feature state + - `cap install` now keeps the archive on the instance by default (use `--clean-archive` to remove) + +- [`db5648f`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/db5648ff2a119a3e3b0ad165905eb8cc322d964b) - Improved release workflow reliability (Thanks [@clavery](https://github.com/clavery)!) + ## 0.2.16 ### Patch Changes diff --git a/docs/package.json b/docs/package.json index a91262ca..9eb93bbf 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "@salesforce/b2c-dx-docs", - "version": "0.2.16", + "version": "0.2.17", "private": true, "description": "Documentation for B2C Developer Tooling", "scripts": { diff --git a/packages/b2c-cli/CHANGELOG.md b/packages/b2c-cli/CHANGELOG.md index e9b55a66..9d4b6774 100644 --- a/packages/b2c-cli/CHANGELOG.md +++ b/packages/b2c-cli/CHANGELOG.md @@ -1,5 +1,34 @@ # @salesforce/b2c-cli +## 1.6.0 + +### Minor Changes + +- [#370](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/pull/370) [`ee735bb`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/ee735bb0acac89999114c80679b4766216bf463a) - Add `cap` command topic for Commerce App Package (CAP) management. (Thanks [@clavery](https://github.com/clavery)!) + + New commands: + - `b2c cap validate` — validates CAP structure, manifest, and cartridge rules locally + - `b2c cap package` — packages a CAP directory into a distributable `.zip` + - `b2c cap install` — installs a CAP on an instance via WebDAV + `sfcc-install-commerce-app` job + - `b2c cap uninstall` — uninstalls a CAP via `sfcc-uninstall-commerce-app` job + + New SDK exports in `@salesforce/b2c-tooling-sdk/operations/cap`: `validateCap`, `commerceAppInstall`, `commerceAppUninstall`, `commerceAppPackage`. + + The VS Code extension gains CAP directory detection (badge decoration) and an "Install Commerce App (CAP)" context menu action. + +- [#370](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/pull/370) [`ee735bb`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/ee735bb0acac89999114c80679b4766216bf463a) - Add `cap list`, `cap tasks`, and `cap pull` commands for managing installed Commerce Apps (Thanks [@clavery](https://github.com/clavery)!) + - `cap list` exports and parses `commerce_feature_states` to show installed features with type, source, status, and version + - `cap tasks` displays configuration tasks for an installed app with clickable Business Manager links + - `cap pull` downloads and extracts installed app source packages for cartridge deployment or Storefront Next development + - Standardize all cap commands to use `--site-id` flag (with `--site` as alias) + - `cap uninstall` no longer requires `--domain` — looks it up automatically from the feature state + - `cap install` now keeps the archive on the instance by default (use `--clean-archive` to remove) + +### Patch Changes + +- Updated dependencies [[`ee735bb`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/ee735bb0acac89999114c80679b4766216bf463a), [`ee735bb`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/ee735bb0acac89999114c80679b4766216bf463a)]: + - @salesforce/b2c-tooling-sdk@1.5.0 + ## 1.5.0 ### Minor Changes diff --git a/packages/b2c-cli/package.json b/packages/b2c-cli/package.json index 7b307a95..93433808 100644 --- a/packages/b2c-cli/package.json +++ b/packages/b2c-cli/package.json @@ -1,7 +1,7 @@ { "name": "@salesforce/b2c-cli", "description": "A Salesforce B2C Commerce CLI", - "version": "1.5.0", + "version": "1.6.0", "author": "Charles Lavery", "bin": { "b2c": "./bin/run.js" diff --git a/packages/b2c-dx-mcp/CHANGELOG.md b/packages/b2c-dx-mcp/CHANGELOG.md index 07928fd7..6ffaff8e 100644 --- a/packages/b2c-dx-mcp/CHANGELOG.md +++ b/packages/b2c-dx-mcp/CHANGELOG.md @@ -1,5 +1,12 @@ # @salesforce/b2c-dx-mcp +## 1.0.10 + +### Patch Changes + +- Updated dependencies [[`ee735bb`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/ee735bb0acac89999114c80679b4766216bf463a), [`ee735bb`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/ee735bb0acac89999114c80679b4766216bf463a)]: + - @salesforce/b2c-tooling-sdk@1.5.0 + ## 1.0.9 ### Patch Changes diff --git a/packages/b2c-dx-mcp/package.json b/packages/b2c-dx-mcp/package.json index cb8e4fa2..15570e31 100644 --- a/packages/b2c-dx-mcp/package.json +++ b/packages/b2c-dx-mcp/package.json @@ -1,7 +1,7 @@ { "name": "@salesforce/b2c-dx-mcp", "description": "MCP server for B2C Commerce developer experience tools", - "version": "1.0.9", + "version": "1.0.10", "author": "Salesforce", "license": "Apache-2.0", "repository": "SalesforceCommerceCloud/b2c-developer-tooling", diff --git a/packages/b2c-tooling-sdk/CHANGELOG.md b/packages/b2c-tooling-sdk/CHANGELOG.md index 0b44146d..26b4dc49 100644 --- a/packages/b2c-tooling-sdk/CHANGELOG.md +++ b/packages/b2c-tooling-sdk/CHANGELOG.md @@ -1,5 +1,29 @@ # @salesforce/b2c-tooling-sdk +## 1.5.0 + +### Minor Changes + +- [#370](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/pull/370) [`ee735bb`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/ee735bb0acac89999114c80679b4766216bf463a) - Add `cap` command topic for Commerce App Package (CAP) management. (Thanks [@clavery](https://github.com/clavery)!) + + New commands: + - `b2c cap validate` — validates CAP structure, manifest, and cartridge rules locally + - `b2c cap package` — packages a CAP directory into a distributable `.zip` + - `b2c cap install` — installs a CAP on an instance via WebDAV + `sfcc-install-commerce-app` job + - `b2c cap uninstall` — uninstalls a CAP via `sfcc-uninstall-commerce-app` job + + New SDK exports in `@salesforce/b2c-tooling-sdk/operations/cap`: `validateCap`, `commerceAppInstall`, `commerceAppUninstall`, `commerceAppPackage`. + + The VS Code extension gains CAP directory detection (badge decoration) and an "Install Commerce App (CAP)" context menu action. + +- [#370](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/pull/370) [`ee735bb`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/ee735bb0acac89999114c80679b4766216bf463a) - Add `cap list`, `cap tasks`, and `cap pull` commands for managing installed Commerce Apps (Thanks [@clavery](https://github.com/clavery)!) + - `cap list` exports and parses `commerce_feature_states` to show installed features with type, source, status, and version + - `cap tasks` displays configuration tasks for an installed app with clickable Business Manager links + - `cap pull` downloads and extracts installed app source packages for cartridge deployment or Storefront Next development + - Standardize all cap commands to use `--site-id` flag (with `--site` as alias) + - `cap uninstall` no longer requires `--domain` — looks it up automatically from the feature state + - `cap install` now keeps the archive on the instance by default (use `--clean-archive` to remove) + ## 1.4.0 ### Minor Changes diff --git a/packages/b2c-tooling-sdk/package.json b/packages/b2c-tooling-sdk/package.json index d1f8a4c5..149cc46b 100644 --- a/packages/b2c-tooling-sdk/package.json +++ b/packages/b2c-tooling-sdk/package.json @@ -1,7 +1,7 @@ { "name": "@salesforce/b2c-tooling-sdk", "description": "Core tooling library for Salesforce B2C Commerce CLI", - "version": "1.4.0", + "version": "1.5.0", "author": "Charles Lavery", "license": "Apache-2.0", "repository": "SalesforceCommerceCloud/b2c-developer-tooling", diff --git a/packages/b2c-vs-extension/CHANGELOG.md b/packages/b2c-vs-extension/CHANGELOG.md index 475521ca..935741aa 100644 --- a/packages/b2c-vs-extension/CHANGELOG.md +++ b/packages/b2c-vs-extension/CHANGELOG.md @@ -1,5 +1,26 @@ # Change Log +## 0.4.0 + +### Minor Changes + +- [#370](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/pull/370) [`ee735bb`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/ee735bb0acac89999114c80679b4766216bf463a) - Add `cap` command topic for Commerce App Package (CAP) management. (Thanks [@clavery](https://github.com/clavery)!) + + New commands: + - `b2c cap validate` — validates CAP structure, manifest, and cartridge rules locally + - `b2c cap package` — packages a CAP directory into a distributable `.zip` + - `b2c cap install` — installs a CAP on an instance via WebDAV + `sfcc-install-commerce-app` job + - `b2c cap uninstall` — uninstalls a CAP via `sfcc-uninstall-commerce-app` job + + New SDK exports in `@salesforce/b2c-tooling-sdk/operations/cap`: `validateCap`, `commerceAppInstall`, `commerceAppUninstall`, `commerceAppPackage`. + + The VS Code extension gains CAP directory detection (badge decoration) and an "Install Commerce App (CAP)" context menu action. + +### Patch Changes + +- Updated dependencies [[`ee735bb`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/ee735bb0acac89999114c80679b4766216bf463a), [`ee735bb`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/ee735bb0acac89999114c80679b4766216bf463a)]: + - @salesforce/b2c-tooling-sdk@1.5.0 + ## 0.3.4 ### Patch Changes diff --git a/packages/b2c-vs-extension/package.json b/packages/b2c-vs-extension/package.json index c9132372..f2a472da 100644 --- a/packages/b2c-vs-extension/package.json +++ b/packages/b2c-vs-extension/package.json @@ -2,7 +2,7 @@ "name": "b2c-vs-extension", "displayName": "B2C DX VSCE", "description": "VS Code extension for B2C Commerce developer experience (Page Designer assistant, B2C CLI integration)", - "version": "0.3.4", + "version": "0.4.0", "publisher": "Salesforce", "license": "Apache-2.0", "repository": "SalesforceCommerceCloud/b2c-developer-tooling",