diff --git a/.changeset/api-version-2025-10.md b/.changeset/api-version-2025-10.md index e993d85b1f..e5acdf3731 100644 --- a/.changeset/api-version-2025-10.md +++ b/.changeset/api-version-2025-10.md @@ -1,8 +1,6 @@ --- '@shopify/hydrogen': major '@shopify/hydrogen-react': major -'@shopify/cli-hydrogen': patch -'skeleton': major --- Update Storefront API and Customer Account API to version 2025-10 diff --git a/.changeset/bun-lock-support.md b/.changeset/bun-lock-support.md deleted file mode 100644 index af66609c04..0000000000 --- a/.changeset/bun-lock-support.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@shopify/cli-hydrogen': patch ---- - -Add support for Bun's text-based lockfile (`bun.lock`) introduced in Bun 1.2, and npm's shrinkwrap lockfile (`npm-shrinkwrap.json`), as alternatives to their respective primary lockfiles (`bun.lockb` and `package-lock.json`). diff --git a/.changeset/gift-card-add-mutation.md b/.changeset/gift-card-add-mutation.md index 9dc0f8fff1..1ba64a5628 100644 --- a/.changeset/gift-card-add-mutation.md +++ b/.changeset/gift-card-add-mutation.md @@ -1,7 +1,5 @@ --- '@shopify/hydrogen': minor -'@shopify/cli-hydrogen': patch -'@shopify/create-hydrogen': patch --- Add `cartGiftCardCodesAdd` mutation diff --git a/.changeset/nested-cart-lines.md b/.changeset/nested-cart-lines.md deleted file mode 100644 index 7ba52eba43..0000000000 --- a/.changeset/nested-cart-lines.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -'@shopify/cli-hydrogen': patch -'skeleton': patch ---- - -Add support for nested cart line items (warranties, gift wrapping, etc.) - -Storefront API 2025-10 introduces `parentRelationship` on cart line items, enabling parent-child relationships for add-ons. This update displays nested line items in the cart. - -### Changes - -- Updates GraphQL fragments to include `parentRelationship` and `lineComponents` fields -- Updates `CartMain` and `CartLineItem` to render child line items with visual hierarchy - -### Note - -This update focuses on **displaying** nested line items. To add both a product and its child (e.g., warranty) in a single action: - -```tsx - - Add to Cart with Warranty - -```