Skip to content

Commit fe25ae6

Browse files
chore: version packages (#267)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 73ea3f2 commit fe25ae6

12 files changed

Lines changed: 45 additions & 28 deletions

File tree

.changeset/async-resolve-config.md

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

.changeset/cartridges-config-option.md

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

.changeset/fix-247-scaffold-hooks.md

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

.changeset/replace-telemetry-dependency.md

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

packages/b2c-cli/CHANGELOG.md

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

3+
## 0.7.4
4+
5+
### Patch Changes
6+
7+
- [`4cf7249`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/4cf72497f5e01d627de7aae80290d072f4c914f6) - Add `cartridges` config option to specify which cartridges to deploy/watch. Supports comma or colon-separated strings, or arrays in dw.json. Also accepts `cartridgesPath` as an alias. The `-c` flag still takes precedence when provided. (Thanks [@clavery](https://github.com/clavery)!)
8+
9+
- [#264](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/pull/264) [`9996eba`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/9996eba2a8fe53a27bf52fb208eb722d618cd282) - Fix multiple issues with the hook scaffold (#247): (Thanks [@clavery](https://github.com/clavery)!)
10+
11+
- Updated dependencies [[`16bd9d6`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/16bd9d6a1c658d6ba3de04fa3acf89295e1e5e06), [`4cf7249`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/4cf72497f5e01d627de7aae80290d072f4c914f6), [`9996eba`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/9996eba2a8fe53a27bf52fb208eb722d618cd282), [`d50bf6b`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/d50bf6b91dcd40314f10c8c97a28805039161213)]:
12+
- @salesforce/b2c-tooling-sdk@0.9.0
13+
314
## 0.7.3
415

516
### Patch 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": "0.7.3",
4+
"version": "0.7.4",
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.4.14
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`16bd9d6`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/16bd9d6a1c658d6ba3de04fa3acf89295e1e5e06), [`4cf7249`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/4cf72497f5e01d627de7aae80290d072f4c914f6), [`9996eba`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/9996eba2a8fe53a27bf52fb208eb722d618cd282), [`d50bf6b`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/d50bf6b91dcd40314f10c8c97a28805039161213)]:
8+
- @salesforce/b2c-tooling-sdk@0.9.0
9+
310
## 0.4.13
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": "0.4.13",
4+
"version": "0.4.14",
55
"author": "Salesforce",
66
"license": "Apache-2.0",
77
"repository": "SalesforceCommerceCloud/b2c-developer-tooling",

packages/b2c-tooling-sdk/CHANGELOG.md

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

3+
## 0.9.0
4+
5+
### Minor Changes
6+
7+
- [#263](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/pull/263) [`16bd9d6`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/16bd9d6a1c658d6ba3de04fa3acf89295e1e5e06) - `resolveConfig()` and the `ConfigSource` interface are now async. This enables config sources that perform async I/O such as keychain lookups, credential vaults, or network-based config stores. (Thanks [@clavery](https://github.com/clavery)!)
8+
9+
**Breaking:** `resolveConfig()` now returns `Promise<ResolvedB2CConfig>` — callers must `await` the result. The `ConfigSource.load()` method return type is now `MaybePromise<ConfigLoadResult | undefined>`, so existing sync source implementations continue to work without changes.
10+
11+
### Patch Changes
12+
13+
- [`4cf7249`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/4cf72497f5e01d627de7aae80290d072f4c914f6) - Add `cartridges` config option to specify which cartridges to deploy/watch. Supports comma or colon-separated strings, or arrays in dw.json. Also accepts `cartridgesPath` as an alias. The `-c` flag still takes precedence when provided. (Thanks [@clavery](https://github.com/clavery)!)
14+
15+
- [#264](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/pull/264) [`9996eba`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/9996eba2a8fe53a27bf52fb208eb722d618cd282) - Fix multiple issues with the hook scaffold (#247): (Thanks [@clavery](https://github.com/clavery)!)
16+
17+
- [#262](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/pull/262) [`d50bf6b`](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/commit/d50bf6b91dcd40314f10c8c97a28805039161213) - Replace @salesforce/telemetry with direct applicationinsights dependency to eliminate the punycode deprecation warning on Node 21+ (Thanks [@clavery](https://github.com/clavery)!)
18+
319
## 0.8.3
420

521
### Patch Changes

packages/b2c-tooling-sdk/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-tooling-sdk",
33
"description": "Core tooling library for Salesforce B2C Commerce CLI",
4-
"version": "0.8.3",
4+
"version": "0.9.0",
55
"author": "Charles Lavery",
66
"license": "Apache-2.0",
77
"repository": "SalesforceCommerceCloud/b2c-developer-tooling",

0 commit comments

Comments
 (0)