Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .changeset/cart-clear-bulk.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cart-core-initial.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cart-next-initial.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cart-react-initial.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cart-shopify-initial.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-cart-ready-stale-ref.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-typed-actions-context-error.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/jsdoc-cart-core.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/jsdoc-cart-next-followup.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/jsdoc-cart-next.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/jsdoc-cart-react-followup.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/jsdoc-cart-react.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/jsdoc-cart-shopify-followup.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/jsdoc-cart-shopify.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/jsdoc-tagtree-core.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/jsdoc-tagtree-next.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/jsdoc-tagtree-payload.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/jsdoc-tagtree-shopify-fix.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/jsdoc-tagtree-shopify.md

This file was deleted.

13 changes: 13 additions & 0 deletions packages/cart/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# @nordcom/cart-core

## 0.2.0

### Minor Changes

- [#2018](https://github.com/filiphsps/commerce/pull/2018) [`f4500a5`](https://github.com/filiphsps/commerce/commit/f4500a52fffdd4f48e8a2f1434b1c4d9edd22067) Thanks [@filiphsps](https://github.com/filiphsps)! - Add a `clear` cart mutation and `clear()` action so emptying the cart issues one bulk line removal instead of one `removeLine` per line.

- [#1945](https://github.com/filiphsps/commerce/pull/1945) [`d5133c3`](https://github.com/filiphsps/commerce/commit/d5133c3f3e8c874e3e56647f5cf8dcfbb1cfb41b) Thanks [@filiphsps](https://github.com/filiphsps)! - Initial publish: framework-agnostic cart kernel, types, capabilities, adapter contract, middleware (logger, tracing, idempotency, retry, analytics), event bus, money helpers, contract tests, and mock adapter.

### Patch Changes

- [#1960](https://github.com/filiphsps/commerce/pull/1960) [`72bdabe`](https://github.com/filiphsps/commerce/commit/72bdabeed3b03d1f0a35a63257550dc97dd9ce0f) Thanks [@filiphsps](https://github.com/filiphsps)! - Backfill JSDoc on public/internal symbols.
2 changes: 1 addition & 1 deletion packages/cart/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@nordcom/cart-core",
"version": "0.1.0",
"version": "0.2.0",
"private": false,
"sideEffects": false,
"type": "module",
Expand Down
18 changes: 18 additions & 0 deletions packages/cart/next/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# @nordcom/cart-next

## 0.2.0

### Minor Changes

- [#1945](https://github.com/filiphsps/commerce/pull/1945) [`d5133c3`](https://github.com/filiphsps/commerce/commit/d5133c3f3e8c874e3e56647f5cf8dcfbb1cfb41b) Thanks [@filiphsps](https://github.com/filiphsps)! - Initial publish: Next.js 16 HttpOnly cookie storage, `react.cache()` reader/ensurer (no `'use cache'`), typed + FormData server-action factories with injectable message localizer + auth bridge, and `nextEventBridge` for kernel-side fire-and-forget effects.

### Patch Changes

- [`518289c`](https://github.com/filiphsps/commerce/commit/518289c626d05ff6ae3414aac38f112e81205290) Thanks [@filiphsps](https://github.com/filiphsps)! - Fix uncaught `CartProviderError` escaping the Server Action boundary. `resolveContext()` was called before the try/catch in `run()`, so any context-resolution failure (missing request headers, DB error) bubbled as a raw unhandled exception instead of returning `{ ok: false, reason: 'provider-error' }`. Moved `resolveContext` inside the try block so all failure modes are handled uniformly.

- [#1992](https://github.com/filiphsps/commerce/pull/1992) [`4ca9f4d`](https://github.com/filiphsps/commerce/commit/4ca9f4d80e582ed1e5b2373490016e7149c33cea) Thanks [@filiphsps](https://github.com/filiphsps)! - Add missing @example blocks on Tier-1 functions per review.

- [#1990](https://github.com/filiphsps/commerce/pull/1990) [`ffdaa4d`](https://github.com/filiphsps/commerce/commit/ffdaa4d814f46894cd9be6b5922b34ebef53df74) Thanks [@filiphsps](https://github.com/filiphsps)! - Backfill JSDoc on public/internal symbols.

- Updated dependencies [[`f4500a5`](https://github.com/filiphsps/commerce/commit/f4500a52fffdd4f48e8a2f1434b1c4d9edd22067), [`d5133c3`](https://github.com/filiphsps/commerce/commit/d5133c3f3e8c874e3e56647f5cf8dcfbb1cfb41b), [`72bdabe`](https://github.com/filiphsps/commerce/commit/72bdabeed3b03d1f0a35a63257550dc97dd9ce0f)]:
- @nordcom/cart-core@0.2.0
2 changes: 1 addition & 1 deletion packages/cart/next/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@nordcom/cart-next",
"version": "0.1.0",
"version": "0.2.0",
"private": false,
"sideEffects": false,
"type": "module",
Expand Down
20 changes: 20 additions & 0 deletions packages/cart/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# @nordcom/cart-react

## 0.2.0

### Minor Changes

- [#2018](https://github.com/filiphsps/commerce/pull/2018) [`f4500a5`](https://github.com/filiphsps/commerce/commit/f4500a52fffdd4f48e8a2f1434b1c4d9edd22067) Thanks [@filiphsps](https://github.com/filiphsps)! - Add a `clear` cart mutation and `clear()` action so emptying the cart issues one bulk line removal instead of one `removeLine` per line.

- [#1945](https://github.com/filiphsps/commerce/pull/1945) [`d5133c3`](https://github.com/filiphsps/commerce/commit/d5133c3f3e8c874e3e56647f5cf8dcfbb1cfb41b) Thanks [@filiphsps](https://github.com/filiphsps)! - Initial publish: React 19 provider with slice contexts, predictive mutation queue with cascade-cancel and cross-tab sync, capability-typed actions, line + cart predictors, `<CartForm>` zero-JS primitive, and `./devtools` panel.

### Patch Changes

- [`f690eb9`](https://github.com/filiphsps/commerce/commit/f690eb92f6363364e000ab8a90810d4d1780fd71) Thanks [@filiphsps](https://github.com/filiphsps)! - Fix `cartReady` permanently stuck at `false`. `seededRef` was read inside a `useMemo` factory but not included in the dependency array — after `setInitial` dispatch `state.pending` stayed the same array reference, so the memo never recomputed and `cartReady` never became `true`. Replaced the ref with `useState` so React tracks the transition and recomputes the status slice correctly on mount.

- [#1969](https://github.com/filiphsps/commerce/pull/1969) [`47ae0b0`](https://github.com/filiphsps/commerce/commit/47ae0b06b60ac3367de967f9da2aef2bf11ef74b) Thanks [@filiphsps](https://github.com/filiphsps)! - Address jsdoc review followups: missing @example on Props types, capability-mixin example typings, American English.

- [#1967](https://github.com/filiphsps/commerce/pull/1967) [`f0047c2`](https://github.com/filiphsps/commerce/commit/f0047c2f9c1937bb83fe54ab5ac9eb9dc6357a84) Thanks [@filiphsps](https://github.com/filiphsps)! - Backfill JSDoc on public/internal symbols.

- Updated dependencies [[`f4500a5`](https://github.com/filiphsps/commerce/commit/f4500a52fffdd4f48e8a2f1434b1c4d9edd22067), [`d5133c3`](https://github.com/filiphsps/commerce/commit/d5133c3f3e8c874e3e56647f5cf8dcfbb1cfb41b), [`72bdabe`](https://github.com/filiphsps/commerce/commit/72bdabeed3b03d1f0a35a63257550dc97dd9ce0f)]:
- @nordcom/cart-core@0.2.0
2 changes: 1 addition & 1 deletion packages/cart/react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@nordcom/cart-react",
"version": "0.1.0",
"version": "0.2.0",
"private": false,
"sideEffects": false,
"type": "module",
Expand Down
16 changes: 16 additions & 0 deletions packages/cart/shopify/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# @nordcom/cart-shopify

## 0.2.0

### Minor Changes

- [#1945](https://github.com/filiphsps/commerce/pull/1945) [`d5133c3`](https://github.com/filiphsps/commerce/commit/d5133c3f3e8c874e3e56647f5cf8dcfbb1cfb41b) Thanks [@filiphsps](https://github.com/filiphsps)! - Initial publish: Shopify cart adapter using an injected `ShopifyTransport`, gql.tada mutations + normalizer, all-capabilities-on by default, `updateBuyerCountry` custom mutation, and `mockShopifyTransport` testing utility.

### Patch Changes

- [#1970](https://github.com/filiphsps/commerce/pull/1970) [`16d77ff`](https://github.com/filiphsps/commerce/commit/16d77ff17570fa8ba5b2de5d619879f23568d840) Thanks [@filiphsps](https://github.com/filiphsps)! - Add missing @example to mockShopifyTransport per Tier-1 spec.

- [#1965](https://github.com/filiphsps/commerce/pull/1965) [`3a5af48`](https://github.com/filiphsps/commerce/commit/3a5af48c73e3887bfcbc65d0143acae333c1ab85) Thanks [@filiphsps](https://github.com/filiphsps)! - Backfill JSDoc on public/internal symbols.

- Updated dependencies [[`f4500a5`](https://github.com/filiphsps/commerce/commit/f4500a52fffdd4f48e8a2f1434b1c4d9edd22067), [`d5133c3`](https://github.com/filiphsps/commerce/commit/d5133c3f3e8c874e3e56647f5cf8dcfbb1cfb41b), [`72bdabe`](https://github.com/filiphsps/commerce/commit/72bdabeed3b03d1f0a35a63257550dc97dd9ce0f)]:
- @nordcom/cart-core@0.2.0
2 changes: 1 addition & 1 deletion packages/cart/shopify/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@nordcom/cart-shopify",
"version": "0.1.0",
"version": "0.2.0",
"private": false,
"sideEffects": false,
"type": "module",
Expand Down
6 changes: 6 additions & 0 deletions packages/tagtree/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @tagtree/core

## 0.0.3

### Patch Changes

- [#1958](https://github.com/filiphsps/commerce/pull/1958) [`cab9aa7`](https://github.com/filiphsps/commerce/commit/cab9aa753d0323a54cb183d783fba54c5c77a4e4) Thanks [@filiphsps](https://github.com/filiphsps)! - Backfill JSDoc on public/internal symbols.

## 0.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/tagtree/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@tagtree/core",
"version": "0.0.2",
"version": "0.0.3",
"private": false,
"sideEffects": false,
"type": "module",
Expand Down
9 changes: 9 additions & 0 deletions packages/tagtree/next/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @tagtree/next

## 0.0.3

### Patch Changes

- [#1956](https://github.com/filiphsps/commerce/pull/1956) [`a815f10`](https://github.com/filiphsps/commerce/commit/a815f102d161bda3134b1dd8435ea2d322c0c6d5) Thanks [@filiphsps](https://github.com/filiphsps)! - Backfill JSDoc on public/internal symbols.

- Updated dependencies [[`cab9aa7`](https://github.com/filiphsps/commerce/commit/cab9aa753d0323a54cb183d783fba54c5c77a4e4)]:
- @tagtree/core@0.0.3

## 0.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/tagtree/next/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@tagtree/next",
"version": "0.0.2",
"version": "0.0.3",
"private": false,
"sideEffects": false,
"type": "module",
Expand Down
9 changes: 9 additions & 0 deletions packages/tagtree/payload/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @tagtree/payload

## 0.0.3

### Patch Changes

- [#1954](https://github.com/filiphsps/commerce/pull/1954) [`da6ff4d`](https://github.com/filiphsps/commerce/commit/da6ff4d899d98923737f958df35b88ee73570aa0) Thanks [@filiphsps](https://github.com/filiphsps)! - Backfill JSDoc on public/internal symbols.

- Updated dependencies [[`cab9aa7`](https://github.com/filiphsps/commerce/commit/cab9aa753d0323a54cb183d783fba54c5c77a4e4)]:
- @tagtree/core@0.0.3

## 0.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/tagtree/payload/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@tagtree/payload",
"version": "0.0.2",
"version": "0.0.3",
"private": false,
"sideEffects": false,
"type": "module",
Expand Down
11 changes: 11 additions & 0 deletions packages/tagtree/shopify/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @tagtree/shopify

## 0.0.3

### Patch Changes

- [#1959](https://github.com/filiphsps/commerce/pull/1959) [`ba1011b`](https://github.com/filiphsps/commerce/commit/ba1011b7998b0664b85f58a272d5726b859833bf) Thanks [@filiphsps](https://github.com/filiphsps)! - Address jsdoc review followups on parseShopifyWebhook.

- [#1955](https://github.com/filiphsps/commerce/pull/1955) [`5f183c9`](https://github.com/filiphsps/commerce/commit/5f183c9d91030c8590849d9efcf85154bda426c6) Thanks [@filiphsps](https://github.com/filiphsps)! - Backfill JSDoc on public/internal symbols.

- Updated dependencies [[`cab9aa7`](https://github.com/filiphsps/commerce/commit/cab9aa753d0323a54cb183d783fba54c5c77a4e4)]:
- @tagtree/core@0.0.3

## 0.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/tagtree/shopify/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@tagtree/shopify",
"version": "0.0.2",
"version": "0.0.3",
"private": false,
"sideEffects": false,
"type": "module",
Expand Down