From a1febac023e1797c56808c707ba7f8e45d90f0f0 Mon Sep 17 00:00:00 2001 From: Kara Daviduik Date: Fri, 30 Jan 2026 12:17:52 -0500 Subject: [PATCH] Temporarily delete skeleton changesets from main for release The mock shop (which is used by default when scaffolding a new Hydrogen project) has not yet been updated to 2025-10. As a result, there are errors when trying to add any item to cart because of the API changes in Hydrogen in this version. We are going to (separately) bump the mock shop to support 2025-10+, but in the meantime we want to unblock the Hydrogen 2025.10 release and come back to this as a follow-up. So we are deleting all skeleton & related changesets from main so that a new version of those won't be released and scaffolding a new Hydrogen project + using the mock shop will continue to work. Once we've bumped mock shop to support 2025-10+ of SF API, we will add back in these changesets and release a new version of skeleton + related packages. --- .changeset/api-version-2025-10.md | 2 -- .changeset/bun-lock-support.md | 5 ----- .changeset/gift-card-add-mutation.md | 2 -- .changeset/nested-cart-lines.md | 32 ---------------------------- 4 files changed, 41 deletions(-) delete mode 100644 .changeset/bun-lock-support.md delete mode 100644 .changeset/nested-cart-lines.md 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 - -```