From c406bbd843af025c8315faf0831682b88dcfa6b3 Mon Sep 17 00:00:00 2001 From: Giovanni-Schroevers Date: Wed, 14 Jan 2026 14:22:20 +0100 Subject: [PATCH 001/115] fix: use immediate input value for Enter navigation --- .changeset/calm-hotels-fly.md | 7 +++++++ .../components/SearchOverlayProvider.tsx | 8 +++++--- 2 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 .changeset/calm-hotels-fly.md diff --git a/.changeset/calm-hotels-fly.md b/.changeset/calm-hotels-fly.md new file mode 100644 index 00000000000..414d2bcd13a --- /dev/null +++ b/.changeset/calm-hotels-fly.md @@ -0,0 +1,7 @@ +--- +'@graphcommerce/magento-search-overlay': patch +--- + +Use immediate input value for Enter navigation. + +Modified SearchOverlayProvider to pull the search query directly from the event target during the Enter key event. This prevents the "partial query" bug caused by navigating with the lagging debounced state. diff --git a/packages/magento-search-overlay/components/SearchOverlayProvider.tsx b/packages/magento-search-overlay/components/SearchOverlayProvider.tsx index 58ef52b5146..e2f92f5cd2c 100644 --- a/packages/magento-search-overlay/components/SearchOverlayProvider.tsx +++ b/packages/magento-search-overlay/components/SearchOverlayProvider.tsx @@ -123,9 +123,11 @@ export function SearchOverlayProvider(props: SearchOverlayProviderProps) { const element = items.current[selectedIndex]?.current element?.click() - if (!element && params.search) { + const targetValue = (event.target as HTMLInputElement).value + + if (!element && targetValue) { // eslint-disable-next-line @typescript-eslint/no-floating-promises - router.push(`/search/${encodeURIComponent(params.search)}`) + router.push(`/search/${encodeURIComponent(targetValue)}`) } } else { setSelectedIndex(-1) @@ -140,7 +142,7 @@ export function SearchOverlayProvider(props: SearchOverlayProviderProps) { } }, }), - [params, router, selectedIndex], + [router, selectedIndex], ) return ( From 913f207d15418407fede4e70c68ab31a1b9f4239 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 20 Jan 2026 08:28:46 +0000 Subject: [PATCH 002/115] chore(release): update prerelease versions --- .changeset/pre.json | 93 ++++++++++++++ docs/CHANGELOG.md | 2 + docs/package.json | 4 +- examples/magento-graphcms/CHANGELOG.md | 2 + examples/magento-graphcms/package.json | 114 +++++++++--------- examples/magento-open-source/CHANGELOG.md | 2 + examples/magento-open-source/package.json | 106 ++++++++-------- packages/address-fields-nl/CHANGELOG.md | 2 + packages/address-fields-nl/package.json | 18 +-- packages/algolia-categories/CHANGELOG.md | 2 + packages/algolia-categories/package.json | 20 +-- packages/algolia-insights/CHANGELOG.md | 2 + packages/algolia-insights/package.json | 20 +-- packages/algolia-personalization/CHANGELOG.md | 2 + packages/algolia-personalization/package.json | 20 +-- packages/algolia-products/CHANGELOG.md | 2 + packages/algolia-products/package.json | 18 +-- packages/algolia-recommend/CHANGELOG.md | 2 + packages/algolia-recommend/package.json | 12 +- packages/algolia-search/CHANGELOG.md | 2 + packages/algolia-search/package.json | 24 ++-- packages/cli/CHANGELOG.md | 2 + packages/cli/package.json | 14 +-- .../demo-magento-graphcommerce/CHANGELOG.md | 2 + .../demo-magento-graphcommerce/package.json | 18 +-- packages/ecommerce-ui/CHANGELOG.md | 2 + packages/ecommerce-ui/package.json | 14 +-- packages/framer-next-pages/CHANGELOG.md | 2 + .../framer-next-pages/example/CHANGELOG.md | 2 + .../framer-next-pages/example/package.json | 18 +-- packages/framer-next-pages/package.json | 10 +- packages/framer-scroller/CHANGELOG.md | 2 + packages/framer-scroller/example/CHANGELOG.md | 2 + packages/framer-scroller/example/package.json | 22 ++-- packages/framer-scroller/package.json | 12 +- packages/framer-utils/CHANGELOG.md | 2 + packages/framer-utils/package.json | 8 +- packages/google-datalayer/CHANGELOG.md | 2 + packages/google-datalayer/package.json | 20 +-- packages/google-playstore/CHANGELOG.md | 2 + packages/google-playstore/package.json | 10 +- packages/googleanalytics/CHANGELOG.md | 2 + packages/googleanalytics/package.json | 16 +-- packages/googlerecaptcha/CHANGELOG.md | 2 + packages/googlerecaptcha/package.json | 16 +-- packages/googletagmanager/CHANGELOG.md | 2 + packages/googletagmanager/package.json | 12 +- packages/graphcms-ui/CHANGELOG.md | 2 + packages/graphcms-ui/package.json | 4 +- packages/graphql-mesh/CHANGELOG.md | 2 + packages/graphql-mesh/package.json | 8 +- packages/graphql/CHANGELOG.md | 2 + packages/graphql/package.json | 14 +-- packages/hygraph-cli/CHANGELOG.md | 2 + packages/hygraph-cli/package.json | 10 +- packages/hygraph-dynamic-rows-ui/CHANGELOG.md | 2 + packages/hygraph-dynamic-rows-ui/package.json | 10 +- packages/hygraph-dynamic-rows/CHANGELOG.md | 2 + packages/hygraph-dynamic-rows/package.json | 16 +-- packages/hygraph-ui/CHANGELOG.md | 2 + packages/hygraph-ui/package.json | 16 +-- packages/image/CHANGELOG.md | 2 + packages/image/example/CHANGELOG.md | 2 + packages/image/example/package.json | 10 +- packages/image/package.json | 10 +- packages/lingui-next/CHANGELOG.md | 2 + packages/lingui-next/package.json | 12 +- packages/magento-cart-checkout/CHANGELOG.md | 2 + packages/magento-cart-checkout/package.json | 26 ++-- packages/magento-cart-coupon/CHANGELOG.md | 2 + packages/magento-cart-coupon/package.json | 22 ++-- packages/magento-cart-email/CHANGELOG.md | 2 + packages/magento-cart-email/package.json | 26 ++-- packages/magento-cart-items/CHANGELOG.md | 2 + packages/magento-cart-items/package.json | 28 ++--- .../magento-cart-payment-method/CHANGELOG.md | 2 + .../magento-cart-payment-method/package.json | 26 ++-- packages/magento-cart-pickup/CHANGELOG.md | 2 + packages/magento-cart-pickup/package.json | 26 ++-- .../CHANGELOG.md | 2 + .../package.json | 24 ++-- .../magento-cart-shipping-method/CHANGELOG.md | 2 + .../magento-cart-shipping-method/package.json | 28 ++--- packages/magento-cart/CHANGELOG.md | 2 + packages/magento-cart/package.json | 30 ++--- packages/magento-category/CHANGELOG.md | 2 + packages/magento-category/package.json | 20 +-- packages/magento-cms/CHANGELOG.md | 2 + packages/magento-cms/package.json | 12 +- packages/magento-compare/CHANGELOG.md | 2 + packages/magento-compare/package.json | 22 ++-- packages/magento-customer/CHANGELOG.md | 2 + packages/magento-customer/package.json | 30 ++--- packages/magento-graphql-rest/CHANGELOG.md | 2 + packages/magento-graphql-rest/package.json | 12 +- packages/magento-graphql/CHANGELOG.md | 2 + packages/magento-graphql/package.json | 10 +- packages/magento-newsletter/CHANGELOG.md | 2 + packages/magento-newsletter/package.json | 20 +-- packages/magento-payment-adyen/CHANGELOG.md | 2 + packages/magento-payment-adyen/package.json | 26 ++-- .../magento-payment-afterpay/CHANGELOG.md | 2 + .../magento-payment-afterpay/package.json | 24 ++-- .../magento-payment-braintree/CHANGELOG.md | 2 + .../magento-payment-braintree/package.json | 28 ++--- .../magento-payment-included/CHANGELOG.md | 2 + .../magento-payment-included/package.json | 30 ++--- packages/magento-payment-klarna/CHANGELOG.md | 2 + packages/magento-payment-klarna/package.json | 26 ++-- .../magento-payment-multisafepay/CHANGELOG.md | 2 + .../magento-payment-multisafepay/package.json | 34 +++--- packages/magento-payment-paypal/CHANGELOG.md | 2 + packages/magento-payment-paypal/package.json | 22 ++-- packages/magento-payment-tokens/CHANGELOG.md | 2 + packages/magento-payment-tokens/package.json | 24 ++-- packages/magento-product-bundle/CHANGELOG.md | 2 + packages/magento-product-bundle/package.json | 28 ++--- .../magento-product-configurable/CHANGELOG.md | 2 + .../magento-product-configurable/package.json | 36 +++--- .../magento-product-downloadable/CHANGELOG.md | 2 + .../magento-product-downloadable/package.json | 24 ++-- packages/magento-product-grouped/CHANGELOG.md | 2 + packages/magento-product-grouped/package.json | 26 ++-- packages/magento-product-simple/CHANGELOG.md | 2 + packages/magento-product-simple/package.json | 18 +-- packages/magento-product-virtual/CHANGELOG.md | 2 + packages/magento-product-virtual/package.json | 18 +-- packages/magento-product/CHANGELOG.md | 2 + packages/magento-product/package.json | 26 ++-- .../CHANGELOG.md | 2 + .../package.json | 22 ++-- packages/magento-review/CHANGELOG.md | 2 + packages/magento-review/package.json | 26 ++-- packages/magento-search-overlay/CHANGELOG.md | 8 ++ packages/magento-search-overlay/package.json | 26 ++-- packages/magento-search/CHANGELOG.md | 2 + packages/magento-search/package.json | 24 ++-- packages/magento-store/CHANGELOG.md | 2 + packages/magento-store/package.json | 20 +-- packages/magento-wishlist/CHANGELOG.md | 2 + packages/magento-wishlist/package.json | 30 ++--- packages/mollie-magento-payment/CHANGELOG.md | 2 + packages/mollie-magento-payment/package.json | 32 ++--- packages/next-ui/CHANGELOG.md | 2 + packages/next-ui/package.json | 16 +-- packages/react-hook-form/CHANGELOG.md | 2 + packages/react-hook-form/package.json | 8 +- packages/service-worker/CHANGELOG.md | 2 + packages/service-worker/package.json | 8 +- packagesDev/browserslist-config/CHANGELOG.md | 2 + packagesDev/browserslist-config/package.json | 2 +- packagesDev/changeset-changelog/CHANGELOG.md | 2 + packagesDev/changeset-changelog/package.json | 2 +- packagesDev/eslint-config/CHANGELOG.md | 2 + packagesDev/eslint-config/package.json | 4 +- .../CHANGELOG.md | 2 + .../package.json | 8 +- .../CHANGELOG.md | 2 + .../package.json | 8 +- .../CHANGELOG.md | 2 + .../package.json | 6 +- packagesDev/misc/CHANGELOG.md | 2 + packagesDev/misc/package.json | 2 +- packagesDev/next-config/CHANGELOG.md | 2 + packagesDev/next-config/package.json | 4 +- packagesDev/prettier-config/CHANGELOG.md | 2 + packagesDev/prettier-config/package.json | 2 +- packagesDev/typescript-config/CHANGELOG.md | 2 + packagesDev/typescript-config/package.json | 2 +- 169 files changed, 1097 insertions(+), 830 deletions(-) create mode 100644 .changeset/pre.json diff --git a/.changeset/pre.json b/.changeset/pre.json new file mode 100644 index 00000000000..3be996f0011 --- /dev/null +++ b/.changeset/pre.json @@ -0,0 +1,93 @@ +{ + "mode": "pre", + "tag": "canary", + "initialVersions": { + "@graphcommerce/docs": "10.0.3", + "@graphcommerce/magento-graphcms": "10.0.3", + "@graphcommerce/magento-open-source": "10.0.3", + "@graphcommerce/address-fields-nl": "10.0.3", + "@graphcommerce/algolia-categories": "10.0.3", + "@graphcommerce/algolia-insights": "10.0.3", + "@graphcommerce/algolia-personalization": "10.0.3", + "@graphcommerce/algolia-products": "10.0.3", + "@graphcommerce/algolia-recommend": "10.0.3", + "@graphcommerce/algolia-search": "10.0.3", + "@graphcommerce/cli": "10.0.3", + "@graphcommerce/demo-magento-graphcommerce": "10.0.3", + "@graphcommerce/ecommerce-ui": "10.0.3", + "@graphcommerce/framer-next-pages": "10.0.3", + "@graphcommerce/framer-next-pages-example": "10.0.3", + "@graphcommerce/framer-scroller": "10.0.3", + "@graphcommerce/framer-scroller-example": "10.0.3", + "@graphcommerce/framer-utils": "10.0.3", + "@graphcommerce/google-datalayer": "10.0.3", + "@graphcommerce/google-playstore": "10.0.3", + "@graphcommerce/googleanalytics": "10.0.3", + "@graphcommerce/googlerecaptcha": "10.0.3", + "@graphcommerce/googletagmanager": "10.0.3", + "@graphcommerce/graphcms-ui": "10.0.3", + "@graphcommerce/graphql": "10.0.3", + "@graphcommerce/graphql-mesh": "10.0.3", + "@graphcommerce/hygraph-cli": "10.0.3", + "@graphcommerce/hygraph-dynamic-rows": "10.0.3", + "@graphcommerce/hygraph-dynamic-rows-ui": "10.0.3", + "@graphcommerce/hygraph-ui": "10.0.3", + "@graphcommerce/image": "10.0.3", + "@graphcommerce/image-example": "10.0.3", + "@graphcommerce/lingui-next": "10.0.3", + "@graphcommerce/magento-cart": "10.0.3", + "@graphcommerce/magento-cart-checkout": "10.0.3", + "@graphcommerce/magento-cart-coupon": "10.0.3", + "@graphcommerce/magento-cart-email": "10.0.3", + "@graphcommerce/magento-cart-items": "10.0.3", + "@graphcommerce/magento-cart-payment-method": "10.0.3", + "@graphcommerce/magento-cart-pickup": "10.0.3", + "@graphcommerce/magento-cart-shipping-address": "10.0.3", + "@graphcommerce/magento-cart-shipping-method": "10.0.3", + "@graphcommerce/magento-category": "10.0.3", + "@graphcommerce/magento-cms": "10.0.3", + "@graphcommerce/magento-compare": "10.0.3", + "@graphcommerce/magento-customer": "10.0.3", + "@graphcommerce/magento-graphql": "10.0.3", + "@graphcommerce/magento-graphql-rest": "10.0.3", + "@graphcommerce/magento-newsletter": "10.0.3", + "@graphcommerce/magento-payment-adyen": "10.0.3", + "@graphcommerce/magento-payment-afterpay": "10.0.3", + "@graphcommerce/magento-payment-braintree": "10.0.3", + "@graphcommerce/magento-payment-included": "10.0.3", + "@graphcommerce/magento-payment-klarna": "10.0.3", + "@graphcommerce/magento-payment-multisafepay": "10.0.3", + "@graphcommerce/magento-payment-paypal": "10.0.3", + "@graphcommerce/magento-payment-tokens": "10.0.3", + "@graphcommerce/magento-product": "10.0.3", + "@graphcommerce/magento-product-bundle": "10.0.3", + "@graphcommerce/magento-product-configurable": "10.0.3", + "@graphcommerce/magento-product-downloadable": "10.0.3", + "@graphcommerce/magento-product-grouped": "10.0.3", + "@graphcommerce/magento-product-simple": "10.0.3", + "@graphcommerce/magento-product-virtual": "10.0.3", + "@graphcommerce/magento-recently-viewed-products": "10.0.3", + "@graphcommerce/magento-review": "10.0.3", + "@graphcommerce/magento-search": "10.0.3", + "@graphcommerce/magento-search-overlay": "10.0.3", + "@graphcommerce/magento-store": "10.0.3", + "@graphcommerce/magento-wishlist": "10.0.3", + "@graphcommerce/mollie-magento-payment": "10.0.3", + "@graphcommerce/next-ui": "10.0.3", + "@graphcommerce/react-hook-form": "10.0.3", + "@graphcommerce/service-worker": "10.0.3", + "@graphcommerce/browserslist-config-pwa": "10.0.3", + "@graphcommerce/changeset-changelog": "10.0.3", + "@graphcommerce/eslint-config-pwa": "10.0.3", + "@graphcommerce/graphql-codegen-markdown-docs": "10.0.3", + "@graphcommerce/graphql-codegen-near-operation-file": "10.0.3", + "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "10.0.3", + "@graphcommerce/misc": "10.0.3", + "@graphcommerce/next-config": "10.0.3", + "@graphcommerce/prettier-config-pwa": "10.0.3", + "@graphcommerce/typescript-config-pwa": "10.0.3" + }, + "changesets": [ + "calm-hotels-fly" + ] +} diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 3759b5ef1e7..e5c15a10248 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/docs/package.json b/docs/package.json index 2ab2fe86e60..53f3c1bcd1a 100644 --- a/docs/package.json +++ b/docs/package.json @@ -2,10 +2,10 @@ "name": "@graphcommerce/docs", "homepage": "https://www.graphcommerce.org/docs", "repository": "github:graphcommerce-org/graphcommerce/docs", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": true, "peerDependencies": { - "@graphcommerce/prettier-config-pwa": "^10.0.3" + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0" }, "prettier": "@graphcommerce/prettier-config-pwa" } diff --git a/examples/magento-graphcms/CHANGELOG.md b/examples/magento-graphcms/CHANGELOG.md index f0b4f49677e..e5aa4983928 100644 --- a/examples/magento-graphcms/CHANGELOG.md +++ b/examples/magento-graphcms/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/examples/magento-graphcms/package.json b/examples/magento-graphcms/package.json index 3308ebace28..d24659d1f62 100644 --- a/examples/magento-graphcms/package.json +++ b/examples/magento-graphcms/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-graphcms", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "private": true, "sideEffects": false, "packageManager": "yarn@4.5.3", @@ -27,59 +27,59 @@ "@emotion/react": "^11.14.0", "@emotion/server": "^11.11.0", "@emotion/styled": "^11.14.1", - "@graphcommerce/cli": "10.0.3", - "@graphcommerce/demo-magento-graphcommerce": "10.0.3", - "@graphcommerce/ecommerce-ui": "10.0.3", - "@graphcommerce/framer-next-pages": "10.0.3", - "@graphcommerce/framer-scroller": "10.0.3", - "@graphcommerce/framer-utils": "10.0.3", - "@graphcommerce/google-datalayer": "10.0.3", - "@graphcommerce/google-playstore": "10.0.3", - "@graphcommerce/googleanalytics": "10.0.3", - "@graphcommerce/googlerecaptcha": "10.0.3", - "@graphcommerce/googletagmanager": "10.0.3", - "@graphcommerce/graphql": "10.0.3", - "@graphcommerce/graphql-codegen-near-operation-file": "10.0.3", - "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "10.0.3", - "@graphcommerce/graphql-mesh": "10.0.3", - "@graphcommerce/hygraph-cli": "10.0.3", - "@graphcommerce/hygraph-dynamic-rows": "10.0.3", - "@graphcommerce/hygraph-ui": "10.0.3", - "@graphcommerce/image": "10.0.3", - "@graphcommerce/lingui-next": "10.0.3", - "@graphcommerce/magento-cart": "10.0.3", - "@graphcommerce/magento-cart-checkout": "10.0.3", - "@graphcommerce/magento-cart-coupon": "10.0.3", - "@graphcommerce/magento-cart-email": "10.0.3", - "@graphcommerce/magento-cart-items": "10.0.3", - "@graphcommerce/magento-cart-payment-method": "10.0.3", - "@graphcommerce/magento-cart-shipping-address": "10.0.3", - "@graphcommerce/magento-cart-shipping-method": "10.0.3", - "@graphcommerce/magento-category": "10.0.3", - "@graphcommerce/magento-cms": "10.0.3", - "@graphcommerce/magento-compare": "10.0.3", - "@graphcommerce/magento-customer": "10.0.3", - "@graphcommerce/magento-graphql": "10.0.3", - "@graphcommerce/magento-graphql-rest": "10.0.3", - "@graphcommerce/magento-newsletter": "10.0.3", - "@graphcommerce/magento-payment-included": "10.0.3", - "@graphcommerce/magento-payment-tokens": "10.0.3", - "@graphcommerce/magento-product": "10.0.3", - "@graphcommerce/magento-product-bundle": "10.0.3", - "@graphcommerce/magento-product-configurable": "10.0.3", - "@graphcommerce/magento-product-downloadable": "10.0.3", - "@graphcommerce/magento-product-grouped": "10.0.3", - "@graphcommerce/magento-product-simple": "10.0.3", - "@graphcommerce/magento-product-virtual": "10.0.3", - "@graphcommerce/magento-recently-viewed-products": "10.0.3", - "@graphcommerce/magento-review": "10.0.3", - "@graphcommerce/magento-search": "10.0.3", - "@graphcommerce/magento-store": "10.0.3", - "@graphcommerce/magento-wishlist": "10.0.3", - "@graphcommerce/next-config": "10.0.3", - "@graphcommerce/next-ui": "10.0.3", - "@graphcommerce/react-hook-form": "10.0.3", - "@graphcommerce/service-worker": "10.0.3", + "@graphcommerce/cli": "10.0.4-canary.0", + "@graphcommerce/demo-magento-graphcommerce": "10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "10.0.4-canary.0", + "@graphcommerce/framer-next-pages": "10.0.4-canary.0", + "@graphcommerce/framer-scroller": "10.0.4-canary.0", + "@graphcommerce/framer-utils": "10.0.4-canary.0", + "@graphcommerce/google-datalayer": "10.0.4-canary.0", + "@graphcommerce/google-playstore": "10.0.4-canary.0", + "@graphcommerce/googleanalytics": "10.0.4-canary.0", + "@graphcommerce/googlerecaptcha": "10.0.4-canary.0", + "@graphcommerce/googletagmanager": "10.0.4-canary.0", + "@graphcommerce/graphql": "10.0.4-canary.0", + "@graphcommerce/graphql-codegen-near-operation-file": "10.0.4-canary.0", + "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "10.0.4-canary.0", + "@graphcommerce/graphql-mesh": "10.0.4-canary.0", + "@graphcommerce/hygraph-cli": "10.0.4-canary.0", + "@graphcommerce/hygraph-dynamic-rows": "10.0.4-canary.0", + "@graphcommerce/hygraph-ui": "10.0.4-canary.0", + "@graphcommerce/image": "10.0.4-canary.0", + "@graphcommerce/lingui-next": "10.0.4-canary.0", + "@graphcommerce/magento-cart": "10.0.4-canary.0", + "@graphcommerce/magento-cart-checkout": "10.0.4-canary.0", + "@graphcommerce/magento-cart-coupon": "10.0.4-canary.0", + "@graphcommerce/magento-cart-email": "10.0.4-canary.0", + "@graphcommerce/magento-cart-items": "10.0.4-canary.0", + "@graphcommerce/magento-cart-payment-method": "10.0.4-canary.0", + "@graphcommerce/magento-cart-shipping-address": "10.0.4-canary.0", + "@graphcommerce/magento-cart-shipping-method": "10.0.4-canary.0", + "@graphcommerce/magento-category": "10.0.4-canary.0", + "@graphcommerce/magento-cms": "10.0.4-canary.0", + "@graphcommerce/magento-compare": "10.0.4-canary.0", + "@graphcommerce/magento-customer": "10.0.4-canary.0", + "@graphcommerce/magento-graphql": "10.0.4-canary.0", + "@graphcommerce/magento-graphql-rest": "10.0.4-canary.0", + "@graphcommerce/magento-newsletter": "10.0.4-canary.0", + "@graphcommerce/magento-payment-included": "10.0.4-canary.0", + "@graphcommerce/magento-payment-tokens": "10.0.4-canary.0", + "@graphcommerce/magento-product": "10.0.4-canary.0", + "@graphcommerce/magento-product-bundle": "10.0.4-canary.0", + "@graphcommerce/magento-product-configurable": "10.0.4-canary.0", + "@graphcommerce/magento-product-downloadable": "10.0.4-canary.0", + "@graphcommerce/magento-product-grouped": "10.0.4-canary.0", + "@graphcommerce/magento-product-simple": "10.0.4-canary.0", + "@graphcommerce/magento-product-virtual": "10.0.4-canary.0", + "@graphcommerce/magento-recently-viewed-products": "10.0.4-canary.0", + "@graphcommerce/magento-review": "10.0.4-canary.0", + "@graphcommerce/magento-search": "10.0.4-canary.0", + "@graphcommerce/magento-store": "10.0.4-canary.0", + "@graphcommerce/magento-wishlist": "10.0.4-canary.0", + "@graphcommerce/next-config": "10.0.4-canary.0", + "@graphcommerce/next-ui": "10.0.4-canary.0", + "@graphcommerce/react-hook-form": "10.0.4-canary.0", + "@graphcommerce/service-worker": "10.0.4-canary.0", "@graphql-mesh/cli": "0.100.21", "@graphql-mesh/config": "0.108.21", "@graphql-mesh/cross-helpers": "0.4.11", @@ -131,9 +131,9 @@ "webpack": "^5.103.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "10.0.3", - "@graphcommerce/prettier-config-pwa": "10.0.3", - "@graphcommerce/typescript-config-pwa": "10.0.3", + "@graphcommerce/eslint-config-pwa": "10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "10.0.4-canary.0", "@lingui/cli": "5.7.0", "@playwright/test": "1.57.0", "@types/node": "^20.19.27", diff --git a/examples/magento-open-source/CHANGELOG.md b/examples/magento-open-source/CHANGELOG.md index 0cafa10a700..d65923a8551 100644 --- a/examples/magento-open-source/CHANGELOG.md +++ b/examples/magento-open-source/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/examples/magento-open-source/package.json b/examples/magento-open-source/package.json index 15704eff1b6..b574f636b45 100644 --- a/examples/magento-open-source/package.json +++ b/examples/magento-open-source/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-open-source", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "private": true, "sideEffects": false, "packageManager": "yarn@4.1.1", @@ -27,55 +27,55 @@ "@emotion/react": "^11.14.0", "@emotion/server": "^11.11.0", "@emotion/styled": "^11.14.1", - "@graphcommerce/cli": "10.0.3", - "@graphcommerce/ecommerce-ui": "10.0.3", - "@graphcommerce/framer-next-pages": "10.0.3", - "@graphcommerce/framer-scroller": "10.0.3", - "@graphcommerce/framer-utils": "10.0.3", - "@graphcommerce/google-datalayer": "10.0.3", - "@graphcommerce/google-playstore": "10.0.3", - "@graphcommerce/googleanalytics": "10.0.3", - "@graphcommerce/googlerecaptcha": "10.0.3", - "@graphcommerce/googletagmanager": "10.0.3", - "@graphcommerce/graphql": "10.0.3", - "@graphcommerce/graphql-codegen-near-operation-file": "10.0.3", - "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "10.0.3", - "@graphcommerce/graphql-mesh": "10.0.3", - "@graphcommerce/image": "10.0.3", - "@graphcommerce/lingui-next": "10.0.3", - "@graphcommerce/magento-cart": "10.0.3", - "@graphcommerce/magento-cart-checkout": "10.0.3", - "@graphcommerce/magento-cart-coupon": "10.0.3", - "@graphcommerce/magento-cart-email": "10.0.3", - "@graphcommerce/magento-cart-items": "10.0.3", - "@graphcommerce/magento-cart-payment-method": "10.0.3", - "@graphcommerce/magento-cart-shipping-address": "10.0.3", - "@graphcommerce/magento-cart-shipping-method": "10.0.3", - "@graphcommerce/magento-category": "10.0.3", - "@graphcommerce/magento-cms": "10.0.3", - "@graphcommerce/magento-compare": "10.0.3", - "@graphcommerce/magento-customer": "10.0.3", - "@graphcommerce/magento-graphql": "10.0.3", - "@graphcommerce/magento-graphql-rest": "10.0.3", - "@graphcommerce/magento-newsletter": "10.0.3", - "@graphcommerce/magento-payment-included": "10.0.3", - "@graphcommerce/magento-payment-tokens": "10.0.3", - "@graphcommerce/magento-product": "10.0.3", - "@graphcommerce/magento-product-bundle": "10.0.3", - "@graphcommerce/magento-product-configurable": "10.0.3", - "@graphcommerce/magento-product-downloadable": "10.0.3", - "@graphcommerce/magento-product-grouped": "10.0.3", - "@graphcommerce/magento-product-simple": "10.0.3", - "@graphcommerce/magento-product-virtual": "10.0.3", - "@graphcommerce/magento-recently-viewed-products": "10.0.3", - "@graphcommerce/magento-review": "10.0.3", - "@graphcommerce/magento-search": "10.0.3", - "@graphcommerce/magento-store": "10.0.3", - "@graphcommerce/magento-wishlist": "10.0.3", - "@graphcommerce/next-config": "10.0.3", - "@graphcommerce/next-ui": "10.0.3", - "@graphcommerce/react-hook-form": "10.0.3", - "@graphcommerce/service-worker": "10.0.3", + "@graphcommerce/cli": "10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "10.0.4-canary.0", + "@graphcommerce/framer-next-pages": "10.0.4-canary.0", + "@graphcommerce/framer-scroller": "10.0.4-canary.0", + "@graphcommerce/framer-utils": "10.0.4-canary.0", + "@graphcommerce/google-datalayer": "10.0.4-canary.0", + "@graphcommerce/google-playstore": "10.0.4-canary.0", + "@graphcommerce/googleanalytics": "10.0.4-canary.0", + "@graphcommerce/googlerecaptcha": "10.0.4-canary.0", + "@graphcommerce/googletagmanager": "10.0.4-canary.0", + "@graphcommerce/graphql": "10.0.4-canary.0", + "@graphcommerce/graphql-codegen-near-operation-file": "10.0.4-canary.0", + "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "10.0.4-canary.0", + "@graphcommerce/graphql-mesh": "10.0.4-canary.0", + "@graphcommerce/image": "10.0.4-canary.0", + "@graphcommerce/lingui-next": "10.0.4-canary.0", + "@graphcommerce/magento-cart": "10.0.4-canary.0", + "@graphcommerce/magento-cart-checkout": "10.0.4-canary.0", + "@graphcommerce/magento-cart-coupon": "10.0.4-canary.0", + "@graphcommerce/magento-cart-email": "10.0.4-canary.0", + "@graphcommerce/magento-cart-items": "10.0.4-canary.0", + "@graphcommerce/magento-cart-payment-method": "10.0.4-canary.0", + "@graphcommerce/magento-cart-shipping-address": "10.0.4-canary.0", + "@graphcommerce/magento-cart-shipping-method": "10.0.4-canary.0", + "@graphcommerce/magento-category": "10.0.4-canary.0", + "@graphcommerce/magento-cms": "10.0.4-canary.0", + "@graphcommerce/magento-compare": "10.0.4-canary.0", + "@graphcommerce/magento-customer": "10.0.4-canary.0", + "@graphcommerce/magento-graphql": "10.0.4-canary.0", + "@graphcommerce/magento-graphql-rest": "10.0.4-canary.0", + "@graphcommerce/magento-newsletter": "10.0.4-canary.0", + "@graphcommerce/magento-payment-included": "10.0.4-canary.0", + "@graphcommerce/magento-payment-tokens": "10.0.4-canary.0", + "@graphcommerce/magento-product": "10.0.4-canary.0", + "@graphcommerce/magento-product-bundle": "10.0.4-canary.0", + "@graphcommerce/magento-product-configurable": "10.0.4-canary.0", + "@graphcommerce/magento-product-downloadable": "10.0.4-canary.0", + "@graphcommerce/magento-product-grouped": "10.0.4-canary.0", + "@graphcommerce/magento-product-simple": "10.0.4-canary.0", + "@graphcommerce/magento-product-virtual": "10.0.4-canary.0", + "@graphcommerce/magento-recently-viewed-products": "10.0.4-canary.0", + "@graphcommerce/magento-review": "10.0.4-canary.0", + "@graphcommerce/magento-search": "10.0.4-canary.0", + "@graphcommerce/magento-store": "10.0.4-canary.0", + "@graphcommerce/magento-wishlist": "10.0.4-canary.0", + "@graphcommerce/next-config": "10.0.4-canary.0", + "@graphcommerce/next-ui": "10.0.4-canary.0", + "@graphcommerce/react-hook-form": "10.0.4-canary.0", + "@graphcommerce/service-worker": "10.0.4-canary.0", "@graphql-mesh/cli": "0.100.21", "@graphql-mesh/config": "0.108.21", "@graphql-mesh/cross-helpers": "0.4.11", @@ -127,9 +127,9 @@ "webpack": "^5.103.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "10.0.3", - "@graphcommerce/prettier-config-pwa": "10.0.3", - "@graphcommerce/typescript-config-pwa": "10.0.3", + "@graphcommerce/eslint-config-pwa": "10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "10.0.4-canary.0", "@lingui/cli": "5.7.0", "@playwright/test": "1.57.0", "@types/node": "^20.19.27", diff --git a/packages/address-fields-nl/CHANGELOG.md b/packages/address-fields-nl/CHANGELOG.md index 45e060d8e0a..1c71b6e1e1c 100644 --- a/packages/address-fields-nl/CHANGELOG.md +++ b/packages/address-fields-nl/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/address-fields-nl +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/address-fields-nl/package.json b/packages/address-fields-nl/package.json index f8826af62b8..ac91723dc97 100644 --- a/packages/address-fields-nl/package.json +++ b/packages/address-fields-nl/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/address-fields-nl", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/magento-customer": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/magento-customer": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/algolia-categories/CHANGELOG.md b/packages/algolia-categories/CHANGELOG.md index be75d08e3e3..fa15b3a1b28 100644 --- a/packages/algolia-categories/CHANGELOG.md +++ b/packages/algolia-categories/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/algolia-categories +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/algolia-categories/package.json b/packages/algolia-categories/package.json index 1d6a3a98c3e..9822ff98547 100644 --- a/packages/algolia-categories/package.json +++ b/packages/algolia-categories/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/algolia-categories", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -22,15 +22,15 @@ "generate": "tsx scripts/generate-spec.mts" }, "peerDependencies": { - "@graphcommerce/algolia-products": "^10.0.3", - "@graphcommerce/google-datalayer": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/graphql-mesh": "^10.0.3", - "@graphcommerce/magento-customer": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/magento-search": "^10.0.3", - "@graphcommerce/next-config": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", + "@graphcommerce/algolia-products": "^10.0.4-canary.0", + "@graphcommerce/google-datalayer": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", + "@graphcommerce/magento-customer": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/magento-search": "^10.0.4-canary.0", + "@graphcommerce/next-config": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", "react": "^19.2.0" }, "devDependencies": { diff --git a/packages/algolia-insights/CHANGELOG.md b/packages/algolia-insights/CHANGELOG.md index 89f0232fd08..b9ec6888d68 100644 --- a/packages/algolia-insights/CHANGELOG.md +++ b/packages/algolia-insights/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/algolia-personalization +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/algolia-insights/package.json b/packages/algolia-insights/package.json index f2cbb1725eb..636e7342400 100644 --- a/packages/algolia-insights/package.json +++ b/packages/algolia-insights/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/algolia-insights", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,15 +15,15 @@ "generate": "tsx scripts/generate-insights-spec.mts" }, "peerDependencies": { - "@graphcommerce/algolia-products": "^10.0.3", - "@graphcommerce/google-datalayer": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/graphql-mesh": "^10.0.3", - "@graphcommerce/magento-customer": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/next-config": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/react-hook-form": "^10.0.3", + "@graphcommerce/algolia-products": "^10.0.4-canary.0", + "@graphcommerce/google-datalayer": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", + "@graphcommerce/magento-customer": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/next-config": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/react-hook-form": "^10.0.4-canary.0", "@mui/material": "*", "react": "^19.2.0" }, diff --git a/packages/algolia-personalization/CHANGELOG.md b/packages/algolia-personalization/CHANGELOG.md index 3a3bd00b4d5..98009fb5617 100644 --- a/packages/algolia-personalization/CHANGELOG.md +++ b/packages/algolia-personalization/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/algolia-personalization +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/algolia-personalization/package.json b/packages/algolia-personalization/package.json index 5a0b89120a3..31f770dd45d 100644 --- a/packages/algolia-personalization/package.json +++ b/packages/algolia-personalization/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/algolia-personalization", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,15 +15,15 @@ "generate": "tsx scripts/generate-insights-spec.mts" }, "peerDependencies": { - "@graphcommerce/algolia-insights": "^10.0.3", - "@graphcommerce/algolia-products": "^10.0.3", - "@graphcommerce/google-datalayer": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/graphql-mesh": "^10.0.3", - "@graphcommerce/magento-customer": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/next-config": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", + "@graphcommerce/algolia-insights": "^10.0.4-canary.0", + "@graphcommerce/algolia-products": "^10.0.4-canary.0", + "@graphcommerce/google-datalayer": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", + "@graphcommerce/magento-customer": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/next-config": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", "react": "^19.2.0" }, "devDependencies": { diff --git a/packages/algolia-products/CHANGELOG.md b/packages/algolia-products/CHANGELOG.md index 921758b7d23..78c9be24862 100644 --- a/packages/algolia-products/CHANGELOG.md +++ b/packages/algolia-products/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/algolia-products +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/algolia-products/package.json b/packages/algolia-products/package.json index c0df107c205..80969a41ae8 100644 --- a/packages/algolia-products/package.json +++ b/packages/algolia-products/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/algolia-products", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,14 +15,14 @@ "generate": "tsx scripts/generate-spec.mts" }, "peerDependencies": { - "@graphcommerce/google-datalayer": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/graphql-mesh": "^10.0.3", - "@graphcommerce/magento-customer": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/magento-search": "^10.0.3", - "@graphcommerce/next-config": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", + "@graphcommerce/google-datalayer": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", + "@graphcommerce/magento-customer": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/magento-search": "^10.0.4-canary.0", + "@graphcommerce/next-config": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", "react": "^19.2.0" }, "devDependencies": { diff --git a/packages/algolia-recommend/CHANGELOG.md b/packages/algolia-recommend/CHANGELOG.md index 7597f0799c3..53fec7b0e6e 100644 --- a/packages/algolia-recommend/CHANGELOG.md +++ b/packages/algolia-recommend/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/algolia-recommend +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/algolia-recommend/package.json b/packages/algolia-recommend/package.json index e60e3ab88a1..2aaefba130c 100644 --- a/packages/algolia-recommend/package.json +++ b/packages/algolia-recommend/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/algolia-recommend", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -22,11 +22,11 @@ "generate": "tsx scripts/generate-recommend-spec.mts" }, "peerDependencies": { - "@graphcommerce/algolia-products": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/graphql-mesh": "^10.0.3", - "@graphcommerce/next-config": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", + "@graphcommerce/algolia-products": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", + "@graphcommerce/next-config": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", "react": "^19.2.0" }, "devDependencies": { diff --git a/packages/algolia-search/CHANGELOG.md b/packages/algolia-search/CHANGELOG.md index 62051172489..133d2364ae2 100644 --- a/packages/algolia-search/CHANGELOG.md +++ b/packages/algolia-search/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/algolia-search +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/algolia-search/package.json b/packages/algolia-search/package.json index 99bfdcb21ee..621ef04846e 100644 --- a/packages/algolia-search/package.json +++ b/packages/algolia-search/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/algolia-search", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,17 +15,17 @@ "algoliasearch": "^4.25.3" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/graphql-mesh": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/magento-search": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-config": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/magento-search": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-config": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index c02272d0a6d..186ae7b25bb 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/cli +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/cli/package.json b/packages/cli/package.json index 9665bd58afa..f6ab7421e34 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/cli", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "scripts": { "dev": "pkgroll --clean-dist --watch", "build": "pkgroll --clean-dist", @@ -36,12 +36,12 @@ "zod": "^3.25.76" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql-mesh": "^10.0.3", - "@graphcommerce/hygraph-cli": "^10.0.3", - "@graphcommerce/next-config": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", + "@graphcommerce/hygraph-cli": "^10.0.4-canary.0", + "@graphcommerce/next-config": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@graphql-mesh/cli": "*", "@graphql-mesh/types": "*", "@graphql-mesh/utils": "*", diff --git a/packages/demo-magento-graphcommerce/CHANGELOG.md b/packages/demo-magento-graphcommerce/CHANGELOG.md index a80c8ca1022..65782137d12 100644 --- a/packages/demo-magento-graphcommerce/CHANGELOG.md +++ b/packages/demo-magento-graphcommerce/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/demo-magento-graphcommerce +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/demo-magento-graphcommerce/package.json b/packages/demo-magento-graphcommerce/package.json index a46752080e7..b0a337a9698 100644 --- a/packages/demo-magento-graphcommerce/package.json +++ b/packages/demo-magento-graphcommerce/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/demo-magento-graphcommerce", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -21,14 +21,14 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/framer-scroller": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/magento-product-configurable": "^10.0.3", - "@graphcommerce/magento-recently-viewed-products": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/framer-scroller": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/magento-product-configurable": "^10.0.4-canary.0", + "@graphcommerce/magento-recently-viewed-products": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@mui/material": "^7.0.0", "framer-motion": "^11.0.0", "next": "*", diff --git a/packages/ecommerce-ui/CHANGELOG.md b/packages/ecommerce-ui/CHANGELOG.md index 27222d23902..15ea42e749d 100644 --- a/packages/ecommerce-ui/CHANGELOG.md +++ b/packages/ecommerce-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/ecommerce-ui +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/ecommerce-ui/package.json b/packages/ecommerce-ui/package.json index 72218b2c961..e54e5b16ea3 100644 --- a/packages/ecommerce-ui/package.json +++ b/packages/ecommerce-ui/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/ecommerce-ui", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,12 +12,12 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/react-hook-form": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/react-hook-form": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/framer-next-pages/CHANGELOG.md b/packages/framer-next-pages/CHANGELOG.md index d924d6953bc..ae57ddfa4b0 100644 --- a/packages/framer-next-pages/CHANGELOG.md +++ b/packages/framer-next-pages/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/framer-next-pages/example/CHANGELOG.md b/packages/framer-next-pages/example/CHANGELOG.md index 419202e1d6f..58706906a9f 100644 --- a/packages/framer-next-pages/example/CHANGELOG.md +++ b/packages/framer-next-pages/example/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/framer-next-pages/example/package.json b/packages/framer-next-pages/example/package.json index e93d3d902ec..4f5330a43d3 100644 --- a/packages/framer-next-pages/example/package.json +++ b/packages/framer-next-pages/example/package.json @@ -3,7 +3,7 @@ "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", "private": true, - "version": "10.0.3", + "version": "10.0.4-canary.0", "scripts": { "dev": "next", "build": "next build", @@ -21,11 +21,11 @@ "@emotion/react": "^11.14.0", "@emotion/server": "^11.11.0", "@emotion/styled": "^11.14.1", - "@graphcommerce/framer-next-pages": "10.0.3", - "@graphcommerce/framer-scroller": "10.0.3", - "@graphcommerce/framer-utils": "10.0.3", - "@graphcommerce/image": "10.0.3", - "@graphcommerce/next-ui": "10.0.3", + "@graphcommerce/framer-next-pages": "10.0.4-canary.0", + "@graphcommerce/framer-scroller": "10.0.4-canary.0", + "@graphcommerce/framer-utils": "10.0.4-canary.0", + "@graphcommerce/image": "10.0.4-canary.0", + "@graphcommerce/next-ui": "10.0.4-canary.0", "@lingui/core": "5.7.0", "@lingui/macro": "5.7.0", "@lingui/react": "5.7.0", @@ -46,9 +46,9 @@ "sharp": "0.34.5" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "10.0.3", - "@graphcommerce/prettier-config-pwa": "10.0.3", - "@graphcommerce/typescript-config-pwa": "10.0.3", + "@graphcommerce/eslint-config-pwa": "10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "10.0.4-canary.0", "@lingui/cli": "5.7.0", "@playwright/test": "1.57.0", "@types/node": "^20.19.27", diff --git a/packages/framer-next-pages/package.json b/packages/framer-next-pages/package.json index 6914efafacb..5882d952f0b 100644 --- a/packages/framer-next-pages/package.json +++ b/packages/framer-next-pages/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/framer-next-pages", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,10 +12,10 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/framer-utils": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/framer-utils": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "framer-motion": "^11.0.0", "next": "*", "react": "^19.2.0", diff --git a/packages/framer-scroller/CHANGELOG.md b/packages/framer-scroller/CHANGELOG.md index 81967ba68fb..da3d96d14f1 100644 --- a/packages/framer-scroller/CHANGELOG.md +++ b/packages/framer-scroller/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/framer-scroller/example/CHANGELOG.md b/packages/framer-scroller/example/CHANGELOG.md index d7bf6e30af4..53aabdccaef 100644 --- a/packages/framer-scroller/example/CHANGELOG.md +++ b/packages/framer-scroller/example/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/framer-scroller/example/package.json b/packages/framer-scroller/example/package.json index 8f418ff1923..785f68add1c 100644 --- a/packages/framer-scroller/example/package.json +++ b/packages/framer-scroller/example/package.json @@ -3,7 +3,7 @@ "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", "private": true, - "version": "10.0.3", + "version": "10.0.4-canary.0", "scripts": { "dev": "next", "build": "next build", @@ -15,13 +15,13 @@ "@emotion/react": "^11.14.0", "@emotion/server": "^11.11.0", "@emotion/styled": "^11.14.1", - "@graphcommerce/framer-next-pages": "10.0.3", - "@graphcommerce/framer-scroller": "10.0.3", - "@graphcommerce/framer-utils": "10.0.3", - "@graphcommerce/image": "10.0.3", - "@graphcommerce/lingui-next": "10.0.3", - "@graphcommerce/next-config": "10.0.3", - "@graphcommerce/next-ui": "10.0.3", + "@graphcommerce/framer-next-pages": "10.0.4-canary.0", + "@graphcommerce/framer-scroller": "10.0.4-canary.0", + "@graphcommerce/framer-utils": "10.0.4-canary.0", + "@graphcommerce/image": "10.0.4-canary.0", + "@graphcommerce/lingui-next": "10.0.4-canary.0", + "@graphcommerce/next-config": "10.0.4-canary.0", + "@graphcommerce/next-ui": "10.0.4-canary.0", "@lingui/conf": "5.7.0", "@lingui/core": "5.7.0", "@lingui/format-po": "5.7.0", @@ -47,9 +47,9 @@ "webpack": "^5.103.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "10.0.3", - "@graphcommerce/prettier-config-pwa": "10.0.3", - "@graphcommerce/typescript-config-pwa": "10.0.3", + "@graphcommerce/eslint-config-pwa": "10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "10.0.4-canary.0", "@lingui/cli": "5.7.0", "@playwright/test": "1.57.0", "@types/node": "^20.19.27", diff --git a/packages/framer-scroller/package.json b/packages/framer-scroller/package.json index e67bb3a6f11..9c710d6d1d3 100644 --- a/packages/framer-scroller/package.json +++ b/packages/framer-scroller/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/framer-scroller", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -21,11 +21,11 @@ "popmotion": "11.0.5" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/framer-utils": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/framer-utils": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/react": "^5", "@mui/material": "^7.0.0", diff --git a/packages/framer-utils/CHANGELOG.md b/packages/framer-utils/CHANGELOG.md index 7edcb2c6d06..0b2d56bcbf5 100644 --- a/packages/framer-utils/CHANGELOG.md +++ b/packages/framer-utils/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/framer-utils/package.json b/packages/framer-utils/package.json index 227125a3d5d..2d7bc4ef3b0 100644 --- a/packages/framer-utils/package.json +++ b/packages/framer-utils/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/framer-utils", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -18,9 +18,9 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "framer-motion": "^11.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" diff --git a/packages/google-datalayer/CHANGELOG.md b/packages/google-datalayer/CHANGELOG.md index 64cdc598b09..7eb187153f7 100644 --- a/packages/google-datalayer/CHANGELOG.md +++ b/packages/google-datalayer/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/google-datalayer +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/google-datalayer/package.json b/packages/google-datalayer/package.json index 3cd5222d8da..7b64532a7f2 100644 --- a/packages/google-datalayer/package.json +++ b/packages/google-datalayer/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/google-datalayer", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,15 +12,15 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-cart-payment-method": "^10.0.3", - "@graphcommerce/magento-cart-shipping-method": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/react-hook-form": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-shipping-method": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/react-hook-form": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@mui/material": "^7.0.0", "next": "*", "react": "^19.2.0", diff --git a/packages/google-playstore/CHANGELOG.md b/packages/google-playstore/CHANGELOG.md index 3e08d3d3f58..a221bc92d89 100644 --- a/packages/google-playstore/CHANGELOG.md +++ b/packages/google-playstore/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/google-playstore +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/google-playstore/package.json b/packages/google-playstore/package.json index ecc4228596b..4434aaf2536 100644 --- a/packages/google-playstore/package.json +++ b/packages/google-playstore/package.json @@ -1,6 +1,6 @@ { "name": "@graphcommerce/google-playstore", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "browserslist": [ @@ -13,10 +13,10 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "next": "*", "react": "^19.2.0", "react-dom": "^19.2.0" diff --git a/packages/googleanalytics/CHANGELOG.md b/packages/googleanalytics/CHANGELOG.md index 2d1cb42bc68..4fbd085a49d 100644 --- a/packages/googleanalytics/CHANGELOG.md +++ b/packages/googleanalytics/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/googleanalytics/package.json b/packages/googleanalytics/package.json index 0b6ef1ebadc..e860a7b5468 100644 --- a/packages/googleanalytics/package.json +++ b/packages/googleanalytics/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/googleanalytics", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,13 +12,13 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/google-datalayer": "10.0.3", - "@graphcommerce/graphql-mesh": "^10.0.3", - "@graphcommerce/next-config": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/google-datalayer": "10.0.4-canary.0", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", + "@graphcommerce/next-config": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@mui/material": "^7.0.0", "next": "*", "react": "^19.2.0", diff --git a/packages/googlerecaptcha/CHANGELOG.md b/packages/googlerecaptcha/CHANGELOG.md index 9e047a5f704..2b30e14bcf1 100644 --- a/packages/googlerecaptcha/CHANGELOG.md +++ b/packages/googlerecaptcha/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/googlerecaptcha/package.json b/packages/googlerecaptcha/package.json index dc1b8df1ef4..88e11b08bf7 100644 --- a/packages/googlerecaptcha/package.json +++ b/packages/googlerecaptcha/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/googlerecaptcha", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -23,13 +23,13 @@ "@types/grecaptcha": "^3.0.9" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/graphql-mesh": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@mui/material": "^7.0.0", "graphql": "^16.9.0", "next": "*", diff --git a/packages/googletagmanager/CHANGELOG.md b/packages/googletagmanager/CHANGELOG.md index 63442969512..156905c290f 100644 --- a/packages/googletagmanager/CHANGELOG.md +++ b/packages/googletagmanager/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/googletagmanager/package.json b/packages/googletagmanager/package.json index 989dfffffb3..32f6c82f153 100644 --- a/packages/googletagmanager/package.json +++ b/packages/googletagmanager/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/googletagmanager", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,11 +15,11 @@ "@types/gapi.client.tagmanager": "^2.0.4" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/google-datalayer": "10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/google-datalayer": "10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@mui/material": "^7.0.0", "next": "*", "react": "^19.2.0", diff --git a/packages/graphcms-ui/CHANGELOG.md b/packages/graphcms-ui/CHANGELOG.md index ab218283354..6bdad2c5bd8 100644 --- a/packages/graphcms-ui/CHANGELOG.md +++ b/packages/graphcms-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/graphcms-ui/package.json b/packages/graphcms-ui/package.json index a2432fcf4e5..f7ff0215796 100644 --- a/packages/graphcms-ui/package.json +++ b/packages/graphcms-ui/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphcms-ui", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,7 +12,7 @@ } }, "peerDependencies": { - "@graphcommerce/hygraph-ui": "^10.0.3" + "@graphcommerce/hygraph-ui": "^10.0.4-canary.0" }, "exports": { ".": "./index.ts" diff --git a/packages/graphql-mesh/CHANGELOG.md b/packages/graphql-mesh/CHANGELOG.md index 518f2edb5d4..5f63be1ef03 100644 --- a/packages/graphql-mesh/CHANGELOG.md +++ b/packages/graphql-mesh/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/graphql-mesh/package.json b/packages/graphql-mesh/package.json index 28085f1f135..54a0c6a912d 100644 --- a/packages/graphql-mesh/package.json +++ b/packages/graphql-mesh/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql-mesh", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "dependencies": { "@whatwg-node/fetch": "^0.10.13", "fetch-retry": "^5.0.6", @@ -20,9 +20,9 @@ }, "peerDependencies": { "@apollo/client": "*", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@graphql-mesh/runtime": "*", "@graphql-mesh/types": "*" }, diff --git a/packages/graphql/CHANGELOG.md b/packages/graphql/CHANGELOG.md index f4e7a2f577c..5bc54f49a9d 100644 --- a/packages/graphql/CHANGELOG.md +++ b/packages/graphql/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/graphql/package.json b/packages/graphql/package.json index b6799cee433..b4957a664f5 100644 --- a/packages/graphql/package.json +++ b/packages/graphql/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "main": "index.ts", "prettier": "@graphcommerce/prettier-config-pwa", @@ -28,12 +28,12 @@ "rxjs": "^7.8.2" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql-codegen-near-operation-file": "10.0.3", - "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "10.0.3", - "@graphcommerce/next-config": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql-codegen-near-operation-file": "10.0.4-canary.0", + "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "10.0.4-canary.0", + "@graphcommerce/next-config": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@graphql-mesh/plugin-http-details-extensions": "*", "react": "^19.2.0", "react-dom": "^19.2.0" diff --git a/packages/hygraph-cli/CHANGELOG.md b/packages/hygraph-cli/CHANGELOG.md index 8c93631bb4a..933f3d8d983 100644 --- a/packages/hygraph-cli/CHANGELOG.md +++ b/packages/hygraph-cli/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/hygraph-cli +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/hygraph-cli/package.json b/packages/hygraph-cli/package.json index 9a4a373ee26..cd3b2975726 100644 --- a/packages/hygraph-cli/package.json +++ b/packages/hygraph-cli/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/hygraph-cli", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "type": "module", "exports": { ".": { @@ -25,10 +25,10 @@ }, "peerDependencies": { "@apollo/client": "*", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/next-config": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/next-config": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "dotenv": "^16.1.4" }, "devDependencies": { diff --git a/packages/hygraph-dynamic-rows-ui/CHANGELOG.md b/packages/hygraph-dynamic-rows-ui/CHANGELOG.md index 8c339e50cc4..f6e8f592f02 100644 --- a/packages/hygraph-dynamic-rows-ui/CHANGELOG.md +++ b/packages/hygraph-dynamic-rows-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/hygraph-dynamic-rows-ui +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/hygraph-dynamic-rows-ui/package.json b/packages/hygraph-dynamic-rows-ui/package.json index 5673a51dbec..ddee33489a5 100644 --- a/packages/hygraph-dynamic-rows-ui/package.json +++ b/packages/hygraph-dynamic-rows-ui/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/hygraph-dynamic-rows-ui", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "type": "module", "prettier": "@graphcommerce/prettier-config-pwa", @@ -20,7 +20,7 @@ }, "dependencies": { "@apollo/client": "^4.0.11", - "@graphcommerce/next-config": "10.0.3", + "@graphcommerce/next-config": "10.0.4-canary.0", "@hygraph/app-sdk-react": "^0.0.6", "@lingui/conf": "5.7.0", "@lingui/core": "5.7.0", @@ -40,9 +40,9 @@ "webpack": "^5.103.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "10.0.3", - "@graphcommerce/prettier-config-pwa": "10.0.3", - "@graphcommerce/typescript-config-pwa": "10.0.3", + "@graphcommerce/eslint-config-pwa": "10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "10.0.4-canary.0", "@types/react": "^19.2.7", "@types/react-dom": "^19.2.3", "@types/react-is": "^19.2.0", diff --git a/packages/hygraph-dynamic-rows/CHANGELOG.md b/packages/hygraph-dynamic-rows/CHANGELOG.md index 79fb89fa0fb..c85716e777b 100644 --- a/packages/hygraph-dynamic-rows/CHANGELOG.md +++ b/packages/hygraph-dynamic-rows/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/hygraph-dynamic-rows +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/hygraph-dynamic-rows/package.json b/packages/hygraph-dynamic-rows/package.json index ce77dbc1626..6025e8f30a9 100644 --- a/packages/hygraph-dynamic-rows/package.json +++ b/packages/hygraph-dynamic-rows/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/hygraph-dynamic-rows", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,13 +12,13 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/hygraph-ui": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/hygraph-ui": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@mui/material": "^7.0.0", "next": "*", "react": "^19.2.0", diff --git a/packages/hygraph-ui/CHANGELOG.md b/packages/hygraph-ui/CHANGELOG.md index 820f69cf88a..6210aa05145 100644 --- a/packages/hygraph-ui/CHANGELOG.md +++ b/packages/hygraph-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/hygraph-ui/package.json b/packages/hygraph-ui/package.json index 93101ef46e4..25c61fda042 100644 --- a/packages/hygraph-ui/package.json +++ b/packages/hygraph-ui/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/hygraph-ui", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,13 +12,13 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@mui/material": "^7.0.0", "next": "*", "react": "^19.2.0", diff --git a/packages/image/CHANGELOG.md b/packages/image/CHANGELOG.md index 00c6940a258..ba96142296d 100644 --- a/packages/image/CHANGELOG.md +++ b/packages/image/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/image/example/CHANGELOG.md b/packages/image/example/CHANGELOG.md index 238da61e67e..16f3dc382a4 100644 --- a/packages/image/example/CHANGELOG.md +++ b/packages/image/example/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/image/example/package.json b/packages/image/example/package.json index 972cade05bf..02bfdbfc677 100644 --- a/packages/image/example/package.json +++ b/packages/image/example/package.json @@ -3,14 +3,14 @@ "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", "private": true, - "version": "10.0.3", + "version": "10.0.4-canary.0", "scripts": { "dev": "next", "build": "next build", "start": "next start" }, "dependencies": { - "@graphcommerce/framer-utils": "10.0.3", + "@graphcommerce/framer-utils": "10.0.4-canary.0", "@lingui/core": "5.7.0", "@lingui/format-po": "5.7.0", "@lingui/macro": "5.7.0", @@ -32,9 +32,9 @@ "sharp": "0.34.5" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "10.0.3", - "@graphcommerce/prettier-config-pwa": "10.0.3", - "@graphcommerce/typescript-config-pwa": "10.0.3", + "@graphcommerce/eslint-config-pwa": "10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "10.0.4-canary.0", "@lingui/cli": "5.7.0", "@types/node": "^20.19.27", "@types/react": "^19.2.7", diff --git a/packages/image/package.json b/packages/image/package.json index f7ec60548d6..779bc55222c 100644 --- a/packages/image/package.json +++ b/packages/image/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/image", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -18,10 +18,10 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/framer-utils": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/framer-utils": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@mui/material": "^7.0.0", "next": "*", "react": "^19.2.0", diff --git a/packages/lingui-next/CHANGELOG.md b/packages/lingui-next/CHANGELOG.md index c8034abf2ef..8b66c46132b 100644 --- a/packages/lingui-next/CHANGELOG.md +++ b/packages/lingui-next/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/lingui-next/package.json b/packages/lingui-next/package.json index 76b9add92e0..b934d9eb217 100644 --- a/packages/lingui-next/package.json +++ b/packages/lingui-next/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/lingui-next", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -21,11 +21,11 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/next-config": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/next-config": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/conf": "^5", "@lingui/core": "^5", "@lingui/format-po": "^5", diff --git a/packages/magento-cart-checkout/CHANGELOG.md b/packages/magento-cart-checkout/CHANGELOG.md index de44263f373..ea99a8017e9 100644 --- a/packages/magento-cart-checkout/CHANGELOG.md +++ b/packages/magento-cart-checkout/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-cart-checkout/package.json b/packages/magento-cart-checkout/package.json index d8c73898790..6128eb49b0a 100644 --- a/packages/magento-cart-checkout/package.json +++ b/packages/magento-cart-checkout/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-checkout", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,18 +15,18 @@ ".": "./index.ts" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-cart-coupon": "^10.0.3", - "@graphcommerce/magento-cart-items": "^10.0.3", - "@graphcommerce/magento-customer": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/react-hook-form": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-coupon": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-items": "^10.0.4-canary.0", + "@graphcommerce/magento-customer": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/react-hook-form": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-cart-coupon/CHANGELOG.md b/packages/magento-cart-coupon/CHANGELOG.md index 0f63ab0e2a7..960885354ed 100644 --- a/packages/magento-cart-coupon/CHANGELOG.md +++ b/packages/magento-cart-coupon/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-cart-coupon/package.json b/packages/magento-cart-coupon/package.json index 78ea70f4935..dad17a7d0e3 100644 --- a/packages/magento-cart-coupon/package.json +++ b/packages/magento-cart-coupon/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-coupon", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,16 +15,16 @@ ".": "./index.ts" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/react-hook-form": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/react-hook-form": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-cart-email/CHANGELOG.md b/packages/magento-cart-email/CHANGELOG.md index 178cdbe7910..ad7383dd370 100644 --- a/packages/magento-cart-email/CHANGELOG.md +++ b/packages/magento-cart-email/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-cart-email/package.json b/packages/magento-cart-email/package.json index a856549c534..bdd3095d9b7 100644 --- a/packages/magento-cart-email/package.json +++ b/packages/magento-cart-email/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-email", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,18 +15,18 @@ ".": "./index.ts" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-customer": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/react-hook-form": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-customer": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/react-hook-form": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-cart-items/CHANGELOG.md b/packages/magento-cart-items/CHANGELOG.md index d25bbe3dcb1..1f2165baf50 100644 --- a/packages/magento-cart-items/CHANGELOG.md +++ b/packages/magento-cart-items/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-cart-items/package.json b/packages/magento-cart-items/package.json index bd4e80645b2..da4b2e18a6c 100644 --- a/packages/magento-cart-items/package.json +++ b/packages/magento-cart-items/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-items", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,19 +15,19 @@ ".": "./index.ts" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/framer-next-pages": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-customer": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/react-hook-form": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/framer-next-pages": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-customer": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/react-hook-form": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-cart-payment-method/CHANGELOG.md b/packages/magento-cart-payment-method/CHANGELOG.md index 6fe2918ed26..8405dc70f9b 100644 --- a/packages/magento-cart-payment-method/CHANGELOG.md +++ b/packages/magento-cart-payment-method/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-cart-payment-method/package.json b/packages/magento-cart-payment-method/package.json index 904cc0f0de9..c7739e5ed98 100644 --- a/packages/magento-cart-payment-method/package.json +++ b/packages/magento-cart-payment-method/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-payment-method", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -18,18 +18,18 @@ "./PaymentMethodPlaceOrderNoop/PaymentMethodPlaceOrderNoop": "./PaymentMethodPlaceOrderNoop/PaymentMethodPlaceOrderNoop.tsx" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/framer-scroller": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-cart-shipping-address": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/react-hook-form": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/framer-scroller": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-shipping-address": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/react-hook-form": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-cart-pickup/CHANGELOG.md b/packages/magento-cart-pickup/CHANGELOG.md index e995a9f5b4a..8c5b28f881f 100644 --- a/packages/magento-cart-pickup/CHANGELOG.md +++ b/packages/magento-cart-pickup/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-cart-pickup/package.json b/packages/magento-cart-pickup/package.json index b7227bf5200..53d94f49702 100644 --- a/packages/magento-cart-pickup/package.json +++ b/packages/magento-cart-pickup/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-pickup", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -16,18 +16,18 @@ "./plugins/AddPickupInStore": "./plugins/AddPickupInStore.tsx" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/graphql-mesh": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-cart-shipping-method": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/react-hook-form": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-shipping-method": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/react-hook-form": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-cart-shipping-address/CHANGELOG.md b/packages/magento-cart-shipping-address/CHANGELOG.md index 408b846a530..0722a634c79 100644 --- a/packages/magento-cart-shipping-address/CHANGELOG.md +++ b/packages/magento-cart-shipping-address/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-cart-shipping-address/package.json b/packages/magento-cart-shipping-address/package.json index 678fc8bb7e2..366303ed30f 100644 --- a/packages/magento-cart-shipping-address/package.json +++ b/packages/magento-cart-shipping-address/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-shipping-address", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,17 +15,17 @@ ".": "./index.ts" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/graphql-mesh": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-customer": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-customer": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-cart-shipping-method/CHANGELOG.md b/packages/magento-cart-shipping-method/CHANGELOG.md index 604fdced1fb..c2942ff0044 100644 --- a/packages/magento-cart-shipping-method/CHANGELOG.md +++ b/packages/magento-cart-shipping-method/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-cart-shipping-method/package.json b/packages/magento-cart-shipping-method/package.json index 86721b6e5b0..8feec489280 100644 --- a/packages/magento-cart-shipping-method/package.json +++ b/packages/magento-cart-shipping-method/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-shipping-method", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,19 +15,19 @@ ".": "./index.ts" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/framer-scroller": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-cart-shipping-address": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-config": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/react-hook-form": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/framer-scroller": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-shipping-address": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-config": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/react-hook-form": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-cart/CHANGELOG.md b/packages/magento-cart/CHANGELOG.md index 3dffdbfe03f..056e3c78b79 100644 --- a/packages/magento-cart/CHANGELOG.md +++ b/packages/magento-cart/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-cart/package.json b/packages/magento-cart/package.json index 50a19756577..58fb30aefd8 100644 --- a/packages/magento-cart/package.json +++ b/packages/magento-cart/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -20,20 +20,20 @@ "./plugins/useSignInFormMergeCart": "./plugins/useSignInFormMergeCart.ts" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/framer-next-pages": "^10.0.3", - "@graphcommerce/framer-scroller": "^10.0.3", - "@graphcommerce/framer-utils": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-customer": "^10.0.3", - "@graphcommerce/magento-graphql": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/react-hook-form": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/framer-next-pages": "^10.0.4-canary.0", + "@graphcommerce/framer-scroller": "^10.0.4-canary.0", + "@graphcommerce/framer-utils": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-customer": "^10.0.4-canary.0", + "@graphcommerce/magento-graphql": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/react-hook-form": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-category/CHANGELOG.md b/packages/magento-category/CHANGELOG.md index 2396d9aed94..c47daacc7c2 100644 --- a/packages/magento-category/CHANGELOG.md +++ b/packages/magento-category/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-category/package.json b/packages/magento-category/package.json index d0c7da0f2d9..a806969ed41 100644 --- a/packages/magento-category/package.json +++ b/packages/magento-category/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-category", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -17,15 +17,15 @@ "./components/CategoryBreadcrumb/categoryToBreadcrumbs": "./components/CategoryBreadcrumb/categoryToBreadcrumbs.ts" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/framer-scroller": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/framer-scroller": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-cms/CHANGELOG.md b/packages/magento-cms/CHANGELOG.md index a7f1ac4e254..954458035bb 100644 --- a/packages/magento-cms/CHANGELOG.md +++ b/packages/magento-cms/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-cms/package.json b/packages/magento-cms/package.json index a2a4fc897a4..95c40ce6cae 100644 --- a/packages/magento-cms/package.json +++ b/packages/magento-cms/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cms", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,11 +15,11 @@ ".": "./index.ts" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-compare/CHANGELOG.md b/packages/magento-compare/CHANGELOG.md index 04cabdaae50..fdf01d9fd82 100644 --- a/packages/magento-compare/CHANGELOG.md +++ b/packages/magento-compare/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-compare +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-compare/package.json b/packages/magento-compare/package.json index aac45ac0bc1..a8f2abfde6c 100644 --- a/packages/magento-compare/package.json +++ b/packages/magento-compare/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-compare", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -19,16 +19,16 @@ "./plugins/AddCompareTypePolicies": "./plugins/AddCompareTypePolicies.tsx" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/framer-next-pages": "^10.0.3", - "@graphcommerce/framer-utils": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/framer-next-pages": "^10.0.4-canary.0", + "@graphcommerce/framer-utils": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-customer/CHANGELOG.md b/packages/magento-customer/CHANGELOG.md index c4f4cf3cd4c..ca4cb8182a6 100644 --- a/packages/magento-customer/CHANGELOG.md +++ b/packages/magento-customer/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-customer/package.json b/packages/magento-customer/package.json index ed849d90fdd..6bbaab4191f 100644 --- a/packages/magento-customer/package.json +++ b/packages/magento-customer/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-customer", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -21,20 +21,20 @@ "./plugins/magentoCustomerPrivateQueryContext": "./plugins/magentoCustomerPrivateQueryContext.ts" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/framer-next-pages": "^10.0.3", - "@graphcommerce/framer-utils": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/graphql-mesh": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-graphql": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-config": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/react-hook-form": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/framer-next-pages": "^10.0.4-canary.0", + "@graphcommerce/framer-utils": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-graphql": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-config": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/react-hook-form": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-graphql-rest/CHANGELOG.md b/packages/magento-graphql-rest/CHANGELOG.md index 0b8bd0debe3..dd8d18549de 100644 --- a/packages/magento-graphql-rest/CHANGELOG.md +++ b/packages/magento-graphql-rest/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-graphql-rest +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-graphql-rest/package.json b/packages/magento-graphql-rest/package.json index 1ff62f70552..889923a3643 100644 --- a/packages/magento-graphql-rest/package.json +++ b/packages/magento-graphql-rest/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-graphql-rest", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "main": "index.ts", "prettier": "@graphcommerce/prettier-config-pwa", @@ -21,11 +21,11 @@ "generate": "tsx ./scripts/generate-spec.mts" }, "peerDependencies": { - "@graphcommerce/graphql-mesh": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/magento-search": "^10.0.3", - "@graphcommerce/next-config": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/magento-search": "^10.0.4-canary.0", + "@graphcommerce/next-config": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", "graphql": "^16.0.0" }, "devDependencies": { diff --git a/packages/magento-graphql/CHANGELOG.md b/packages/magento-graphql/CHANGELOG.md index d6b43b73dec..9ea33bd4a89 100644 --- a/packages/magento-graphql/CHANGELOG.md +++ b/packages/magento-graphql/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-graphql/package.json b/packages/magento-graphql/package.json index cc79dd30c90..c8cdc484c87 100644 --- a/packages/magento-graphql/package.json +++ b/packages/magento-graphql/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-graphql", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "main": "index.ts", "prettier": "@graphcommerce/prettier-config-pwa", @@ -25,10 +25,10 @@ "./mesh/magentoOrderItemResolvers.ts": "./mesh/magentoOrderItemResolvers.ts" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "graphql": "^16.0.0", "next": "*", "react": "^19.2.0", diff --git a/packages/magento-newsletter/CHANGELOG.md b/packages/magento-newsletter/CHANGELOG.md index fcbc986d88e..f6f05fd373e 100644 --- a/packages/magento-newsletter/CHANGELOG.md +++ b/packages/magento-newsletter/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-newsletter/package.json b/packages/magento-newsletter/package.json index 29410590472..88d3212f90e 100644 --- a/packages/magento-newsletter/package.json +++ b/packages/magento-newsletter/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-newsletter", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,15 +15,15 @@ ".": "./index.ts" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-customer": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/react-hook-form": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-customer": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/react-hook-form": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-payment-adyen/CHANGELOG.md b/packages/magento-payment-adyen/CHANGELOG.md index 4e7e180fb0c..b8517744d32 100644 --- a/packages/magento-payment-adyen/CHANGELOG.md +++ b/packages/magento-payment-adyen/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-adyen +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-payment-adyen/package.json b/packages/magento-payment-adyen/package.json index df2782415f1..057cbb3bbd7 100644 --- a/packages/magento-payment-adyen/package.json +++ b/packages/magento-payment-adyen/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-adyen", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -16,18 +16,18 @@ "./plugins/AddAdyenMethods": "./plugins/AddAdyenMethods.tsx" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/graphql-mesh": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-cart-payment-method": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-payment-afterpay/CHANGELOG.md b/packages/magento-payment-afterpay/CHANGELOG.md index e8191d94dc7..272e59f3467 100644 --- a/packages/magento-payment-afterpay/CHANGELOG.md +++ b/packages/magento-payment-afterpay/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-afterpay +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-payment-afterpay/package.json b/packages/magento-payment-afterpay/package.json index e566c57dd72..238220c04bf 100644 --- a/packages/magento-payment-afterpay/package.json +++ b/packages/magento-payment-afterpay/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-afterpay", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -16,17 +16,17 @@ "./plugins/AddAfterpayMethods": "./plugins/AddAfterpayMethods.tsx" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-cart-payment-method": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/react-hook-form": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/react-hook-form": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-payment-braintree/CHANGELOG.md b/packages/magento-payment-braintree/CHANGELOG.md index 0d43951d75d..2e4f9438889 100644 --- a/packages/magento-payment-braintree/CHANGELOG.md +++ b/packages/magento-payment-braintree/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-payment-braintree/package.json b/packages/magento-payment-braintree/package.json index 3e9bd1068b0..06a5a3f7862 100644 --- a/packages/magento-payment-braintree/package.json +++ b/packages/magento-payment-braintree/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-braintree", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -22,19 +22,19 @@ "braintree-web": "^3.134.0" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-cart-payment-method": "^10.0.3", - "@graphcommerce/magento-cart-shipping-address": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/magento-product-configurable": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/react-hook-form": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-shipping-address": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/magento-product-configurable": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/react-hook-form": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-payment-included/CHANGELOG.md b/packages/magento-payment-included/CHANGELOG.md index 81872e04064..38f451f4159 100644 --- a/packages/magento-payment-included/CHANGELOG.md +++ b/packages/magento-payment-included/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-payment-included/package.json b/packages/magento-payment-included/package.json index 2c18e279655..06bf33e675b 100644 --- a/packages/magento-payment-included/package.json +++ b/packages/magento-payment-included/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-included", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -16,20 +16,20 @@ "./plugins/AddIncludedMethods": "./plugins/AddIncludedMethods.tsx" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-cart-payment-method": "^10.0.3", - "@graphcommerce/magento-cart-shipping-address": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/magento-product-configurable": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/react-hook-form": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-shipping-address": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/magento-product-configurable": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/react-hook-form": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-payment-klarna/CHANGELOG.md b/packages/magento-payment-klarna/CHANGELOG.md index bdf8b59ed36..c1d803b0e09 100644 --- a/packages/magento-payment-klarna/CHANGELOG.md +++ b/packages/magento-payment-klarna/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-payment-klarna/package.json b/packages/magento-payment-klarna/package.json index ac09b32c30d..e99adafadcb 100644 --- a/packages/magento-payment-klarna/package.json +++ b/packages/magento-payment-klarna/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-klarna", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -16,18 +16,18 @@ "./plugins/AddKlarnaMethods": "./plugins/AddKlarnaMethods.tsx" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-cart-checkout": "^10.0.3", - "@graphcommerce/magento-cart-payment-method": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/react-hook-form": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-checkout": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/react-hook-form": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-payment-multisafepay/CHANGELOG.md b/packages/magento-payment-multisafepay/CHANGELOG.md index 6a828ef73ca..73f3a9b5467 100644 --- a/packages/magento-payment-multisafepay/CHANGELOG.md +++ b/packages/magento-payment-multisafepay/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-multisafepay +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-payment-multisafepay/package.json b/packages/magento-payment-multisafepay/package.json index e67698354f3..b4978418c51 100644 --- a/packages/magento-payment-multisafepay/package.json +++ b/packages/magento-payment-multisafepay/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-multisafepay", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,22 +12,22 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/graphql-mesh": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-cart-checkout": "^10.0.3", - "@graphcommerce/magento-cart-payment-method": "^10.0.3", - "@graphcommerce/magento-cart-shipping-address": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/magento-product-configurable": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/react-hook-form": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-checkout": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-shipping-address": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/magento-product-configurable": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/react-hook-form": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-payment-paypal/CHANGELOG.md b/packages/magento-payment-paypal/CHANGELOG.md index 627822fcde1..ce3ee5a0312 100644 --- a/packages/magento-payment-paypal/CHANGELOG.md +++ b/packages/magento-payment-paypal/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-paypal +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-payment-paypal/package.json b/packages/magento-payment-paypal/package.json index e7eeac39993..7291f775129 100644 --- a/packages/magento-payment-paypal/package.json +++ b/packages/magento-payment-paypal/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-paypal", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-cart-payment-method": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-payment-tokens/CHANGELOG.md b/packages/magento-payment-tokens/CHANGELOG.md index 65455f8d9bc..005e3944baa 100644 --- a/packages/magento-payment-tokens/CHANGELOG.md +++ b/packages/magento-payment-tokens/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-tokens +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-payment-tokens/package.json b/packages/magento-payment-tokens/package.json index 03ba90f7bfe..85a14ea3a32 100644 --- a/packages/magento-payment-tokens/package.json +++ b/packages/magento-payment-tokens/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-tokens", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-cart-payment-method": "^10.0.3", - "@graphcommerce/magento-customer": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.0", + "@graphcommerce/magento-customer": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-product-bundle/CHANGELOG.md b/packages/magento-product-bundle/CHANGELOG.md index d271833c5fa..8ad028159fe 100644 --- a/packages/magento-product-bundle/CHANGELOG.md +++ b/packages/magento-product-bundle/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-product-bundle/package.json b/packages/magento-product-bundle/package.json index ec496741c22..e9421cc8065 100644 --- a/packages/magento-product-bundle/package.json +++ b/packages/magento-product-bundle/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-bundle", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,19 +12,19 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-cart-items": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/magento-product-simple": "^10.0.3", - "@graphcommerce/magento-product-virtual": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-items": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/magento-product-simple": "^10.0.4-canary.0", + "@graphcommerce/magento-product-virtual": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-product-configurable/CHANGELOG.md b/packages/magento-product-configurable/CHANGELOG.md index a23dddb1fc6..99e481df9db 100644 --- a/packages/magento-product-configurable/CHANGELOG.md +++ b/packages/magento-product-configurable/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-product-configurable/package.json b/packages/magento-product-configurable/package.json index 6d9727324e5..c4bb08e3a24 100644 --- a/packages/magento-product-configurable/package.json +++ b/packages/magento-product-configurable/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-configurable", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,23 +12,23 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/graphql-mesh": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/lingui-next": "10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-cart-items": "^10.0.3", - "@graphcommerce/magento-category": "^10.0.3", - "@graphcommerce/magento-customer": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/magento-product-simple": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/react-hook-form": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/lingui-next": "10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-items": "^10.0.4-canary.0", + "@graphcommerce/magento-category": "^10.0.4-canary.0", + "@graphcommerce/magento-customer": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/magento-product-simple": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/react-hook-form": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-product-downloadable/CHANGELOG.md b/packages/magento-product-downloadable/CHANGELOG.md index b1518e480bb..82c272a2105 100644 --- a/packages/magento-product-downloadable/CHANGELOG.md +++ b/packages/magento-product-downloadable/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-product-downloadable/package.json b/packages/magento-product-downloadable/package.json index 1fb4b870128..da441003fbb 100644 --- a/packages/magento-product-downloadable/package.json +++ b/packages/magento-product-downloadable/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-downloadable", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-cart-items": "^10.0.3", - "@graphcommerce/magento-customer": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-items": "^10.0.4-canary.0", + "@graphcommerce/magento-customer": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-product-grouped/CHANGELOG.md b/packages/magento-product-grouped/CHANGELOG.md index 361e9bfa3c8..067a97ae4f0 100644 --- a/packages/magento-product-grouped/CHANGELOG.md +++ b/packages/magento-product-grouped/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-product-grouped/package.json b/packages/magento-product-grouped/package.json index 00d66380994..b1a214067bc 100644 --- a/packages/magento-product-grouped/package.json +++ b/packages/magento-product-grouped/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-grouped", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/magento-product-simple": "^10.0.3", - "@graphcommerce/magento-product-virtual": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/magento-product-simple": "^10.0.4-canary.0", + "@graphcommerce/magento-product-virtual": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-product-simple/CHANGELOG.md b/packages/magento-product-simple/CHANGELOG.md index 2e41861585e..6239f5e042b 100644 --- a/packages/magento-product-simple/CHANGELOG.md +++ b/packages/magento-product-simple/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-product-simple/package.json b/packages/magento-product-simple/package.json index 92f738858e1..1475bfd8574 100644 --- a/packages/magento-product-simple/package.json +++ b/packages/magento-product-simple/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-simple", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-cart-items": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-items": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-product-virtual/CHANGELOG.md b/packages/magento-product-virtual/CHANGELOG.md index f1c16881ab7..9b94df86ca0 100644 --- a/packages/magento-product-virtual/CHANGELOG.md +++ b/packages/magento-product-virtual/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-product-virtual/package.json b/packages/magento-product-virtual/package.json index 63be1ce5e11..bd366012988 100644 --- a/packages/magento-product-virtual/package.json +++ b/packages/magento-product-virtual/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-virtual", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-cart-items": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-items": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-product/CHANGELOG.md b/packages/magento-product/CHANGELOG.md index f8f122175f6..37cd1860f04 100644 --- a/packages/magento-product/CHANGELOG.md +++ b/packages/magento-product/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-product/package.json b/packages/magento-product/package.json index 7a6ec8f3013..78584dc16ae 100644 --- a/packages/magento-product/package.json +++ b/packages/magento-product/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -18,18 +18,18 @@ "typescript": "5.9.3" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/framer-next-pages": "^10.0.3", - "@graphcommerce/framer-scroller": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/graphql-mesh": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/framer-next-pages": "^10.0.4-canary.0", + "@graphcommerce/framer-scroller": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-recently-viewed-products/CHANGELOG.md b/packages/magento-recently-viewed-products/CHANGELOG.md index 3807990d3a2..024e000e738 100644 --- a/packages/magento-recently-viewed-products/CHANGELOG.md +++ b/packages/magento-recently-viewed-products/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-recently-viewed-products +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-recently-viewed-products/package.json b/packages/magento-recently-viewed-products/package.json index 8869098f528..eb75e2023b5 100644 --- a/packages/magento-recently-viewed-products/package.json +++ b/packages/magento-recently-viewed-products/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-recently-viewed-products", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/graphql-mesh": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/magento-product-configurable": "^10.0.3", - "@graphcommerce/next-config": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/magento-product-configurable": "^10.0.4-canary.0", + "@graphcommerce/next-config": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@mui/material": "^7.0.0", "framer-motion": "^11.0.0", "next": "*", diff --git a/packages/magento-review/CHANGELOG.md b/packages/magento-review/CHANGELOG.md index 6709b510c42..69b655105a3 100644 --- a/packages/magento-review/CHANGELOG.md +++ b/packages/magento-review/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-review/package.json b/packages/magento-review/package.json index d72fa298029..137851409cd 100644 --- a/packages/magento-review/package.json +++ b/packages/magento-review/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-review", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -18,18 +18,18 @@ "typescript": "5.9.3" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/graphql-mesh": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-customer": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/react-hook-form": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-customer": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/react-hook-form": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-search-overlay/CHANGELOG.md b/packages/magento-search-overlay/CHANGELOG.md index df4cb5289b1..cc104ddf67f 100644 --- a/packages/magento-search-overlay/CHANGELOG.md +++ b/packages/magento-search-overlay/CHANGELOG.md @@ -1,5 +1,13 @@ # @graphcommerce/magento-search-overlay +## 10.0.4-canary.0 + +### Patch Changes + +- [#2580](https://github.com/graphcommerce-org/graphcommerce/pull/2580) [`c406bbd`](https://github.com/graphcommerce-org/graphcommerce/commit/c406bbd843af025c8315faf0831682b88dcfa6b3) - Use immediate input value for Enter navigation. + + Modified SearchOverlayProvider to pull the search query directly from the event target during the Enter key event. This prevents the "partial query" bug caused by navigating with the lagging debounced state. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers)) + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-search-overlay/package.json b/packages/magento-search-overlay/package.json index 0473e79646e..0f94f0f29c1 100644 --- a/packages/magento-search-overlay/package.json +++ b/packages/magento-search-overlay/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-search-overlay", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/framer-utils": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/magento-search": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/react-hook-form": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/framer-utils": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/magento-search": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/react-hook-form": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-search/CHANGELOG.md b/packages/magento-search/CHANGELOG.md index 33e4296d555..62f6c54dfc1 100644 --- a/packages/magento-search/CHANGELOG.md +++ b/packages/magento-search/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-search/package.json b/packages/magento-search/package.json index 1f781a5b270..d99c7ef07f8 100644 --- a/packages/magento-search/package.json +++ b/packages/magento-search/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-search", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/framer-utils": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/react-hook-form": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/framer-utils": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/react-hook-form": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-store/CHANGELOG.md b/packages/magento-store/CHANGELOG.md index 05f65c11d06..cf7db931977 100644 --- a/packages/magento-store/CHANGELOG.md +++ b/packages/magento-store/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-store/package.json b/packages/magento-store/package.json index 779c89c4f6a..fa0c0c81ebf 100644 --- a/packages/magento-store/package.json +++ b/packages/magento-store/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-store", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -19,15 +19,15 @@ "./mesh/resolvers.ts": "./mesh/resolvers.ts" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/framer-utils": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/graphql-mesh": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/framer-utils": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-wishlist/CHANGELOG.md b/packages/magento-wishlist/CHANGELOG.md index 4533fa5c36e..113fd2e5336 100644 --- a/packages/magento-wishlist/CHANGELOG.md +++ b/packages/magento-wishlist/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-wishlist +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/magento-wishlist/package.json b/packages/magento-wishlist/package.json index 1f8cb8258e6..4e011508cd0 100644 --- a/packages/magento-wishlist/package.json +++ b/packages/magento-wishlist/package.json @@ -1,6 +1,6 @@ { "name": "@graphcommerce/magento-wishlist", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "browserslist": [ @@ -13,20 +13,20 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/graphql-mesh": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-customer": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/magento-product-configurable": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-config": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-customer": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/magento-product-configurable": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-config": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/mollie-magento-payment/CHANGELOG.md b/packages/mollie-magento-payment/CHANGELOG.md index ac413368f9d..1bd39347067 100644 --- a/packages/mollie-magento-payment/CHANGELOG.md +++ b/packages/mollie-magento-payment/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/mollie-magento-payment/package.json b/packages/mollie-magento-payment/package.json index 25c3e9cd648..77efac3f3bb 100644 --- a/packages/mollie-magento-payment/package.json +++ b/packages/mollie-magento-payment/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/mollie-magento-payment", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,21 +12,21 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.3", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/graphql": "^10.0.3", - "@graphcommerce/graphql-mesh": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/magento-cart": "^10.0.3", - "@graphcommerce/magento-cart-payment-method": "^10.0.3", - "@graphcommerce/magento-cart-shipping-address": "^10.0.3", - "@graphcommerce/magento-product": "^10.0.3", - "@graphcommerce/magento-product-configurable": "^10.0.3", - "@graphcommerce/magento-store": "^10.0.3", - "@graphcommerce/next-ui": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/react-hook-form": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/graphql": "^10.0.4-canary.0", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/magento-cart": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.0", + "@graphcommerce/magento-cart-shipping-address": "^10.0.4-canary.0", + "@graphcommerce/magento-product": "^10.0.4-canary.0", + "@graphcommerce/magento-product-configurable": "^10.0.4-canary.0", + "@graphcommerce/magento-store": "^10.0.4-canary.0", + "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/react-hook-form": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/next-ui/CHANGELOG.md b/packages/next-ui/CHANGELOG.md index 270d2c73224..45e5df814a4 100644 --- a/packages/next-ui/CHANGELOG.md +++ b/packages/next-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/next-ui/package.json b/packages/next-ui/package.json index c4ff6cc94b9..55b67eb86de 100644 --- a/packages/next-ui/package.json +++ b/packages/next-ui/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/next-ui", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -42,13 +42,13 @@ "@emotion/react": "^11.14.0", "@emotion/server": "^11.11.0", "@emotion/styled": "^11.14.1", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/framer-next-pages": "^10.0.3", - "@graphcommerce/framer-scroller": "^10.0.3", - "@graphcommerce/framer-utils": "^10.0.3", - "@graphcommerce/image": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/framer-next-pages": "^10.0.4-canary.0", + "@graphcommerce/framer-scroller": "^10.0.4-canary.0", + "@graphcommerce/framer-utils": "^10.0.4-canary.0", + "@graphcommerce/image": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/react-hook-form/CHANGELOG.md b/packages/react-hook-form/CHANGELOG.md index 38e61081357..2fea4d137bb 100644 --- a/packages/react-hook-form/CHANGELOG.md +++ b/packages/react-hook-form/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/react-hook-form/package.json b/packages/react-hook-form/package.json index de4f3cc6a2a..9b93b7982dc 100644 --- a/packages/react-hook-form/package.json +++ b/packages/react-hook-form/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/react-hook-form", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -13,9 +13,9 @@ }, "peerDependencies": { "@apollo/client": "*", - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@mui/utils": "^7.0.0", "graphql": "^16.6.0", "react": "^19.2.0", diff --git a/packages/service-worker/CHANGELOG.md b/packages/service-worker/CHANGELOG.md index 78def8af08a..d34abd594f0 100644 --- a/packages/service-worker/CHANGELOG.md +++ b/packages/service-worker/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/service-worker +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packages/service-worker/package.json b/packages/service-worker/package.json index 39076e001c1..2da704b9b0e 100644 --- a/packages/service-worker/package.json +++ b/packages/service-worker/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/service-worker", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,9 +12,9 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", "@serwist/next": "*", "next": "*", "serwist": "*" diff --git a/packagesDev/browserslist-config/CHANGELOG.md b/packagesDev/browserslist-config/CHANGELOG.md index db75daf05ca..52bdae02949 100644 --- a/packagesDev/browserslist-config/CHANGELOG.md +++ b/packagesDev/browserslist-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packagesDev/browserslist-config/package.json b/packagesDev/browserslist-config/package.json index c3771ee04b8..798821c579c 100644 --- a/packagesDev/browserslist-config/package.json +++ b/packagesDev/browserslist-config/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/browserslist-config-pwa", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "main": "index.js", "sideEffects": false, "exports": { diff --git a/packagesDev/changeset-changelog/CHANGELOG.md b/packagesDev/changeset-changelog/CHANGELOG.md index 063c1709746..507623d8239 100644 --- a/packagesDev/changeset-changelog/CHANGELOG.md +++ b/packagesDev/changeset-changelog/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/changeset-changelog +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packagesDev/changeset-changelog/package.json b/packagesDev/changeset-changelog/package.json index eee0e51e8d9..0277f97e25b 100644 --- a/packagesDev/changeset-changelog/package.json +++ b/packagesDev/changeset-changelog/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/changeset-changelog", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "type": "commonjs", "exports": { ".": { diff --git a/packagesDev/eslint-config/CHANGELOG.md b/packagesDev/eslint-config/CHANGELOG.md index 3f98cfc5fe1..9c80c6bbeb1 100644 --- a/packagesDev/eslint-config/CHANGELOG.md +++ b/packagesDev/eslint-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packagesDev/eslint-config/package.json b/packagesDev/eslint-config/package.json index ecaa0a81ee0..2dc2d8888df 100644 --- a/packagesDev/eslint-config/package.json +++ b/packagesDev/eslint-config/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/eslint-config-pwa", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "type": "module", "main": "index.mjs", "exports": { @@ -12,7 +12,7 @@ "@eslint/compat": "^2.0.0", "@eslint/eslintrc": "^3.3.3", "@eslint/js": "^9.39.2", - "@graphcommerce/typescript-config-pwa": "10.0.3", + "@graphcommerce/typescript-config-pwa": "10.0.4-canary.0", "@next/eslint-plugin-next": "16.1.1", "@typescript-eslint/eslint-plugin": "^8.50.1", "@typescript-eslint/parser": "^8.50.1", diff --git a/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md b/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md index 0d275075004..4a0c9c74d85 100644 --- a/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md +++ b/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packagesDev/graphql-codegen-markdown-docs/package.json b/packagesDev/graphql-codegen-markdown-docs/package.json index 54cf16c816b..481d4ffa65e 100644 --- a/packagesDev/graphql-codegen-markdown-docs/package.json +++ b/packagesDev/graphql-codegen-markdown-docs/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql-codegen-markdown-docs", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "type": "commonjs", "exports": { @@ -34,8 +34,8 @@ "parse-filepath": "^1.0.2" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3" + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0" } } diff --git a/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md b/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md index 36cfe6edcb6..20801216eed 100644 --- a/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md +++ b/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packagesDev/graphql-codegen-near-operation-file/package.json b/packagesDev/graphql-codegen-near-operation-file/package.json index 87fd594d5c2..5cb2b83c668 100644 --- a/packagesDev/graphql-codegen-near-operation-file/package.json +++ b/packagesDev/graphql-codegen-near-operation-file/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql-codegen-near-operation-file", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "type": "commonjs", "scripts": { @@ -27,9 +27,9 @@ "parse-filepath": "^1.0.2" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3", - "@graphcommerce/typescript-config-pwa": "^10.0.3" + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0" }, "exports": { ".": { diff --git a/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md b/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md index b6811f500f4..004cd9e5cf2 100644 --- a/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md +++ b/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json b/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json index 9b6c4edb3f6..6606a5716a4 100644 --- a/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json +++ b/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql-codegen-relay-optimizer-plugin", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "description": "GraphQL Code Generator plugin for optimizing your GraphQL queries relay style.", "type": "commonjs", "exports": { @@ -26,8 +26,8 @@ "typescript": "5.9.3" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.3", - "@graphcommerce/prettier-config-pwa": "^10.0.3" + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0" }, "prettier": "@graphcommerce/prettier-config-pwa", "eslint": { diff --git a/packagesDev/misc/CHANGELOG.md b/packagesDev/misc/CHANGELOG.md index dcb318e15d6..3d0b8edd26f 100644 --- a/packagesDev/misc/CHANGELOG.md +++ b/packagesDev/misc/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/misc +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packagesDev/misc/package.json b/packagesDev/misc/package.json index 6291c85fddf..1b1bb6cea3c 100644 --- a/packagesDev/misc/package.json +++ b/packagesDev/misc/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/misc", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "exports": { ".": "./index.ts" } diff --git a/packagesDev/next-config/CHANGELOG.md b/packagesDev/next-config/CHANGELOG.md index 8fd7887f2d2..b2712204773 100644 --- a/packagesDev/next-config/CHANGELOG.md +++ b/packagesDev/next-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ### Patch Changes diff --git a/packagesDev/next-config/package.json b/packagesDev/next-config/package.json index 579e4c752f6..039eb889208 100644 --- a/packagesDev/next-config/package.json +++ b/packagesDev/next-config/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/next-config", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "type": "module", "exports": { ".": { @@ -63,7 +63,7 @@ }, "peerDependencies": { "@apollo/client": "*", - "@graphcommerce/prettier-config-pwa": "^10.0.3", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", "@lingui/loader": "*", "@lingui/macro": "*", "@lingui/react": "*", diff --git a/packagesDev/prettier-config/CHANGELOG.md b/packagesDev/prettier-config/CHANGELOG.md index 34eb4ddd209..887c27318d2 100644 --- a/packagesDev/prettier-config/CHANGELOG.md +++ b/packagesDev/prettier-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packagesDev/prettier-config/package.json b/packagesDev/prettier-config/package.json index 350aae62895..88ac128bd7f 100644 --- a/packagesDev/prettier-config/package.json +++ b/packagesDev/prettier-config/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/prettier-config-pwa", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "dependencies": { "@ianvs/prettier-plugin-sort-imports": "^4.7.0", "prettier": "^3.7.4", diff --git a/packagesDev/typescript-config/CHANGELOG.md b/packagesDev/typescript-config/CHANGELOG.md index a0d6777603c..d6317c836d2 100644 --- a/packagesDev/typescript-config/CHANGELOG.md +++ b/packagesDev/typescript-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.0 + ## 10.0.3 ## 10.0.3-canary.0 diff --git a/packagesDev/typescript-config/package.json b/packagesDev/typescript-config/package.json index bf855373afc..4a696bc7038 100644 --- a/packagesDev/typescript-config/package.json +++ b/packagesDev/typescript-config/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/typescript-config-pwa", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.3", + "version": "10.0.4-canary.0", "sideEffects": false, "exports": { ".": "./index.js", From 01bb1df9314ac4b848df7dd58f15b7db88bc5a45 Mon Sep 17 00:00:00 2001 From: Giovanni-Schroevers Date: Wed, 21 Jan 2026 12:54:11 +0100 Subject: [PATCH 003/115] fix: allow redirect on successful payment --- .changeset/sunny-hoops-attend.md | 5 +++++ .../components/MSPPaymentHandler/MSPPaymentHandler.tsx | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 .changeset/sunny-hoops-attend.md diff --git a/.changeset/sunny-hoops-attend.md b/.changeset/sunny-hoops-attend.md new file mode 100644 index 00000000000..b23bbd0161d --- /dev/null +++ b/.changeset/sunny-hoops-attend.md @@ -0,0 +1,5 @@ +--- +'@graphcommerce/magento-payment-multisafepay': patch +--- + +Fixed a bug in MSPPaymentHandler where successful MultiSafepay payments were prevented from redirecting to the success page due to an incorrect condition in the payment handler. diff --git a/packages/magento-payment-multisafepay/components/MSPPaymentHandler/MSPPaymentHandler.tsx b/packages/magento-payment-multisafepay/components/MSPPaymentHandler/MSPPaymentHandler.tsx index ba48fbc3df7..08bf8e091aa 100644 --- a/packages/magento-payment-multisafepay/components/MSPPaymentHandler/MSPPaymentHandler.tsx +++ b/packages/magento-payment-multisafepay/components/MSPPaymentHandler/MSPPaymentHandler.tsx @@ -18,8 +18,7 @@ export function MSPPaymentHandler(props: PaymentHandlerProps) { const { justLocked, success, cart_id: cartId, locked, method, order_number } = lockStatus - const canProceed = - !justLocked && locked && cartId && method === code && !called && success !== '1' + const canProceed = !justLocked && locked && cartId && method === code && !called // When the payment has failed we restore the current cart const shouldRestore = canProceed && success !== '1' From c9e862ad0b2fe4a30855df6ddfd27b7c052ac4e8 Mon Sep 17 00:00:00 2001 From: Giovanni-Schroevers Date: Fri, 23 Jan 2026 14:14:54 +0100 Subject: [PATCH 004/115] fix: get redirectTo from the url params instead of the headers --- .changeset/dull-points-fly.md | 5 +++++ packages/ecommerce-ui/route/preview.ts | 11 +++++++---- 2 files changed, 12 insertions(+), 4 deletions(-) create mode 100644 .changeset/dull-points-fly.md diff --git a/.changeset/dull-points-fly.md b/.changeset/dull-points-fly.md new file mode 100644 index 00000000000..ffb5ab910fd --- /dev/null +++ b/.changeset/dull-points-fly.md @@ -0,0 +1,5 @@ +--- +'@graphcommerce/ecommerce-ui': patch +--- + +Get redirectTo from the url params instead of the headers diff --git a/packages/ecommerce-ui/route/preview.ts b/packages/ecommerce-ui/route/preview.ts index 942be5690b4..208cb0ba182 100644 --- a/packages/ecommerce-ui/route/preview.ts +++ b/packages/ecommerce-ui/route/preview.ts @@ -8,9 +8,12 @@ export default async function handler(req: NextApiRequest, res: NextApiResponse) // const domain = req.url ? new URL(req.url) : undefined const referer = req.headers.referer ? new URL(req.headers.referer) : undefined - const redirectTo = - req.headers.redirectTo ?? - (referer && req.headers.host === referer.host ? referer.pathname : '/') + let redirectTo = + req.query.redirectTo ?? (referer && req.headers.host === referer.host ? referer.pathname : '/') + + if (redirectTo === '/page/home') { + redirectTo = '/' + } if (!action) { res.status(400).json({ message: 'No action provided' }) @@ -27,7 +30,7 @@ export default async function handler(req: NextApiRequest, res: NextApiResponse) } res.setDraftMode({ enable: true }) - const previewData = req.query.previewDat + const previewData = req.query.previewData ? (JSON.parse(`${req.query.previewData}`) as PreviewData) : previewModeDefaults() From ab6f03867ca4798eaa21c0d97928cc2bbfdb942b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 23 Jan 2026 15:24:29 +0000 Subject: [PATCH 005/115] chore(release): update prerelease versions --- .changeset/pre.json | 3 +- docs/CHANGELOG.md | 2 + docs/package.json | 4 +- examples/magento-graphcms/CHANGELOG.md | 2 + examples/magento-graphcms/package.json | 114 +++++++++--------- examples/magento-open-source/CHANGELOG.md | 2 + examples/magento-open-source/package.json | 106 ++++++++-------- packages/address-fields-nl/CHANGELOG.md | 2 + packages/address-fields-nl/package.json | 18 +-- packages/algolia-categories/CHANGELOG.md | 2 + packages/algolia-categories/package.json | 20 +-- packages/algolia-insights/CHANGELOG.md | 2 + packages/algolia-insights/package.json | 20 +-- packages/algolia-personalization/CHANGELOG.md | 2 + packages/algolia-personalization/package.json | 20 +-- packages/algolia-products/CHANGELOG.md | 2 + packages/algolia-products/package.json | 18 +-- packages/algolia-recommend/CHANGELOG.md | 2 + packages/algolia-recommend/package.json | 12 +- packages/algolia-search/CHANGELOG.md | 2 + packages/algolia-search/package.json | 24 ++-- packages/cli/CHANGELOG.md | 2 + packages/cli/package.json | 14 +-- .../demo-magento-graphcommerce/CHANGELOG.md | 2 + .../demo-magento-graphcommerce/package.json | 18 +-- packages/ecommerce-ui/CHANGELOG.md | 6 + packages/ecommerce-ui/package.json | 14 +-- packages/framer-next-pages/CHANGELOG.md | 2 + .../framer-next-pages/example/CHANGELOG.md | 2 + .../framer-next-pages/example/package.json | 18 +-- packages/framer-next-pages/package.json | 10 +- packages/framer-scroller/CHANGELOG.md | 2 + packages/framer-scroller/example/CHANGELOG.md | 2 + packages/framer-scroller/example/package.json | 22 ++-- packages/framer-scroller/package.json | 12 +- packages/framer-utils/CHANGELOG.md | 2 + packages/framer-utils/package.json | 8 +- packages/google-datalayer/CHANGELOG.md | 2 + packages/google-datalayer/package.json | 20 +-- packages/google-playstore/CHANGELOG.md | 2 + packages/google-playstore/package.json | 10 +- packages/googleanalytics/CHANGELOG.md | 2 + packages/googleanalytics/package.json | 16 +-- packages/googlerecaptcha/CHANGELOG.md | 2 + packages/googlerecaptcha/package.json | 16 +-- packages/googletagmanager/CHANGELOG.md | 2 + packages/googletagmanager/package.json | 12 +- packages/graphcms-ui/CHANGELOG.md | 2 + packages/graphcms-ui/package.json | 4 +- packages/graphql-mesh/CHANGELOG.md | 2 + packages/graphql-mesh/package.json | 8 +- packages/graphql/CHANGELOG.md | 2 + packages/graphql/package.json | 14 +-- packages/hygraph-cli/CHANGELOG.md | 2 + packages/hygraph-cli/package.json | 10 +- packages/hygraph-dynamic-rows-ui/CHANGELOG.md | 2 + packages/hygraph-dynamic-rows-ui/package.json | 10 +- packages/hygraph-dynamic-rows/CHANGELOG.md | 2 + packages/hygraph-dynamic-rows/package.json | 16 +-- packages/hygraph-ui/CHANGELOG.md | 2 + packages/hygraph-ui/package.json | 16 +-- packages/image/CHANGELOG.md | 2 + packages/image/example/CHANGELOG.md | 2 + packages/image/example/package.json | 10 +- packages/image/package.json | 10 +- packages/lingui-next/CHANGELOG.md | 2 + packages/lingui-next/package.json | 12 +- packages/magento-cart-checkout/CHANGELOG.md | 2 + packages/magento-cart-checkout/package.json | 26 ++-- packages/magento-cart-coupon/CHANGELOG.md | 2 + packages/magento-cart-coupon/package.json | 22 ++-- packages/magento-cart-email/CHANGELOG.md | 2 + packages/magento-cart-email/package.json | 26 ++-- packages/magento-cart-items/CHANGELOG.md | 2 + packages/magento-cart-items/package.json | 28 ++--- .../magento-cart-payment-method/CHANGELOG.md | 2 + .../magento-cart-payment-method/package.json | 26 ++-- packages/magento-cart-pickup/CHANGELOG.md | 2 + packages/magento-cart-pickup/package.json | 26 ++-- .../CHANGELOG.md | 2 + .../package.json | 24 ++-- .../magento-cart-shipping-method/CHANGELOG.md | 2 + .../magento-cart-shipping-method/package.json | 28 ++--- packages/magento-cart/CHANGELOG.md | 2 + packages/magento-cart/package.json | 30 ++--- packages/magento-category/CHANGELOG.md | 2 + packages/magento-category/package.json | 20 +-- packages/magento-cms/CHANGELOG.md | 2 + packages/magento-cms/package.json | 12 +- packages/magento-compare/CHANGELOG.md | 2 + packages/magento-compare/package.json | 22 ++-- packages/magento-customer/CHANGELOG.md | 2 + packages/magento-customer/package.json | 30 ++--- packages/magento-graphql-rest/CHANGELOG.md | 2 + packages/magento-graphql-rest/package.json | 12 +- packages/magento-graphql/CHANGELOG.md | 2 + packages/magento-graphql/package.json | 10 +- packages/magento-newsletter/CHANGELOG.md | 2 + packages/magento-newsletter/package.json | 20 +-- packages/magento-payment-adyen/CHANGELOG.md | 2 + packages/magento-payment-adyen/package.json | 26 ++-- .../magento-payment-afterpay/CHANGELOG.md | 2 + .../magento-payment-afterpay/package.json | 24 ++-- .../magento-payment-braintree/CHANGELOG.md | 2 + .../magento-payment-braintree/package.json | 28 ++--- .../magento-payment-included/CHANGELOG.md | 2 + .../magento-payment-included/package.json | 30 ++--- packages/magento-payment-klarna/CHANGELOG.md | 2 + packages/magento-payment-klarna/package.json | 26 ++-- .../magento-payment-multisafepay/CHANGELOG.md | 2 + .../magento-payment-multisafepay/package.json | 34 +++--- packages/magento-payment-paypal/CHANGELOG.md | 2 + packages/magento-payment-paypal/package.json | 22 ++-- packages/magento-payment-tokens/CHANGELOG.md | 2 + packages/magento-payment-tokens/package.json | 24 ++-- packages/magento-product-bundle/CHANGELOG.md | 2 + packages/magento-product-bundle/package.json | 28 ++--- .../magento-product-configurable/CHANGELOG.md | 2 + .../magento-product-configurable/package.json | 36 +++--- .../magento-product-downloadable/CHANGELOG.md | 2 + .../magento-product-downloadable/package.json | 24 ++-- packages/magento-product-grouped/CHANGELOG.md | 2 + packages/magento-product-grouped/package.json | 26 ++-- packages/magento-product-simple/CHANGELOG.md | 2 + packages/magento-product-simple/package.json | 18 +-- packages/magento-product-virtual/CHANGELOG.md | 2 + packages/magento-product-virtual/package.json | 18 +-- packages/magento-product/CHANGELOG.md | 2 + packages/magento-product/package.json | 26 ++-- .../CHANGELOG.md | 2 + .../package.json | 22 ++-- packages/magento-review/CHANGELOG.md | 2 + packages/magento-review/package.json | 26 ++-- packages/magento-search-overlay/CHANGELOG.md | 2 + packages/magento-search-overlay/package.json | 26 ++-- packages/magento-search/CHANGELOG.md | 2 + packages/magento-search/package.json | 24 ++-- packages/magento-store/CHANGELOG.md | 2 + packages/magento-store/package.json | 20 +-- packages/magento-wishlist/CHANGELOG.md | 2 + packages/magento-wishlist/package.json | 30 ++--- packages/mollie-magento-payment/CHANGELOG.md | 2 + packages/mollie-magento-payment/package.json | 32 ++--- packages/next-ui/CHANGELOG.md | 2 + packages/next-ui/package.json | 16 +-- packages/react-hook-form/CHANGELOG.md | 2 + packages/react-hook-form/package.json | 8 +- packages/service-worker/CHANGELOG.md | 2 + packages/service-worker/package.json | 8 +- packagesDev/browserslist-config/CHANGELOG.md | 2 + packagesDev/browserslist-config/package.json | 2 +- packagesDev/changeset-changelog/CHANGELOG.md | 2 + packagesDev/changeset-changelog/package.json | 2 +- packagesDev/eslint-config/CHANGELOG.md | 2 + packagesDev/eslint-config/package.json | 4 +- .../CHANGELOG.md | 2 + .../package.json | 8 +- .../CHANGELOG.md | 2 + .../package.json | 8 +- .../CHANGELOG.md | 2 + .../package.json | 6 +- packagesDev/misc/CHANGELOG.md | 2 + packagesDev/misc/package.json | 2 +- packagesDev/next-config/CHANGELOG.md | 2 + packagesDev/next-config/package.json | 4 +- packagesDev/prettier-config/CHANGELOG.md | 2 + packagesDev/prettier-config/package.json | 2 +- packagesDev/typescript-config/CHANGELOG.md | 2 + packagesDev/typescript-config/package.json | 2 +- 169 files changed, 1004 insertions(+), 831 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 3be996f0011..49c1a4b157a 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -88,6 +88,7 @@ "@graphcommerce/typescript-config-pwa": "10.0.3" }, "changesets": [ - "calm-hotels-fly" + "calm-hotels-fly", + "dull-points-fly" ] } diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index e5c15a10248..1e848a93198 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/docs/package.json b/docs/package.json index 53f3c1bcd1a..536d2746262 100644 --- a/docs/package.json +++ b/docs/package.json @@ -2,10 +2,10 @@ "name": "@graphcommerce/docs", "homepage": "https://www.graphcommerce.org/docs", "repository": "github:graphcommerce-org/graphcommerce/docs", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": true, "peerDependencies": { - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0" + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1" }, "prettier": "@graphcommerce/prettier-config-pwa" } diff --git a/examples/magento-graphcms/CHANGELOG.md b/examples/magento-graphcms/CHANGELOG.md index e5aa4983928..337622973eb 100644 --- a/examples/magento-graphcms/CHANGELOG.md +++ b/examples/magento-graphcms/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/examples/magento-graphcms/package.json b/examples/magento-graphcms/package.json index d24659d1f62..8038d5d4e07 100644 --- a/examples/magento-graphcms/package.json +++ b/examples/magento-graphcms/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-graphcms", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "private": true, "sideEffects": false, "packageManager": "yarn@4.5.3", @@ -27,59 +27,59 @@ "@emotion/react": "^11.14.0", "@emotion/server": "^11.11.0", "@emotion/styled": "^11.14.1", - "@graphcommerce/cli": "10.0.4-canary.0", - "@graphcommerce/demo-magento-graphcommerce": "10.0.4-canary.0", - "@graphcommerce/ecommerce-ui": "10.0.4-canary.0", - "@graphcommerce/framer-next-pages": "10.0.4-canary.0", - "@graphcommerce/framer-scroller": "10.0.4-canary.0", - "@graphcommerce/framer-utils": "10.0.4-canary.0", - "@graphcommerce/google-datalayer": "10.0.4-canary.0", - "@graphcommerce/google-playstore": "10.0.4-canary.0", - "@graphcommerce/googleanalytics": "10.0.4-canary.0", - "@graphcommerce/googlerecaptcha": "10.0.4-canary.0", - "@graphcommerce/googletagmanager": "10.0.4-canary.0", - "@graphcommerce/graphql": "10.0.4-canary.0", - "@graphcommerce/graphql-codegen-near-operation-file": "10.0.4-canary.0", - "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "10.0.4-canary.0", - "@graphcommerce/graphql-mesh": "10.0.4-canary.0", - "@graphcommerce/hygraph-cli": "10.0.4-canary.0", - "@graphcommerce/hygraph-dynamic-rows": "10.0.4-canary.0", - "@graphcommerce/hygraph-ui": "10.0.4-canary.0", - "@graphcommerce/image": "10.0.4-canary.0", - "@graphcommerce/lingui-next": "10.0.4-canary.0", - "@graphcommerce/magento-cart": "10.0.4-canary.0", - "@graphcommerce/magento-cart-checkout": "10.0.4-canary.0", - "@graphcommerce/magento-cart-coupon": "10.0.4-canary.0", - "@graphcommerce/magento-cart-email": "10.0.4-canary.0", - "@graphcommerce/magento-cart-items": "10.0.4-canary.0", - "@graphcommerce/magento-cart-payment-method": "10.0.4-canary.0", - "@graphcommerce/magento-cart-shipping-address": "10.0.4-canary.0", - "@graphcommerce/magento-cart-shipping-method": "10.0.4-canary.0", - "@graphcommerce/magento-category": "10.0.4-canary.0", - "@graphcommerce/magento-cms": "10.0.4-canary.0", - "@graphcommerce/magento-compare": "10.0.4-canary.0", - "@graphcommerce/magento-customer": "10.0.4-canary.0", - "@graphcommerce/magento-graphql": "10.0.4-canary.0", - "@graphcommerce/magento-graphql-rest": "10.0.4-canary.0", - "@graphcommerce/magento-newsletter": "10.0.4-canary.0", - "@graphcommerce/magento-payment-included": "10.0.4-canary.0", - "@graphcommerce/magento-payment-tokens": "10.0.4-canary.0", - "@graphcommerce/magento-product": "10.0.4-canary.0", - "@graphcommerce/magento-product-bundle": "10.0.4-canary.0", - "@graphcommerce/magento-product-configurable": "10.0.4-canary.0", - "@graphcommerce/magento-product-downloadable": "10.0.4-canary.0", - "@graphcommerce/magento-product-grouped": "10.0.4-canary.0", - "@graphcommerce/magento-product-simple": "10.0.4-canary.0", - "@graphcommerce/magento-product-virtual": "10.0.4-canary.0", - "@graphcommerce/magento-recently-viewed-products": "10.0.4-canary.0", - "@graphcommerce/magento-review": "10.0.4-canary.0", - "@graphcommerce/magento-search": "10.0.4-canary.0", - "@graphcommerce/magento-store": "10.0.4-canary.0", - "@graphcommerce/magento-wishlist": "10.0.4-canary.0", - "@graphcommerce/next-config": "10.0.4-canary.0", - "@graphcommerce/next-ui": "10.0.4-canary.0", - "@graphcommerce/react-hook-form": "10.0.4-canary.0", - "@graphcommerce/service-worker": "10.0.4-canary.0", + "@graphcommerce/cli": "10.0.4-canary.1", + "@graphcommerce/demo-magento-graphcommerce": "10.0.4-canary.1", + "@graphcommerce/ecommerce-ui": "10.0.4-canary.1", + "@graphcommerce/framer-next-pages": "10.0.4-canary.1", + "@graphcommerce/framer-scroller": "10.0.4-canary.1", + "@graphcommerce/framer-utils": "10.0.4-canary.1", + "@graphcommerce/google-datalayer": "10.0.4-canary.1", + "@graphcommerce/google-playstore": "10.0.4-canary.1", + "@graphcommerce/googleanalytics": "10.0.4-canary.1", + "@graphcommerce/googlerecaptcha": "10.0.4-canary.1", + "@graphcommerce/googletagmanager": "10.0.4-canary.1", + "@graphcommerce/graphql": "10.0.4-canary.1", + "@graphcommerce/graphql-codegen-near-operation-file": "10.0.4-canary.1", + "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "10.0.4-canary.1", + "@graphcommerce/graphql-mesh": "10.0.4-canary.1", + "@graphcommerce/hygraph-cli": "10.0.4-canary.1", + "@graphcommerce/hygraph-dynamic-rows": "10.0.4-canary.1", + "@graphcommerce/hygraph-ui": "10.0.4-canary.1", + "@graphcommerce/image": "10.0.4-canary.1", + "@graphcommerce/lingui-next": "10.0.4-canary.1", + "@graphcommerce/magento-cart": "10.0.4-canary.1", + "@graphcommerce/magento-cart-checkout": "10.0.4-canary.1", + "@graphcommerce/magento-cart-coupon": "10.0.4-canary.1", + "@graphcommerce/magento-cart-email": "10.0.4-canary.1", + "@graphcommerce/magento-cart-items": "10.0.4-canary.1", + "@graphcommerce/magento-cart-payment-method": "10.0.4-canary.1", + "@graphcommerce/magento-cart-shipping-address": "10.0.4-canary.1", + "@graphcommerce/magento-cart-shipping-method": "10.0.4-canary.1", + "@graphcommerce/magento-category": "10.0.4-canary.1", + "@graphcommerce/magento-cms": "10.0.4-canary.1", + "@graphcommerce/magento-compare": "10.0.4-canary.1", + "@graphcommerce/magento-customer": "10.0.4-canary.1", + "@graphcommerce/magento-graphql": "10.0.4-canary.1", + "@graphcommerce/magento-graphql-rest": "10.0.4-canary.1", + "@graphcommerce/magento-newsletter": "10.0.4-canary.1", + "@graphcommerce/magento-payment-included": "10.0.4-canary.1", + "@graphcommerce/magento-payment-tokens": "10.0.4-canary.1", + "@graphcommerce/magento-product": "10.0.4-canary.1", + "@graphcommerce/magento-product-bundle": "10.0.4-canary.1", + "@graphcommerce/magento-product-configurable": "10.0.4-canary.1", + "@graphcommerce/magento-product-downloadable": "10.0.4-canary.1", + "@graphcommerce/magento-product-grouped": "10.0.4-canary.1", + "@graphcommerce/magento-product-simple": "10.0.4-canary.1", + "@graphcommerce/magento-product-virtual": "10.0.4-canary.1", + "@graphcommerce/magento-recently-viewed-products": "10.0.4-canary.1", + "@graphcommerce/magento-review": "10.0.4-canary.1", + "@graphcommerce/magento-search": "10.0.4-canary.1", + "@graphcommerce/magento-store": "10.0.4-canary.1", + "@graphcommerce/magento-wishlist": "10.0.4-canary.1", + "@graphcommerce/next-config": "10.0.4-canary.1", + "@graphcommerce/next-ui": "10.0.4-canary.1", + "@graphcommerce/react-hook-form": "10.0.4-canary.1", + "@graphcommerce/service-worker": "10.0.4-canary.1", "@graphql-mesh/cli": "0.100.21", "@graphql-mesh/config": "0.108.21", "@graphql-mesh/cross-helpers": "0.4.11", @@ -131,9 +131,9 @@ "webpack": "^5.103.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "10.0.4-canary.1", "@lingui/cli": "5.7.0", "@playwright/test": "1.57.0", "@types/node": "^20.19.27", diff --git a/examples/magento-open-source/CHANGELOG.md b/examples/magento-open-source/CHANGELOG.md index d65923a8551..6a768dfa6ac 100644 --- a/examples/magento-open-source/CHANGELOG.md +++ b/examples/magento-open-source/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/examples/magento-open-source/package.json b/examples/magento-open-source/package.json index b574f636b45..2de6f1d1584 100644 --- a/examples/magento-open-source/package.json +++ b/examples/magento-open-source/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-open-source", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "private": true, "sideEffects": false, "packageManager": "yarn@4.1.1", @@ -27,55 +27,55 @@ "@emotion/react": "^11.14.0", "@emotion/server": "^11.11.0", "@emotion/styled": "^11.14.1", - "@graphcommerce/cli": "10.0.4-canary.0", - "@graphcommerce/ecommerce-ui": "10.0.4-canary.0", - "@graphcommerce/framer-next-pages": "10.0.4-canary.0", - "@graphcommerce/framer-scroller": "10.0.4-canary.0", - "@graphcommerce/framer-utils": "10.0.4-canary.0", - "@graphcommerce/google-datalayer": "10.0.4-canary.0", - "@graphcommerce/google-playstore": "10.0.4-canary.0", - "@graphcommerce/googleanalytics": "10.0.4-canary.0", - "@graphcommerce/googlerecaptcha": "10.0.4-canary.0", - "@graphcommerce/googletagmanager": "10.0.4-canary.0", - "@graphcommerce/graphql": "10.0.4-canary.0", - "@graphcommerce/graphql-codegen-near-operation-file": "10.0.4-canary.0", - "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "10.0.4-canary.0", - "@graphcommerce/graphql-mesh": "10.0.4-canary.0", - "@graphcommerce/image": "10.0.4-canary.0", - "@graphcommerce/lingui-next": "10.0.4-canary.0", - "@graphcommerce/magento-cart": "10.0.4-canary.0", - "@graphcommerce/magento-cart-checkout": "10.0.4-canary.0", - "@graphcommerce/magento-cart-coupon": "10.0.4-canary.0", - "@graphcommerce/magento-cart-email": "10.0.4-canary.0", - "@graphcommerce/magento-cart-items": "10.0.4-canary.0", - "@graphcommerce/magento-cart-payment-method": "10.0.4-canary.0", - "@graphcommerce/magento-cart-shipping-address": "10.0.4-canary.0", - "@graphcommerce/magento-cart-shipping-method": "10.0.4-canary.0", - "@graphcommerce/magento-category": "10.0.4-canary.0", - "@graphcommerce/magento-cms": "10.0.4-canary.0", - "@graphcommerce/magento-compare": "10.0.4-canary.0", - "@graphcommerce/magento-customer": "10.0.4-canary.0", - "@graphcommerce/magento-graphql": "10.0.4-canary.0", - "@graphcommerce/magento-graphql-rest": "10.0.4-canary.0", - "@graphcommerce/magento-newsletter": "10.0.4-canary.0", - "@graphcommerce/magento-payment-included": "10.0.4-canary.0", - "@graphcommerce/magento-payment-tokens": "10.0.4-canary.0", - "@graphcommerce/magento-product": "10.0.4-canary.0", - "@graphcommerce/magento-product-bundle": "10.0.4-canary.0", - "@graphcommerce/magento-product-configurable": "10.0.4-canary.0", - "@graphcommerce/magento-product-downloadable": "10.0.4-canary.0", - "@graphcommerce/magento-product-grouped": "10.0.4-canary.0", - "@graphcommerce/magento-product-simple": "10.0.4-canary.0", - "@graphcommerce/magento-product-virtual": "10.0.4-canary.0", - "@graphcommerce/magento-recently-viewed-products": "10.0.4-canary.0", - "@graphcommerce/magento-review": "10.0.4-canary.0", - "@graphcommerce/magento-search": "10.0.4-canary.0", - "@graphcommerce/magento-store": "10.0.4-canary.0", - "@graphcommerce/magento-wishlist": "10.0.4-canary.0", - "@graphcommerce/next-config": "10.0.4-canary.0", - "@graphcommerce/next-ui": "10.0.4-canary.0", - "@graphcommerce/react-hook-form": "10.0.4-canary.0", - "@graphcommerce/service-worker": "10.0.4-canary.0", + "@graphcommerce/cli": "10.0.4-canary.1", + "@graphcommerce/ecommerce-ui": "10.0.4-canary.1", + "@graphcommerce/framer-next-pages": "10.0.4-canary.1", + "@graphcommerce/framer-scroller": "10.0.4-canary.1", + "@graphcommerce/framer-utils": "10.0.4-canary.1", + "@graphcommerce/google-datalayer": "10.0.4-canary.1", + "@graphcommerce/google-playstore": "10.0.4-canary.1", + "@graphcommerce/googleanalytics": "10.0.4-canary.1", + "@graphcommerce/googlerecaptcha": "10.0.4-canary.1", + "@graphcommerce/googletagmanager": "10.0.4-canary.1", + "@graphcommerce/graphql": "10.0.4-canary.1", + "@graphcommerce/graphql-codegen-near-operation-file": "10.0.4-canary.1", + "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "10.0.4-canary.1", + "@graphcommerce/graphql-mesh": "10.0.4-canary.1", + "@graphcommerce/image": "10.0.4-canary.1", + "@graphcommerce/lingui-next": "10.0.4-canary.1", + "@graphcommerce/magento-cart": "10.0.4-canary.1", + "@graphcommerce/magento-cart-checkout": "10.0.4-canary.1", + "@graphcommerce/magento-cart-coupon": "10.0.4-canary.1", + "@graphcommerce/magento-cart-email": "10.0.4-canary.1", + "@graphcommerce/magento-cart-items": "10.0.4-canary.1", + "@graphcommerce/magento-cart-payment-method": "10.0.4-canary.1", + "@graphcommerce/magento-cart-shipping-address": "10.0.4-canary.1", + "@graphcommerce/magento-cart-shipping-method": "10.0.4-canary.1", + "@graphcommerce/magento-category": "10.0.4-canary.1", + "@graphcommerce/magento-cms": "10.0.4-canary.1", + "@graphcommerce/magento-compare": "10.0.4-canary.1", + "@graphcommerce/magento-customer": "10.0.4-canary.1", + "@graphcommerce/magento-graphql": "10.0.4-canary.1", + "@graphcommerce/magento-graphql-rest": "10.0.4-canary.1", + "@graphcommerce/magento-newsletter": "10.0.4-canary.1", + "@graphcommerce/magento-payment-included": "10.0.4-canary.1", + "@graphcommerce/magento-payment-tokens": "10.0.4-canary.1", + "@graphcommerce/magento-product": "10.0.4-canary.1", + "@graphcommerce/magento-product-bundle": "10.0.4-canary.1", + "@graphcommerce/magento-product-configurable": "10.0.4-canary.1", + "@graphcommerce/magento-product-downloadable": "10.0.4-canary.1", + "@graphcommerce/magento-product-grouped": "10.0.4-canary.1", + "@graphcommerce/magento-product-simple": "10.0.4-canary.1", + "@graphcommerce/magento-product-virtual": "10.0.4-canary.1", + "@graphcommerce/magento-recently-viewed-products": "10.0.4-canary.1", + "@graphcommerce/magento-review": "10.0.4-canary.1", + "@graphcommerce/magento-search": "10.0.4-canary.1", + "@graphcommerce/magento-store": "10.0.4-canary.1", + "@graphcommerce/magento-wishlist": "10.0.4-canary.1", + "@graphcommerce/next-config": "10.0.4-canary.1", + "@graphcommerce/next-ui": "10.0.4-canary.1", + "@graphcommerce/react-hook-form": "10.0.4-canary.1", + "@graphcommerce/service-worker": "10.0.4-canary.1", "@graphql-mesh/cli": "0.100.21", "@graphql-mesh/config": "0.108.21", "@graphql-mesh/cross-helpers": "0.4.11", @@ -127,9 +127,9 @@ "webpack": "^5.103.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "10.0.4-canary.1", "@lingui/cli": "5.7.0", "@playwright/test": "1.57.0", "@types/node": "^20.19.27", diff --git a/packages/address-fields-nl/CHANGELOG.md b/packages/address-fields-nl/CHANGELOG.md index 1c71b6e1e1c..cf30e84fa1a 100644 --- a/packages/address-fields-nl/CHANGELOG.md +++ b/packages/address-fields-nl/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/address-fields-nl +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/address-fields-nl/package.json b/packages/address-fields-nl/package.json index ac91723dc97..0b3bf64c148 100644 --- a/packages/address-fields-nl/package.json +++ b/packages/address-fields-nl/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/address-fields-nl", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/magento-customer": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/magento-customer": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/algolia-categories/CHANGELOG.md b/packages/algolia-categories/CHANGELOG.md index fa15b3a1b28..7421d2206df 100644 --- a/packages/algolia-categories/CHANGELOG.md +++ b/packages/algolia-categories/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/algolia-categories +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/algolia-categories/package.json b/packages/algolia-categories/package.json index 9822ff98547..b1005bb3d8d 100644 --- a/packages/algolia-categories/package.json +++ b/packages/algolia-categories/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/algolia-categories", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -22,15 +22,15 @@ "generate": "tsx scripts/generate-spec.mts" }, "peerDependencies": { - "@graphcommerce/algolia-products": "^10.0.4-canary.0", - "@graphcommerce/google-datalayer": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", - "@graphcommerce/magento-customer": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/magento-search": "^10.0.4-canary.0", - "@graphcommerce/next-config": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/algolia-products": "^10.0.4-canary.1", + "@graphcommerce/google-datalayer": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.1", + "@graphcommerce/magento-customer": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/magento-search": "^10.0.4-canary.1", + "@graphcommerce/next-config": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", "react": "^19.2.0" }, "devDependencies": { diff --git a/packages/algolia-insights/CHANGELOG.md b/packages/algolia-insights/CHANGELOG.md index b9ec6888d68..f7a25fb6d56 100644 --- a/packages/algolia-insights/CHANGELOG.md +++ b/packages/algolia-insights/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/algolia-personalization +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/algolia-insights/package.json b/packages/algolia-insights/package.json index 636e7342400..60eabc035d9 100644 --- a/packages/algolia-insights/package.json +++ b/packages/algolia-insights/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/algolia-insights", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,15 +15,15 @@ "generate": "tsx scripts/generate-insights-spec.mts" }, "peerDependencies": { - "@graphcommerce/algolia-products": "^10.0.4-canary.0", - "@graphcommerce/google-datalayer": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", - "@graphcommerce/magento-customer": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/next-config": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/react-hook-form": "^10.0.4-canary.0", + "@graphcommerce/algolia-products": "^10.0.4-canary.1", + "@graphcommerce/google-datalayer": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.1", + "@graphcommerce/magento-customer": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/next-config": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/react-hook-form": "^10.0.4-canary.1", "@mui/material": "*", "react": "^19.2.0" }, diff --git a/packages/algolia-personalization/CHANGELOG.md b/packages/algolia-personalization/CHANGELOG.md index 98009fb5617..57a01e4920c 100644 --- a/packages/algolia-personalization/CHANGELOG.md +++ b/packages/algolia-personalization/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/algolia-personalization +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/algolia-personalization/package.json b/packages/algolia-personalization/package.json index 31f770dd45d..fd264e6d844 100644 --- a/packages/algolia-personalization/package.json +++ b/packages/algolia-personalization/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/algolia-personalization", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,15 +15,15 @@ "generate": "tsx scripts/generate-insights-spec.mts" }, "peerDependencies": { - "@graphcommerce/algolia-insights": "^10.0.4-canary.0", - "@graphcommerce/algolia-products": "^10.0.4-canary.0", - "@graphcommerce/google-datalayer": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", - "@graphcommerce/magento-customer": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/next-config": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/algolia-insights": "^10.0.4-canary.1", + "@graphcommerce/algolia-products": "^10.0.4-canary.1", + "@graphcommerce/google-datalayer": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.1", + "@graphcommerce/magento-customer": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/next-config": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", "react": "^19.2.0" }, "devDependencies": { diff --git a/packages/algolia-products/CHANGELOG.md b/packages/algolia-products/CHANGELOG.md index 78c9be24862..69af50fcbb3 100644 --- a/packages/algolia-products/CHANGELOG.md +++ b/packages/algolia-products/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/algolia-products +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/algolia-products/package.json b/packages/algolia-products/package.json index 80969a41ae8..c3c158dcc8e 100644 --- a/packages/algolia-products/package.json +++ b/packages/algolia-products/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/algolia-products", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,14 +15,14 @@ "generate": "tsx scripts/generate-spec.mts" }, "peerDependencies": { - "@graphcommerce/google-datalayer": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", - "@graphcommerce/magento-customer": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/magento-search": "^10.0.4-canary.0", - "@graphcommerce/next-config": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/google-datalayer": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.1", + "@graphcommerce/magento-customer": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/magento-search": "^10.0.4-canary.1", + "@graphcommerce/next-config": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", "react": "^19.2.0" }, "devDependencies": { diff --git a/packages/algolia-recommend/CHANGELOG.md b/packages/algolia-recommend/CHANGELOG.md index 53fec7b0e6e..d2de22e1ca5 100644 --- a/packages/algolia-recommend/CHANGELOG.md +++ b/packages/algolia-recommend/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/algolia-recommend +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/algolia-recommend/package.json b/packages/algolia-recommend/package.json index 2aaefba130c..f061aab282c 100644 --- a/packages/algolia-recommend/package.json +++ b/packages/algolia-recommend/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/algolia-recommend", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -22,11 +22,11 @@ "generate": "tsx scripts/generate-recommend-spec.mts" }, "peerDependencies": { - "@graphcommerce/algolia-products": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", - "@graphcommerce/next-config": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/algolia-products": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.1", + "@graphcommerce/next-config": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", "react": "^19.2.0" }, "devDependencies": { diff --git a/packages/algolia-search/CHANGELOG.md b/packages/algolia-search/CHANGELOG.md index 133d2364ae2..5e6cb873391 100644 --- a/packages/algolia-search/CHANGELOG.md +++ b/packages/algolia-search/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/algolia-search +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/algolia-search/package.json b/packages/algolia-search/package.json index 621ef04846e..a147853f9cb 100644 --- a/packages/algolia-search/package.json +++ b/packages/algolia-search/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/algolia-search", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,17 +15,17 @@ "algoliasearch": "^4.25.3" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/magento-search": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-config": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/magento-search": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-config": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 186ae7b25bb..2db44c5142e 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/cli +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/cli/package.json b/packages/cli/package.json index f6ab7421e34..324f195b561 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/cli", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "scripts": { "dev": "pkgroll --clean-dist --watch", "build": "pkgroll --clean-dist", @@ -36,12 +36,12 @@ "zod": "^3.25.76" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", - "@graphcommerce/hygraph-cli": "^10.0.4-canary.0", - "@graphcommerce/next-config": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.1", + "@graphcommerce/hygraph-cli": "^10.0.4-canary.1", + "@graphcommerce/next-config": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@graphql-mesh/cli": "*", "@graphql-mesh/types": "*", "@graphql-mesh/utils": "*", diff --git a/packages/demo-magento-graphcommerce/CHANGELOG.md b/packages/demo-magento-graphcommerce/CHANGELOG.md index 65782137d12..e40d17f5abd 100644 --- a/packages/demo-magento-graphcommerce/CHANGELOG.md +++ b/packages/demo-magento-graphcommerce/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/demo-magento-graphcommerce +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/demo-magento-graphcommerce/package.json b/packages/demo-magento-graphcommerce/package.json index b0a337a9698..cd8a432970e 100644 --- a/packages/demo-magento-graphcommerce/package.json +++ b/packages/demo-magento-graphcommerce/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/demo-magento-graphcommerce", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -21,14 +21,14 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/framer-scroller": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/magento-product-configurable": "^10.0.4-canary.0", - "@graphcommerce/magento-recently-viewed-products": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/framer-scroller": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/magento-product-configurable": "^10.0.4-canary.1", + "@graphcommerce/magento-recently-viewed-products": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@mui/material": "^7.0.0", "framer-motion": "^11.0.0", "next": "*", diff --git a/packages/ecommerce-ui/CHANGELOG.md b/packages/ecommerce-ui/CHANGELOG.md index 15ea42e749d..d0bd451bd8f 100644 --- a/packages/ecommerce-ui/CHANGELOG.md +++ b/packages/ecommerce-ui/CHANGELOG.md @@ -1,5 +1,11 @@ # @graphcommerce/ecommerce-ui +## 10.0.4-canary.1 + +### Patch Changes + +- [#2585](https://github.com/graphcommerce-org/graphcommerce/pull/2585) [`c9e862a`](https://github.com/graphcommerce-org/graphcommerce/commit/c9e862ad0b2fe4a30855df6ddfd27b7c052ac4e8) - Get redirectTo from the url params instead of the headers ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers)) + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/ecommerce-ui/package.json b/packages/ecommerce-ui/package.json index e54e5b16ea3..c7a8219660c 100644 --- a/packages/ecommerce-ui/package.json +++ b/packages/ecommerce-ui/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/ecommerce-ui", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,12 +12,12 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/react-hook-form": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/react-hook-form": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/framer-next-pages/CHANGELOG.md b/packages/framer-next-pages/CHANGELOG.md index ae57ddfa4b0..7dc02ee1aa9 100644 --- a/packages/framer-next-pages/CHANGELOG.md +++ b/packages/framer-next-pages/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/framer-next-pages/example/CHANGELOG.md b/packages/framer-next-pages/example/CHANGELOG.md index 58706906a9f..c41fe2dc078 100644 --- a/packages/framer-next-pages/example/CHANGELOG.md +++ b/packages/framer-next-pages/example/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/framer-next-pages/example/package.json b/packages/framer-next-pages/example/package.json index 4f5330a43d3..3d597c40c4e 100644 --- a/packages/framer-next-pages/example/package.json +++ b/packages/framer-next-pages/example/package.json @@ -3,7 +3,7 @@ "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", "private": true, - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "scripts": { "dev": "next", "build": "next build", @@ -21,11 +21,11 @@ "@emotion/react": "^11.14.0", "@emotion/server": "^11.11.0", "@emotion/styled": "^11.14.1", - "@graphcommerce/framer-next-pages": "10.0.4-canary.0", - "@graphcommerce/framer-scroller": "10.0.4-canary.0", - "@graphcommerce/framer-utils": "10.0.4-canary.0", - "@graphcommerce/image": "10.0.4-canary.0", - "@graphcommerce/next-ui": "10.0.4-canary.0", + "@graphcommerce/framer-next-pages": "10.0.4-canary.1", + "@graphcommerce/framer-scroller": "10.0.4-canary.1", + "@graphcommerce/framer-utils": "10.0.4-canary.1", + "@graphcommerce/image": "10.0.4-canary.1", + "@graphcommerce/next-ui": "10.0.4-canary.1", "@lingui/core": "5.7.0", "@lingui/macro": "5.7.0", "@lingui/react": "5.7.0", @@ -46,9 +46,9 @@ "sharp": "0.34.5" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "10.0.4-canary.1", "@lingui/cli": "5.7.0", "@playwright/test": "1.57.0", "@types/node": "^20.19.27", diff --git a/packages/framer-next-pages/package.json b/packages/framer-next-pages/package.json index 5882d952f0b..93708f9b577 100644 --- a/packages/framer-next-pages/package.json +++ b/packages/framer-next-pages/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/framer-next-pages", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,10 +12,10 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/framer-utils": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/framer-utils": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "framer-motion": "^11.0.0", "next": "*", "react": "^19.2.0", diff --git a/packages/framer-scroller/CHANGELOG.md b/packages/framer-scroller/CHANGELOG.md index da3d96d14f1..d274b785922 100644 --- a/packages/framer-scroller/CHANGELOG.md +++ b/packages/framer-scroller/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/framer-scroller/example/CHANGELOG.md b/packages/framer-scroller/example/CHANGELOG.md index 53aabdccaef..7752bf7b236 100644 --- a/packages/framer-scroller/example/CHANGELOG.md +++ b/packages/framer-scroller/example/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/framer-scroller/example/package.json b/packages/framer-scroller/example/package.json index 785f68add1c..dd46c8f5d21 100644 --- a/packages/framer-scroller/example/package.json +++ b/packages/framer-scroller/example/package.json @@ -3,7 +3,7 @@ "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", "private": true, - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "scripts": { "dev": "next", "build": "next build", @@ -15,13 +15,13 @@ "@emotion/react": "^11.14.0", "@emotion/server": "^11.11.0", "@emotion/styled": "^11.14.1", - "@graphcommerce/framer-next-pages": "10.0.4-canary.0", - "@graphcommerce/framer-scroller": "10.0.4-canary.0", - "@graphcommerce/framer-utils": "10.0.4-canary.0", - "@graphcommerce/image": "10.0.4-canary.0", - "@graphcommerce/lingui-next": "10.0.4-canary.0", - "@graphcommerce/next-config": "10.0.4-canary.0", - "@graphcommerce/next-ui": "10.0.4-canary.0", + "@graphcommerce/framer-next-pages": "10.0.4-canary.1", + "@graphcommerce/framer-scroller": "10.0.4-canary.1", + "@graphcommerce/framer-utils": "10.0.4-canary.1", + "@graphcommerce/image": "10.0.4-canary.1", + "@graphcommerce/lingui-next": "10.0.4-canary.1", + "@graphcommerce/next-config": "10.0.4-canary.1", + "@graphcommerce/next-ui": "10.0.4-canary.1", "@lingui/conf": "5.7.0", "@lingui/core": "5.7.0", "@lingui/format-po": "5.7.0", @@ -47,9 +47,9 @@ "webpack": "^5.103.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "10.0.4-canary.1", "@lingui/cli": "5.7.0", "@playwright/test": "1.57.0", "@types/node": "^20.19.27", diff --git a/packages/framer-scroller/package.json b/packages/framer-scroller/package.json index 9c710d6d1d3..32995d7c928 100644 --- a/packages/framer-scroller/package.json +++ b/packages/framer-scroller/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/framer-scroller", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -21,11 +21,11 @@ "popmotion": "11.0.5" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/framer-utils": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/framer-utils": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/react": "^5", "@mui/material": "^7.0.0", diff --git a/packages/framer-utils/CHANGELOG.md b/packages/framer-utils/CHANGELOG.md index 0b2d56bcbf5..fc3a7be5629 100644 --- a/packages/framer-utils/CHANGELOG.md +++ b/packages/framer-utils/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/framer-utils/package.json b/packages/framer-utils/package.json index 2d7bc4ef3b0..b2243ec58da 100644 --- a/packages/framer-utils/package.json +++ b/packages/framer-utils/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/framer-utils", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -18,9 +18,9 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "framer-motion": "^11.0.0", "react": "^19.2.0", "react-dom": "^19.2.0" diff --git a/packages/google-datalayer/CHANGELOG.md b/packages/google-datalayer/CHANGELOG.md index 7eb187153f7..d3aebd38ab3 100644 --- a/packages/google-datalayer/CHANGELOG.md +++ b/packages/google-datalayer/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/google-datalayer +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/google-datalayer/package.json b/packages/google-datalayer/package.json index 7b64532a7f2..7b26bdb7f34 100644 --- a/packages/google-datalayer/package.json +++ b/packages/google-datalayer/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/google-datalayer", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,15 +12,15 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-shipping-method": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/react-hook-form": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-shipping-method": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/react-hook-form": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@mui/material": "^7.0.0", "next": "*", "react": "^19.2.0", diff --git a/packages/google-playstore/CHANGELOG.md b/packages/google-playstore/CHANGELOG.md index a221bc92d89..106393c243b 100644 --- a/packages/google-playstore/CHANGELOG.md +++ b/packages/google-playstore/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/google-playstore +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/google-playstore/package.json b/packages/google-playstore/package.json index 4434aaf2536..2b0460ff3c8 100644 --- a/packages/google-playstore/package.json +++ b/packages/google-playstore/package.json @@ -1,6 +1,6 @@ { "name": "@graphcommerce/google-playstore", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "browserslist": [ @@ -13,10 +13,10 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "next": "*", "react": "^19.2.0", "react-dom": "^19.2.0" diff --git a/packages/googleanalytics/CHANGELOG.md b/packages/googleanalytics/CHANGELOG.md index 4fbd085a49d..20556223ab6 100644 --- a/packages/googleanalytics/CHANGELOG.md +++ b/packages/googleanalytics/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/googleanalytics/package.json b/packages/googleanalytics/package.json index e860a7b5468..49bb8835035 100644 --- a/packages/googleanalytics/package.json +++ b/packages/googleanalytics/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/googleanalytics", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,13 +12,13 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/google-datalayer": "10.0.4-canary.0", - "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", - "@graphcommerce/next-config": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/google-datalayer": "10.0.4-canary.1", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.1", + "@graphcommerce/next-config": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@mui/material": "^7.0.0", "next": "*", "react": "^19.2.0", diff --git a/packages/googlerecaptcha/CHANGELOG.md b/packages/googlerecaptcha/CHANGELOG.md index 2b30e14bcf1..b0e2042e0ba 100644 --- a/packages/googlerecaptcha/CHANGELOG.md +++ b/packages/googlerecaptcha/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/googlerecaptcha/package.json b/packages/googlerecaptcha/package.json index 88e11b08bf7..3a73f36cba7 100644 --- a/packages/googlerecaptcha/package.json +++ b/packages/googlerecaptcha/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/googlerecaptcha", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -23,13 +23,13 @@ "@types/grecaptcha": "^3.0.9" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@mui/material": "^7.0.0", "graphql": "^16.9.0", "next": "*", diff --git a/packages/googletagmanager/CHANGELOG.md b/packages/googletagmanager/CHANGELOG.md index 156905c290f..65ea7c7b68c 100644 --- a/packages/googletagmanager/CHANGELOG.md +++ b/packages/googletagmanager/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/googletagmanager/package.json b/packages/googletagmanager/package.json index 32f6c82f153..ba57375747e 100644 --- a/packages/googletagmanager/package.json +++ b/packages/googletagmanager/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/googletagmanager", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,11 +15,11 @@ "@types/gapi.client.tagmanager": "^2.0.4" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/google-datalayer": "10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/google-datalayer": "10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@mui/material": "^7.0.0", "next": "*", "react": "^19.2.0", diff --git a/packages/graphcms-ui/CHANGELOG.md b/packages/graphcms-ui/CHANGELOG.md index 6bdad2c5bd8..792ea68c78d 100644 --- a/packages/graphcms-ui/CHANGELOG.md +++ b/packages/graphcms-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/graphcms-ui/package.json b/packages/graphcms-ui/package.json index f7ff0215796..05002b0a6e9 100644 --- a/packages/graphcms-ui/package.json +++ b/packages/graphcms-ui/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphcms-ui", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,7 +12,7 @@ } }, "peerDependencies": { - "@graphcommerce/hygraph-ui": "^10.0.4-canary.0" + "@graphcommerce/hygraph-ui": "^10.0.4-canary.1" }, "exports": { ".": "./index.ts" diff --git a/packages/graphql-mesh/CHANGELOG.md b/packages/graphql-mesh/CHANGELOG.md index 5f63be1ef03..19546e4f250 100644 --- a/packages/graphql-mesh/CHANGELOG.md +++ b/packages/graphql-mesh/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/graphql-mesh/package.json b/packages/graphql-mesh/package.json index 54a0c6a912d..71b260ce535 100644 --- a/packages/graphql-mesh/package.json +++ b/packages/graphql-mesh/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql-mesh", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "dependencies": { "@whatwg-node/fetch": "^0.10.13", "fetch-retry": "^5.0.6", @@ -20,9 +20,9 @@ }, "peerDependencies": { "@apollo/client": "*", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@graphql-mesh/runtime": "*", "@graphql-mesh/types": "*" }, diff --git a/packages/graphql/CHANGELOG.md b/packages/graphql/CHANGELOG.md index 5bc54f49a9d..cea40769d8f 100644 --- a/packages/graphql/CHANGELOG.md +++ b/packages/graphql/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/graphql/package.json b/packages/graphql/package.json index b4957a664f5..507d48680cf 100644 --- a/packages/graphql/package.json +++ b/packages/graphql/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "main": "index.ts", "prettier": "@graphcommerce/prettier-config-pwa", @@ -28,12 +28,12 @@ "rxjs": "^7.8.2" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql-codegen-near-operation-file": "10.0.4-canary.0", - "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "10.0.4-canary.0", - "@graphcommerce/next-config": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql-codegen-near-operation-file": "10.0.4-canary.1", + "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "10.0.4-canary.1", + "@graphcommerce/next-config": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@graphql-mesh/plugin-http-details-extensions": "*", "react": "^19.2.0", "react-dom": "^19.2.0" diff --git a/packages/hygraph-cli/CHANGELOG.md b/packages/hygraph-cli/CHANGELOG.md index 933f3d8d983..0a4bf9d93e2 100644 --- a/packages/hygraph-cli/CHANGELOG.md +++ b/packages/hygraph-cli/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/hygraph-cli +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/hygraph-cli/package.json b/packages/hygraph-cli/package.json index cd3b2975726..2827df5b862 100644 --- a/packages/hygraph-cli/package.json +++ b/packages/hygraph-cli/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/hygraph-cli", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "type": "module", "exports": { ".": { @@ -25,10 +25,10 @@ }, "peerDependencies": { "@apollo/client": "*", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/next-config": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/next-config": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "dotenv": "^16.1.4" }, "devDependencies": { diff --git a/packages/hygraph-dynamic-rows-ui/CHANGELOG.md b/packages/hygraph-dynamic-rows-ui/CHANGELOG.md index f6e8f592f02..cdd213096f9 100644 --- a/packages/hygraph-dynamic-rows-ui/CHANGELOG.md +++ b/packages/hygraph-dynamic-rows-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/hygraph-dynamic-rows-ui +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/hygraph-dynamic-rows-ui/package.json b/packages/hygraph-dynamic-rows-ui/package.json index ddee33489a5..2929930789c 100644 --- a/packages/hygraph-dynamic-rows-ui/package.json +++ b/packages/hygraph-dynamic-rows-ui/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/hygraph-dynamic-rows-ui", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "type": "module", "prettier": "@graphcommerce/prettier-config-pwa", @@ -20,7 +20,7 @@ }, "dependencies": { "@apollo/client": "^4.0.11", - "@graphcommerce/next-config": "10.0.4-canary.0", + "@graphcommerce/next-config": "10.0.4-canary.1", "@hygraph/app-sdk-react": "^0.0.6", "@lingui/conf": "5.7.0", "@lingui/core": "5.7.0", @@ -40,9 +40,9 @@ "webpack": "^5.103.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "10.0.4-canary.1", "@types/react": "^19.2.7", "@types/react-dom": "^19.2.3", "@types/react-is": "^19.2.0", diff --git a/packages/hygraph-dynamic-rows/CHANGELOG.md b/packages/hygraph-dynamic-rows/CHANGELOG.md index c85716e777b..3923f149cd8 100644 --- a/packages/hygraph-dynamic-rows/CHANGELOG.md +++ b/packages/hygraph-dynamic-rows/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/hygraph-dynamic-rows +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/hygraph-dynamic-rows/package.json b/packages/hygraph-dynamic-rows/package.json index 6025e8f30a9..848b38af681 100644 --- a/packages/hygraph-dynamic-rows/package.json +++ b/packages/hygraph-dynamic-rows/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/hygraph-dynamic-rows", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,13 +12,13 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/hygraph-ui": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/hygraph-ui": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@mui/material": "^7.0.0", "next": "*", "react": "^19.2.0", diff --git a/packages/hygraph-ui/CHANGELOG.md b/packages/hygraph-ui/CHANGELOG.md index 6210aa05145..723cce1c135 100644 --- a/packages/hygraph-ui/CHANGELOG.md +++ b/packages/hygraph-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/hygraph-ui/package.json b/packages/hygraph-ui/package.json index 25c61fda042..c26793249a1 100644 --- a/packages/hygraph-ui/package.json +++ b/packages/hygraph-ui/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/hygraph-ui", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,13 +12,13 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@mui/material": "^7.0.0", "next": "*", "react": "^19.2.0", diff --git a/packages/image/CHANGELOG.md b/packages/image/CHANGELOG.md index ba96142296d..a340441a8c0 100644 --- a/packages/image/CHANGELOG.md +++ b/packages/image/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/image/example/CHANGELOG.md b/packages/image/example/CHANGELOG.md index 16f3dc382a4..8a0b37124d9 100644 --- a/packages/image/example/CHANGELOG.md +++ b/packages/image/example/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/image/example/package.json b/packages/image/example/package.json index 02bfdbfc677..bfbef6dbc6f 100644 --- a/packages/image/example/package.json +++ b/packages/image/example/package.json @@ -3,14 +3,14 @@ "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", "private": true, - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "scripts": { "dev": "next", "build": "next build", "start": "next start" }, "dependencies": { - "@graphcommerce/framer-utils": "10.0.4-canary.0", + "@graphcommerce/framer-utils": "10.0.4-canary.1", "@lingui/core": "5.7.0", "@lingui/format-po": "5.7.0", "@lingui/macro": "5.7.0", @@ -32,9 +32,9 @@ "sharp": "0.34.5" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "10.0.4-canary.1", "@lingui/cli": "5.7.0", "@types/node": "^20.19.27", "@types/react": "^19.2.7", diff --git a/packages/image/package.json b/packages/image/package.json index 779bc55222c..4738b788e80 100644 --- a/packages/image/package.json +++ b/packages/image/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/image", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -18,10 +18,10 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/framer-utils": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/framer-utils": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@mui/material": "^7.0.0", "next": "*", "react": "^19.2.0", diff --git a/packages/lingui-next/CHANGELOG.md b/packages/lingui-next/CHANGELOG.md index 8b66c46132b..bdacc8ea296 100644 --- a/packages/lingui-next/CHANGELOG.md +++ b/packages/lingui-next/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/lingui-next/package.json b/packages/lingui-next/package.json index b934d9eb217..87a6df517f4 100644 --- a/packages/lingui-next/package.json +++ b/packages/lingui-next/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/lingui-next", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -21,11 +21,11 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/next-config": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/next-config": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/conf": "^5", "@lingui/core": "^5", "@lingui/format-po": "^5", diff --git a/packages/magento-cart-checkout/CHANGELOG.md b/packages/magento-cart-checkout/CHANGELOG.md index ea99a8017e9..c2b617d540b 100644 --- a/packages/magento-cart-checkout/CHANGELOG.md +++ b/packages/magento-cart-checkout/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-cart-checkout/package.json b/packages/magento-cart-checkout/package.json index 6128eb49b0a..b5539f634ec 100644 --- a/packages/magento-cart-checkout/package.json +++ b/packages/magento-cart-checkout/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-checkout", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,18 +15,18 @@ ".": "./index.ts" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-coupon": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-items": "^10.0.4-canary.0", - "@graphcommerce/magento-customer": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/react-hook-form": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-coupon": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-items": "^10.0.4-canary.1", + "@graphcommerce/magento-customer": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/react-hook-form": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-cart-coupon/CHANGELOG.md b/packages/magento-cart-coupon/CHANGELOG.md index 960885354ed..47d3d9e083e 100644 --- a/packages/magento-cart-coupon/CHANGELOG.md +++ b/packages/magento-cart-coupon/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-cart-coupon/package.json b/packages/magento-cart-coupon/package.json index dad17a7d0e3..3c6e3c9f51a 100644 --- a/packages/magento-cart-coupon/package.json +++ b/packages/magento-cart-coupon/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-coupon", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,16 +15,16 @@ ".": "./index.ts" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/react-hook-form": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/react-hook-form": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-cart-email/CHANGELOG.md b/packages/magento-cart-email/CHANGELOG.md index ad7383dd370..bb572506d09 100644 --- a/packages/magento-cart-email/CHANGELOG.md +++ b/packages/magento-cart-email/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-cart-email/package.json b/packages/magento-cart-email/package.json index bdd3095d9b7..cc978a3d041 100644 --- a/packages/magento-cart-email/package.json +++ b/packages/magento-cart-email/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-email", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,18 +15,18 @@ ".": "./index.ts" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-customer": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/react-hook-form": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-customer": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/react-hook-form": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-cart-items/CHANGELOG.md b/packages/magento-cart-items/CHANGELOG.md index 1f2165baf50..b8c0d6bb5f6 100644 --- a/packages/magento-cart-items/CHANGELOG.md +++ b/packages/magento-cart-items/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-cart-items/package.json b/packages/magento-cart-items/package.json index da4b2e18a6c..b3a093bb7be 100644 --- a/packages/magento-cart-items/package.json +++ b/packages/magento-cart-items/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-items", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,19 +15,19 @@ ".": "./index.ts" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/framer-next-pages": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-customer": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/react-hook-form": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/framer-next-pages": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-customer": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/react-hook-form": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-cart-payment-method/CHANGELOG.md b/packages/magento-cart-payment-method/CHANGELOG.md index 8405dc70f9b..606269681ab 100644 --- a/packages/magento-cart-payment-method/CHANGELOG.md +++ b/packages/magento-cart-payment-method/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-cart-payment-method/package.json b/packages/magento-cart-payment-method/package.json index c7739e5ed98..a3e373c613a 100644 --- a/packages/magento-cart-payment-method/package.json +++ b/packages/magento-cart-payment-method/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-payment-method", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -18,18 +18,18 @@ "./PaymentMethodPlaceOrderNoop/PaymentMethodPlaceOrderNoop": "./PaymentMethodPlaceOrderNoop/PaymentMethodPlaceOrderNoop.tsx" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/framer-scroller": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-shipping-address": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/react-hook-form": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/framer-scroller": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-shipping-address": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/react-hook-form": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-cart-pickup/CHANGELOG.md b/packages/magento-cart-pickup/CHANGELOG.md index 8c5b28f881f..d4c25ebc22e 100644 --- a/packages/magento-cart-pickup/CHANGELOG.md +++ b/packages/magento-cart-pickup/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-cart-pickup/package.json b/packages/magento-cart-pickup/package.json index 53d94f49702..59d708a1469 100644 --- a/packages/magento-cart-pickup/package.json +++ b/packages/magento-cart-pickup/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-pickup", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -16,18 +16,18 @@ "./plugins/AddPickupInStore": "./plugins/AddPickupInStore.tsx" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-shipping-method": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/react-hook-form": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-shipping-method": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/react-hook-form": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-cart-shipping-address/CHANGELOG.md b/packages/magento-cart-shipping-address/CHANGELOG.md index 0722a634c79..582dff7cba5 100644 --- a/packages/magento-cart-shipping-address/CHANGELOG.md +++ b/packages/magento-cart-shipping-address/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-cart-shipping-address/package.json b/packages/magento-cart-shipping-address/package.json index 366303ed30f..87b6e5b3018 100644 --- a/packages/magento-cart-shipping-address/package.json +++ b/packages/magento-cart-shipping-address/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-shipping-address", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,17 +15,17 @@ ".": "./index.ts" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-customer": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-customer": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-cart-shipping-method/CHANGELOG.md b/packages/magento-cart-shipping-method/CHANGELOG.md index c2942ff0044..a5546ce0960 100644 --- a/packages/magento-cart-shipping-method/CHANGELOG.md +++ b/packages/magento-cart-shipping-method/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-cart-shipping-method/package.json b/packages/magento-cart-shipping-method/package.json index 8feec489280..f14c32056d9 100644 --- a/packages/magento-cart-shipping-method/package.json +++ b/packages/magento-cart-shipping-method/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-shipping-method", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,19 +15,19 @@ ".": "./index.ts" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/framer-scroller": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-shipping-address": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-config": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/react-hook-form": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/framer-scroller": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-shipping-address": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-config": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/react-hook-form": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-cart/CHANGELOG.md b/packages/magento-cart/CHANGELOG.md index 056e3c78b79..7cd690d0f7d 100644 --- a/packages/magento-cart/CHANGELOG.md +++ b/packages/magento-cart/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-cart/package.json b/packages/magento-cart/package.json index 58fb30aefd8..b0c6db5ba03 100644 --- a/packages/magento-cart/package.json +++ b/packages/magento-cart/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -20,20 +20,20 @@ "./plugins/useSignInFormMergeCart": "./plugins/useSignInFormMergeCart.ts" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/framer-next-pages": "^10.0.4-canary.0", - "@graphcommerce/framer-scroller": "^10.0.4-canary.0", - "@graphcommerce/framer-utils": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-customer": "^10.0.4-canary.0", - "@graphcommerce/magento-graphql": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/react-hook-form": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/framer-next-pages": "^10.0.4-canary.1", + "@graphcommerce/framer-scroller": "^10.0.4-canary.1", + "@graphcommerce/framer-utils": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-customer": "^10.0.4-canary.1", + "@graphcommerce/magento-graphql": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/react-hook-form": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-category/CHANGELOG.md b/packages/magento-category/CHANGELOG.md index c47daacc7c2..c16ea6f4fd4 100644 --- a/packages/magento-category/CHANGELOG.md +++ b/packages/magento-category/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-category/package.json b/packages/magento-category/package.json index a806969ed41..6c694e45292 100644 --- a/packages/magento-category/package.json +++ b/packages/magento-category/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-category", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -17,15 +17,15 @@ "./components/CategoryBreadcrumb/categoryToBreadcrumbs": "./components/CategoryBreadcrumb/categoryToBreadcrumbs.ts" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/framer-scroller": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/framer-scroller": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-cms/CHANGELOG.md b/packages/magento-cms/CHANGELOG.md index 954458035bb..a549d3384af 100644 --- a/packages/magento-cms/CHANGELOG.md +++ b/packages/magento-cms/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-cms/package.json b/packages/magento-cms/package.json index 95c40ce6cae..13b5df12752 100644 --- a/packages/magento-cms/package.json +++ b/packages/magento-cms/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cms", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,11 +15,11 @@ ".": "./index.ts" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-compare/CHANGELOG.md b/packages/magento-compare/CHANGELOG.md index fdf01d9fd82..8c8b231a3d4 100644 --- a/packages/magento-compare/CHANGELOG.md +++ b/packages/magento-compare/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-compare +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-compare/package.json b/packages/magento-compare/package.json index a8f2abfde6c..30a19cef7b0 100644 --- a/packages/magento-compare/package.json +++ b/packages/magento-compare/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-compare", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -19,16 +19,16 @@ "./plugins/AddCompareTypePolicies": "./plugins/AddCompareTypePolicies.tsx" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/framer-next-pages": "^10.0.4-canary.0", - "@graphcommerce/framer-utils": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/framer-next-pages": "^10.0.4-canary.1", + "@graphcommerce/framer-utils": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-customer/CHANGELOG.md b/packages/magento-customer/CHANGELOG.md index ca4cb8182a6..ea5e4ddaad0 100644 --- a/packages/magento-customer/CHANGELOG.md +++ b/packages/magento-customer/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-customer/package.json b/packages/magento-customer/package.json index 6bbaab4191f..dad71a21ddf 100644 --- a/packages/magento-customer/package.json +++ b/packages/magento-customer/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-customer", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -21,20 +21,20 @@ "./plugins/magentoCustomerPrivateQueryContext": "./plugins/magentoCustomerPrivateQueryContext.ts" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/framer-next-pages": "^10.0.4-canary.0", - "@graphcommerce/framer-utils": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-graphql": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-config": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/react-hook-form": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/framer-next-pages": "^10.0.4-canary.1", + "@graphcommerce/framer-utils": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-graphql": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-config": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/react-hook-form": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-graphql-rest/CHANGELOG.md b/packages/magento-graphql-rest/CHANGELOG.md index dd8d18549de..bc1d069ca0c 100644 --- a/packages/magento-graphql-rest/CHANGELOG.md +++ b/packages/magento-graphql-rest/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-graphql-rest +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-graphql-rest/package.json b/packages/magento-graphql-rest/package.json index 889923a3643..b7660229027 100644 --- a/packages/magento-graphql-rest/package.json +++ b/packages/magento-graphql-rest/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-graphql-rest", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "main": "index.ts", "prettier": "@graphcommerce/prettier-config-pwa", @@ -21,11 +21,11 @@ "generate": "tsx ./scripts/generate-spec.mts" }, "peerDependencies": { - "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/magento-search": "^10.0.4-canary.0", - "@graphcommerce/next-config": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/magento-search": "^10.0.4-canary.1", + "@graphcommerce/next-config": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", "graphql": "^16.0.0" }, "devDependencies": { diff --git a/packages/magento-graphql/CHANGELOG.md b/packages/magento-graphql/CHANGELOG.md index 9ea33bd4a89..3e3e7c2c2be 100644 --- a/packages/magento-graphql/CHANGELOG.md +++ b/packages/magento-graphql/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-graphql/package.json b/packages/magento-graphql/package.json index c8cdc484c87..f59b62a8e9b 100644 --- a/packages/magento-graphql/package.json +++ b/packages/magento-graphql/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-graphql", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "main": "index.ts", "prettier": "@graphcommerce/prettier-config-pwa", @@ -25,10 +25,10 @@ "./mesh/magentoOrderItemResolvers.ts": "./mesh/magentoOrderItemResolvers.ts" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "graphql": "^16.0.0", "next": "*", "react": "^19.2.0", diff --git a/packages/magento-newsletter/CHANGELOG.md b/packages/magento-newsletter/CHANGELOG.md index f6f05fd373e..ac71e0b4ac1 100644 --- a/packages/magento-newsletter/CHANGELOG.md +++ b/packages/magento-newsletter/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-newsletter/package.json b/packages/magento-newsletter/package.json index 88d3212f90e..206a91720bf 100644 --- a/packages/magento-newsletter/package.json +++ b/packages/magento-newsletter/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-newsletter", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,15 +15,15 @@ ".": "./index.ts" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-customer": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/react-hook-form": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-customer": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/react-hook-form": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-payment-adyen/CHANGELOG.md b/packages/magento-payment-adyen/CHANGELOG.md index b8517744d32..3b4f9b61670 100644 --- a/packages/magento-payment-adyen/CHANGELOG.md +++ b/packages/magento-payment-adyen/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-adyen +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-payment-adyen/package.json b/packages/magento-payment-adyen/package.json index 057cbb3bbd7..e22c6f5acf4 100644 --- a/packages/magento-payment-adyen/package.json +++ b/packages/magento-payment-adyen/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-adyen", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -16,18 +16,18 @@ "./plugins/AddAdyenMethods": "./plugins/AddAdyenMethods.tsx" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-payment-afterpay/CHANGELOG.md b/packages/magento-payment-afterpay/CHANGELOG.md index 272e59f3467..94158a2554f 100644 --- a/packages/magento-payment-afterpay/CHANGELOG.md +++ b/packages/magento-payment-afterpay/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-afterpay +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-payment-afterpay/package.json b/packages/magento-payment-afterpay/package.json index 238220c04bf..c722fab7016 100644 --- a/packages/magento-payment-afterpay/package.json +++ b/packages/magento-payment-afterpay/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-afterpay", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -16,17 +16,17 @@ "./plugins/AddAfterpayMethods": "./plugins/AddAfterpayMethods.tsx" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/react-hook-form": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/react-hook-form": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-payment-braintree/CHANGELOG.md b/packages/magento-payment-braintree/CHANGELOG.md index 2e4f9438889..3e77bae7fdf 100644 --- a/packages/magento-payment-braintree/CHANGELOG.md +++ b/packages/magento-payment-braintree/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-payment-braintree/package.json b/packages/magento-payment-braintree/package.json index 06a5a3f7862..20f8751acd4 100644 --- a/packages/magento-payment-braintree/package.json +++ b/packages/magento-payment-braintree/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-braintree", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -22,19 +22,19 @@ "braintree-web": "^3.134.0" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-shipping-address": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/magento-product-configurable": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/react-hook-form": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-shipping-address": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/magento-product-configurable": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/react-hook-form": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-payment-included/CHANGELOG.md b/packages/magento-payment-included/CHANGELOG.md index 38f451f4159..804e65a63d0 100644 --- a/packages/magento-payment-included/CHANGELOG.md +++ b/packages/magento-payment-included/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-payment-included/package.json b/packages/magento-payment-included/package.json index 06bf33e675b..d8f2943847e 100644 --- a/packages/magento-payment-included/package.json +++ b/packages/magento-payment-included/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-included", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -16,20 +16,20 @@ "./plugins/AddIncludedMethods": "./plugins/AddIncludedMethods.tsx" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-shipping-address": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/magento-product-configurable": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/react-hook-form": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-shipping-address": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/magento-product-configurable": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/react-hook-form": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-payment-klarna/CHANGELOG.md b/packages/magento-payment-klarna/CHANGELOG.md index c1d803b0e09..12f926668c5 100644 --- a/packages/magento-payment-klarna/CHANGELOG.md +++ b/packages/magento-payment-klarna/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-payment-klarna/package.json b/packages/magento-payment-klarna/package.json index e99adafadcb..26a31bfa123 100644 --- a/packages/magento-payment-klarna/package.json +++ b/packages/magento-payment-klarna/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-klarna", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -16,18 +16,18 @@ "./plugins/AddKlarnaMethods": "./plugins/AddKlarnaMethods.tsx" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-checkout": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/react-hook-form": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-checkout": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/react-hook-form": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-payment-multisafepay/CHANGELOG.md b/packages/magento-payment-multisafepay/CHANGELOG.md index 73f3a9b5467..0fae0bc50d5 100644 --- a/packages/magento-payment-multisafepay/CHANGELOG.md +++ b/packages/magento-payment-multisafepay/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-multisafepay +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-payment-multisafepay/package.json b/packages/magento-payment-multisafepay/package.json index b4978418c51..386bd72801b 100644 --- a/packages/magento-payment-multisafepay/package.json +++ b/packages/magento-payment-multisafepay/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-multisafepay", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,22 +12,22 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-checkout": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-shipping-address": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/magento-product-configurable": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/react-hook-form": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-checkout": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-shipping-address": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/magento-product-configurable": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/react-hook-form": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-payment-paypal/CHANGELOG.md b/packages/magento-payment-paypal/CHANGELOG.md index ce3ee5a0312..1573778280c 100644 --- a/packages/magento-payment-paypal/CHANGELOG.md +++ b/packages/magento-payment-paypal/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-paypal +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-payment-paypal/package.json b/packages/magento-payment-paypal/package.json index 7291f775129..860c36c93f5 100644 --- a/packages/magento-payment-paypal/package.json +++ b/packages/magento-payment-paypal/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-paypal", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-payment-tokens/CHANGELOG.md b/packages/magento-payment-tokens/CHANGELOG.md index 005e3944baa..c7270c93b3b 100644 --- a/packages/magento-payment-tokens/CHANGELOG.md +++ b/packages/magento-payment-tokens/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-tokens +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-payment-tokens/package.json b/packages/magento-payment-tokens/package.json index 85a14ea3a32..0be23b24706 100644 --- a/packages/magento-payment-tokens/package.json +++ b/packages/magento-payment-tokens/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-tokens", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.0", - "@graphcommerce/magento-customer": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.1", + "@graphcommerce/magento-customer": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-product-bundle/CHANGELOG.md b/packages/magento-product-bundle/CHANGELOG.md index 8ad028159fe..50bfe91afc2 100644 --- a/packages/magento-product-bundle/CHANGELOG.md +++ b/packages/magento-product-bundle/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-product-bundle/package.json b/packages/magento-product-bundle/package.json index e9421cc8065..94133f65d1c 100644 --- a/packages/magento-product-bundle/package.json +++ b/packages/magento-product-bundle/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-bundle", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,19 +12,19 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-items": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/magento-product-simple": "^10.0.4-canary.0", - "@graphcommerce/magento-product-virtual": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-items": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/magento-product-simple": "^10.0.4-canary.1", + "@graphcommerce/magento-product-virtual": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-product-configurable/CHANGELOG.md b/packages/magento-product-configurable/CHANGELOG.md index 99e481df9db..eec8424dd6a 100644 --- a/packages/magento-product-configurable/CHANGELOG.md +++ b/packages/magento-product-configurable/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-product-configurable/package.json b/packages/magento-product-configurable/package.json index c4bb08e3a24..2e974ed1a39 100644 --- a/packages/magento-product-configurable/package.json +++ b/packages/magento-product-configurable/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-configurable", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,23 +12,23 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/lingui-next": "10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-items": "^10.0.4-canary.0", - "@graphcommerce/magento-category": "^10.0.4-canary.0", - "@graphcommerce/magento-customer": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/magento-product-simple": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/react-hook-form": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/lingui-next": "10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-items": "^10.0.4-canary.1", + "@graphcommerce/magento-category": "^10.0.4-canary.1", + "@graphcommerce/magento-customer": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/magento-product-simple": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/react-hook-form": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-product-downloadable/CHANGELOG.md b/packages/magento-product-downloadable/CHANGELOG.md index 82c272a2105..172dc7e29d4 100644 --- a/packages/magento-product-downloadable/CHANGELOG.md +++ b/packages/magento-product-downloadable/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-product-downloadable/package.json b/packages/magento-product-downloadable/package.json index da441003fbb..507465ed105 100644 --- a/packages/magento-product-downloadable/package.json +++ b/packages/magento-product-downloadable/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-downloadable", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-items": "^10.0.4-canary.0", - "@graphcommerce/magento-customer": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-items": "^10.0.4-canary.1", + "@graphcommerce/magento-customer": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-product-grouped/CHANGELOG.md b/packages/magento-product-grouped/CHANGELOG.md index 067a97ae4f0..aaafa273226 100644 --- a/packages/magento-product-grouped/CHANGELOG.md +++ b/packages/magento-product-grouped/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-product-grouped/package.json b/packages/magento-product-grouped/package.json index b1a214067bc..c258baf79f8 100644 --- a/packages/magento-product-grouped/package.json +++ b/packages/magento-product-grouped/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-grouped", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/magento-product-simple": "^10.0.4-canary.0", - "@graphcommerce/magento-product-virtual": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/magento-product-simple": "^10.0.4-canary.1", + "@graphcommerce/magento-product-virtual": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-product-simple/CHANGELOG.md b/packages/magento-product-simple/CHANGELOG.md index 6239f5e042b..4a6d80d1746 100644 --- a/packages/magento-product-simple/CHANGELOG.md +++ b/packages/magento-product-simple/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-product-simple/package.json b/packages/magento-product-simple/package.json index 1475bfd8574..3cd2d4ed018 100644 --- a/packages/magento-product-simple/package.json +++ b/packages/magento-product-simple/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-simple", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-items": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-items": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-product-virtual/CHANGELOG.md b/packages/magento-product-virtual/CHANGELOG.md index 9b94df86ca0..af5a07a98eb 100644 --- a/packages/magento-product-virtual/CHANGELOG.md +++ b/packages/magento-product-virtual/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-product-virtual/package.json b/packages/magento-product-virtual/package.json index bd366012988..ccac325159e 100644 --- a/packages/magento-product-virtual/package.json +++ b/packages/magento-product-virtual/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-virtual", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-items": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-items": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-product/CHANGELOG.md b/packages/magento-product/CHANGELOG.md index 37cd1860f04..a80f99f2361 100644 --- a/packages/magento-product/CHANGELOG.md +++ b/packages/magento-product/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-product/package.json b/packages/magento-product/package.json index 78584dc16ae..d77dd39850d 100644 --- a/packages/magento-product/package.json +++ b/packages/magento-product/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -18,18 +18,18 @@ "typescript": "5.9.3" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/framer-next-pages": "^10.0.4-canary.0", - "@graphcommerce/framer-scroller": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/framer-next-pages": "^10.0.4-canary.1", + "@graphcommerce/framer-scroller": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-recently-viewed-products/CHANGELOG.md b/packages/magento-recently-viewed-products/CHANGELOG.md index 024e000e738..8fccdece3cf 100644 --- a/packages/magento-recently-viewed-products/CHANGELOG.md +++ b/packages/magento-recently-viewed-products/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-recently-viewed-products +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-recently-viewed-products/package.json b/packages/magento-recently-viewed-products/package.json index eb75e2023b5..5459b1da172 100644 --- a/packages/magento-recently-viewed-products/package.json +++ b/packages/magento-recently-viewed-products/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-recently-viewed-products", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/magento-product-configurable": "^10.0.4-canary.0", - "@graphcommerce/next-config": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/magento-product-configurable": "^10.0.4-canary.1", + "@graphcommerce/next-config": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@mui/material": "^7.0.0", "framer-motion": "^11.0.0", "next": "*", diff --git a/packages/magento-review/CHANGELOG.md b/packages/magento-review/CHANGELOG.md index 69b655105a3..267351bcdd8 100644 --- a/packages/magento-review/CHANGELOG.md +++ b/packages/magento-review/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-review/package.json b/packages/magento-review/package.json index 137851409cd..a56ec9dbc1b 100644 --- a/packages/magento-review/package.json +++ b/packages/magento-review/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-review", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -18,18 +18,18 @@ "typescript": "5.9.3" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-customer": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/react-hook-form": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-customer": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/react-hook-form": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-search-overlay/CHANGELOG.md b/packages/magento-search-overlay/CHANGELOG.md index cc104ddf67f..464b58497ae 100644 --- a/packages/magento-search-overlay/CHANGELOG.md +++ b/packages/magento-search-overlay/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-search-overlay +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ### Patch Changes diff --git a/packages/magento-search-overlay/package.json b/packages/magento-search-overlay/package.json index 0f94f0f29c1..c206d3c2b20 100644 --- a/packages/magento-search-overlay/package.json +++ b/packages/magento-search-overlay/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-search-overlay", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/framer-utils": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/magento-search": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/react-hook-form": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/framer-utils": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/magento-search": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/react-hook-form": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-search/CHANGELOG.md b/packages/magento-search/CHANGELOG.md index 62f6c54dfc1..15ed4ccd4ec 100644 --- a/packages/magento-search/CHANGELOG.md +++ b/packages/magento-search/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-search/package.json b/packages/magento-search/package.json index d99c7ef07f8..b0e795e047c 100644 --- a/packages/magento-search/package.json +++ b/packages/magento-search/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-search", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/framer-utils": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/react-hook-form": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/framer-utils": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/react-hook-form": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-store/CHANGELOG.md b/packages/magento-store/CHANGELOG.md index cf7db931977..da7724a7798 100644 --- a/packages/magento-store/CHANGELOG.md +++ b/packages/magento-store/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-store/package.json b/packages/magento-store/package.json index fa0c0c81ebf..28b015057ce 100644 --- a/packages/magento-store/package.json +++ b/packages/magento-store/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-store", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -19,15 +19,15 @@ "./mesh/resolvers.ts": "./mesh/resolvers.ts" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/framer-utils": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/framer-utils": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-wishlist/CHANGELOG.md b/packages/magento-wishlist/CHANGELOG.md index 113fd2e5336..fd107816dc3 100644 --- a/packages/magento-wishlist/CHANGELOG.md +++ b/packages/magento-wishlist/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-wishlist +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/magento-wishlist/package.json b/packages/magento-wishlist/package.json index 4e011508cd0..c375ba92a84 100644 --- a/packages/magento-wishlist/package.json +++ b/packages/magento-wishlist/package.json @@ -1,6 +1,6 @@ { "name": "@graphcommerce/magento-wishlist", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "browserslist": [ @@ -13,20 +13,20 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-customer": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/magento-product-configurable": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-config": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-customer": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/magento-product-configurable": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-config": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/mollie-magento-payment/CHANGELOG.md b/packages/mollie-magento-payment/CHANGELOG.md index 1bd39347067..28fbef29119 100644 --- a/packages/mollie-magento-payment/CHANGELOG.md +++ b/packages/mollie-magento-payment/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/mollie-magento-payment/package.json b/packages/mollie-magento-payment/package.json index 77efac3f3bb..5e39506e909 100644 --- a/packages/mollie-magento-payment/package.json +++ b/packages/mollie-magento-payment/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/mollie-magento-payment", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,21 +12,21 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^10.0.4-canary.0", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/graphql": "^10.0.4-canary.0", - "@graphcommerce/graphql-mesh": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/magento-cart": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.0", - "@graphcommerce/magento-cart-shipping-address": "^10.0.4-canary.0", - "@graphcommerce/magento-product": "^10.0.4-canary.0", - "@graphcommerce/magento-product-configurable": "^10.0.4-canary.0", - "@graphcommerce/magento-store": "^10.0.4-canary.0", - "@graphcommerce/next-ui": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/react-hook-form": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/ecommerce-ui": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/graphql": "^10.0.4-canary.1", + "@graphcommerce/graphql-mesh": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/magento-cart": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-payment-method": "^10.0.4-canary.1", + "@graphcommerce/magento-cart-shipping-address": "^10.0.4-canary.1", + "@graphcommerce/magento-product": "^10.0.4-canary.1", + "@graphcommerce/magento-product-configurable": "^10.0.4-canary.1", + "@graphcommerce/magento-store": "^10.0.4-canary.1", + "@graphcommerce/next-ui": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/react-hook-form": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/next-ui/CHANGELOG.md b/packages/next-ui/CHANGELOG.md index 45e5df814a4..8530567d19c 100644 --- a/packages/next-ui/CHANGELOG.md +++ b/packages/next-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/next-ui/package.json b/packages/next-ui/package.json index 55b67eb86de..cfaa06368a2 100644 --- a/packages/next-ui/package.json +++ b/packages/next-ui/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/next-ui", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -42,13 +42,13 @@ "@emotion/react": "^11.14.0", "@emotion/server": "^11.11.0", "@emotion/styled": "^11.14.1", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/framer-next-pages": "^10.0.4-canary.0", - "@graphcommerce/framer-scroller": "^10.0.4-canary.0", - "@graphcommerce/framer-utils": "^10.0.4-canary.0", - "@graphcommerce/image": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/framer-next-pages": "^10.0.4-canary.1", + "@graphcommerce/framer-scroller": "^10.0.4-canary.1", + "@graphcommerce/framer-utils": "^10.0.4-canary.1", + "@graphcommerce/image": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/react-hook-form/CHANGELOG.md b/packages/react-hook-form/CHANGELOG.md index 2fea4d137bb..1c1f854c4c1 100644 --- a/packages/react-hook-form/CHANGELOG.md +++ b/packages/react-hook-form/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/react-hook-form/package.json b/packages/react-hook-form/package.json index 9b93b7982dc..5c5a2768a5a 100644 --- a/packages/react-hook-form/package.json +++ b/packages/react-hook-form/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/react-hook-form", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -13,9 +13,9 @@ }, "peerDependencies": { "@apollo/client": "*", - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@mui/utils": "^7.0.0", "graphql": "^16.6.0", "react": "^19.2.0", diff --git a/packages/service-worker/CHANGELOG.md b/packages/service-worker/CHANGELOG.md index d34abd594f0..f6937c7f922 100644 --- a/packages/service-worker/CHANGELOG.md +++ b/packages/service-worker/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/service-worker +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packages/service-worker/package.json b/packages/service-worker/package.json index 2da704b9b0e..4d84b92a3ee 100644 --- a/packages/service-worker/package.json +++ b/packages/service-worker/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/service-worker", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,9 +12,9 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", "@serwist/next": "*", "next": "*", "serwist": "*" diff --git a/packagesDev/browserslist-config/CHANGELOG.md b/packagesDev/browserslist-config/CHANGELOG.md index 52bdae02949..3639955ad86 100644 --- a/packagesDev/browserslist-config/CHANGELOG.md +++ b/packagesDev/browserslist-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packagesDev/browserslist-config/package.json b/packagesDev/browserslist-config/package.json index 798821c579c..ce1eae25024 100644 --- a/packagesDev/browserslist-config/package.json +++ b/packagesDev/browserslist-config/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/browserslist-config-pwa", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "main": "index.js", "sideEffects": false, "exports": { diff --git a/packagesDev/changeset-changelog/CHANGELOG.md b/packagesDev/changeset-changelog/CHANGELOG.md index 507623d8239..5ace37903b2 100644 --- a/packagesDev/changeset-changelog/CHANGELOG.md +++ b/packagesDev/changeset-changelog/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/changeset-changelog +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packagesDev/changeset-changelog/package.json b/packagesDev/changeset-changelog/package.json index 0277f97e25b..883f0472e21 100644 --- a/packagesDev/changeset-changelog/package.json +++ b/packagesDev/changeset-changelog/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/changeset-changelog", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "type": "commonjs", "exports": { ".": { diff --git a/packagesDev/eslint-config/CHANGELOG.md b/packagesDev/eslint-config/CHANGELOG.md index 9c80c6bbeb1..7fb7ca88474 100644 --- a/packagesDev/eslint-config/CHANGELOG.md +++ b/packagesDev/eslint-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packagesDev/eslint-config/package.json b/packagesDev/eslint-config/package.json index 2dc2d8888df..591d8531da3 100644 --- a/packagesDev/eslint-config/package.json +++ b/packagesDev/eslint-config/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/eslint-config-pwa", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "type": "module", "main": "index.mjs", "exports": { @@ -12,7 +12,7 @@ "@eslint/compat": "^2.0.0", "@eslint/eslintrc": "^3.3.3", "@eslint/js": "^9.39.2", - "@graphcommerce/typescript-config-pwa": "10.0.4-canary.0", + "@graphcommerce/typescript-config-pwa": "10.0.4-canary.1", "@next/eslint-plugin-next": "16.1.1", "@typescript-eslint/eslint-plugin": "^8.50.1", "@typescript-eslint/parser": "^8.50.1", diff --git a/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md b/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md index 4a0c9c74d85..2afaf7bdca0 100644 --- a/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md +++ b/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packagesDev/graphql-codegen-markdown-docs/package.json b/packagesDev/graphql-codegen-markdown-docs/package.json index 481d4ffa65e..ebd9394eb0d 100644 --- a/packagesDev/graphql-codegen-markdown-docs/package.json +++ b/packagesDev/graphql-codegen-markdown-docs/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql-codegen-markdown-docs", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "type": "commonjs", "exports": { @@ -34,8 +34,8 @@ "parse-filepath": "^1.0.2" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0" + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1" } } diff --git a/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md b/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md index 20801216eed..2fd4bbfe277 100644 --- a/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md +++ b/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packagesDev/graphql-codegen-near-operation-file/package.json b/packagesDev/graphql-codegen-near-operation-file/package.json index 5cb2b83c668..efea5dac043 100644 --- a/packagesDev/graphql-codegen-near-operation-file/package.json +++ b/packagesDev/graphql-codegen-near-operation-file/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql-codegen-near-operation-file", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "type": "commonjs", "scripts": { @@ -27,9 +27,9 @@ "parse-filepath": "^1.0.2" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.0" + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1" }, "exports": { ".": { diff --git a/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md b/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md index 004cd9e5cf2..801b178ee94 100644 --- a/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md +++ b/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json b/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json index 6606a5716a4..5b1dac9b247 100644 --- a/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json +++ b/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql-codegen-relay-optimizer-plugin", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "description": "GraphQL Code Generator plugin for optimizing your GraphQL queries relay style.", "type": "commonjs", "exports": { @@ -26,8 +26,8 @@ "typescript": "5.9.3" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.0", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0" + "@graphcommerce/eslint-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1" }, "prettier": "@graphcommerce/prettier-config-pwa", "eslint": { diff --git a/packagesDev/misc/CHANGELOG.md b/packagesDev/misc/CHANGELOG.md index 3d0b8edd26f..c24f3eabbe2 100644 --- a/packagesDev/misc/CHANGELOG.md +++ b/packagesDev/misc/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/misc +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packagesDev/misc/package.json b/packagesDev/misc/package.json index 1b1bb6cea3c..54caf93ad2c 100644 --- a/packagesDev/misc/package.json +++ b/packagesDev/misc/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/misc", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "exports": { ".": "./index.ts" } diff --git a/packagesDev/next-config/CHANGELOG.md b/packagesDev/next-config/CHANGELOG.md index b2712204773..1ec7c5fd22d 100644 --- a/packagesDev/next-config/CHANGELOG.md +++ b/packagesDev/next-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packagesDev/next-config/package.json b/packagesDev/next-config/package.json index 039eb889208..ca18f49e522 100644 --- a/packagesDev/next-config/package.json +++ b/packagesDev/next-config/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/next-config", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "type": "module", "exports": { ".": { @@ -63,7 +63,7 @@ }, "peerDependencies": { "@apollo/client": "*", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.0", + "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", "@lingui/loader": "*", "@lingui/macro": "*", "@lingui/react": "*", diff --git a/packagesDev/prettier-config/CHANGELOG.md b/packagesDev/prettier-config/CHANGELOG.md index 887c27318d2..0adfa682441 100644 --- a/packagesDev/prettier-config/CHANGELOG.md +++ b/packagesDev/prettier-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packagesDev/prettier-config/package.json b/packagesDev/prettier-config/package.json index 88ac128bd7f..1e4daaaa67f 100644 --- a/packagesDev/prettier-config/package.json +++ b/packagesDev/prettier-config/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/prettier-config-pwa", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "dependencies": { "@ianvs/prettier-plugin-sort-imports": "^4.7.0", "prettier": "^3.7.4", diff --git a/packagesDev/typescript-config/CHANGELOG.md b/packagesDev/typescript-config/CHANGELOG.md index d6317c836d2..3048b94798a 100644 --- a/packagesDev/typescript-config/CHANGELOG.md +++ b/packagesDev/typescript-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4-canary.1 + ## 10.0.4-canary.0 ## 10.0.3 diff --git a/packagesDev/typescript-config/package.json b/packagesDev/typescript-config/package.json index 4a696bc7038..c7eb44d24c1 100644 --- a/packagesDev/typescript-config/package.json +++ b/packagesDev/typescript-config/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/typescript-config-pwa", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "10.0.4-canary.0", + "version": "10.0.4-canary.1", "sideEffects": false, "exports": { ".": "./index.js", From 3a1c4caf6d22eee50df25a78180e8d1acb2343b3 Mon Sep 17 00:00:00 2001 From: Giovanni-Schroevers Date: Mon, 23 Feb 2026 15:15:14 +0100 Subject: [PATCH 006/115] fix: prevent sort filter from flipping direction to DESC after using the pagination --- .changeset/puny-hounds-stare.md | 5 +++++ packages/magento-product/hooks/useProductListLink.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/puny-hounds-stare.md diff --git a/.changeset/puny-hounds-stare.md b/.changeset/puny-hounds-stare.md new file mode 100644 index 00000000000..85183291dba --- /dev/null +++ b/.changeset/puny-hounds-stare.md @@ -0,0 +1,5 @@ +--- +'@graphcommerce/magento-product': patch +--- + +Prevent sort filter from flipping direction to DESC after using the pagination diff --git a/packages/magento-product/hooks/useProductListLink.ts b/packages/magento-product/hooks/useProductListLink.ts index de20229806d..86e25a8ca86 100644 --- a/packages/magento-product/hooks/useProductListLink.ts +++ b/packages/magento-product/hooks/useProductListLink.ts @@ -27,7 +27,7 @@ export function productListLinkFromFilter(props: ProductFilterParams): string { // todo(paales): How should the URL look like with multiple sorts? // Something like: /sort/position,price/dir/asc,asc if (sort) query += `/sort/${sort}` - if (dir) query += '/dir/desc' + if (dir === 'DESC') query += '/dir/desc' if (pageSize) query += `/page-size/${pageSize}` // Apply filters From a0d90d4587454fb95e595b72533bf0932a95a1fc Mon Sep 17 00:00:00 2001 From: Giovanni-Schroevers Date: Wed, 11 Mar 2026 09:47:09 +0100 Subject: [PATCH 007/115] feat(graphqlSsrClient): add instantiation with timestamp to apollo shared client --- .../lib/graphql/graphqlSsrClient.ts | 23 ++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/examples/magento-graphcms/lib/graphql/graphqlSsrClient.ts b/examples/magento-graphcms/lib/graphql/graphqlSsrClient.ts index d1d6549a439..75cef1093e3 100644 --- a/examples/magento-graphcms/lib/graphql/graphqlSsrClient.ts +++ b/examples/magento-graphcms/lib/graphql/graphqlSsrClient.ts @@ -12,6 +12,7 @@ import { import { MeshApolloLink, getBuiltMesh } from '@graphcommerce/graphql-mesh' import { storefrontConfig, storefrontConfigDefault } from '@graphcommerce/next-ui' import type { GetStaticPropsContext } from 'next' +import fs from 'fs' import { i18nSsrLoader } from '../i18n/I18nProvider' function client(context: GetStaticPropsContext, fetchPolicy: FetchPolicy = 'no-cache') { @@ -53,7 +54,7 @@ export function graphqlSharedClient(context: GetStaticPropsContext) { } const ssrClient: { - [locale: string]: ApolloClient + [locale: string]: { instancedAt: number; client: ApolloClient } } = {} export function graphqlSsrClient(context: GetStaticPropsContext) { @@ -62,8 +63,24 @@ export function graphqlSsrClient(context: GetStaticPropsContext) { if (context.preview || context.draftMode) return client(context, 'no-cache') + try { + const instancedAt = Number(fs.readFileSync('renew-all-pages-query.txt', 'utf8')) + + if (ssrClient[locale]?.instancedAt < instancedAt) { + delete ssrClient[locale] + } + } catch (error) { + if (error instanceof Error && (error as NodeJS.ErrnoException).code !== 'ENOENT') { + console.error(error) + } + } + // Create a client if it doesn't exist for the locale. - if (!ssrClient[locale]) ssrClient[locale] = client(context, 'no-cache') + if (!ssrClient[locale]) + ssrClient[locale] = { + instancedAt: new Date().getTime(), + client: client(context, 'no-cache'), + } - return ssrClient[locale] + return ssrClient[locale].client } From 96f648fd26241bf81eaa6de4abc32e7b4a9d6b76 Mon Sep 17 00:00:00 2001 From: Giovanni-Schroevers Date: Fri, 13 Mar 2026 13:19:38 +0100 Subject: [PATCH 008/115] feat: check if renew-all-pages-query file exists before reading it --- examples/magento-graphcms/lib/graphql/graphqlSsrClient.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/examples/magento-graphcms/lib/graphql/graphqlSsrClient.ts b/examples/magento-graphcms/lib/graphql/graphqlSsrClient.ts index 75cef1093e3..09b73596319 100644 --- a/examples/magento-graphcms/lib/graphql/graphqlSsrClient.ts +++ b/examples/magento-graphcms/lib/graphql/graphqlSsrClient.ts @@ -63,16 +63,14 @@ export function graphqlSsrClient(context: GetStaticPropsContext) { if (context.preview || context.draftMode) return client(context, 'no-cache') - try { + const shouldCheckCache = fs.existsSync('renew-all-pages-query.txt') + + if (shouldCheckCache) { const instancedAt = Number(fs.readFileSync('renew-all-pages-query.txt', 'utf8')) if (ssrClient[locale]?.instancedAt < instancedAt) { delete ssrClient[locale] } - } catch (error) { - if (error instanceof Error && (error as NodeJS.ErrnoException).code !== 'ENOENT') { - console.error(error) - } } // Create a client if it doesn't exist for the locale. From 2267b495471c86f3eff2ace8f50a5a62c7fad760 Mon Sep 17 00:00:00 2001 From: Giovanni-Schroevers Date: Fri, 13 Mar 2026 13:50:10 +0100 Subject: [PATCH 009/115] feat: update path of renew-all-pages-query file --- examples/magento-graphcms/lib/graphql/graphqlSsrClient.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/examples/magento-graphcms/lib/graphql/graphqlSsrClient.ts b/examples/magento-graphcms/lib/graphql/graphqlSsrClient.ts index 09b73596319..38a52d8fa7b 100644 --- a/examples/magento-graphcms/lib/graphql/graphqlSsrClient.ts +++ b/examples/magento-graphcms/lib/graphql/graphqlSsrClient.ts @@ -63,10 +63,12 @@ export function graphqlSsrClient(context: GetStaticPropsContext) { if (context.preview || context.draftMode) return client(context, 'no-cache') - const shouldCheckCache = fs.existsSync('renew-all-pages-query.txt') + const dir = './tmp' + + const shouldCheckCache = fs.existsSync(`${dir}/renew-all-pages-query.txt`) if (shouldCheckCache) { - const instancedAt = Number(fs.readFileSync('renew-all-pages-query.txt', 'utf8')) + const instancedAt = Number(fs.readFileSync(`${dir}/renew-all-pages-query.txt`, 'utf8')) if (ssrClient[locale]?.instancedAt < instancedAt) { delete ssrClient[locale] From 7af89f59f56c88a8270ab0f8c8c913fde5d7029a Mon Sep 17 00:00:00 2001 From: Paul Hachmang Date: Mon, 30 Mar 2026 09:53:26 +0200 Subject: [PATCH 010/115] Added CLAUDE.md --- CLAUDE.md | 322 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 322 insertions(+) create mode 100644 CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 00000000000..96040e07935 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,322 @@ +# CLAUDE.md + +This file provides guidance to Claude Code (claude.ai/code) when working with +code in this repository. + +## Repository Overview + +GraphCommerce is a React/Next.js framework for building headless ecommerce +storefronts, backed by Magento 2 and Hygraph. It's a **Yarn 4 workspaces +monorepo** with ~68 packages. + +### graphcommerce vs graphcommerce-private + +This repo (`graphcommerce/`) is the **open-source core framework**. It is a +submodule inside the **`graphcommerce-private`** parent repo +(`../graphcommerce-private/`), which adds proprietary packages in +`packagesPrivate/` (Adobe Commerce features, B2B, gift cards, store credit, +returns, cache-notify, private pricing, etc.). + +**Where to put new code:** + +- **This repo (`graphcommerce/`)** — Generic, open-source framework features + that benefit all users. Core Magento integrations, UI components, build + tooling. +- **Parent repo (`graphcommerce-private/packagesPrivate/`)** — Specialized, + proprietary features: B2B (company accounts, purchase orders, requisition + lists, negotiable quotes), Adobe Commerce-specific features (gift cards, store + credit, returns, reward points), private pricing, cache invalidation, etc. + +When building a new feature, ask: "Is this generic enough for the open-source +framework, or is it specific to Adobe Commerce / B2B / a paid add-on?" If the +latter, it belongs in `graphcommerce-private/packagesPrivate/`. Private packages +are activated via `PRIVATE_ADDITIONAL_DEPENDENCIES` in `.env`. + +## Common Commands + +### Development + +```bash +# Start the main example storefront (runs codegen watcher + Next.js dev with Turbopack) +yarn workspace @graphcommerce/magento-graphcms dev + +# Build dev tooling packages (run in parallel, needed when modifying packagesDev/*) +yarn packages + +# Full production build of example +yarn workspace @graphcommerce/magento-graphcms build +``` + +### Testing + +```bash +yarn test # Run all tests (vitest) +yarn test:watch # Watch mode +yarn test packages/foo # Run tests matching a path +``` + +Tests use Vitest with +`include: ['**/__tests__/**/*.ts', '**/*.test.ts', '**/*.test.tsx']`. E2E tests +use Playwright: `yarn playwright`. + +### Linting & Type Checking + +```bash +yarn tsc:lint # TypeScript noEmit check (whole repo) +yarn eslint:lint # ESLint across all TS/TSX +yarn eslint:fix # ESLint with auto-fix +yarn prettier:fix # Prettier formatting +``` + +### Code Generation + +```bash +# In an example directory — regenerate GraphQL Mesh + codegen types +yarn workspace @graphcommerce/magento-graphcms codegen + +# Individual steps: +graphcommerce codegen # Generate config types +gc-mesh build # Build GraphQL Mesh (merges Magento + Hygraph schemas) +gc-gql-codegen # Generate TypeScript from .graphql files → .gql.ts +``` + +### i18n + +```bash +yarn workspace @graphcommerce/magento-graphcms lingui # Extract translation strings +``` + +## Architecture + +### Directory Layout + +- **`packages/`** — Core feature packages (`@graphcommerce/*`): UI components, + Magento integrations (cart, checkout, product, search, payment), Hygraph/CMS, + analytics, Algolia search +- **`packagesDev/`** — Build tooling: `next-config` (the framework's core build + system), codegen plugins, ESLint/Prettier/TypeScript configs, CLI +- **`examples/`** — Full storefronts: `magento-graphcms` (primary), + `magento-open-source` +- **`docs/`** — Documentation site + +### GraphQL Mesh (Schema Federation) + +Multiple GraphQL/REST sources are combined into a single schema via GraphQL +Mesh. The merged schema is generated into `examples/*/.mesh/index.ts`. Sources +include Magento GraphQL and Hygraph, with transforms for field renaming, +filtering, and type merging. + +### GraphQL Codegen + +`.graphql` files throughout packages generate co-located `.gql.ts` files +containing TypeScript types and Apollo Client hooks. The **fragment injection +system** uses an `@inject` directive to extend existing queries: + +```graphql +fragment MyCustomData on ProductInterface @inject(into: ["ProductListItem"]) { + my_custom_attribute +} +``` + +### Plugin System (Zero-Runtime Interception) + +Plugins live in `plugins/` directories and are auto-discovered at build time. +They work via webpack/Turbopack interceptors — no runtime cost. Three types: + +- **`component`** — Wraps a React component. Receives `Prev` as a prop to render + the original. +- **`function`** — Intercepts a function call. Receives `prev` to call the + original. +- **`replace`** — Completely replaces an export. + +Each plugin exports a `config: PluginConfig` with `type` and `module` (the +`@graphcommerce/*` package to intercept). Conditional plugins use `ifConfig`. +Restart dev server after adding the first plugin; hot-reload works after that. + +### Configuration + +`graphcommerce.config.ts` in each example defines storefront config (Magento +endpoint, Hygraph endpoint, locales, feature flags). Required fields: +`canonicalBaseUrl`, `magentoEndpoint`, `magentoVersion` (245/246/247), +`hygraphEndpoint`, `storefront[]` (locale + magentoStoreCode). + +Access config values in code: + +```tsx +import { cartDisplayPricesInclTax } from '@graphcommerce/next-config/config' +import { useStorefrontConfig } from '@graphcommerce/next-ui' + +// Global value +const global = cartDisplayPricesInclTax + +// Per-storefront with fallback +const scoped = + useStorefrontConfig().cartDisplayPricesInclTax ?? cartDisplayPricesInclTax +``` + +Extend the config schema by creating a `graphql/Config.graphqls` file: + +```graphql +extend input GraphCommerceConfig { + myConfig: String +} +extend input GraphCommerceStorefrontConfig { + myField: Boolean +} +``` + +### Environment Variables (.env) + +Each example directory has a `.env` file. Two types of env vars are used: + +**`GC_*` — GraphCommerce config overrides.** Any config value can be overridden: + +- Convert camelCase to SCREAMING*SNAKE_CASE, prefix with `GC*` +- Arrays indexed with `_0`, `_1`: `GC_STOREFRONT_0_LOCALE="en"` +- Nested objects with `_`: `GC_DEBUG_PLUGIN_STATUS="1"` +- Booleans: `"1"` / `"true"` / `"0"` / `"false"` +- Objects as JSON: `GC_PERMISSIONS='{"cart":"CUSTOMER_ONLY"}'` + +Examples: + +```bash +GC_MAGENTO_ENDPOINT="https://magento.example.com/graphql" +GC_MAGENTO_VERSION="247" +GC_LIMIT_SSG="1" +GC_PREVIEW_SECRET="mySecret" +GC_GOOGLE_RECAPTCHA_KEY="6Ld..." +GC_GRAPHQL_MESH_EDIT_MODE="1" +``` + +Export current config to env vars: `yarn graphcommerce export-config` + +**`PRIVATE_ADDITIONAL_DEPENDENCIES` — Activate optional packages.** +Comma-separated list of `@graphcommerce/*` packages to include in dependency +resolution without adding them to `package.json`. This enables their plugins, +GraphQL fragments, and mesh config extensions: + +```bash +PRIVATE_ADDITIONAL_DEPENDENCIES="@graphcommerce/magento-search-overlay,@graphcommerce/b2b-permissions" +``` + +This is also used in the root `package.json` test scripts to include optional +packages during testing. The resolution system only picks up packages with +`graphcommerce` in the name (configurable via `PRIVATE_PACKAGE_NAMESPACES`). + +## Plugin System (Development Guide) + +**When building new features, prefer plugins over direct code modifications.** +Plugins keep functionality modular and independent from the core codebase. + +### Creating a Plugin + +Place files in `plugins/` directory (in your example project or in a package). +Each plugin file exports a `config` object and the named export to intercept. + +**Component plugin** — wrap a React component: + +```tsx +import type { ProductListItemProps } from '@graphcommerce/magento-product' +import type { PluginConfig, PluginProps } from '@graphcommerce/next-config' + +export const config: PluginConfig = { + type: 'component', + module: '@graphcommerce/magento-product', +} + +export function ProductListItem(props: PluginProps) { + const { Prev, ...rest } = props + return +} +``` + +**Function plugin** — intercept a function: + +```tsx +import type { graphqlConfig as graphqlConfigType } from '@graphcommerce/graphql' +import type { FunctionPlugin, PluginConfig } from '@graphcommerce/next-config' + +export const config: PluginConfig = { + type: 'function', + module: '@graphcommerce/graphql', +} + +export const graphqlConfig: FunctionPlugin = ( + prev, + conf, +) => { + const results = prev(conf) + return { ...results, links: [...results.links, myCustomLink] } +} +``` + +**Replacement plugin** — completely replace an export (no access to original): + +```tsx +export const config: PluginConfig = { + type: 'replace', + module: '@graphcommerce/magento-product', +} + +export function ProductListCount(props: ProductCountProps) { + return
{props.total_count}
+} +``` + +### Plugin Rules + +- The exported function/component name must match the target export exactly +- Restart dev server after creating the first plugin; hot-reload works after + that +- Plugin loading order follows `package.json` dependency order; local plugins + wrap last (closest to the original) +- Auto-discovered via glob: `${packageLocation}/plugins/**/*.{ts,tsx}` +- Only packages with `graphcommerce` in the name are scanned + +### Conditional Plugins + +Load a plugin only when a config value is truthy or matches a specific value: + +```tsx +export const config: PluginConfig = { + type: 'component', + module: '@graphcommerce/magento-product', + ifConfig: 'demoMode', // loads when demoMode is truthy +} + +// Or match a specific value: +export const config: PluginConfig<'compareVariant'> = { + type: 'component', + module: '@graphcommerce/magento-product', + ifConfig: ['compareVariant', 'CHECKBOX'], +} +``` + +### Extending GraphQL Queries via Fragment Injection + +Instead of modifying queries directly, inject fields into existing fragments: + +```graphql +fragment MyCustomFragment on ProductInterface +@inject(into: ["ProductListItem"]) { + my_custom_attribute +} +``` + +After running `yarn codegen`, `my_custom_attribute` will be available in +`ProductListItem.gql.ts` and all queries that use that fragment. + +### Debugging Plugins + +Enable with `debug.pluginStatus: true` in config or `GC_DEBUG_PLUGIN_STATUS=1` +in env. This logs which plugins are enabled/disabled during build. + +## Tech Stack + +- Next.js with Turbopack, React 19, TypeScript 5.9 +- Apollo Client 4 for GraphQL +- MUI (Material-UI) + Emotion for styling +- Lingui for i18n +- Framer Motion for animations +- React Hook Form for forms +- Changesets for versioning/releases From 8d1c48cdbdcf30d4f1e55cf16a02028d19703382 Mon Sep 17 00:00:00 2001 From: Paul Hachmang Date: Mon, 30 Mar 2026 10:37:21 +0200 Subject: [PATCH 011/115] JSE-1: Store the css flags as a cookie as well so we are able to retrieve the flags in the middleware as well. --- .changeset/proud-squids-remain.md | 5 ++ CLAUDE.md | 78 +++++++++++++++++++ packages/next-ui/utils/cssFlags.tsx | 23 ++++-- .../next-ui/utils/getCssFlagInitScript.tsx | 6 +- 4 files changed, 103 insertions(+), 9 deletions(-) create mode 100644 .changeset/proud-squids-remain.md diff --git a/.changeset/proud-squids-remain.md b/.changeset/proud-squids-remain.md new file mode 100644 index 00000000000..d0deafed05d --- /dev/null +++ b/.changeset/proud-squids-remain.md @@ -0,0 +1,5 @@ +--- +'@graphcommerce/next-ui': patch +--- + +Store the css flags as a cookie, so we are able to retrieve the flags in the middleware as well. diff --git a/CLAUDE.md b/CLAUDE.md index 96040e07935..2b7e1b81464 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -165,6 +165,14 @@ extend input GraphCommerceStorefrontConfig { } ``` +You can also extend existing enums from other packages: + +```graphql +extend enum WebsitePermissions { + CUSTOMER_ONLY +} +``` + ### Environment Variables (.env) Each example directory has a `.env` file. Two types of env vars are used: @@ -311,6 +319,76 @@ After running `yarn codegen`, `my_custom_attribute` will be available in Enable with `debug.pluginStatus: true` in config or `GC_DEBUG_PLUGIN_STATUS=1` in env. This logs which plugins are enabled/disabled during build. +## Authentication & Cookies + +Customer auth tokens are stored in Apollo Client cache (persisted to +localStorage). Since server-side code (middleware, SSR) cannot access +localStorage, a `gc-auth=1` cookie is set on sign-in and cleared on sign-out. +This cookie is a boolean flag only — never the actual token. + +**Cookie utility** (`@graphcommerce/next-ui`): + +```tsx +import { cookie } from '@graphcommerce/next-ui' +cookie('gc-auth', '1') // set +cookie('gc-auth') // read +cookie('gc-auth', null) // delete +``` + +### CSS Flags + +CSS flags set `data-*` attributes on `` for instant visual toggling before +JS hydrates. Stored in localStorage, restored via a blocking script in +`_document.tsx` (`getCssFlagsInitScript()`). + +```tsx +import { + setCssFlag, + removeCssFlag, + cssFlag, + cssNotFlag, +} from '@graphcommerce/next-ui' + +setCssFlag('private-query', true) +// In MUI sx: { [cssFlag('private-query')]: { display: 'none' } } +// In MUI sx: { [cssNotFlag('private-query')]: { display: 'none' } } +``` + +The `private-query` flag is set on sign-in, cleared on sign-out. Used by +`GuestOrCustomerMask` and `PrivateQueryMask` to show/hide customer-specific +content without waiting for React hydration. + +### Permissions System + +Permissions are configured via `GraphCommercePermissions` input type in +`Config.graphqls`. Set globally and overridable per storefront: + +```tsx +import { permissions } from '@graphcommerce/next-config/config' +import { useStorefrontConfig } from '@graphcommerce/next-ui' +const perm = + useStorefrontConfig().permissions?.website ?? + permissions?.website ?? + 'ENABLED' +``` + +Existing enums: `WebsitePermissions`, `CustomerAccountPermissions`, +`CartPermissions`, `BillingAddressPermissions`. Extendable via `extend enum` in +package `Config.graphqls` files. + +### GuestOrCustomerMask + +Component for showing different content based on auth state, with CSS-flag-based +masking to avoid flash of wrong content: + +```tsx +} + skeleton={} + loggedIn={} +/> +``` + ## Tech Stack - Next.js with Turbopack, React 19, TypeScript 5.9 diff --git a/packages/next-ui/utils/cssFlags.tsx b/packages/next-ui/utils/cssFlags.tsx index a57d82e9bf0..4a1c760e970 100644 --- a/packages/next-ui/utils/cssFlags.tsx +++ b/packages/next-ui/utils/cssFlags.tsx @@ -1,13 +1,22 @@ -import { FLAGS_STORAGE_KEY } from './getCssFlagInitScript' - -function loadFlags() { - const flags = JSON.parse(localStorage.getItem(FLAGS_STORAGE_KEY) || '{}') - if (typeof flags !== 'object' && flags !== null) return {} - return flags as Record +import { cookie } from './cookie' +import { FLAGS_COOKIE_KEY } from './getCssFlagInitScript' + +function loadFlags(): Record { + try { + const raw = cookie(FLAGS_COOKIE_KEY) + if (!raw) return {} + const flags = JSON.parse(raw) + if (typeof flags !== 'object' || flags === null) return {} + return flags as Record + } catch { + return {} + } } function saveFlags(flags: Record) { - window.localStorage?.setItem(FLAGS_STORAGE_KEY, JSON.stringify(flags)) + const json = JSON.stringify(flags) + if (json === '{}') cookie(FLAGS_COOKIE_KEY, null) + else cookie(FLAGS_COOKIE_KEY, json) } export function removeCssFlag(flagName: string) { diff --git a/packages/next-ui/utils/getCssFlagInitScript.tsx b/packages/next-ui/utils/getCssFlagInitScript.tsx index 4d3803e2ef9..c959942c1d5 100644 --- a/packages/next-ui/utils/getCssFlagInitScript.tsx +++ b/packages/next-ui/utils/getCssFlagInitScript.tsx @@ -1,4 +1,4 @@ -export const FLAGS_STORAGE_KEY = 'gc-flags' +export const FLAGS_COOKIE_KEY = 'gc-flags' export function getCssFlagsInitScript() { return ( @@ -9,7 +9,9 @@ export function getCssFlagsInitScript() { dangerouslySetInnerHTML={{ __html: `(function() { try { - const flags = JSON.parse(localStorage.getItem('${FLAGS_STORAGE_KEY}') || '{}') + var m = document.cookie.match(/(^|; )${FLAGS_COOKIE_KEY}=([^;]*)/) + if (!m) return + var flags = JSON.parse(decodeURIComponent(m[2])) Object.entries(flags).forEach(([key, val]) => { document.documentElement.setAttribute('data-' +key, typeof val === 'boolean' ? '' : val) }) From 308771e5818d2f507ed8814d907a3246bde1d64d Mon Sep 17 00:00:00 2001 From: Paul Hachmang Date: Mon, 30 Mar 2026 10:49:30 +0200 Subject: [PATCH 012/115] Updated CLAUDE --- CLAUDE.md | 14 +++++++++++++- examples/magento-graphcms/.gitignore | 1 + 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CLAUDE.md b/CLAUDE.md index 2b7e1b81464..a12fd5fbb90 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -61,8 +61,20 @@ use Playwright: `yarn playwright`. ### Linting & Type Checking +**Important:** For type checking, use `tsgo` (the native TypeScript compiler) +and run it from the **example directory** (not the repo root): + +```bash +# Type check (preferred — fast native TypeScript compiler) +cd examples/magento-graphcms +npx --package=@typescript/native-preview tsgo --noEmit -p . +``` + +Type checking must be run from an example directory because codegen only +generates types for the specific project (`.mesh/`, `.gql.ts` files). Running +from the repo root will fail with missing type errors. + ```bash -yarn tsc:lint # TypeScript noEmit check (whole repo) yarn eslint:lint # ESLint across all TS/TSX yarn eslint:fix # ESLint with auto-fix yarn prettier:fix # Prettier formatting diff --git a/examples/magento-graphcms/.gitignore b/examples/magento-graphcms/.gitignore index 7ff2e15df4d..4dabd8fa430 100644 --- a/examples/magento-graphcms/.gitignore +++ b/examples/magento-graphcms/.gitignore @@ -32,6 +32,7 @@ yarn-error.log* *.tsbuildinfo # managed by: graphcommerce +middleware.ts.example pages/.well-known/assetlinks.json.tsx pages/account/downloads.tsx pages/account/payment-tokens.tsx From ac652cc7b1358cebe9047733afccc87b5b89dae4 Mon Sep 17 00:00:00 2001 From: Paul Hachmang Date: Mon, 30 Mar 2026 12:05:52 +0200 Subject: [PATCH 013/115] JSE-1: Added generic proxy handling to graphcommerce that can be used for plugins. Disabledby default. --- .changeset/happy-jars-drum.md | 5 +++++ CLAUDE.md | 20 +++++++++++--------- examples/magento-graphcms/.gitignore | 3 ++- packages/next-ui/copy/proxy.ts | 12 ++++++++++++ packages/next-ui/package.json | 3 ++- packages/next-ui/proxy.ts | 11 +++++++++++ 6 files changed, 43 insertions(+), 11 deletions(-) create mode 100644 .changeset/happy-jars-drum.md create mode 100644 packages/next-ui/copy/proxy.ts create mode 100644 packages/next-ui/proxy.ts diff --git a/.changeset/happy-jars-drum.md b/.changeset/happy-jars-drum.md new file mode 100644 index 00000000000..3b1f1d8669d --- /dev/null +++ b/.changeset/happy-jars-drum.md @@ -0,0 +1,5 @@ +--- +'@graphcommerce/next-ui': patch +--- + +Added generic proxy handling to graphcommerce that can be used for plugins. Disabledby default. diff --git a/CLAUDE.md b/CLAUDE.md index a12fd5fbb90..88d117a1817 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -333,25 +333,27 @@ in env. This logs which plugins are enabled/disabled during build. ## Authentication & Cookies -Customer auth tokens are stored in Apollo Client cache (persisted to -localStorage). Since server-side code (middleware, SSR) cannot access -localStorage, a `gc-auth=1` cookie is set on sign-in and cleared on sign-out. -This cookie is a boolean flag only — never the actual token. +Customer auth tokens are stored in Apollo Client cache. Auth state is tracked +via the CSS flags system: the `private-query` flag in the `gc-flags` cookie +indicates a logged-in user. This is set automatically by `setCssFlag` on sign-in +and cleared by `removeCssFlag` on sign-out. The cookie is readable both +client-side and server-side (in Next.js proxy). **Cookie utility** (`@graphcommerce/next-ui`): ```tsx import { cookie } from '@graphcommerce/next-ui' -cookie('gc-auth', '1') // set -cookie('gc-auth') // read -cookie('gc-auth', null) // delete +cookie('name', 'value') // set +cookie('name') // read +cookie('name', null) // delete ``` ### CSS Flags CSS flags set `data-*` attributes on `` for instant visual toggling before -JS hydrates. Stored in localStorage, restored via a blocking script in -`_document.tsx` (`getCssFlagsInitScript()`). +JS hydrates. Stored in a `gc-flags` cookie (JSON), restored via a blocking +script in `_document.tsx` (`getCssFlagsInitScript()`) that reads +`document.cookie`. The cookie is also readable server-side in Next.js proxy. ```tsx import { diff --git a/examples/magento-graphcms/.gitignore b/examples/magento-graphcms/.gitignore index 4dabd8fa430..5ed613d72b1 100644 --- a/examples/magento-graphcms/.gitignore +++ b/examples/magento-graphcms/.gitignore @@ -32,13 +32,13 @@ yarn-error.log* *.tsbuildinfo # managed by: graphcommerce -middleware.ts.example pages/.well-known/assetlinks.json.tsx pages/account/downloads.tsx pages/account/payment-tokens.tsx pages/downloadable/download/link/id/\[id\].tsx pages/downloadable/download/linkSample/link_id/\[id\].tsx pages/downloadable/download/sample/sample_id/\[id\].tsx +pages/private.tsx pages/test/\[\[...url\]\].tsx pages/test/buttons.tsx pages/test/form-elements.tsx @@ -49,4 +49,5 @@ pages/test/sheet.tsx pages/test/slider.tsx pages/test/typography.tsx pages/test/usebacklink/\[\[...url\]\].tsx +proxy.ts # end managed by: graphcommerce diff --git a/packages/next-ui/copy/proxy.ts b/packages/next-ui/copy/proxy.ts new file mode 100644 index 00000000000..061041b99d8 --- /dev/null +++ b/packages/next-ui/copy/proxy.ts @@ -0,0 +1,12 @@ +export { proxy } from '@graphcommerce/next-ui/proxy' + +export const config = { + matcher: [ + /* + * Match all request paths except static assets (_next/static, _next/image, + * api routes, and files with extensions like .png, .js, .css, etc.). + * Further filtering is handled by proxy plugins. + */ + '/((?!api|_next/static|_next/image|.*\\..*).*)', + ], +} diff --git a/packages/next-ui/package.json b/packages/next-ui/package.json index cfaa06368a2..d0cc5d9eb4f 100644 --- a/packages/next-ui/package.json +++ b/packages/next-ui/package.json @@ -27,7 +27,8 @@ "./Intl/DateTimeFormat/toDate": "./Intl/DateTimeFormat/toDate.ts", "./Breadcrumbs/BreadcrumbsJsonLd": "./Breadcrumbs/BreadcrumbsJsonLd.tsx", "./Breadcrumbs/jsonLdBreadcrumb": "./Breadcrumbs/jsonLdBreadcrumb.tsx", - "./RenderType/filterNonNullableKeys": "./RenderType/filterNonNullableKeys.ts" + "./RenderType/filterNonNullableKeys": "./RenderType/filterNonNullableKeys.ts", + "./proxy": "./proxy.ts" }, "dependencies": { "cookie": "^1.1.1", diff --git a/packages/next-ui/proxy.ts b/packages/next-ui/proxy.ts new file mode 100644 index 00000000000..c4344d9a935 --- /dev/null +++ b/packages/next-ui/proxy.ts @@ -0,0 +1,11 @@ +import type { NextRequest } from 'next/server' +import { NextResponse } from 'next/server' + +/** + * Base proxy handler for GraphCommerce. Returns NextResponse.next() by default. + * + * Extend this via function plugins to add authentication checks, redirects, etc. + */ +export function proxy(request: NextRequest): Response | NextResponse { + return NextResponse.next() +} From fa1eeaeb10db1d465dd0f7a07d643862921c3c04 Mon Sep 17 00:00:00 2001 From: Paul Hachmang Date: Mon, 30 Mar 2026 12:22:54 +0200 Subject: [PATCH 014/115] JSE-1: Override signup props and update strings --- .changeset/five-foxes-wear.md | 5 +++ examples/magento-graphcms/locales/de.po | 4 +-- examples/magento-graphcms/locales/en.po | 4 +-- examples/magento-graphcms/locales/es.po | 4 +-- examples/magento-graphcms/locales/fr.po | 4 +-- examples/magento-graphcms/locales/it.po | 4 +-- examples/magento-graphcms/locales/nl.po | 4 +-- .../AccountSignInUpForm.tsx | 35 +++++++++++++++---- 8 files changed, 45 insertions(+), 19 deletions(-) create mode 100644 .changeset/five-foxes-wear.md diff --git a/.changeset/five-foxes-wear.md b/.changeset/five-foxes-wear.md new file mode 100644 index 00000000000..9fd7febbf68 --- /dev/null +++ b/.changeset/five-foxes-wear.md @@ -0,0 +1,5 @@ +--- +'@graphcommerce/magento-customer': patch +--- + +Override signup props and update strings diff --git a/examples/magento-graphcms/locales/de.po b/examples/magento-graphcms/locales/de.po index 1b97228858a..a24318dbdfc 100644 --- a/examples/magento-graphcms/locales/de.po +++ b/examples/magento-graphcms/locales/de.po @@ -485,8 +485,8 @@ msgstr "Sendung nicht gefunden" msgid "Be the first to write a review!" msgstr "Schreiben Sie die erste Bewertung!" -msgid "Create a password and tell us your name" -msgstr "Erstellen Sie ein Passwort und teilen Sie uns Ihren Namen mit" +msgid "Enter your details to create your account" +msgstr "Geben Sie Ihre Daten ein, um Ihr Konto zu erstellen" #. placeholder {0}: product?.name msgid "You are reviewing {0}" diff --git a/examples/magento-graphcms/locales/en.po b/examples/magento-graphcms/locales/en.po index e2252e83ef7..8e98de7426d 100644 --- a/examples/magento-graphcms/locales/en.po +++ b/examples/magento-graphcms/locales/en.po @@ -485,8 +485,8 @@ msgstr "Shipment not found" msgid "Be the first to write a review!" msgstr "Be the first to write a review!" -msgid "Create a password and tell us your name" -msgstr "Create a password and tell us your name" +msgid "Enter your details to create your account" +msgstr "Enter your details to create your account" #. placeholder {0}: product?.name msgid "You are reviewing {0}" diff --git a/examples/magento-graphcms/locales/es.po b/examples/magento-graphcms/locales/es.po index a0d9868deea..0746bfa03e4 100644 --- a/examples/magento-graphcms/locales/es.po +++ b/examples/magento-graphcms/locales/es.po @@ -485,8 +485,8 @@ msgstr "Envío no encontrado" msgid "Be the first to write a review!" msgstr "Sé el primero en escribir una reseña!" -msgid "Create a password and tell us your name" -msgstr "Crea una contraseña y nos cuentas tu nombre" +msgid "Enter your details to create your account" +msgstr "Introduce tus datos para crear tu cuenta" #. placeholder {0}: product?.name msgid "You are reviewing {0}" diff --git a/examples/magento-graphcms/locales/fr.po b/examples/magento-graphcms/locales/fr.po index 624326081ae..6dd49aee3c7 100644 --- a/examples/magento-graphcms/locales/fr.po +++ b/examples/magento-graphcms/locales/fr.po @@ -485,8 +485,8 @@ msgstr "Expédition non trouvée" msgid "Be the first to write a review!" msgstr "Soyez le premier à écrire une évaluation!" -msgid "Create a password and tell us your name" -msgstr "Créer un mot de passe et nous indiquer votre nom" +msgid "Enter your details to create your account" +msgstr "Entrez vos informations pour créer votre compte" #. placeholder {0}: product?.name msgid "You are reviewing {0}" diff --git a/examples/magento-graphcms/locales/it.po b/examples/magento-graphcms/locales/it.po index fc17b17d0c8..5cba15d62f4 100644 --- a/examples/magento-graphcms/locales/it.po +++ b/examples/magento-graphcms/locales/it.po @@ -485,8 +485,8 @@ msgstr "Spedizione non trovata" msgid "Be the first to write a review!" msgstr "Sii il primo a scrivere una recensione!" -msgid "Create a password and tell us your name" -msgstr "Crea una password e ti diciamo il tuo nome" +msgid "Enter your details to create your account" +msgstr "Inserisci i tuoi dati per creare il tuo account" #. placeholder {0}: product?.name msgid "You are reviewing {0}" diff --git a/examples/magento-graphcms/locales/nl.po b/examples/magento-graphcms/locales/nl.po index 6bada62e0e0..c42df78d63a 100644 --- a/examples/magento-graphcms/locales/nl.po +++ b/examples/magento-graphcms/locales/nl.po @@ -485,8 +485,8 @@ msgstr "Zending niet gevonden" msgid "Be the first to write a review!" msgstr "Wees de eerste die een review schrijft!" -msgid "Create a password and tell us your name" -msgstr "Maak een wachtwoord en vertel ons uw naam" +msgid "Enter your details to create your account" +msgstr "Vul je gegevens in om een account aan te maken" #. placeholder {0}: product?.name msgid "You are reviewing {0}" diff --git a/packages/magento-customer/components/AccountSignInUpForm/AccountSignInUpForm.tsx b/packages/magento-customer/components/AccountSignInUpForm/AccountSignInUpForm.tsx index 3fc5a465749..e21cec601c8 100644 --- a/packages/magento-customer/components/AccountSignInUpForm/AccountSignInUpForm.tsx +++ b/packages/magento-customer/components/AccountSignInUpForm/AccountSignInUpForm.tsx @@ -30,13 +30,34 @@ import { SignUpForm } from '../SignUpForm/SignUpForm' export type AccountSignInUpFormProps = { sx?: SxProps signUpDisabled?: React.ReactNode + /** Override the title shown in the initial email step */ + emailTitle?: React.ReactNode + /** Override the subtitle shown in the initial email step */ + emailSubtitle?: React.ReactNode + /** Override the title shown in the sign-in step */ + signInTitle?: React.ReactNode + /** Override the subtitle shown in the sign-in step */ + signInSubtitle?: React.ReactNode + /** Override the title shown in the sign-up step */ + signUpTitle?: React.ReactNode + /** Override the subtitle shown in the sign-up step */ + signUpSubtitle?: React.ReactNode } const parts = ['root', 'titleContainer'] as const const { classes } = extendableComponent('AccountSignInUpForm', parts) export function AccountSignInUpForm(props: AccountSignInUpFormProps) { - const { sx = [], signUpDisabled } = props + const { + sx = [], + signUpDisabled, + emailTitle, + emailSubtitle, + signInTitle, + signInSubtitle, + signUpTitle, + signUpSubtitle, + } = props const customerEmailQuery = useCustomerQuery(UseCustomerValidateTokenDocument) const customerQuery = useCustomerQuery(CustomerDocument) @@ -69,10 +90,10 @@ export function AccountSignInUpForm(props: AccountSignInUpFormProps) { {mode === 'email' && ( <> - Sign in or create an account! + {emailTitle ?? Sign in or create an account!} - Fill in your e-mail to login or create an account + {emailSubtitle ?? Fill in your e-mail to login or create an account} )} @@ -80,10 +101,10 @@ export function AccountSignInUpForm(props: AccountSignInUpFormProps) { {(mode === 'signin' || (mode === 'signup' && !canSignUp)) && ( <> - Sign in + {signInTitle ?? Sign in} - Fill in your password + {signInSubtitle ?? Fill in your password} )} @@ -91,10 +112,10 @@ export function AccountSignInUpForm(props: AccountSignInUpFormProps) { {mode === 'signup' && canSignUp && ( <> - Create account! + {signUpTitle ?? Create account!} - Create a password and tell us your name + {signUpSubtitle ?? Enter your details to create your account} )} From 5957a2b90520574a0d72c5850858464092cdf7c0 Mon Sep 17 00:00:00 2001 From: Paul Hachmang Date: Mon, 30 Mar 2026 12:08:00 +0200 Subject: [PATCH 015/115] Fix hydration erorr with SkipLink when there are query params. --- .changeset/thick-mugs-accept.md | 5 +++++ packages/next-ui/SkipLink/SkipLink.tsx | 1 + 2 files changed, 6 insertions(+) create mode 100644 .changeset/thick-mugs-accept.md diff --git a/.changeset/thick-mugs-accept.md b/.changeset/thick-mugs-accept.md new file mode 100644 index 00000000000..2934b7eba78 --- /dev/null +++ b/.changeset/thick-mugs-accept.md @@ -0,0 +1,5 @@ +--- +'@graphcommerce/next-ui': patch +--- + +Fix hydration erorr with SkipLink when there are query params. diff --git a/packages/next-ui/SkipLink/SkipLink.tsx b/packages/next-ui/SkipLink/SkipLink.tsx index 0729d259d99..51abebec062 100644 --- a/packages/next-ui/SkipLink/SkipLink.tsx +++ b/packages/next-ui/SkipLink/SkipLink.tsx @@ -10,6 +10,7 @@ export function SkipLink() { return ( Date: Mon, 30 Mar 2026 15:50:02 +0200 Subject: [PATCH 016/115] Copy magento-open-source example to magento-storyblok --- examples/magento-storyblok/.gitignore | 41 + examples/magento-storyblok/.graphqlrc.yml | 17 + examples/magento-storyblok/.meshrc.yml | 21 + .../magento-storyblok/.vscode/settings.json | 31 + examples/magento-storyblok/.yarnrc.yml | 3 + examples/magento-storyblok/CHANGELOG.md | 115 ++ examples/magento-storyblok/README.md | 101 ++ examples/magento-storyblok/codegen.yml | 42 + .../components/Layout/Footer.tsx | 55 + .../components/Layout/Layout.graphql | 12 + .../components/Layout/LayoutMinimal.tsx | 37 + .../components/Layout/LayoutNavigation.tsx | 188 +++ .../components/Layout/LayoutOverlay.tsx | 5 + .../components/Layout/Logo.tsx | 36 + .../components/Layout/graphcommerce.svg | 3 + .../components/Layout/index.ts | 4 + .../ProductListItems/ProductListItems.tsx | 9 + .../components/ProductListItems/index.ts | 2 + .../ProductListItems/productListRenderer.tsx | 79 ++ .../ProductListLayoutClassic.tsx | 87 ++ .../ProductListLayoutDefault.tsx | 146 +++ .../ProductListLayoutSidebar.tsx | 214 ++++ .../components/ProductListLayout/index.ts | 4 + .../components/ProductListLayout/types.tsx | 99 ++ .../ProductView/AddProductsToCartView.tsx | 58 + .../components/ProductView/Reviews.tsx | 47 + .../components/ProductView/index.ts | 1 + .../magento-storyblok/components/index.ts | 4 + .../magento-storyblok/components/theme.ts | 399 ++++++ examples/magento-storyblok/eslint.config.mjs | 4 + .../graphcommerce.config.ts.example | 58 + examples/magento-storyblok/graphql.config.ts | 16 + .../graphql/CategoryPage.graphql | 3 + .../graphql/ProductPage2.graphql | 30 + .../lib/graphql/graphqlSsrClient.ts | 66 + .../lib/i18n/I18nProvider.tsx | 42 + examples/magento-storyblok/lib/sw.ts | 18 + examples/magento-storyblok/lingui.config.ts | 14 + examples/magento-storyblok/locales/de.po | 1135 +++++++++++++++++ examples/magento-storyblok/locales/en.po | 1135 +++++++++++++++++ examples/magento-storyblok/locales/es.po | 1135 +++++++++++++++++ examples/magento-storyblok/locales/fr.po | 1135 +++++++++++++++++ examples/magento-storyblok/locales/it.po | 1135 +++++++++++++++++ examples/magento-storyblok/locales/nl.po | 1135 +++++++++++++++++ examples/magento-storyblok/next.config.ts | 27 + examples/magento-storyblok/package.json | 152 +++ examples/magento-storyblok/pages/404.tsx | 78 ++ examples/magento-storyblok/pages/[...url].tsx | 242 ++++ examples/magento-storyblok/pages/_app.tsx | 28 + .../magento-storyblok/pages/_document.tsx | 41 + .../pages/account/addresses/add.tsx | 77 ++ .../pages/account/addresses/edit.tsx | 92 ++ .../pages/account/addresses/index.tsx | 79 ++ .../pages/account/authentication/index.tsx | 81 ++ .../pages/account/contact/index.tsx | 77 ++ .../pages/account/delete/index.tsx | 63 + .../pages/account/forgot-password.tsx | 62 + .../magento-storyblok/pages/account/index.tsx | 173 +++ .../pages/account/name/index.tsx | 87 ++ .../pages/account/orders/credit-memo.tsx | 117 ++ .../pages/account/orders/index.tsx | 98 ++ .../pages/account/orders/invoice.tsx | 114 ++ .../pages/account/orders/shipment.tsx | 114 ++ .../pages/account/orders/view.tsx | 114 ++ .../pages/account/reviews/add.tsx | 120 ++ .../pages/account/reviews/index.tsx | 90 ++ .../pages/account/signin.tsx | 54 + .../magento-storyblok/pages/api/graphql.ts | 5 + .../magento-storyblok/pages/api/preview.ts | 3 + .../magento-storyblok/pages/c/[...url].tsx | 22 + examples/magento-storyblok/pages/cart.tsx | 131 ++ .../pages/checkout/added.tsx | 179 +++ .../checkout/customer/addresses/edit.tsx | 108 ++ .../pages/checkout/edit/billing-address.tsx | 73 ++ .../pages/checkout/index.tsx | 173 +++ .../pages/checkout/item/[url].tsx | 138 ++ .../pages/checkout/payment.tsx | 176 +++ .../pages/checkout/success.tsx | 115 ++ .../pages/checkout/terms/[url].tsx | 97 ++ examples/magento-storyblok/pages/compare.tsx | 107 ++ .../pages/customer/account/confirm.tsx | 56 + .../pages/customer/account/createPassword.tsx | 95 ++ .../pages/guest/orderstatus.tsx | 80 ++ examples/magento-storyblok/pages/index.tsx | 65 + examples/magento-storyblok/pages/p/[url].tsx | 265 ++++ .../magento-storyblok/pages/page/[...url].tsx | 98 ++ .../magento-storyblok/pages/robots.txt.tsx | 71 ++ .../pages/search/[[...url]].tsx | 146 +++ .../pages/service/contact-us.tsx | 70 + .../magento-storyblok/pages/service/index.tsx | 60 + .../pages/service/newsletter.tsx | 70 + .../pages/sitemap/categories.xml.tsx | 33 + .../pages/sitemap/content.xml.tsx | 35 + .../pages/sitemap/products.xml.tsx | 30 + .../magento-storyblok/pages/switch-stores.tsx | 112 ++ examples/magento-storyblok/pages/wishlist.tsx | 95 ++ examples/magento-storyblok/patches/README.md | 3 + .../plugins/EnableCrosssellsPlugin.tsx | 20 + .../public/apple-touch-icon.png | Bin 0 -> 21355 bytes examples/magento-storyblok/public/favicon.ico | Bin 0 -> 4314 bytes examples/magento-storyblok/public/favicon.svg | 12 + .../public/manifest.webmanifest | 31 + .../public/manifest/favicon-192.png | Bin 0 -> 6291 bytes .../public/manifest/favicon-512.png | Bin 0 -> 17783 bytes .../public/open-graph-image.jpg | Bin 0 -> 10202 bytes examples/magento-storyblok/tsconfig.json | 23 + 106 files changed, 13898 insertions(+) create mode 100644 examples/magento-storyblok/.gitignore create mode 100644 examples/magento-storyblok/.graphqlrc.yml create mode 100644 examples/magento-storyblok/.meshrc.yml create mode 100644 examples/magento-storyblok/.vscode/settings.json create mode 100644 examples/magento-storyblok/.yarnrc.yml create mode 100644 examples/magento-storyblok/CHANGELOG.md create mode 100644 examples/magento-storyblok/README.md create mode 100644 examples/magento-storyblok/codegen.yml create mode 100644 examples/magento-storyblok/components/Layout/Footer.tsx create mode 100644 examples/magento-storyblok/components/Layout/Layout.graphql create mode 100644 examples/magento-storyblok/components/Layout/LayoutMinimal.tsx create mode 100644 examples/magento-storyblok/components/Layout/LayoutNavigation.tsx create mode 100644 examples/magento-storyblok/components/Layout/LayoutOverlay.tsx create mode 100644 examples/magento-storyblok/components/Layout/Logo.tsx create mode 100644 examples/magento-storyblok/components/Layout/graphcommerce.svg create mode 100644 examples/magento-storyblok/components/Layout/index.ts create mode 100644 examples/magento-storyblok/components/ProductListItems/ProductListItems.tsx create mode 100644 examples/magento-storyblok/components/ProductListItems/index.ts create mode 100644 examples/magento-storyblok/components/ProductListItems/productListRenderer.tsx create mode 100644 examples/magento-storyblok/components/ProductListLayout/ProductListLayoutClassic.tsx create mode 100644 examples/magento-storyblok/components/ProductListLayout/ProductListLayoutDefault.tsx create mode 100644 examples/magento-storyblok/components/ProductListLayout/ProductListLayoutSidebar.tsx create mode 100644 examples/magento-storyblok/components/ProductListLayout/index.ts create mode 100644 examples/magento-storyblok/components/ProductListLayout/types.tsx create mode 100644 examples/magento-storyblok/components/ProductView/AddProductsToCartView.tsx create mode 100644 examples/magento-storyblok/components/ProductView/Reviews.tsx create mode 100644 examples/magento-storyblok/components/ProductView/index.ts create mode 100644 examples/magento-storyblok/components/index.ts create mode 100644 examples/magento-storyblok/components/theme.ts create mode 100644 examples/magento-storyblok/eslint.config.mjs create mode 100644 examples/magento-storyblok/graphcommerce.config.ts.example create mode 100644 examples/magento-storyblok/graphql.config.ts create mode 100644 examples/magento-storyblok/graphql/CategoryPage.graphql create mode 100644 examples/magento-storyblok/graphql/ProductPage2.graphql create mode 100644 examples/magento-storyblok/lib/graphql/graphqlSsrClient.ts create mode 100644 examples/magento-storyblok/lib/i18n/I18nProvider.tsx create mode 100644 examples/magento-storyblok/lib/sw.ts create mode 100644 examples/magento-storyblok/lingui.config.ts create mode 100644 examples/magento-storyblok/locales/de.po create mode 100644 examples/magento-storyblok/locales/en.po create mode 100644 examples/magento-storyblok/locales/es.po create mode 100644 examples/magento-storyblok/locales/fr.po create mode 100644 examples/magento-storyblok/locales/it.po create mode 100644 examples/magento-storyblok/locales/nl.po create mode 100644 examples/magento-storyblok/next.config.ts create mode 100644 examples/magento-storyblok/package.json create mode 100644 examples/magento-storyblok/pages/404.tsx create mode 100644 examples/magento-storyblok/pages/[...url].tsx create mode 100644 examples/magento-storyblok/pages/_app.tsx create mode 100644 examples/magento-storyblok/pages/_document.tsx create mode 100644 examples/magento-storyblok/pages/account/addresses/add.tsx create mode 100644 examples/magento-storyblok/pages/account/addresses/edit.tsx create mode 100644 examples/magento-storyblok/pages/account/addresses/index.tsx create mode 100644 examples/magento-storyblok/pages/account/authentication/index.tsx create mode 100644 examples/magento-storyblok/pages/account/contact/index.tsx create mode 100644 examples/magento-storyblok/pages/account/delete/index.tsx create mode 100644 examples/magento-storyblok/pages/account/forgot-password.tsx create mode 100644 examples/magento-storyblok/pages/account/index.tsx create mode 100644 examples/magento-storyblok/pages/account/name/index.tsx create mode 100644 examples/magento-storyblok/pages/account/orders/credit-memo.tsx create mode 100644 examples/magento-storyblok/pages/account/orders/index.tsx create mode 100644 examples/magento-storyblok/pages/account/orders/invoice.tsx create mode 100644 examples/magento-storyblok/pages/account/orders/shipment.tsx create mode 100644 examples/magento-storyblok/pages/account/orders/view.tsx create mode 100644 examples/magento-storyblok/pages/account/reviews/add.tsx create mode 100644 examples/magento-storyblok/pages/account/reviews/index.tsx create mode 100644 examples/magento-storyblok/pages/account/signin.tsx create mode 100644 examples/magento-storyblok/pages/api/graphql.ts create mode 100644 examples/magento-storyblok/pages/api/preview.ts create mode 100644 examples/magento-storyblok/pages/c/[...url].tsx create mode 100644 examples/magento-storyblok/pages/cart.tsx create mode 100644 examples/magento-storyblok/pages/checkout/added.tsx create mode 100644 examples/magento-storyblok/pages/checkout/customer/addresses/edit.tsx create mode 100644 examples/magento-storyblok/pages/checkout/edit/billing-address.tsx create mode 100644 examples/magento-storyblok/pages/checkout/index.tsx create mode 100644 examples/magento-storyblok/pages/checkout/item/[url].tsx create mode 100644 examples/magento-storyblok/pages/checkout/payment.tsx create mode 100644 examples/magento-storyblok/pages/checkout/success.tsx create mode 100644 examples/magento-storyblok/pages/checkout/terms/[url].tsx create mode 100644 examples/magento-storyblok/pages/compare.tsx create mode 100644 examples/magento-storyblok/pages/customer/account/confirm.tsx create mode 100644 examples/magento-storyblok/pages/customer/account/createPassword.tsx create mode 100644 examples/magento-storyblok/pages/guest/orderstatus.tsx create mode 100644 examples/magento-storyblok/pages/index.tsx create mode 100644 examples/magento-storyblok/pages/p/[url].tsx create mode 100644 examples/magento-storyblok/pages/page/[...url].tsx create mode 100644 examples/magento-storyblok/pages/robots.txt.tsx create mode 100644 examples/magento-storyblok/pages/search/[[...url]].tsx create mode 100644 examples/magento-storyblok/pages/service/contact-us.tsx create mode 100644 examples/magento-storyblok/pages/service/index.tsx create mode 100644 examples/magento-storyblok/pages/service/newsletter.tsx create mode 100644 examples/magento-storyblok/pages/sitemap/categories.xml.tsx create mode 100644 examples/magento-storyblok/pages/sitemap/content.xml.tsx create mode 100644 examples/magento-storyblok/pages/sitemap/products.xml.tsx create mode 100644 examples/magento-storyblok/pages/switch-stores.tsx create mode 100644 examples/magento-storyblok/pages/wishlist.tsx create mode 100644 examples/magento-storyblok/patches/README.md create mode 100644 examples/magento-storyblok/plugins/EnableCrosssellsPlugin.tsx create mode 100644 examples/magento-storyblok/public/apple-touch-icon.png create mode 100644 examples/magento-storyblok/public/favicon.ico create mode 100644 examples/magento-storyblok/public/favicon.svg create mode 100644 examples/magento-storyblok/public/manifest.webmanifest create mode 100644 examples/magento-storyblok/public/manifest/favicon-192.png create mode 100644 examples/magento-storyblok/public/manifest/favicon-512.png create mode 100644 examples/magento-storyblok/public/open-graph-image.jpg create mode 100644 examples/magento-storyblok/tsconfig.json diff --git a/examples/magento-storyblok/.gitignore b/examples/magento-storyblok/.gitignore new file mode 100644 index 00000000000..252b58f15ed --- /dev/null +++ b/examples/magento-storyblok/.gitignore @@ -0,0 +1,41 @@ +# dependencies +node_modules + +# next.js +.next/ +out/ +.vercel +next-env.d.ts +._tmp* +.swc + +# misc +.DS_Store +.env* +!.env.example + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# application +**/public/workbox-*.js* +**/public/sw.js* +**/public/sitemap*.xml +**/public/robots.txt + +*.gql.ts + +# application +.mesh +*.tsbuildinfo + +# managed by: graphcommerce +pages/.well-known/assetlinks.json.tsx +pages/account/downloads.tsx +pages/account/payment-tokens.tsx +pages/downloadable/download/link/id/\[id\].tsx +pages/downloadable/download/linkSample/link_id/\[id\].tsx +pages/downloadable/download/sample/sample_id/\[id\].tsx +# end managed by: graphcommerce diff --git a/examples/magento-storyblok/.graphqlrc.yml b/examples/magento-storyblok/.graphqlrc.yml new file mode 100644 index 00000000000..f45dec8a14c --- /dev/null +++ b/examples/magento-storyblok/.graphqlrc.yml @@ -0,0 +1,17 @@ +projects: + Project: + schema: + - .mesh/schema.graphql + - node_modules/@graphcommerce/graphql/apollo-client.graphql + - node_modules/@graphcommerce/graphql-codegen-near-operation-file/src/directive/env.graphqls + - node_modules/@graphcommerce/graphql-codegen-near-operation-file/src/directive/injectable.graphqls + documents: + - ./components/**/*.graphql + - ./graphql/**/*.graphql + - node_modules/@graphcommerce/**/*.graphql + extensions: + languageService: + useSchemaFileDefinitions: true + endpoints: + default: + url: http://localhost:3000/api/graphql/ diff --git a/examples/magento-storyblok/.meshrc.yml b/examples/magento-storyblok/.meshrc.yml new file mode 100644 index 00000000000..7a6b962c854 --- /dev/null +++ b/examples/magento-storyblok/.meshrc.yml @@ -0,0 +1,21 @@ +sources: + - name: m2 + handler: + graphql: + endpoint: '{graphCommerce.magentoEndpoint}' + useGETForQueries: true + batch: false + operationHeaders: + Store: '{context.headers.store}' + Authorization: '{context.headers.authorization}' + X-ReCaptcha: "{context.headers['x-recaptcha']}" + Preview-Version: "{context.headers['preview-version']}" + Content-Currency: "{context.headers['content-currency']}" + X-Magento-Cache-Id: "{context.headers['x-magento-cache-id']}" + X-Forwarded-For: "{context.headers['x-forwarded-for']}" +serve: + playground: true +plugins: + - '@graphcommerce/graphql-mesh/plugin/forward-headers': + forwardHeaders: + - X-Magento-Cache-Id diff --git a/examples/magento-storyblok/.vscode/settings.json b/examples/magento-storyblok/.vscode/settings.json new file mode 100644 index 00000000000..ce6226a331b --- /dev/null +++ b/examples/magento-storyblok/.vscode/settings.json @@ -0,0 +1,31 @@ +{ + "editor.formatOnSave": true, + "editor.tabSize": 2, + "editor.defaultFormatter": "esbenp.prettier-vscode", + "editor.codeActionsOnSave": { "source.fixAll.eslint": "never" }, + "editor.snippetSuggestions": "none", + "emmet.showExpandedAbbreviation": "never", + "editor.wordBasedSuggestions": "off", + "javascript.suggest.names": false, + "typescript.tsdk": "node_modules/typescript/lib", + "[typescriptreact]": { + "editor.defaultFormatter": "esbenp.prettier-vscode" + }, + "[typescript]": { + "editor.defaultFormatter": "esbenp.prettier-vscode" + }, + "search.exclude": { + "**/node_modules": true, + "**/*.code-search": true, + "**/.next": true, + "**/dist": true, + "**/.yarn": true, + "yarn.lock": true, + "**/*.tsbuildinfo": true + }, + "files.readonlyInclude": { + "**/*.interceptor.tsx": true, + "**/*.interceptor.ts": true + }, + "typescript.enablePromptUseWorkspaceTsdk": true +} diff --git a/examples/magento-storyblok/.yarnrc.yml b/examples/magento-storyblok/.yarnrc.yml new file mode 100644 index 00000000000..fe1125f54b5 --- /dev/null +++ b/examples/magento-storyblok/.yarnrc.yml @@ -0,0 +1,3 @@ +enableImmutableInstalls: false + +nodeLinker: node-modules diff --git a/examples/magento-storyblok/CHANGELOG.md b/examples/magento-storyblok/CHANGELOG.md new file mode 100644 index 00000000000..0cafa10a700 --- /dev/null +++ b/examples/magento-storyblok/CHANGELOG.md @@ -0,0 +1,115 @@ +# Change Log + +## 10.0.3 + +## 10.0.3-canary.0 + +## 10.0.2 + +## 10.0.2-canary.0 + +## 10.0.1 + +### Patch Changes + +- [#2568](https://github.com/graphcommerce-org/graphcommerce/pull/2568) [`71e2bcc`](https://github.com/graphcommerce-org/graphcommerce/commit/71e2bcc86db52b937b629f8f0a4defef107ff973) - Peer dependency issues ([@paales](https://github.com/paales)) + +## 10.0.0 + +### Major Changes + +- [#2546](https://github.com/graphcommerce-org/graphcommerce/pull/2546) [`ed9332a`](https://github.com/graphcommerce-org/graphcommerce/commit/ed9332a7f78966d932041d9a7725641edc92b28d) - ## GraphCommerce 10 - Turbopack Support + + This major release brings full Turbopack compatibility, dramatically improving development speed. + + ### 🚀 Turbopack-Compatible Interceptor System + + The entire plugin/interceptor system has been rewritten to work with Turbopack: + + - **No more Webpack plugins** - Removed `InterceptorPlugin` webpack plugin entirely + - **File-based interception** - Original files are moved to `.original.tsx` and replaced with interceptor content + - **Direct imports** - Interceptors import from `.original` files instead of embedding source + - **New CLI commands**: + - `graphcommerce codegen-interceptors` - Generate interceptor files + - `graphcommerce cleanup-interceptors` - Reset interceptor system, restore original files + - **Stable file hashing** - Deterministic interceptor generation for better caching + + ### ⚙️ Treeshakable Configuration System + + Replaced Webpack `DefinePlugin`-based `import.meta.graphCommerce` with a new generated configuration system: + + - **New `codegen-config-values` command** - Generates TypeScript files with precise typing + - **Schema-driven** - Dynamically introspects Zod schemas to determine all available properties + - **Fully treeshakable** - Unused config values are eliminated from the bundle + - **Type-safe** - Uses `Get` for nested property access + - **Separate files for nested objects** - Optimal treeshaking for complex configurations + + ### 🔧 withGraphCommerce Changes + + - **Removed** `InterceptorPlugin` - No longer needed with file-based interception + - **Removed** `DefinePlugin` for `import.meta.graphCommerce` - Replaced with generated config + - **Removed** `@mui/*` alias rewrites - No longer required + - **Added** Turbopack loader rules for `.yaml`, `.yml`, and `.po` files + - **Added** `serverExternalPackages` for all `@whatwg-node/*` packages + - **Added** `optimizePackageImports` for better bundle optimization + - **Added** `images.qualities: [52, 75]` for Next.js image optimization + + ### 📦 Lingui Configuration + + - **Renamed** `lingui.config.js` → `lingui.config.ts` with TypeScript support + - **Updated** `@graphcommerce/lingui-next/config` to TypeScript with proper exports + - **Simplified** formatter options + + ### ⚛️ React 19 & Next.js 16 Compatibility + + - Updated `RefObject` types for React 19 (now includes `null` by default) + - Replaced deprecated `React.VFC` with `React.FC` + - Fixed `useRef` calls to require explicit initial values + - Updated `MutableRefObject` usage in `framer-scroller` + + ### 📋 ESLint 9 Flat Config + + - Migrated from legacy `.eslintrc` to new flat config format (`eslint.config.mjs`) + - Updated `@typescript-eslint/*` packages to v8 + - Fixed AST selector for `SxProps` rule (`typeParameters` → `typeArguments`) + + ### 🔄 Apollo Client + + - Fixed deprecated `name` option → `clientAwareness: { name: 'ssr' }` + - Updated error handling types to accept `ApolloError | null | undefined` + + ### ⚠️ Breaking Changes + + - **Node.js 24.x not supported** - Restricted to `>=20 <24.0.0` due to [nodejs/undici#4290](https://github.com/nodejs/undici/issues/4290) + - **Interceptor files changed** - Original components now at `.original.tsx` + - **Config access changed** - Use generated config values instead of `import.meta.graphCommerce` + - **ESLint config format** - Must use flat config (`eslint.config.mjs`) + - **Lingui config** - Rename `lingui.config.js` to `lingui.config.ts` + + ### 🗑️ Removed + + - `InterceptorPlugin` webpack plugin + - `configToImportMeta` utility + - Webpack `DefinePlugin` usage for config + - `@mui/*` modern alias rewrites + - Debug plugins (`CircularDependencyPlugin`, `DuplicatesPlugin`) ([@paales](https://github.com/paales)) + +### Patch Changes + +- [#2539](https://github.com/graphcommerce-org/graphcommerce/pull/2539) [`22094bd`](https://github.com/graphcommerce-org/graphcommerce/commit/22094bd1724bf7917373200501217653bb588f5f) - Solve a version-skew problem where certain JS files weren't properly cached by the Service Worker, but the page was cached. The moment a user wanted to load the page the JS files would not exist and result in a 404. This in turn caused the the frontend to be broken until the page was reloaded. + + The cause is that if the prefetch requests fail, other prefetch requests are not made anymore. And since the js file wasn't cached by other buckets, it would result in a 404. ([@paales](https://github.com/paales)) + +- [#2520](https://github.com/graphcommerce-org/graphcommerce/pull/2520) [`bf153c7`](https://github.com/graphcommerce-org/graphcommerce/commit/bf153c7a55ce02040b3d55045a0a9d9ea521f714) - fix: if relatedUpsells are not defined, use empty object so mergeDeep… ([@FrankHarland](https://github.com/FrankHarland)) + +- [#2540](https://github.com/graphcommerce-org/graphcommerce/pull/2540) [`36e2bac`](https://github.com/graphcommerce-org/graphcommerce/commit/36e2bacb4fe765ce1fcd24dc36736e90bb17a7dc) - Add billingAddress permission (EDITABLE | READONLY) that controls whether the end user can update their billing address in the account section and checkout. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers)) + +- [#2478](https://github.com/graphcommerce-org/graphcommerce/pull/2478) [`16a3b73`](https://github.com/graphcommerce-org/graphcommerce/commit/16a3b73af173695605a0e8dfaa57777391e8b99d) - Solve issue where the performanceLink was only activated during production while it should have been during development. ([@paales](https://github.com/paales)) + +- [#2556](https://github.com/graphcommerce-org/graphcommerce/pull/2556) [`4aa6c92`](https://github.com/graphcommerce-org/graphcommerce/commit/4aa6c9284cdc6a43abe1ba8173ad4840e0e808fc) - Bump next from 16.0.6 to 16.0.7 ([@dependabot](https://github.com/apps/dependabot)) + +- [#2492](https://github.com/graphcommerce-org/graphcommerce/pull/2492) [`2d41445`](https://github.com/graphcommerce-org/graphcommerce/commit/2d414456a827c778db390306a7c174a0b8f16ba1) - Solve issue where the category and search page would rerender on pageload because the mask value would flip from true to false ([@paales](https://github.com/paales)) + +- [#2499](https://github.com/graphcommerce-org/graphcommerce/pull/2499) [`39058be`](https://github.com/graphcommerce-org/graphcommerce/commit/39058bef14622082ab5e327f13b5a52079c92622) - Support for Magento logo and Magento copyright notice in footer ([@paales](https://github.com/paales)) + +- [#2478](https://github.com/graphcommerce-org/graphcommerce/pull/2478) [`87df248`](https://github.com/graphcommerce-org/graphcommerce/commit/87df248a7154eed415da935d33f3cc6e48159ec9) - Solve issue where plurals weren't properly defined ([@paales](https://github.com/paales)) diff --git a/examples/magento-storyblok/README.md b/examples/magento-storyblok/README.md new file mode 100644 index 00000000000..b58bd941f61 --- /dev/null +++ b/examples/magento-storyblok/README.md @@ -0,0 +1,101 @@ +

+ GraphCommerce Logo +

+ +
+ +📚 [Docs](https://graphcommerce.org/docs) | 🗣 +[Slack](https://join.slack.com/t/graphcommerce/shared_invite/zt-11rmgq1ad-F~0daNtKcSvtcC4eQRzjeQ) +| 📝 +[Release notes](https://github.com/graphcommerce-org/graphcommerce/releases) + +
+ +GraphCommerce is a framework for building headless ecommerce storefronts in +React and Next.js. It provides a best-in-class example, including components and +utilities, to deliver a high-performance, high-quality ecommerce Progressive Web +App (PWA). + +Explore the [GraphCommerce demo](https://graphcommerce.vercel.app/) or start +building your custom GraphCommerce ecommerce frontend. + +https://user-images.githubusercontent.com/1251986/226889542-ec403549-5e4f-4ff6-8fc5-ba879798353f.mp4 + +The GraphCommerce homepage, showcasing content from Magento through a variety of +included UX components. + +--- + +# Getting started with GraphCommerce + +In this guide, you will set up a GraphCommerce app locally, allowing you to +start building. + +### Requirements + +- Install and use node 16/18: `nvm install 16` or `nvm use 16` +- Install yarn: `corepack enable` + +## Step 1: Create a GraphCommerce app + +```bash +git clone -b main --depth 1 https://github.com/graphcommerce-org/graphcommerce.git +# Clone repository +``` + +```bash +mkdir my-project +# Create project folder +``` + +```bash +cp -R graphcommerce/examples/magento/. my-project && rm -rf graphcommerce && cd my-project +# Copy example, delete repo, navigate to project folder +``` + +## Step 2: Configure API keys + +(Optional, +[continue reading](https://www.graphcommerce.org/docs/getting-started/create)) + +## Step 3: Start the app + +```bash +yarn +# Install the dependencies +``` + +```bash +yarn codegen +# Converts all .graphql files to typescript files +``` + +```bash +yarn dev +# Run the app +``` + +--- + +🎉 Explore your GraphCommerce app running at http://localhost:3000 + +(Explore the GraphQL Playground running at http://localhost:3000/api/graphql) + +> No success? Consult the +> [troubleshooting guide](../../docs/framework/troubleshooting.md) + +## Next steps + +- The [Quick start](../../docs/getting-started/readme.md) guide covers about 80% + of the concepts you'll use, so it's a great place to start. +- [Start customizing](../../docs/getting-started/start-building.md) to go from + "Hello World" to a fully built GraphCommerce custom storefront. + +

+ + + + + + +

diff --git a/examples/magento-storyblok/codegen.yml b/examples/magento-storyblok/codegen.yml new file mode 100644 index 00000000000..7d5d0798646 --- /dev/null +++ b/examples/magento-storyblok/codegen.yml @@ -0,0 +1,42 @@ +generates: + # Generate a types file + node_modules/@graphcommerce/graphql/generated/types.ts: + schema: + - .mesh/schema.graphql + plugins: + - typescript-apollo-client-helpers + - add + config: + enumsAsTypes: true + content: '/* eslint-disable */' + # Generate a fragments.json + node_modules/@graphcommerce/graphql/generated/fragments.json: + schema: + - .mesh/schema.graphql + plugins: + - fragment-matcher + # Generate .gql.ts files for each GraphQL file + .: + schema: + - .mesh/schema.graphql + documents: + - 'components/**/*.graphql' + - 'graphql/**/*.graphql' + plugins: + - '@graphcommerce/graphql-codegen-relay-optimizer-plugin' + - typed-document-node + - typescript-operations + - add + preset: '@graphcommerce/graphql-codegen-near-operation-file' + presetConfig: + extension: .gql.ts + baseTypesPath: ~@graphcommerce/graphql-mesh/.mesh + injectables: true + config: + skipTypename: true + namingConvention: 'keep' + dedupeOperationSuffix: true + arrayInputCoercion: false + content: /* eslint-disable */ +watchConfig: + usePolling: false diff --git a/examples/magento-storyblok/components/Layout/Footer.tsx b/examples/magento-storyblok/components/Layout/Footer.tsx new file mode 100644 index 00000000000..e474a5e1bee --- /dev/null +++ b/examples/magento-storyblok/components/Layout/Footer.tsx @@ -0,0 +1,55 @@ +import { useQuery } from '@graphcommerce/graphql' +import { useCheckoutGuestEnabled } from '@graphcommerce/magento-cart' +import { StoreConfigDocument, StoreSwitcherButton } from '@graphcommerce/magento-store' +import { magentoVersion } from '@graphcommerce/next-config/config' +import { DateFormat, FindAndReplace, Footer as FooterBase } from '@graphcommerce/next-ui' +import { Trans } from '@lingui/react/macro' +import { Button, Link } from '@mui/material' + +export function Footer(props: { socialLinks?: React.ReactNode }) { + const { socialLinks } = props + const cartEnabled = useCheckoutGuestEnabled() + const config = useQuery(StoreConfigDocument).data?.storeConfig + + const websiteName = config?.website_name + const year = + + return ( + } + customerService={ + + } + copyright={ + <> + + {config?.copyright ? ( + + ) : ( + + Copyright© {year} {websiteName} + + )} + + + {magentoVersion >= 247 && cartEnabled && ( + + Order status + + )} + {magentoVersion >= 247 && ( + + Contact + + )} + + Newletter + + + } + /> + ) +} diff --git a/examples/magento-storyblok/components/Layout/Layout.graphql b/examples/magento-storyblok/components/Layout/Layout.graphql new file mode 100644 index 00000000000..deff07f3cd4 --- /dev/null +++ b/examples/magento-storyblok/components/Layout/Layout.graphql @@ -0,0 +1,12 @@ +query Layout { + menu: categories { + __typename + } + ...MenuQueryFragment + + cmsBlocks(identifiers: ["footer_links_block"]) { + items { + ...CmsBlock + } + } +} diff --git a/examples/magento-storyblok/components/Layout/LayoutMinimal.tsx b/examples/magento-storyblok/components/Layout/LayoutMinimal.tsx new file mode 100644 index 00000000000..53019aab5f6 --- /dev/null +++ b/examples/magento-storyblok/components/Layout/LayoutMinimal.tsx @@ -0,0 +1,37 @@ +import { CmsBlock } from '@graphcommerce/magento-cms' +import type { LayoutDefaultProps } from '@graphcommerce/next-ui' +import { LayoutDefault } from '@graphcommerce/next-ui' +import { productListRenderer } from '../ProductListItems' +import { Footer } from './Footer' +import type { LayoutQuery } from './Layout.gql' +import { Logo } from './Logo' + +export type LayoutMinimalProps = LayoutQuery & + Omit + +export function LayoutMinimal(props: LayoutMinimalProps) { + const { menu, children, cmsBlocks, ...uiProps } = props + + const footerBlock = cmsBlocks?.items?.find((item) => item?.identifier === 'footer_links_block') + + return ( + } + footer={ +