Skip to content

Commit 44229c2

Browse files
chore: version packages (#371)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent db5648f commit 44229c2

14 files changed

Lines changed: 101 additions & 42 deletions

File tree

.changeset/RELEASE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Tue Apr 21 02:13:31 UTC 2026
1+
Wed Apr 22 00:26:31 UTC 2026

.changeset/cap-commerce-app-packages.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

.changeset/cap-support-commands.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

.changeset/retrigger-changesets.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

docs/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @salesforce/b2c-dx-docs
22

3+
## 0.2.17
4+
5+
### Patch Changes
6+
7+
- [#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)!)
8+
- `cap list` exports and parses `commerce_feature_states` to show installed features with type, source, status, and version
9+
- `cap tasks` displays configuration tasks for an installed app with clickable Business Manager links
10+
- `cap pull` downloads and extracts installed app source packages for cartridge deployment or Storefront Next development
11+
- Standardize all cap commands to use `--site-id` flag (with `--site` as alias)
12+
- `cap uninstall` no longer requires `--domain` — looks it up automatically from the feature state
13+
- `cap install` now keeps the archive on the instance by default (use `--clean-archive` to remove)
14+
15+
- [`db5648f`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/db5648ff2a119a3e3b0ad165905eb8cc322d964b) - Improved release workflow reliability (Thanks [@clavery](https://github.com/clavery)!)
16+
317
## 0.2.16
418

519
### Patch Changes

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@salesforce/b2c-dx-docs",
3-
"version": "0.2.16",
3+
"version": "0.2.17",
44
"private": true,
55
"description": "Documentation for B2C Developer Tooling",
66
"scripts": {

packages/b2c-cli/CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# @salesforce/b2c-cli
22

3+
## 1.6.0
4+
5+
### Minor Changes
6+
7+
- [#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)!)
8+
9+
New commands:
10+
- `b2c cap validate` — validates CAP structure, manifest, and cartridge rules locally
11+
- `b2c cap package` — packages a CAP directory into a distributable `.zip`
12+
- `b2c cap install` — installs a CAP on an instance via WebDAV + `sfcc-install-commerce-app` job
13+
- `b2c cap uninstall` — uninstalls a CAP via `sfcc-uninstall-commerce-app` job
14+
15+
New SDK exports in `@salesforce/b2c-tooling-sdk/operations/cap`: `validateCap`, `commerceAppInstall`, `commerceAppUninstall`, `commerceAppPackage`.
16+
17+
The VS Code extension gains CAP directory detection (badge decoration) and an "Install Commerce App (CAP)" context menu action.
18+
19+
- [#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)!)
20+
- `cap list` exports and parses `commerce_feature_states` to show installed features with type, source, status, and version
21+
- `cap tasks` displays configuration tasks for an installed app with clickable Business Manager links
22+
- `cap pull` downloads and extracts installed app source packages for cartridge deployment or Storefront Next development
23+
- Standardize all cap commands to use `--site-id` flag (with `--site` as alias)
24+
- `cap uninstall` no longer requires `--domain` — looks it up automatically from the feature state
25+
- `cap install` now keeps the archive on the instance by default (use `--clean-archive` to remove)
26+
27+
### Patch Changes
28+
29+
- Updated dependencies [[`ee735bb`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/ee735bb0acac89999114c80679b4766216bf463a), [`ee735bb`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/ee735bb0acac89999114c80679b4766216bf463a)]:
30+
- @salesforce/b2c-tooling-sdk@1.5.0
31+
332
## 1.5.0
433

534
### Minor Changes

packages/b2c-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@salesforce/b2c-cli",
33
"description": "A Salesforce B2C Commerce CLI",
4-
"version": "1.5.0",
4+
"version": "1.6.0",
55
"author": "Charles Lavery",
66
"bin": {
77
"b2c": "./bin/run.js"

packages/b2c-dx-mcp/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @salesforce/b2c-dx-mcp
22

3+
## 1.0.10
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`ee735bb`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/ee735bb0acac89999114c80679b4766216bf463a), [`ee735bb`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/ee735bb0acac89999114c80679b4766216bf463a)]:
8+
- @salesforce/b2c-tooling-sdk@1.5.0
9+
310
## 1.0.9
411

512
### Patch Changes

packages/b2c-dx-mcp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@salesforce/b2c-dx-mcp",
33
"description": "MCP server for B2C Commerce developer experience tools",
4-
"version": "1.0.9",
4+
"version": "1.0.10",
55
"author": "Salesforce",
66
"license": "Apache-2.0",
77
"repository": "SalesforceCommerceCloud/b2c-developer-tooling",

0 commit comments

Comments
 (0)