Skip to content

Commit 7e33458

Browse files
chore: version packages
1 parent c35f3a7 commit 7e33458

10 files changed

Lines changed: 45 additions & 30 deletions

File tree

.changeset/add-setup-config-command.md

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

.changeset/fix-error-output.md

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

.changeset/setup-skills-command.md

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

.changeset/sour-months-post.md

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

packages/b2c-cli/CHANGELOG.md

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

3+
## 0.2.0
4+
5+
### Minor Changes
6+
7+
- [#62](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/pull/62) [`269de20`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/269de20e7f90fc684818bab805d612f7a77f5838) Thanks [@clavery](https://github.com/clavery)! - Add `setup config` command to display resolved configuration with source tracking.
8+
9+
Shows all configuration values organized by category (Instance, Authentication, SCAPI, MRT) and indicates which source file or environment variable provided each value. Sensitive values are masked by default; use `--unmask` to reveal them.
10+
11+
- [`e0d652a`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/e0d652ae43ba6e348e48702d77643523dde23b26) Thanks [@clavery](https://github.com/clavery)! - Add `b2c setup skills` command for installing agent skills to AI-powered IDEs (Claude Code, Cursor, Windsurf, VS Code/Copilot, Codex, OpenCode)
12+
13+
- [`11a6887`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/11a68876b5f6d1d8274b118a1b28b66ba8bcf1a2) Thanks [@clavery](https://github.com/clavery)! - adds package.json config source for project level shared config
14+
15+
### Patch Changes
16+
17+
- [#64](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/pull/64) [`c35f3a7`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/c35f3a78c4087a8a133fe2d013c7c61b656a4a34) Thanks [@clavery](https://github.com/clavery)! - Fix HTML response bodies appearing in ERROR log lines. When API requests fail with non-JSON responses (like HTML error pages), error messages now show the HTTP status code (e.g., "HTTP 521 Web Server Is Down") instead of serializing the entire response body.
18+
19+
Added `getApiErrorMessage(error, response)` utility that extracts clean error messages from ODS, OCAPI, and SCAPI error patterns with HTTP status fallback.
20+
21+
- Updated dependencies [[`c35f3a7`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/c35f3a78c4087a8a133fe2d013c7c61b656a4a34), [`e0d652a`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/e0d652ae43ba6e348e48702d77643523dde23b26), [`11a6887`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/11a68876b5f6d1d8274b118a1b28b66ba8bcf1a2)]:
22+
- @salesforce/b2c-tooling-sdk@0.2.0
23+
324
## 0.1.0
425

526
### 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 Commerce Cloud B2C CLI",
4-
"version": "0.1.0",
4+
"version": "0.2.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+
## 0.2.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`c35f3a7`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/c35f3a78c4087a8a133fe2d013c7c61b656a4a34), [`e0d652a`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/e0d652ae43ba6e348e48702d77643523dde23b26), [`11a6887`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/11a68876b5f6d1d8274b118a1b28b66ba8bcf1a2)]:
8+
- @salesforce/b2c-tooling-sdk@0.2.0
9+
310
## 0.1.0
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,6 +1,6 @@
11
{
22
"name": "@salesforce/b2c-dx-mcp",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "MCP server for B2C Commerce Cloud developer experience tools",
55
"author": "Salesforce",
66
"license": "MIT",

packages/b2c-tooling-sdk/CHANGELOG.md

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

3+
## 0.2.0
4+
5+
### Minor Changes
6+
7+
- [`e0d652a`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/e0d652ae43ba6e348e48702d77643523dde23b26) Thanks [@clavery](https://github.com/clavery)! - Add `b2c setup skills` command for installing agent skills to AI-powered IDEs (Claude Code, Cursor, Windsurf, VS Code/Copilot, Codex, OpenCode)
8+
9+
- [`11a6887`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/11a68876b5f6d1d8274b118a1b28b66ba8bcf1a2) Thanks [@clavery](https://github.com/clavery)! - adds package.json config source for project level shared config
10+
11+
### Patch Changes
12+
13+
- [#64](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/pull/64) [`c35f3a7`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/c35f3a78c4087a8a133fe2d013c7c61b656a4a34) Thanks [@clavery](https://github.com/clavery)! - Fix HTML response bodies appearing in ERROR log lines. When API requests fail with non-JSON responses (like HTML error pages), error messages now show the HTTP status code (e.g., "HTTP 521 Web Server Is Down") instead of serializing the entire response body.
14+
15+
Added `getApiErrorMessage(error, response)` utility that extracts clean error messages from ODS, OCAPI, and SCAPI error patterns with HTTP status fallback.
16+
317
## 0.1.0
418

519
### Minor Changes

packages/b2c-tooling-sdk/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-tooling-sdk",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "Core tooling library for Salesforce Commerce Cloud B2C CLI",
55
"author": "Charles Lavery",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)