From c406bbd843af025c8315faf0831682b88dcfa6b3 Mon Sep 17 00:00:00 2001 From: Giovanni-Schroevers Date: Wed, 14 Jan 2026 14:22:20 +0100 Subject: [PATCH 1/5] 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 2/5] 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 c9e862ad0b2fe4a30855df6ddfd27b7c052ac4e8 Mon Sep 17 00:00:00 2001 From: Giovanni-Schroevers Date: Fri, 23 Jan 2026 14:14:54 +0100 Subject: [PATCH 3/5] 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 4/5] 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 6629180b850ad21c5bc81efa3cc753fb5303f5fc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 23 Jan 2026 15:25:46 +0000 Subject: [PATCH 5/5] chore(release): version packages for stable release --- .changeset/calm-hotels-fly.md | 7 -- .changeset/dull-points-fly.md | 5 - .changeset/pre.json | 94 --------------- 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 | 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 +- 171 files changed, 1008 insertions(+), 936 deletions(-) delete mode 100644 .changeset/calm-hotels-fly.md delete mode 100644 .changeset/dull-points-fly.md delete mode 100644 .changeset/pre.json diff --git a/.changeset/calm-hotels-fly.md b/.changeset/calm-hotels-fly.md deleted file mode 100644 index 414d2bcd13a..00000000000 --- a/.changeset/calm-hotels-fly.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@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/.changeset/dull-points-fly.md b/.changeset/dull-points-fly.md deleted file mode 100644 index ffb5ab910fd..00000000000 --- a/.changeset/dull-points-fly.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@graphcommerce/ecommerce-ui': patch ---- - -Get redirectTo from the url params instead of the headers diff --git a/.changeset/pre.json b/.changeset/pre.json deleted file mode 100644 index 49c1a4b157a..00000000000 --- a/.changeset/pre.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "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", - "dull-points-fly" - ] -} diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 1e848a93198..cad7b90b3f4 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/docs/package.json b/docs/package.json index 536d2746262..c058169aaf6 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.1", + "version": "10.0.4", "sideEffects": true, "peerDependencies": { - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1" + "@graphcommerce/prettier-config-pwa": "^10.0.4" }, "prettier": "@graphcommerce/prettier-config-pwa" } diff --git a/examples/magento-graphcms/CHANGELOG.md b/examples/magento-graphcms/CHANGELOG.md index 337622973eb..785bcba3da1 100644 --- a/examples/magento-graphcms/CHANGELOG.md +++ b/examples/magento-graphcms/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/examples/magento-graphcms/package.json b/examples/magento-graphcms/package.json index 8038d5d4e07..beb0bcf20a7 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/cli": "10.0.4", + "@graphcommerce/demo-magento-graphcommerce": "10.0.4", + "@graphcommerce/ecommerce-ui": "10.0.4", + "@graphcommerce/framer-next-pages": "10.0.4", + "@graphcommerce/framer-scroller": "10.0.4", + "@graphcommerce/framer-utils": "10.0.4", + "@graphcommerce/google-datalayer": "10.0.4", + "@graphcommerce/google-playstore": "10.0.4", + "@graphcommerce/googleanalytics": "10.0.4", + "@graphcommerce/googlerecaptcha": "10.0.4", + "@graphcommerce/googletagmanager": "10.0.4", + "@graphcommerce/graphql": "10.0.4", + "@graphcommerce/graphql-codegen-near-operation-file": "10.0.4", + "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "10.0.4", + "@graphcommerce/graphql-mesh": "10.0.4", + "@graphcommerce/hygraph-cli": "10.0.4", + "@graphcommerce/hygraph-dynamic-rows": "10.0.4", + "@graphcommerce/hygraph-ui": "10.0.4", + "@graphcommerce/image": "10.0.4", + "@graphcommerce/lingui-next": "10.0.4", + "@graphcommerce/magento-cart": "10.0.4", + "@graphcommerce/magento-cart-checkout": "10.0.4", + "@graphcommerce/magento-cart-coupon": "10.0.4", + "@graphcommerce/magento-cart-email": "10.0.4", + "@graphcommerce/magento-cart-items": "10.0.4", + "@graphcommerce/magento-cart-payment-method": "10.0.4", + "@graphcommerce/magento-cart-shipping-address": "10.0.4", + "@graphcommerce/magento-cart-shipping-method": "10.0.4", + "@graphcommerce/magento-category": "10.0.4", + "@graphcommerce/magento-cms": "10.0.4", + "@graphcommerce/magento-compare": "10.0.4", + "@graphcommerce/magento-customer": "10.0.4", + "@graphcommerce/magento-graphql": "10.0.4", + "@graphcommerce/magento-graphql-rest": "10.0.4", + "@graphcommerce/magento-newsletter": "10.0.4", + "@graphcommerce/magento-payment-included": "10.0.4", + "@graphcommerce/magento-payment-tokens": "10.0.4", + "@graphcommerce/magento-product": "10.0.4", + "@graphcommerce/magento-product-bundle": "10.0.4", + "@graphcommerce/magento-product-configurable": "10.0.4", + "@graphcommerce/magento-product-downloadable": "10.0.4", + "@graphcommerce/magento-product-grouped": "10.0.4", + "@graphcommerce/magento-product-simple": "10.0.4", + "@graphcommerce/magento-product-virtual": "10.0.4", + "@graphcommerce/magento-recently-viewed-products": "10.0.4", + "@graphcommerce/magento-review": "10.0.4", + "@graphcommerce/magento-search": "10.0.4", + "@graphcommerce/magento-store": "10.0.4", + "@graphcommerce/magento-wishlist": "10.0.4", + "@graphcommerce/next-config": "10.0.4", + "@graphcommerce/next-ui": "10.0.4", + "@graphcommerce/react-hook-form": "10.0.4", + "@graphcommerce/service-worker": "10.0.4", "@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.1", - "@graphcommerce/prettier-config-pwa": "10.0.4-canary.1", - "@graphcommerce/typescript-config-pwa": "10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "10.0.4", + "@graphcommerce/prettier-config-pwa": "10.0.4", + "@graphcommerce/typescript-config-pwa": "10.0.4", "@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 6a768dfa6ac..40fee65649e 100644 --- a/examples/magento-open-source/CHANGELOG.md +++ b/examples/magento-open-source/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/examples/magento-open-source/package.json b/examples/magento-open-source/package.json index 2de6f1d1584..763afc044d0 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/cli": "10.0.4", + "@graphcommerce/ecommerce-ui": "10.0.4", + "@graphcommerce/framer-next-pages": "10.0.4", + "@graphcommerce/framer-scroller": "10.0.4", + "@graphcommerce/framer-utils": "10.0.4", + "@graphcommerce/google-datalayer": "10.0.4", + "@graphcommerce/google-playstore": "10.0.4", + "@graphcommerce/googleanalytics": "10.0.4", + "@graphcommerce/googlerecaptcha": "10.0.4", + "@graphcommerce/googletagmanager": "10.0.4", + "@graphcommerce/graphql": "10.0.4", + "@graphcommerce/graphql-codegen-near-operation-file": "10.0.4", + "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "10.0.4", + "@graphcommerce/graphql-mesh": "10.0.4", + "@graphcommerce/image": "10.0.4", + "@graphcommerce/lingui-next": "10.0.4", + "@graphcommerce/magento-cart": "10.0.4", + "@graphcommerce/magento-cart-checkout": "10.0.4", + "@graphcommerce/magento-cart-coupon": "10.0.4", + "@graphcommerce/magento-cart-email": "10.0.4", + "@graphcommerce/magento-cart-items": "10.0.4", + "@graphcommerce/magento-cart-payment-method": "10.0.4", + "@graphcommerce/magento-cart-shipping-address": "10.0.4", + "@graphcommerce/magento-cart-shipping-method": "10.0.4", + "@graphcommerce/magento-category": "10.0.4", + "@graphcommerce/magento-cms": "10.0.4", + "@graphcommerce/magento-compare": "10.0.4", + "@graphcommerce/magento-customer": "10.0.4", + "@graphcommerce/magento-graphql": "10.0.4", + "@graphcommerce/magento-graphql-rest": "10.0.4", + "@graphcommerce/magento-newsletter": "10.0.4", + "@graphcommerce/magento-payment-included": "10.0.4", + "@graphcommerce/magento-payment-tokens": "10.0.4", + "@graphcommerce/magento-product": "10.0.4", + "@graphcommerce/magento-product-bundle": "10.0.4", + "@graphcommerce/magento-product-configurable": "10.0.4", + "@graphcommerce/magento-product-downloadable": "10.0.4", + "@graphcommerce/magento-product-grouped": "10.0.4", + "@graphcommerce/magento-product-simple": "10.0.4", + "@graphcommerce/magento-product-virtual": "10.0.4", + "@graphcommerce/magento-recently-viewed-products": "10.0.4", + "@graphcommerce/magento-review": "10.0.4", + "@graphcommerce/magento-search": "10.0.4", + "@graphcommerce/magento-store": "10.0.4", + "@graphcommerce/magento-wishlist": "10.0.4", + "@graphcommerce/next-config": "10.0.4", + "@graphcommerce/next-ui": "10.0.4", + "@graphcommerce/react-hook-form": "10.0.4", + "@graphcommerce/service-worker": "10.0.4", "@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.1", - "@graphcommerce/prettier-config-pwa": "10.0.4-canary.1", - "@graphcommerce/typescript-config-pwa": "10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "10.0.4", + "@graphcommerce/prettier-config-pwa": "10.0.4", + "@graphcommerce/typescript-config-pwa": "10.0.4", "@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 cf30e84fa1a..ea8e4e9183a 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 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/address-fields-nl/package.json b/packages/address-fields-nl/package.json index 0b3bf64c148..036c1d7a2a4 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/magento-customer": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/algolia-categories/CHANGELOG.md b/packages/algolia-categories/CHANGELOG.md index 7421d2206df..5417513b542 100644 --- a/packages/algolia-categories/CHANGELOG.md +++ b/packages/algolia-categories/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/algolia-categories +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/algolia-categories/package.json b/packages/algolia-categories/package.json index b1005bb3d8d..9dadbd3f7ad 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/algolia-products": "^10.0.4", + "@graphcommerce/google-datalayer": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/graphql-mesh": "^10.0.4", + "@graphcommerce/magento-customer": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/magento-search": "^10.0.4", + "@graphcommerce/next-config": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", "react": "^19.2.0" }, "devDependencies": { diff --git a/packages/algolia-insights/CHANGELOG.md b/packages/algolia-insights/CHANGELOG.md index f7a25fb6d56..e5942e096b9 100644 --- a/packages/algolia-insights/CHANGELOG.md +++ b/packages/algolia-insights/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/algolia-personalization +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/algolia-insights/package.json b/packages/algolia-insights/package.json index 60eabc035d9..485cb292ae9 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/algolia-products": "^10.0.4", + "@graphcommerce/google-datalayer": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/graphql-mesh": "^10.0.4", + "@graphcommerce/magento-customer": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/next-config": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/react-hook-form": "^10.0.4", "@mui/material": "*", "react": "^19.2.0" }, diff --git a/packages/algolia-personalization/CHANGELOG.md b/packages/algolia-personalization/CHANGELOG.md index 57a01e4920c..5b10d168a82 100644 --- a/packages/algolia-personalization/CHANGELOG.md +++ b/packages/algolia-personalization/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/algolia-personalization +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/algolia-personalization/package.json b/packages/algolia-personalization/package.json index fd264e6d844..cce011d61b8 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/algolia-insights": "^10.0.4", + "@graphcommerce/algolia-products": "^10.0.4", + "@graphcommerce/google-datalayer": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/graphql-mesh": "^10.0.4", + "@graphcommerce/magento-customer": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/next-config": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", "react": "^19.2.0" }, "devDependencies": { diff --git a/packages/algolia-products/CHANGELOG.md b/packages/algolia-products/CHANGELOG.md index 69af50fcbb3..f53f2f17db4 100644 --- a/packages/algolia-products/CHANGELOG.md +++ b/packages/algolia-products/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/algolia-products +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/algolia-products/package.json b/packages/algolia-products/package.json index c3c158dcc8e..230a477e174 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/google-datalayer": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/graphql-mesh": "^10.0.4", + "@graphcommerce/magento-customer": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/magento-search": "^10.0.4", + "@graphcommerce/next-config": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", "react": "^19.2.0" }, "devDependencies": { diff --git a/packages/algolia-recommend/CHANGELOG.md b/packages/algolia-recommend/CHANGELOG.md index d2de22e1ca5..159cf89d409 100644 --- a/packages/algolia-recommend/CHANGELOG.md +++ b/packages/algolia-recommend/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/algolia-recommend +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/algolia-recommend/package.json b/packages/algolia-recommend/package.json index f061aab282c..eef3be704d3 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/algolia-products": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/graphql-mesh": "^10.0.4", + "@graphcommerce/next-config": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", "react": "^19.2.0" }, "devDependencies": { diff --git a/packages/algolia-search/CHANGELOG.md b/packages/algolia-search/CHANGELOG.md index 5e6cb873391..e6ea5813298 100644 --- a/packages/algolia-search/CHANGELOG.md +++ b/packages/algolia-search/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/algolia-search +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/algolia-search/package.json b/packages/algolia-search/package.json index a147853f9cb..d9cbb7bce52 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,17 +15,17 @@ "algoliasearch": "^4.25.3" }, "peerDependencies": { - "@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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/graphql-mesh": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/magento-search": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-config": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 2db44c5142e..370ab8e1a8f 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/cli +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/cli/package.json b/packages/cli/package.json index 324f195b561..2ebaaff9e29 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql-mesh": "^10.0.4", + "@graphcommerce/hygraph-cli": "^10.0.4", + "@graphcommerce/next-config": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 e40d17f5abd..741c9449ac5 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 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/demo-magento-graphcommerce/package.json b/packages/demo-magento-graphcommerce/package.json index cd8a432970e..b10cd84899e 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.1", + "version": "10.0.4", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -21,14 +21,14 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/framer-scroller": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/magento-product-configurable": "^10.0.4", + "@graphcommerce/magento-recently-viewed-products": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 d0bd451bd8f..5a6688df59c 100644 --- a/packages/ecommerce-ui/CHANGELOG.md +++ b/packages/ecommerce-ui/CHANGELOG.md @@ -1,5 +1,11 @@ # @graphcommerce/ecommerce-ui +## 10.0.4 + +### 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.1 ### Patch Changes diff --git a/packages/ecommerce-ui/package.json b/packages/ecommerce-ui/package.json index c7a8219660c..6493c00b12e 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,12 +12,12 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/react-hook-form": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 7dc02ee1aa9..30c6caabb3c 100644 --- a/packages/framer-next-pages/CHANGELOG.md +++ b/packages/framer-next-pages/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/framer-next-pages/example/CHANGELOG.md b/packages/framer-next-pages/example/CHANGELOG.md index c41fe2dc078..c743ec9a887 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 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/framer-next-pages/example/package.json b/packages/framer-next-pages/example/package.json index 3d597c40c4e..4923d6e0b7c 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/framer-next-pages": "10.0.4", + "@graphcommerce/framer-scroller": "10.0.4", + "@graphcommerce/framer-utils": "10.0.4", + "@graphcommerce/image": "10.0.4", + "@graphcommerce/next-ui": "10.0.4", "@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.1", - "@graphcommerce/prettier-config-pwa": "10.0.4-canary.1", - "@graphcommerce/typescript-config-pwa": "10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "10.0.4", + "@graphcommerce/prettier-config-pwa": "10.0.4", + "@graphcommerce/typescript-config-pwa": "10.0.4", "@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 93708f9b577..330c43e4b48 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,10 +12,10 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/framer-utils": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "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 d274b785922..96815b90f66 100644 --- a/packages/framer-scroller/CHANGELOG.md +++ b/packages/framer-scroller/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/framer-scroller/example/CHANGELOG.md b/packages/framer-scroller/example/CHANGELOG.md index 7752bf7b236..07d04a7ba3b 100644 --- a/packages/framer-scroller/example/CHANGELOG.md +++ b/packages/framer-scroller/example/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/framer-scroller/example/package.json b/packages/framer-scroller/example/package.json index dd46c8f5d21..aca72b2f9e0 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/framer-next-pages": "10.0.4", + "@graphcommerce/framer-scroller": "10.0.4", + "@graphcommerce/framer-utils": "10.0.4", + "@graphcommerce/image": "10.0.4", + "@graphcommerce/lingui-next": "10.0.4", + "@graphcommerce/next-config": "10.0.4", + "@graphcommerce/next-ui": "10.0.4", "@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.1", - "@graphcommerce/prettier-config-pwa": "10.0.4-canary.1", - "@graphcommerce/typescript-config-pwa": "10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "10.0.4", + "@graphcommerce/prettier-config-pwa": "10.0.4", + "@graphcommerce/typescript-config-pwa": "10.0.4", "@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 32995d7c928..3ab0775f536 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.1", + "version": "10.0.4", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -21,11 +21,11 @@ "popmotion": "11.0.5" }, "peerDependencies": { - "@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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/framer-utils": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 fc3a7be5629..5ac7b714be2 100644 --- a/packages/framer-utils/CHANGELOG.md +++ b/packages/framer-utils/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/framer-utils/package.json b/packages/framer-utils/package.json index b2243ec58da..162e35be4f6 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.1", + "version": "10.0.4", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -18,9 +18,9 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "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 d3aebd38ab3..58f11f429c0 100644 --- a/packages/google-datalayer/CHANGELOG.md +++ b/packages/google-datalayer/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/google-datalayer +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/google-datalayer/package.json b/packages/google-datalayer/package.json index 7b26bdb7f34..fa78c6ed4d0 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,15 +12,15 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-cart-payment-method": "^10.0.4", + "@graphcommerce/magento-cart-shipping-method": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/react-hook-form": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 106393c243b..033672dc544 100644 --- a/packages/google-playstore/CHANGELOG.md +++ b/packages/google-playstore/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/google-playstore +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/google-playstore/package.json b/packages/google-playstore/package.json index 2b0460ff3c8..33dbeba890c 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "browserslist": [ @@ -13,10 +13,10 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "next": "*", "react": "^19.2.0", "react-dom": "^19.2.0" diff --git a/packages/googleanalytics/CHANGELOG.md b/packages/googleanalytics/CHANGELOG.md index 20556223ab6..5231120c53f 100644 --- a/packages/googleanalytics/CHANGELOG.md +++ b/packages/googleanalytics/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/googleanalytics/package.json b/packages/googleanalytics/package.json index 49bb8835035..6b0bff96e0f 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,13 +12,13 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/google-datalayer": "10.0.4", + "@graphcommerce/graphql-mesh": "^10.0.4", + "@graphcommerce/next-config": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@mui/material": "^7.0.0", "next": "*", "react": "^19.2.0", diff --git a/packages/googlerecaptcha/CHANGELOG.md b/packages/googlerecaptcha/CHANGELOG.md index b0e2042e0ba..47111336f75 100644 --- a/packages/googlerecaptcha/CHANGELOG.md +++ b/packages/googlerecaptcha/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/googlerecaptcha/package.json b/packages/googlerecaptcha/package.json index 3a73f36cba7..c8f85b70cf7 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/graphql-mesh": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@mui/material": "^7.0.0", "graphql": "^16.9.0", "next": "*", diff --git a/packages/googletagmanager/CHANGELOG.md b/packages/googletagmanager/CHANGELOG.md index 65ea7c7b68c..4f836315425 100644 --- a/packages/googletagmanager/CHANGELOG.md +++ b/packages/googletagmanager/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/googletagmanager/package.json b/packages/googletagmanager/package.json index ba57375747e..c3387921f0a 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/google-datalayer": "10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 792ea68c78d..b7b8b0d2f96 100644 --- a/packages/graphcms-ui/CHANGELOG.md +++ b/packages/graphcms-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/graphcms-ui/package.json b/packages/graphcms-ui/package.json index 05002b0a6e9..d069ffceee4 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,7 +12,7 @@ } }, "peerDependencies": { - "@graphcommerce/hygraph-ui": "^10.0.4-canary.1" + "@graphcommerce/hygraph-ui": "^10.0.4" }, "exports": { ".": "./index.ts" diff --git a/packages/graphql-mesh/CHANGELOG.md b/packages/graphql-mesh/CHANGELOG.md index 19546e4f250..88f2f5c8ece 100644 --- a/packages/graphql-mesh/CHANGELOG.md +++ b/packages/graphql-mesh/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/graphql-mesh/package.json b/packages/graphql-mesh/package.json index 71b260ce535..dc7d6ca759c 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.1", + "version": "10.0.4", "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.1", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", - "@graphcommerce/typescript-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@graphql-mesh/runtime": "*", "@graphql-mesh/types": "*" }, diff --git a/packages/graphql/CHANGELOG.md b/packages/graphql/CHANGELOG.md index cea40769d8f..c095f884d92 100644 --- a/packages/graphql/CHANGELOG.md +++ b/packages/graphql/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/graphql/package.json b/packages/graphql/package.json index 507d48680cf..b83ca2c3bae 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql-codegen-near-operation-file": "10.0.4", + "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "10.0.4", + "@graphcommerce/next-config": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 0a4bf9d93e2..70e64b75577 100644 --- a/packages/hygraph-cli/CHANGELOG.md +++ b/packages/hygraph-cli/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/hygraph-cli +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/hygraph-cli/package.json b/packages/hygraph-cli/package.json index 2827df5b862..1e33083d97e 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.1", + "version": "10.0.4", "type": "module", "exports": { ".": { @@ -25,10 +25,10 @@ }, "peerDependencies": { "@apollo/client": "*", - "@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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/next-config": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "dotenv": "^16.1.4" }, "devDependencies": { diff --git a/packages/hygraph-dynamic-rows-ui/CHANGELOG.md b/packages/hygraph-dynamic-rows-ui/CHANGELOG.md index cdd213096f9..0757fbecdd7 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 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/hygraph-dynamic-rows-ui/package.json b/packages/hygraph-dynamic-rows-ui/package.json index 2929930789c..c6a1c6c0a37 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.1", + "version": "10.0.4", "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.1", + "@graphcommerce/next-config": "10.0.4", "@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.1", - "@graphcommerce/prettier-config-pwa": "10.0.4-canary.1", - "@graphcommerce/typescript-config-pwa": "10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "10.0.4", + "@graphcommerce/prettier-config-pwa": "10.0.4", + "@graphcommerce/typescript-config-pwa": "10.0.4", "@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 3923f149cd8..48ca7378509 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 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/hygraph-dynamic-rows/package.json b/packages/hygraph-dynamic-rows/package.json index 848b38af681..e507228dc19 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,13 +12,13 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/hygraph-ui": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 723cce1c135..aaf166b4ead 100644 --- a/packages/hygraph-ui/CHANGELOG.md +++ b/packages/hygraph-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/hygraph-ui/package.json b/packages/hygraph-ui/package.json index c26793249a1..46aeb2dba9b 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,13 +12,13 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@mui/material": "^7.0.0", "next": "*", "react": "^19.2.0", diff --git a/packages/image/CHANGELOG.md b/packages/image/CHANGELOG.md index a340441a8c0..e193e22f776 100644 --- a/packages/image/CHANGELOG.md +++ b/packages/image/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/image/example/CHANGELOG.md b/packages/image/example/CHANGELOG.md index 8a0b37124d9..a2c08c1f19c 100644 --- a/packages/image/example/CHANGELOG.md +++ b/packages/image/example/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/image/example/package.json b/packages/image/example/package.json index bfbef6dbc6f..d84e1cf192c 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.1", + "version": "10.0.4", "scripts": { "dev": "next", "build": "next build", "start": "next start" }, "dependencies": { - "@graphcommerce/framer-utils": "10.0.4-canary.1", + "@graphcommerce/framer-utils": "10.0.4", "@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.1", - "@graphcommerce/prettier-config-pwa": "10.0.4-canary.1", - "@graphcommerce/typescript-config-pwa": "10.0.4-canary.1", + "@graphcommerce/eslint-config-pwa": "10.0.4", + "@graphcommerce/prettier-config-pwa": "10.0.4", + "@graphcommerce/typescript-config-pwa": "10.0.4", "@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 4738b788e80..7a895a429b6 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.1", + "version": "10.0.4", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -18,10 +18,10 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/framer-utils": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 bdacc8ea296..c5d72bb9631 100644 --- a/packages/lingui-next/CHANGELOG.md +++ b/packages/lingui-next/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/lingui-next/package.json b/packages/lingui-next/package.json index 87a6df517f4..aeb06503a79 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.1", + "version": "10.0.4", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -21,11 +21,11 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/next-config": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 c2b617d540b..6d0639d69dc 100644 --- a/packages/magento-cart-checkout/CHANGELOG.md +++ b/packages/magento-cart-checkout/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-cart-checkout/package.json b/packages/magento-cart-checkout/package.json index b5539f634ec..5e5b737678a 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,18 +15,18 @@ ".": "./index.ts" }, "peerDependencies": { - "@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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-cart-coupon": "^10.0.4", + "@graphcommerce/magento-cart-items": "^10.0.4", + "@graphcommerce/magento-customer": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/react-hook-form": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 47d3d9e083e..639ee135c50 100644 --- a/packages/magento-cart-coupon/CHANGELOG.md +++ b/packages/magento-cart-coupon/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-cart-coupon/package.json b/packages/magento-cart-coupon/package.json index 3c6e3c9f51a..e81eb1341ab 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,16 +15,16 @@ ".": "./index.ts" }, "peerDependencies": { - "@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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/react-hook-form": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 bb572506d09..f2070e60a14 100644 --- a/packages/magento-cart-email/CHANGELOG.md +++ b/packages/magento-cart-email/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-cart-email/package.json b/packages/magento-cart-email/package.json index cc978a3d041..ce9a69e70f3 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,18 +15,18 @@ ".": "./index.ts" }, "peerDependencies": { - "@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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-customer": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/react-hook-form": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 b8c0d6bb5f6..3051377094f 100644 --- a/packages/magento-cart-items/CHANGELOG.md +++ b/packages/magento-cart-items/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-cart-items/package.json b/packages/magento-cart-items/package.json index b3a093bb7be..da9ed1645d7 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,19 +15,19 @@ ".": "./index.ts" }, "peerDependencies": { - "@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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/framer-next-pages": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-customer": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/react-hook-form": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 606269681ab..7d0720b3a47 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 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-cart-payment-method/package.json b/packages/magento-cart-payment-method/package.json index a3e373c613a..ccd862b647b 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/framer-scroller": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-cart-shipping-address": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/react-hook-form": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 d4c25ebc22e..4eb50f7f572 100644 --- a/packages/magento-cart-pickup/CHANGELOG.md +++ b/packages/magento-cart-pickup/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-cart-pickup/package.json b/packages/magento-cart-pickup/package.json index 59d708a1469..9a59f5a7065 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/graphql-mesh": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-cart-shipping-method": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/react-hook-form": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 582dff7cba5..d1f2ec5e4aa 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 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-cart-shipping-address/package.json b/packages/magento-cart-shipping-address/package.json index 87b6e5b3018..3389263fe66 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,17 +15,17 @@ ".": "./index.ts" }, "peerDependencies": { - "@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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/graphql-mesh": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-customer": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 a5546ce0960..9f78c07d865 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 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-cart-shipping-method/package.json b/packages/magento-cart-shipping-method/package.json index f14c32056d9..04bd9a38176 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,19 +15,19 @@ ".": "./index.ts" }, "peerDependencies": { - "@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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/framer-scroller": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-cart-shipping-address": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-config": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/react-hook-form": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-cart/CHANGELOG.md b/packages/magento-cart/CHANGELOG.md index 7cd690d0f7d..2f76da9bd34 100644 --- a/packages/magento-cart/CHANGELOG.md +++ b/packages/magento-cart/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-cart/package.json b/packages/magento-cart/package.json index b0c6db5ba03..1a2fb758e75 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/framer-next-pages": "^10.0.4", + "@graphcommerce/framer-scroller": "^10.0.4", + "@graphcommerce/framer-utils": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-customer": "^10.0.4", + "@graphcommerce/magento-graphql": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/react-hook-form": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-category/CHANGELOG.md b/packages/magento-category/CHANGELOG.md index c16ea6f4fd4..2ffa408df7f 100644 --- a/packages/magento-category/CHANGELOG.md +++ b/packages/magento-category/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-category/package.json b/packages/magento-category/package.json index 6c694e45292..992a0a0e6b7 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/framer-scroller": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-cms/CHANGELOG.md b/packages/magento-cms/CHANGELOG.md index a549d3384af..b0861adc317 100644 --- a/packages/magento-cms/CHANGELOG.md +++ b/packages/magento-cms/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-cms/package.json b/packages/magento-cms/package.json index 13b5df12752..5990252c47e 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,11 +15,11 @@ ".": "./index.ts" }, "peerDependencies": { - "@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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-compare/CHANGELOG.md b/packages/magento-compare/CHANGELOG.md index 8c8b231a3d4..61d35d02439 100644 --- a/packages/magento-compare/CHANGELOG.md +++ b/packages/magento-compare/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-compare +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-compare/package.json b/packages/magento-compare/package.json index 30a19cef7b0..220e7e24114 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/framer-next-pages": "^10.0.4", + "@graphcommerce/framer-utils": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-customer/CHANGELOG.md b/packages/magento-customer/CHANGELOG.md index ea5e4ddaad0..77ba59c82db 100644 --- a/packages/magento-customer/CHANGELOG.md +++ b/packages/magento-customer/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-customer/package.json b/packages/magento-customer/package.json index dad71a21ddf..6f7e3c52322 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/framer-next-pages": "^10.0.4", + "@graphcommerce/framer-utils": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/graphql-mesh": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-graphql": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-config": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/react-hook-form": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 bc1d069ca0c..88bbd3ddbc4 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 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-graphql-rest/package.json b/packages/magento-graphql-rest/package.json index b7660229027..7e0bc106984 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/graphql-mesh": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/magento-search": "^10.0.4", + "@graphcommerce/next-config": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", "graphql": "^16.0.0" }, "devDependencies": { diff --git a/packages/magento-graphql/CHANGELOG.md b/packages/magento-graphql/CHANGELOG.md index 3e3e7c2c2be..27052fac40a 100644 --- a/packages/magento-graphql/CHANGELOG.md +++ b/packages/magento-graphql/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-graphql/package.json b/packages/magento-graphql/package.json index f59b62a8e9b..b68d2cc44ef 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "graphql": "^16.0.0", "next": "*", "react": "^19.2.0", diff --git a/packages/magento-newsletter/CHANGELOG.md b/packages/magento-newsletter/CHANGELOG.md index ac71e0b4ac1..eb0204d6887 100644 --- a/packages/magento-newsletter/CHANGELOG.md +++ b/packages/magento-newsletter/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-newsletter/package.json b/packages/magento-newsletter/package.json index 206a91720bf..ee17c0ce78a 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,15 +15,15 @@ ".": "./index.ts" }, "peerDependencies": { - "@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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-customer": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/react-hook-form": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 3b4f9b61670..50555f2ee4d 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 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-payment-adyen/package.json b/packages/magento-payment-adyen/package.json index e22c6f5acf4..97c41f7439c 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/graphql-mesh": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-cart-payment-method": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 94158a2554f..e0bd396375e 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 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-payment-afterpay/package.json b/packages/magento-payment-afterpay/package.json index c722fab7016..e6c6dc1c323 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-cart-payment-method": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/react-hook-form": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 3e77bae7fdf..9f3c64a1638 100644 --- a/packages/magento-payment-braintree/CHANGELOG.md +++ b/packages/magento-payment-braintree/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-payment-braintree/package.json b/packages/magento-payment-braintree/package.json index 20f8751acd4..c44721310b0 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-cart-payment-method": "^10.0.4", + "@graphcommerce/magento-cart-shipping-address": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/magento-product-configurable": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/react-hook-form": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 804e65a63d0..a05ad52c236 100644 --- a/packages/magento-payment-included/CHANGELOG.md +++ b/packages/magento-payment-included/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-payment-included/package.json b/packages/magento-payment-included/package.json index d8f2943847e..21e798438d3 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-cart-payment-method": "^10.0.4", + "@graphcommerce/magento-cart-shipping-address": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/magento-product-configurable": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/react-hook-form": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 12f926668c5..4e3f654d5fa 100644 --- a/packages/magento-payment-klarna/CHANGELOG.md +++ b/packages/magento-payment-klarna/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-payment-klarna/package.json b/packages/magento-payment-klarna/package.json index 26a31bfa123..d0b257338ce 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-cart-checkout": "^10.0.4", + "@graphcommerce/magento-cart-payment-method": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/react-hook-form": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 0fae0bc50d5..25d5b28a442 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 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-payment-multisafepay/package.json b/packages/magento-payment-multisafepay/package.json index 386bd72801b..8e4a7451b2d 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,22 +12,22 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/graphql-mesh": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-cart-checkout": "^10.0.4", + "@graphcommerce/magento-cart-payment-method": "^10.0.4", + "@graphcommerce/magento-cart-shipping-address": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/magento-product-configurable": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/react-hook-form": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 1573778280c..9eef234b385 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 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-payment-paypal/package.json b/packages/magento-payment-paypal/package.json index 860c36c93f5..b8d771bbb19 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-cart-payment-method": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 c7270c93b3b..0c45fa91bcb 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 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-payment-tokens/package.json b/packages/magento-payment-tokens/package.json index 0be23b24706..56f5b5cf690 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-cart-payment-method": "^10.0.4", + "@graphcommerce/magento-customer": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 50bfe91afc2..26d7704f019 100644 --- a/packages/magento-product-bundle/CHANGELOG.md +++ b/packages/magento-product-bundle/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-product-bundle/package.json b/packages/magento-product-bundle/package.json index 94133f65d1c..41992d7bce9 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,19 +12,19 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-cart-items": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/magento-product-simple": "^10.0.4", + "@graphcommerce/magento-product-virtual": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 eec8424dd6a..c5adfdad1ab 100644 --- a/packages/magento-product-configurable/CHANGELOG.md +++ b/packages/magento-product-configurable/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-product-configurable/package.json b/packages/magento-product-configurable/package.json index 2e974ed1a39..f178164c5f7 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,23 +12,23 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/graphql-mesh": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/lingui-next": "10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-cart-items": "^10.0.4", + "@graphcommerce/magento-category": "^10.0.4", + "@graphcommerce/magento-customer": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/magento-product-simple": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/react-hook-form": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 172dc7e29d4..744f5dca71b 100644 --- a/packages/magento-product-downloadable/CHANGELOG.md +++ b/packages/magento-product-downloadable/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-product-downloadable/package.json b/packages/magento-product-downloadable/package.json index 507465ed105..0ddc919a96d 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-cart-items": "^10.0.4", + "@graphcommerce/magento-customer": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 aaafa273226..f6d5bdab116 100644 --- a/packages/magento-product-grouped/CHANGELOG.md +++ b/packages/magento-product-grouped/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-product-grouped/package.json b/packages/magento-product-grouped/package.json index c258baf79f8..1560cb67ba4 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/magento-product-simple": "^10.0.4", + "@graphcommerce/magento-product-virtual": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 4a6d80d1746..2491c080b32 100644 --- a/packages/magento-product-simple/CHANGELOG.md +++ b/packages/magento-product-simple/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-product-simple/package.json b/packages/magento-product-simple/package.json index 3cd2d4ed018..18b5ae5a1ae 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-cart-items": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 af5a07a98eb..44e1e950ead 100644 --- a/packages/magento-product-virtual/CHANGELOG.md +++ b/packages/magento-product-virtual/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-product-virtual/package.json b/packages/magento-product-virtual/package.json index ccac325159e..77e1a3e12c3 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-cart-items": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-product/CHANGELOG.md b/packages/magento-product/CHANGELOG.md index a80f99f2361..4f7cbc93540 100644 --- a/packages/magento-product/CHANGELOG.md +++ b/packages/magento-product/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-product/package.json b/packages/magento-product/package.json index d77dd39850d..8f76f4fa209 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -18,18 +18,18 @@ "typescript": "5.9.3" }, "peerDependencies": { - "@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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/framer-next-pages": "^10.0.4", + "@graphcommerce/framer-scroller": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/graphql-mesh": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 8fccdece3cf..1aace67c872 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 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-recently-viewed-products/package.json b/packages/magento-recently-viewed-products/package.json index 5459b1da172..17e0d2c3625 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/graphql-mesh": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/magento-product-configurable": "^10.0.4", + "@graphcommerce/next-config": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 267351bcdd8..b41102330ac 100644 --- a/packages/magento-review/CHANGELOG.md +++ b/packages/magento-review/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-review/package.json b/packages/magento-review/package.json index a56ec9dbc1b..44e1a3b2c7e 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -18,18 +18,18 @@ "typescript": "5.9.3" }, "peerDependencies": { - "@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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/graphql-mesh": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-customer": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/react-hook-form": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 464b58497ae..2dd87a1b462 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 + +### 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.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-search-overlay/package.json b/packages/magento-search-overlay/package.json index c206d3c2b20..dc85222ce20 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/framer-utils": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/magento-search": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/react-hook-form": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-search/CHANGELOG.md b/packages/magento-search/CHANGELOG.md index 15ed4ccd4ec..b4b0af4dd8d 100644 --- a/packages/magento-search/CHANGELOG.md +++ b/packages/magento-search/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-search/package.json b/packages/magento-search/package.json index b0e795e047c..a59aefc5e70 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/framer-utils": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/react-hook-form": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-store/CHANGELOG.md b/packages/magento-store/CHANGELOG.md index da7724a7798..224076a000c 100644 --- a/packages/magento-store/CHANGELOG.md +++ b/packages/magento-store/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-store/package.json b/packages/magento-store/package.json index 28b015057ce..288caef15e1 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/framer-utils": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/graphql-mesh": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/magento-wishlist/CHANGELOG.md b/packages/magento-wishlist/CHANGELOG.md index fd107816dc3..c4c8e5aa1e8 100644 --- a/packages/magento-wishlist/CHANGELOG.md +++ b/packages/magento-wishlist/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-wishlist +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/magento-wishlist/package.json b/packages/magento-wishlist/package.json index c375ba92a84..d5bc5009c0f 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "browserslist": [ @@ -13,20 +13,20 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/graphql-mesh": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-customer": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/magento-product-configurable": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-config": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 28fbef29119..d1348768366 100644 --- a/packages/mollie-magento-payment/CHANGELOG.md +++ b/packages/mollie-magento-payment/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/mollie-magento-payment/package.json b/packages/mollie-magento-payment/package.json index 5e39506e909..308fc93bf14 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,21 +12,21 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/ecommerce-ui": "^10.0.4", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/graphql": "^10.0.4", + "@graphcommerce/graphql-mesh": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/magento-cart": "^10.0.4", + "@graphcommerce/magento-cart-payment-method": "^10.0.4", + "@graphcommerce/magento-cart-shipping-address": "^10.0.4", + "@graphcommerce/magento-product": "^10.0.4", + "@graphcommerce/magento-product-configurable": "^10.0.4", + "@graphcommerce/magento-store": "^10.0.4", + "@graphcommerce/next-ui": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/react-hook-form": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@lingui/core": "^5", "@lingui/macro": "^5", "@lingui/react": "^5", diff --git a/packages/next-ui/CHANGELOG.md b/packages/next-ui/CHANGELOG.md index 8530567d19c..6692e511c4f 100644 --- a/packages/next-ui/CHANGELOG.md +++ b/packages/next-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/next-ui/package.json b/packages/next-ui/package.json index cfaa06368a2..47241880eac 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.1", + "version": "10.0.4", "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.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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/framer-next-pages": "^10.0.4", + "@graphcommerce/framer-scroller": "^10.0.4", + "@graphcommerce/framer-utils": "^10.0.4", + "@graphcommerce/image": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 1c1f854c4c1..58924646fe3 100644 --- a/packages/react-hook-form/CHANGELOG.md +++ b/packages/react-hook-form/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/react-hook-form/package.json b/packages/react-hook-form/package.json index 5c5a2768a5a..94d63dab1a6 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -13,9 +13,9 @@ }, "peerDependencies": { "@apollo/client": "*", - "@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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@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 f6937c7f922..b6a9babb7f6 100644 --- a/packages/service-worker/CHANGELOG.md +++ b/packages/service-worker/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/service-worker +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packages/service-worker/package.json b/packages/service-worker/package.json index 4d84b92a3ee..ce01d5b8b5d 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.1", + "version": "10.0.4", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,9 +12,9 @@ } }, "peerDependencies": { - "@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", + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4", "@serwist/next": "*", "next": "*", "serwist": "*" diff --git a/packagesDev/browserslist-config/CHANGELOG.md b/packagesDev/browserslist-config/CHANGELOG.md index 3639955ad86..5c9dfca4d0f 100644 --- a/packagesDev/browserslist-config/CHANGELOG.md +++ b/packagesDev/browserslist-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packagesDev/browserslist-config/package.json b/packagesDev/browserslist-config/package.json index ce1eae25024..780cefadcb8 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.1", + "version": "10.0.4", "main": "index.js", "sideEffects": false, "exports": { diff --git a/packagesDev/changeset-changelog/CHANGELOG.md b/packagesDev/changeset-changelog/CHANGELOG.md index 5ace37903b2..a5678cbf4a8 100644 --- a/packagesDev/changeset-changelog/CHANGELOG.md +++ b/packagesDev/changeset-changelog/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/changeset-changelog +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packagesDev/changeset-changelog/package.json b/packagesDev/changeset-changelog/package.json index 883f0472e21..24808be668f 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.1", + "version": "10.0.4", "type": "commonjs", "exports": { ".": { diff --git a/packagesDev/eslint-config/CHANGELOG.md b/packagesDev/eslint-config/CHANGELOG.md index 7fb7ca88474..c7feabe2702 100644 --- a/packagesDev/eslint-config/CHANGELOG.md +++ b/packagesDev/eslint-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packagesDev/eslint-config/package.json b/packagesDev/eslint-config/package.json index 591d8531da3..3a407d46eeb 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.1", + "version": "10.0.4", "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.1", + "@graphcommerce/typescript-config-pwa": "10.0.4", "@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 2afaf7bdca0..75063b4694c 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 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packagesDev/graphql-codegen-markdown-docs/package.json b/packagesDev/graphql-codegen-markdown-docs/package.json index ebd9394eb0d..820e4346adc 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.1", + "version": "10.0.4", "sideEffects": false, "type": "commonjs", "exports": { @@ -34,8 +34,8 @@ "parse-filepath": "^1.0.2" }, "peerDependencies": { - "@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" + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4" } } diff --git a/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md b/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md index 2fd4bbfe277..5c87af502d9 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 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packagesDev/graphql-codegen-near-operation-file/package.json b/packagesDev/graphql-codegen-near-operation-file/package.json index efea5dac043..292f74c641b 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.1", + "version": "10.0.4", "sideEffects": false, "type": "commonjs", "scripts": { @@ -27,9 +27,9 @@ "parse-filepath": "^1.0.2" }, "peerDependencies": { - "@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" + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4", + "@graphcommerce/typescript-config-pwa": "^10.0.4" }, "exports": { ".": { diff --git a/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md b/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md index 801b178ee94..8db0453d4df 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 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json b/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json index 5b1dac9b247..1794a3217b0 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.1", + "version": "10.0.4", "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.1", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1" + "@graphcommerce/eslint-config-pwa": "^10.0.4", + "@graphcommerce/prettier-config-pwa": "^10.0.4" }, "prettier": "@graphcommerce/prettier-config-pwa", "eslint": { diff --git a/packagesDev/misc/CHANGELOG.md b/packagesDev/misc/CHANGELOG.md index c24f3eabbe2..2647aefd11b 100644 --- a/packagesDev/misc/CHANGELOG.md +++ b/packagesDev/misc/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/misc +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packagesDev/misc/package.json b/packagesDev/misc/package.json index 54caf93ad2c..21a22929173 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.1", + "version": "10.0.4", "exports": { ".": "./index.ts" } diff --git a/packagesDev/next-config/CHANGELOG.md b/packagesDev/next-config/CHANGELOG.md index 1ec7c5fd22d..28f8b7d48e6 100644 --- a/packagesDev/next-config/CHANGELOG.md +++ b/packagesDev/next-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packagesDev/next-config/package.json b/packagesDev/next-config/package.json index ca18f49e522..d7d819a25ce 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.1", + "version": "10.0.4", "type": "module", "exports": { ".": { @@ -63,7 +63,7 @@ }, "peerDependencies": { "@apollo/client": "*", - "@graphcommerce/prettier-config-pwa": "^10.0.4-canary.1", + "@graphcommerce/prettier-config-pwa": "^10.0.4", "@lingui/loader": "*", "@lingui/macro": "*", "@lingui/react": "*", diff --git a/packagesDev/prettier-config/CHANGELOG.md b/packagesDev/prettier-config/CHANGELOG.md index 0adfa682441..71950ed80a7 100644 --- a/packagesDev/prettier-config/CHANGELOG.md +++ b/packagesDev/prettier-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packagesDev/prettier-config/package.json b/packagesDev/prettier-config/package.json index 1e4daaaa67f..776366a96fb 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.1", + "version": "10.0.4", "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 3048b94798a..49dbc504f02 100644 --- a/packagesDev/typescript-config/CHANGELOG.md +++ b/packagesDev/typescript-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 10.0.4 + ## 10.0.4-canary.1 ## 10.0.4-canary.0 diff --git a/packagesDev/typescript-config/package.json b/packagesDev/typescript-config/package.json index c7eb44d24c1..131d42dabb1 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.1", + "version": "10.0.4", "sideEffects": false, "exports": { ".": "./index.js",