From 5b865d376fe3b830a03af15b56986a0448af4987 Mon Sep 17 00:00:00 2001 From: StefanAngenent Date: Fri, 13 Oct 2023 12:21:05 +0200 Subject: [PATCH 01/11] Update orderDetails and styling (GCOM-1255) --- .changeset/curvy-hairs-suffer.md | 5 + .../components/OrderDetails/OrderDetails.tsx | 468 +++++++----------- 2 files changed, 195 insertions(+), 278 deletions(-) create mode 100644 .changeset/curvy-hairs-suffer.md diff --git a/.changeset/curvy-hairs-suffer.md b/.changeset/curvy-hairs-suffer.md new file mode 100644 index 0000000000..4387fbadca --- /dev/null +++ b/.changeset/curvy-hairs-suffer.md @@ -0,0 +1,5 @@ +--- +'@graphcommerce/magento-customer': patch +--- + +Update OrderDetails and styling diff --git a/packages/magento-customer/components/OrderDetails/OrderDetails.tsx b/packages/magento-customer/components/OrderDetails/OrderDetails.tsx index 89288b7df9..a30f794ca5 100644 --- a/packages/magento-customer/components/OrderDetails/OrderDetails.tsx +++ b/packages/magento-customer/components/OrderDetails/OrderDetails.tsx @@ -1,14 +1,15 @@ -import { Money, useFindCountry, useFindRegion } from '@graphcommerce/magento-store' +import { Money } from '@graphcommerce/magento-store' import { SectionContainer, - responsiveVal, iconInvoice, IconSvg, extendableComponent, useDateTimeFormat, + breakpointVal, } from '@graphcommerce/next-ui' import { Trans } from '@lingui/react' -import { Skeleton, styled, SxProps, Theme } from '@mui/material' +import { Box, Divider, SxProps, Theme, Typography, lighten } from '@mui/material' +import { AddressMultiLine } from '../AddressMultiLine/AddressMultiLine' import { TrackingLink } from '../TrackingLink/TrackingLink' import { OrderDetailsFragment } from './OrderDetails.gql' @@ -21,7 +22,8 @@ const componentName = 'OrderDetails' as const const parts = [ 'sectionContainer', 'orderDetailTitle', - 'orderDetailsInnerContainer', + 'orderDetailContainer', + 'orderDetailRow', 'totalsContainer', 'totalsRow', 'totalsDivider', @@ -30,70 +32,6 @@ const parts = [ ] as const const { classes } = extendableComponent(componentName, parts) -const OrderDetailTitle = styled('span', { target: classes.orderDetailTitle })(({ theme }) => ({ - borderBottom: `1px solid ${theme.palette.divider}`, - fontWeight: 'bold', - display: 'block', - width: '100%', - paddingBottom: responsiveVal(2, 8), - marginBottom: theme.spacings.xs, -})) - -const OrderDetailsInnerContainer = styled('span', { target: classes.orderDetailsInnerContainer })( - ({ theme }) => - theme.unstable_sx({ - display: 'grid', - gridColumnGap: theme.spacings.sm, - gridRowGap: theme.spacings.lg, - padding: `${theme.spacings.md} 0`, - borderBottom: `1px solid ${theme.palette.divider}`, - [theme.breakpoints.up('sm')]: { - gridColumnGap: theme.spacings.xxl, - gridRowGap: theme.spacings.md, - gridTemplateColumns: 'repeat(2, 1fr)', - }, - }), -) - -const TotalsContainer = styled('span', { target: classes.totalsContainer })(({ theme }) => - theme.unstable_sx({ - padding: `${theme.spacings.xxs} 0`, - }), -) - -const TotalsRow = styled('span', { target: classes.totalsRow })(({ theme }) => - theme.unstable_sx({ - display: 'flex', - justifyContent: 'space-between', - padding: '4px 0', - }), -) - -const TotalsDivider = styled('span', { target: classes.totalsDivider })(({ theme }) => - theme.unstable_sx({ - height: 1, - width: '100%', - background: theme.palette.divider, - margin: `${theme.spacings.xxs} 0`, - }), -) - -const TotalsVat = styled(TotalsRow, { target: classes.totalsVat })(({ theme }) => - theme.unstable_sx({ - fontWeight: 'bold', - padding: `${theme.spacings.xxs} 0`, - }), -) - -const Invoice = styled(TotalsRow, { target: classes.invoice })(({ theme }) => - theme.unstable_sx({ - display: 'flex', - justifyContent: 'flex-start', - alignItems: 'center', - color: 'primary.main', - }), -) - export function OrderDetails(props: OrderDetailsProps) { const { number, @@ -105,255 +43,229 @@ export function OrderDetails(props: OrderDetailsProps) { shipping_method, total, invoices, - loading, carrier, sx = [], } = props const dateFormatter = useDateTimeFormat({ year: 'numeric', month: 'long', day: 'numeric' }) - const billingAddressCountry = useFindCountry(billing_address?.country_code) - const billingAddressRegion = useFindRegion( - billing_address?.country_code, - Number(billing_address?.region_id) ?? undefined, - ) - - const shippingAddressCountry = useFindCountry(shipping_address?.country_code) - const shippingAddressRegion = useFindRegion( - shipping_address?.country_code, - Number(shipping_address?.region_id) ?? undefined, - ) - - if (loading) { - return ( + return ( + <> } sx={[ (theme) => ({ + padding: theme.spacings.sm, + marginBottom: theme.spacings.md, + background: + theme.palette.mode === 'light' + ? theme.palette.background.default + : lighten(theme.palette.background.default, 0.15), + ...breakpointVal( + 'borderRadius', + theme.shape.borderRadius * 2, + theme.shape.borderRadius * 3, + theme.breakpoints.values, + ), '& .SectionHeader-root': { - marginTop: theme.spacings.sm, - marginBottom: theme.spacings.sm, + mt: 0, + mb: theme.spacings.xs, }, }), ...(Array.isArray(sx) ? sx : [sx]), ]} - borderBottom > - -
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- - - -
Products
-
- -
-
- - {total?.discounts?.map((discount) => ( - -
{discount?.label}
-
- -
-
- ))} - - -
Shipping
-
- -
-
- - - - -
Total (incl. VAT)
-
- -
-
-
-
- ) - } - - return ( - ({ - '& .SectionHeader-root': { - marginTop: theme.spacings.sm, - marginBottom: theme.spacings.sm, - }, - }), - ...(Array.isArray(sx) ? sx : [sx]), - ]} - > - -
- - - -
{number}
-
- -
- - - -
- Ordered: {order_date && dateFormatter.format(new Date(order_date))} - {/* Shipped */} -
-
- -
- - - -
-
{shipping_method ?? ''}
+ ({ + gridColumnGap: theme.spacings.xxl, + gridRowGap: theme.spacings.md, + display: `grid`, + [theme.breakpoints.up('sm')]: { + gridTemplateColumns: `1fr 1fr`, + marginTop: theme.spacings.xxs, + }, + }), + ...(Array.isArray(sx) ? sx : [sx]), + ]} + > + + } + className={classes.orderDetailTitle} + sx={{ '& .SectionHeader-root': { marginTop: 0, paddingBottom: '4px' } }} + /> + {number} + + + + } + className={classes.orderDetailTitle} + sx={{ '& .SectionHeader-root': { marginTop: 0, paddingBottom: '4px' } }} + /> + + : {order_date && dateFormatter.format(new Date(order_date))} + + + + + } + className={classes.orderDetailTitle} + sx={{ '& .SectionHeader-root': { marginTop: 0, paddingBottom: '4px' } }} + /> + {shipping_method ?? ''} {shipments && shipments.length > 0 && ( <> -
{shipments?.[0]?.tracking && shipments?.[0]?.tracking?.[0]?.title}
+ {shipments?.[0]?.tracking && shipments?.[0]?.tracking?.[0]?.title} {shipments?.[0]?.tracking?.[0] && ( )} )} -
-
- -
- - - -
+ + + + } + className={classes.orderDetailTitle} + sx={{ '& .SectionHeader-root': { marginTop: 0, paddingBottom: '4px' } }} + /> {payment_methods && payment_methods.length < 1 && ( -
- - - -
+ + + )} {payment_methods && payment_methods[0] && ( <> -
{payment_methods[0].name}
- + {payment_methods[0].name} {invoices && invoices?.length > 0 && ( - + ({ + display: 'flex', + justifyContent: 'flex-start', + alignItems: 'center', + color: theme.palette.primary.main, + })} + > {invoices?.[0]?.number} - +
)} )} -
-
- -
- - - -
-
- {shipping_address?.firstname} {shipping_address?.lastname} -
-
{shipping_address?.street}
-
- {shipping_address?.postcode} {shipping_address?.city} -
-
- {shippingAddressRegion?.name}, {shippingAddressCountry?.full_name_locale} -
-
-
- -
- - - -
-
- {billing_address?.firstname} {billing_address?.lastname} -
-
{billing_address?.street}
-
- {billing_address?.postcode} {billing_address?.city} -
-
- {billingAddressRegion?.name}, {billingAddressCountry?.full_name_locale} -
-
-
-
+ + + + } + className={classes.orderDetailTitle} + sx={{ '& .SectionHeader-root': { marginTop: 0, paddingBottom: '4px' } }} + /> + + + + + } + className={classes.orderDetailTitle} + sx={{ '& .SectionHeader-root': { marginTop: 0, paddingBottom: '4px' } }} + > + + + + +
- - -
+ ({ + border: `1px solid ${theme.palette.divider}`, + marginBottom: theme.spacings.md, + p: theme.spacings.sm, + ...breakpointVal( + 'borderRadius', + theme.shape.borderRadius * 2, + theme.shape.borderRadius * 3, + theme.breakpoints.values, + ), + })} + > + + -
-
- -
-
+ + + {total?.discounts?.map((discount) => ( - -
{discount?.label}
-
- {discount?.amount && ( - - )} -
-
+ + {discount?.label} + + {discount?.amount && ( + + )} + ))} - - -
- -
-
- -
-
{carrier}
-
- - - - -
+ + + + + + + + ({ my: theme.spacings.xxs })} /> + + ({ + display: 'flex', + justifyContent: 'space-between', + color: theme.palette.primary.main, + })} + > + -
-
- -
-
-
- + + + + {total?.taxes?.map((tax) => ( + ({ + display: 'flex', + justifyContent: 'space-between', + color: theme.palette.text.disabled, + })} + > + + + + + + ))} + + ) } From 0d93361429c1b298113dfc198dd82365f7de78e5 Mon Sep 17 00:00:00 2001 From: StefanAngenent Date: Fri, 13 Oct 2023 12:30:21 +0200 Subject: [PATCH 02/11] Update orderDetails and styling (GCOM-1255) --- .../magento-customer/components/OrderDetails/OrderDetails.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/magento-customer/components/OrderDetails/OrderDetails.tsx b/packages/magento-customer/components/OrderDetails/OrderDetails.tsx index a30f794ca5..dfe7f9ea0e 100644 --- a/packages/magento-customer/components/OrderDetails/OrderDetails.tsx +++ b/packages/magento-customer/components/OrderDetails/OrderDetails.tsx @@ -108,7 +108,8 @@ export function OrderDetails(props: OrderDetailsProps) { sx={{ '& .SectionHeader-root': { marginTop: 0, paddingBottom: '4px' } }} /> - : {order_date && dateFormatter.format(new Date(order_date))} + :{' '} + {order_date && dateFormatter.format(new Date(order_date))} From c4502a562bb34df24d8cbef5e2192f1ceb203a72 Mon Sep 17 00:00:00 2001 From: StefanAngenent Date: Thu, 19 Oct 2023 17:00:06 +0200 Subject: [PATCH 03/11] Feedback Paul --- examples/magento-graphcms/locales/de.po | 3 + examples/magento-graphcms/locales/en.po | 3 + examples/magento-graphcms/locales/es.po | 5 +- examples/magento-graphcms/locales/fr.po | 3 + examples/magento-graphcms/locales/it.po | 3 + examples/magento-graphcms/locales/nl.po | 3 + .../pages/account/orders/view.tsx | 32 ++- .../components/OrderDetails/OrderDetails.tsx | 266 ++++++------------ .../components/OrderDetails/OrderTotals.tsx | 95 +++++++ .../components/OrderItem/OrderItem.graphql | 5 + .../components/OrderItem/OrderItem.tsx | 46 +-- .../components/OrderItems/OrderItems.tsx | 80 +----- packages/magento-customer/components/index.ts | 1 + 13 files changed, 255 insertions(+), 290 deletions(-) create mode 100644 packages/magento-customer/components/OrderDetails/OrderTotals.tsx diff --git a/examples/magento-graphcms/locales/de.po b/examples/magento-graphcms/locales/de.po index 2d06328fad..271ce118c1 100644 --- a/examples/magento-graphcms/locales/de.po +++ b/examples/magento-graphcms/locales/de.po @@ -418,6 +418,9 @@ msgstr "Bestellung #{orderId}" msgid "Order before 22:00" msgstr "Bestellen Sie vor 22:00 Uhr" +msgid "Order date" +msgstr "Auftragsdatum" + msgid "Order not found" msgstr "Bestellung nicht gefunden" diff --git a/examples/magento-graphcms/locales/en.po b/examples/magento-graphcms/locales/en.po index 4abd9b5670..51541414d3 100644 --- a/examples/magento-graphcms/locales/en.po +++ b/examples/magento-graphcms/locales/en.po @@ -418,6 +418,9 @@ msgstr "Order #{orderId}" msgid "Order before 22:00" msgstr "Order before 22:00" +msgid "Order date" +msgstr "Order date" + msgid "Order not found" msgstr "Order not found" diff --git a/examples/magento-graphcms/locales/es.po b/examples/magento-graphcms/locales/es.po index bc3f4c4a15..4582a8eca4 100644 --- a/examples/magento-graphcms/locales/es.po +++ b/examples/magento-graphcms/locales/es.po @@ -418,8 +418,11 @@ msgstr "Pedido #{orderId}" msgid "Order before 22:00" msgstr "Pedido antes de las 22:00" +msgid "Order date" +msgstr "Besteldatum" + msgid "Order not found" -msgstr "Pedido no encontrado" +msgstr "fecha de orden" msgid "Order number" msgstr "Número de pedido" diff --git a/examples/magento-graphcms/locales/fr.po b/examples/magento-graphcms/locales/fr.po index 0a0b7ed8f2..aaf917ce66 100644 --- a/examples/magento-graphcms/locales/fr.po +++ b/examples/magento-graphcms/locales/fr.po @@ -418,6 +418,9 @@ msgstr "Commande #{orderId}" msgid "Order before 22:00" msgstr "Commandez avant 22:00" +msgid "Order date" +msgstr "Date de commande" + msgid "Order not found" msgstr "Commande non trouvée" diff --git a/examples/magento-graphcms/locales/it.po b/examples/magento-graphcms/locales/it.po index d31477e4f9..3d305c2d71 100644 --- a/examples/magento-graphcms/locales/it.po +++ b/examples/magento-graphcms/locales/it.po @@ -418,6 +418,9 @@ msgstr "Ordine #{orderId}" msgid "Order before 22:00" msgstr "Ordina prima delle 22:00" +msgid "Order date" +msgstr "data dell'ordine" + msgid "Order not found" msgstr "Ordine non trovato" diff --git a/examples/magento-graphcms/locales/nl.po b/examples/magento-graphcms/locales/nl.po index 3b0f9d9b4f..ee8a2855c6 100644 --- a/examples/magento-graphcms/locales/nl.po +++ b/examples/magento-graphcms/locales/nl.po @@ -418,6 +418,9 @@ msgstr "Bestelling #{orderId}" msgid "Order before 22:00" msgstr "Bestel voor 22:00" +msgid "Order date" +msgstr "Besteldatum" + msgid "Order not found" msgstr "Bestelling niet gevonden" diff --git a/examples/magento-graphcms/pages/account/orders/view.tsx b/examples/magento-graphcms/pages/account/orders/view.tsx index 85982e8b4b..ce5b3e0692 100644 --- a/examples/magento-graphcms/pages/account/orders/view.tsx +++ b/examples/magento-graphcms/pages/account/orders/view.tsx @@ -4,8 +4,10 @@ import { WaitForCustomer, useOrderCardItemImages, OrderDetails, + OrderTotals, OrderItems, OrderDetailPageDocument, + OrderStateLabel, } from '@graphcommerce/magento-customer' import { CountryRegionsDocument, PageMeta, StoreConfigDocument } from '@graphcommerce/magento-store' import { @@ -17,7 +19,7 @@ import { } from '@graphcommerce/next-ui' import { i18n } from '@lingui/core' import { Trans } from '@lingui/react' -import { Container } from '@mui/material' +import { Container, Typography } from '@mui/material' import { useRouter } from 'next/router' import { LayoutOverlay, LayoutOverlayProps } from '../../../components' import { graphqlSsrClient, graphqlSharedClient } from '../../../lib/graphql/graphqlSsrClient' @@ -32,10 +34,9 @@ function OrderDetailPage() { fetchPolicy: 'cache-and-network', variables: { orderNumber: orderId as string }, }) - const { data, loading } = orders + const { data } = orders const images = useOrderCardItemImages(data?.customer?.orders) const order = data?.customer?.orders?.items?.[0] - const isLoading = orderId ? loading : true return ( <> @@ -52,7 +53,11 @@ function OrderDetailPage() { )} - + ({ mb: theme.spacings.xxs })} + > @@ -62,8 +67,23 @@ function OrderDetailPage() { title={i18n._(/* i18n */ 'Order #{orderId}', { orderId })} metaRobots={['noindex']} /> - - + ({ textAlign: 'center', mb: theme.spacings.lg })}> + , + Invoiced: () => , + Shipped: () => , + Refunded: () => , + Canceled: () => , + Returned: () => , + Partial: () => , + }} + /> + + + + )} diff --git a/packages/magento-customer/components/OrderDetails/OrderDetails.tsx b/packages/magento-customer/components/OrderDetails/OrderDetails.tsx index dfe7f9ea0e..327ef2737f 100644 --- a/packages/magento-customer/components/OrderDetails/OrderDetails.tsx +++ b/packages/magento-customer/components/OrderDetails/OrderDetails.tsx @@ -1,4 +1,3 @@ -import { Money } from '@graphcommerce/magento-store' import { SectionContainer, iconInvoice, @@ -8,13 +7,12 @@ import { breakpointVal, } from '@graphcommerce/next-ui' import { Trans } from '@lingui/react' -import { Box, Divider, SxProps, Theme, Typography, lighten } from '@mui/material' +import { Box, SxProps, Theme, Typography, lighten } from '@mui/material' import { AddressMultiLine } from '../AddressMultiLine/AddressMultiLine' import { TrackingLink } from '../TrackingLink/TrackingLink' import { OrderDetailsFragment } from './OrderDetails.gql' export type OrderDetailsProps = Partial & { - loading?: boolean sx?: SxProps } @@ -24,10 +22,6 @@ const parts = [ 'orderDetailTitle', 'orderDetailContainer', 'orderDetailRow', - 'totalsContainer', - 'totalsRow', - 'totalsDivider', - 'totalsVat', 'invoice', ] as const const { classes } = extendableComponent(componentName, parts) @@ -41,85 +35,81 @@ export function OrderDetails(props: OrderDetailsProps) { payment_methods, shipments, shipping_method, - total, invoices, - carrier, sx = [], } = props const dateFormatter = useDateTimeFormat({ year: 'numeric', month: 'long', day: 'numeric' }) return ( - <> - } + } + sx={[ + (theme) => ({ + padding: theme.spacings.sm, + marginBottom: theme.spacings.md, + background: + theme.palette.mode === 'light' + ? theme.palette.background.default + : lighten(theme.palette.background.default, 0.15), + ...breakpointVal( + 'borderRadius', + theme.shape.borderRadius * 2, + theme.shape.borderRadius * 3, + theme.breakpoints.values, + ), + '& .SectionHeader-root': { + mt: 0, + mb: theme.spacings.xs, + }, + }), + ...(Array.isArray(sx) ? sx : [sx]), + ]} + > + ({ - padding: theme.spacings.sm, - marginBottom: theme.spacings.md, - background: - theme.palette.mode === 'light' - ? theme.palette.background.default - : lighten(theme.palette.background.default, 0.15), - ...breakpointVal( - 'borderRadius', - theme.shape.borderRadius * 2, - theme.shape.borderRadius * 3, - theme.breakpoints.values, - ), - '& .SectionHeader-root': { - mt: 0, - mb: theme.spacings.xs, + gridColumnGap: theme.spacings.xxl, + gridRowGap: theme.spacings.md, + display: `grid`, + [theme.breakpoints.up('sm')]: { + gridTemplateColumns: `1fr 1fr`, + marginTop: theme.spacings.xxs, }, }), ...(Array.isArray(sx) ? sx : [sx]), ]} > - ({ - gridColumnGap: theme.spacings.xxl, - gridRowGap: theme.spacings.md, - display: `grid`, - [theme.breakpoints.up('sm')]: { - gridTemplateColumns: `1fr 1fr`, - marginTop: theme.spacings.xxs, - }, - }), - ...(Array.isArray(sx) ? sx : [sx]), - ]} - > - - } - className={classes.orderDetailTitle} - sx={{ '& .SectionHeader-root': { marginTop: 0, paddingBottom: '4px' } }} - /> + + } + className={classes.orderDetailTitle} + sx={{ '& .SectionHeader-root': { marginTop: 0, paddingBottom: '4px' } }} + > {number} - + + - - } - className={classes.orderDetailTitle} - sx={{ '& .SectionHeader-root': { marginTop: 0, paddingBottom: '4px' } }} - /> - - :{' '} - {order_date && dateFormatter.format(new Date(order_date))} - - + + } + className={classes.orderDetailTitle} + sx={{ '& .SectionHeader-root': { marginTop: 0, paddingBottom: '4px' } }} + > + {order_date && dateFormatter.format(new Date(order_date))} + + - - } - className={classes.orderDetailTitle} - sx={{ '& .SectionHeader-root': { marginTop: 0, paddingBottom: '4px' } }} - /> + + } + className={classes.orderDetailTitle} + sx={{ '& .SectionHeader-root': { marginTop: 0, paddingBottom: '4px' } }} + > {shipping_method ?? ''} {shipments && shipments.length > 0 && ( @@ -130,15 +120,16 @@ export function OrderDetails(props: OrderDetailsProps) { )} )} - + + - - } - className={classes.orderDetailTitle} - sx={{ '& .SectionHeader-root': { marginTop: 0, paddingBottom: '4px' } }} - /> + + } + className={classes.orderDetailTitle} + sx={{ '& .SectionHeader-root': { marginTop: 0, paddingBottom: '4px' } }} + > {payment_methods && payment_methods.length < 1 && ( @@ -151,12 +142,11 @@ export function OrderDetails(props: OrderDetailsProps) { {invoices && invoices?.length > 0 && ( ({ + sx={{ display: 'flex', justifyContent: 'flex-start', alignItems: 'center', - color: theme.palette.primary.main, - })} + }} > {invoices?.[0]?.number} @@ -164,109 +154,31 @@ export function OrderDetails(props: OrderDetailsProps) { )} )} - - - - } - className={classes.orderDetailTitle} - sx={{ '& .SectionHeader-root': { marginTop: 0, paddingBottom: '4px' } }} - /> - - - - - } - className={classes.orderDetailTitle} - sx={{ '& .SectionHeader-root': { marginTop: 0, paddingBottom: '4px' } }} - > - - - + - - ({ - border: `1px solid ${theme.palette.divider}`, - marginBottom: theme.spacings.md, - p: theme.spacings.sm, - ...breakpointVal( - 'borderRadius', - theme.shape.borderRadius * 2, - theme.shape.borderRadius * 3, - theme.breakpoints.values, - ), - })} - > - - - - - - - - {total?.discounts?.map((discount) => ( - + } + className={classes.orderDetailTitle} + sx={{ '& .SectionHeader-root': { marginTop: 0, paddingBottom: '4px' } }} > - {discount?.label} - - {discount?.amount && ( - - )} - - ))} - - - - - + + - ({ my: theme.spacings.xxs })} /> - - ({ - display: 'flex', - justifyContent: 'space-between', - color: theme.palette.primary.main, - })} - > - - - - - - {total?.taxes?.map((tax) => ( - ({ - display: 'flex', - justifyContent: 'space-between', - color: theme.palette.text.disabled, - })} + + } + className={classes.orderDetailTitle} + sx={{ '& .SectionHeader-root': { marginTop: 0, paddingBottom: '4px' } }} > - - - - - - ))} + + + - + ) } diff --git a/packages/magento-customer/components/OrderDetails/OrderTotals.tsx b/packages/magento-customer/components/OrderDetails/OrderTotals.tsx new file mode 100644 index 0000000000..67df68e09c --- /dev/null +++ b/packages/magento-customer/components/OrderDetails/OrderTotals.tsx @@ -0,0 +1,95 @@ +import { Money } from '@graphcommerce/magento-store' +import { extendableComponent, breakpointVal } from '@graphcommerce/next-ui' +import { Trans } from '@lingui/react' +import { Box, Divider, SxProps, Theme, Typography } from '@mui/material' +import { OrderDetailsFragment } from './OrderDetails.gql' + +export type OrderTotalsProps = Partial & { + sx?: SxProps +} + +const componentName = 'OrderTotals' as const +const parts = ['totalsContainer', 'totalsRow', 'totalsDivider', 'totalsVat'] as const +const { classes } = extendableComponent(componentName, parts) + +export function OrderTotals(props: OrderTotalsProps) { + const { total, carrier, sx = [] } = props + + return ( + ({ + border: `1px solid ${theme.palette.divider}`, + marginBottom: theme.spacings.md, + p: theme.spacings.sm, + ...breakpointVal( + 'borderRadius', + theme.shape.borderRadius * 2, + theme.shape.borderRadius * 3, + theme.breakpoints.values, + ), + }), + ...(Array.isArray(sx) ? sx : [sx]), + ]} + > + + + + + + + + {total?.discounts?.map((discount) => ( + + {discount?.label} + + {discount?.amount && ( + + )} + + ))} + + + + + + + + ({ my: theme.spacings.xxs })} /> + + ({ + display: 'flex', + justifyContent: 'space-between', + color: theme.palette.primary.main, + })} + > + + + + + + {total?.taxes?.map((tax) => ( + ({ + display: 'flex', + justifyContent: 'space-between', + color: theme.palette.text.disabled, + })} + > + + + + + + ))} + + ) +} diff --git a/packages/magento-customer/components/OrderItem/OrderItem.graphql b/packages/magento-customer/components/OrderItem/OrderItem.graphql index 2e71c8663c..7a1511c8d1 100644 --- a/packages/magento-customer/components/OrderItem/OrderItem.graphql +++ b/packages/magento-customer/components/OrderItem/OrderItem.graphql @@ -7,7 +7,12 @@ fragment OrderItem on OrderItemInterface { label value } + quantity_invoiced quantity_ordered + quantity_refunded + quantity_returned + quantity_shipped + quantity_canceled product_sale_price { ...Money } diff --git a/packages/magento-customer/components/OrderItem/OrderItem.tsx b/packages/magento-customer/components/OrderItem/OrderItem.tsx index adb69c58f3..103d244a0a 100644 --- a/packages/magento-customer/components/OrderItem/OrderItem.tsx +++ b/packages/magento-customer/components/OrderItem/OrderItem.tsx @@ -50,6 +50,7 @@ export function OrderItem(props: OrderItemProps) { ({ + borderBottom: `1px solid ${theme.palette.divider}`, display: 'grid', gridTemplate: ` "picture itemName itemName itemName" @@ -60,15 +61,13 @@ export function OrderItem(props: OrderItemProps) { columnGap: theme.spacings.sm, alignItems: 'baseline', typography: 'body1', - marginBottom: theme.spacings.lg, - marginTop: theme.spacings.md, + py: theme.spacings.xxs, [theme.breakpoints.up('sm')]: { gridTemplate: ` "picture itemName itemName itemName itemName" "picture itemOptions itemPrice quantity rowPrice" `, gridTemplateColumns: `${rowImageSize} 4fr 1fr 1fr minmax(75px, 1fr)`, - marginBottom: theme.spacings.md, }, '&:not(.hasOptions)': { @@ -87,38 +86,9 @@ export function OrderItem(props: OrderItemProps) { }, })} > - - - ({ - overflow: 'hidden', - width: '100%', - height: '100%', - display: 'flex', - position: 'relative', - alignItems: 'center', - flexShrink: 0, - userSelect: 'none', - borderRadius: '50%', - justifyContent: 'center', - })} - > + + + {thumbnail?.url && thumbnail?.label && ( {thumbnail?.label ({ - gridColumn: 1, backgroundColor: theme.palette.background.image, - objectFit: 'cover', - display: 'block', - transform: 'scale(1.1)', })} /> )} @@ -164,7 +130,7 @@ export function OrderItem(props: OrderItemProps) { sx={(theme) => ({ gridArea: 'itemPrice', textAlign: 'left', - color: theme.palette.text.disabled, + color: theme.palette.text.secondary, })} > diff --git a/packages/magento-customer/components/OrderItems/OrderItems.tsx b/packages/magento-customer/components/OrderItems/OrderItems.tsx index d42c398cc5..72a95a850a 100644 --- a/packages/magento-customer/components/OrderItems/OrderItems.tsx +++ b/packages/magento-customer/components/OrderItems/OrderItems.tsx @@ -1,13 +1,12 @@ -import { SectionContainer, responsiveVal, extendableComponent } from '@graphcommerce/next-ui' +import { SectionContainer, extendableComponent } from '@graphcommerce/next-ui' import { Trans } from '@lingui/react' -import { Skeleton, Button, Box, SxProps, Theme } from '@mui/material' +import { Button, Box, SxProps, Theme } from '@mui/material' import { useState } from 'react' import { UseOrderCardItemImages } from '../../hooks/useOrderCardItemImages' import { OrderItem } from '../OrderItem/OrderItem' import { OrderItemsFragment } from './OrderItems.gql' export type OrderItemsProps = OrderItemsFragment & { - loading?: boolean images?: UseOrderCardItemImages sx?: SxProps } @@ -17,60 +16,10 @@ const parts = ['root', 'orderItemsInnerContainer', 'skeletonOrderItem', 'viewAll const { classes } = extendableComponent(componentName, parts) export function OrderItems(props: OrderItemsProps) { - const { images, items, loading, sx = [] } = props + const { images, items, sx = [] } = props const [expanded, setExpanded] = useState(false) const maxItemsAboveFold = 4 - if (loading) { - return ( - } - /* endLabel='SHIPPED'*/ - className={classes.root} - sx={[ - (theme) => ({ - marginTop: theme.spacings.md, - marginBottom: theme.spacings.md, - }), - ...(Array.isArray(sx) ? sx : [sx]), - ]} - > - ({ borderBottom: `1px solid ${theme.palette.divider}` })} - > - ({ - marginTop: theme.spacings.xxs, - marginBottom: theme.spacings.xxs, - })} - > - - - ({ - marginTop: theme.spacings.xxs, - marginBottom: theme.spacings.xxs, - })} - > - - - ({ - marginTop: theme.spacings.xxs, - marginBottom: theme.spacings.xxs, - })} - > - - - - - ) - } - return ( } @@ -79,22 +28,21 @@ export function OrderItems(props: OrderItemsProps) { sx={[ (theme) => ({ marginTop: theme.spacings.md, - marginBottom: theme.spacings.md, + marginBottom: theme.spacings.sm, }), ...(Array.isArray(sx) ? sx : [sx]), ]} > - ({ borderBottom: `1px solid ${theme.palette.divider}` })} - > - {items?.slice(0, maxItemsAboveFold).map((orderItem) => ( - - {orderItem && ( - - )} - - ))} + ({ mb: theme.spacings.md })}> + {items + ?.slice(0, maxItemsAboveFold) + .map((orderItem) => ( + + {orderItem && ( + + )} + + ))} {expanded && items diff --git a/packages/magento-customer/components/index.ts b/packages/magento-customer/components/index.ts index 31b5029a7e..82bc6cce2c 100644 --- a/packages/magento-customer/components/index.ts +++ b/packages/magento-customer/components/index.ts @@ -26,6 +26,7 @@ export * from './OrderCard/OrderCard' export * from './OrderCardItem/OrderCardItem' export * from './OrderCardItemImage/OrderCardItemImage' export * from './OrderDetails/OrderDetails' +export * from './OrderDetails/OrderTotals' export * from './OrderItem/OrderItem' export * from './OrderItems/OrderItems' export * from './OrderStateLabel/OrderStateLabel' From 8a8b6510e6deb38ad20ee12d24487df3ee3e3f57 Mon Sep 17 00:00:00 2001 From: Hans Nieser Date: Tue, 31 Oct 2023 11:06:27 +0100 Subject: [PATCH 04/11] Split off known issues to separate page This keeps the overview free of clutter, keeps the 'Next steps' section at the bottom. --- docs/magento/known-issues.md | 26 ++++++++++++++++++++++++++ docs/magento/readme.md | 26 +++++++------------------- 2 files changed, 33 insertions(+), 19 deletions(-) create mode 100644 docs/magento/known-issues.md diff --git a/docs/magento/known-issues.md b/docs/magento/known-issues.md new file mode 100644 index 0000000000..eda1c99418 --- /dev/null +++ b/docs/magento/known-issues.md @@ -0,0 +1,26 @@ +--- +menu: Known issues +--- + +# Known issues + +An overview of bugs and limitations you may run into with Magento's GraphQL API: + +## Cart-related mutations result in `Can not find cart with ID` or `Cart isn't active` errors + +This is caused by a regression in Magento 2.4.6, which results in some GraphQL +errors no longer getting a category extension string (such as +`graphql-no-such-entity`). Normally, these errors are handling by automatically +creating a new cart, but without the proper error category this error-handling +logic is nog triggered. + +As a workaround, you can apply +[cart-error-category.patch](./patches/cart-error-category.patch). This +regression is fixed as of Magento 2.4.7-beta2. + +See also +https://github.com/magento/magento2/commit/49cbe774020d3dfa6ee2b8702376a947801c9971 + +## Next steps + +- [Overview](./readme) diff --git a/docs/magento/readme.md b/docs/magento/readme.md index 17f58f8f20..5172dc07fc 100644 --- a/docs/magento/readme.md +++ b/docs/magento/readme.md @@ -7,6 +7,12 @@ menu: Overview To integrate with Magento, most of the functionality should work out-of-the box if Magento exposes a working GraphQL API. +Some additional configuration may be required, which is documented below. + +Currently, the GraphQL API also has some bugs and limitations which in some +cases requires a patch to work around, please see +[Known issues](./known-issues.md) + ## Magento configuration ### Configure Base Link Url to get emails working @@ -92,22 +98,4 @@ will always be prompted to create a new account. - [Full feature list](../feature-list.md) - [SEO Migration](./seo-migration.md) - -## Known issues - -An overview of bugs and limitations you may run into with Magento's GraphQL API: - -### Cart-related mutations result `Can not find cart with ID` or `Cart isn't active` errors - -This is caused by a regression in Magento 2.4.6, which results in some GraphQL -errors no longer getting a category extension string (such as -`graphql-no-such-entity`). Normally, these errors are handling by automatically -creating a new cart, but without the proper error category this error-handling -logic is nog triggered. - -As a workaround, you can apply -[cart-error-category.patch](./patches/cart-error-category.patch). This -regression is fixed as of Magento 2.4.7-beta2. - -See also -https://github.com/magento/magento2/commit/49cbe774020d3dfa6ee2b8702376a947801c9971 +- [Known issues](./known-issues.md) From 9f8c3cac214006315055f37cf8d4a783eb99a7ec Mon Sep 17 00:00:00 2001 From: Hans Nieser Date: Tue, 31 Oct 2023 11:09:28 +0100 Subject: [PATCH 05/11] Add changeset --- .changeset/friendly-dogs-shop.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/friendly-dogs-shop.md diff --git a/.changeset/friendly-dogs-shop.md b/.changeset/friendly-dogs-shop.md new file mode 100644 index 0000000000..d4ce15fbc2 --- /dev/null +++ b/.changeset/friendly-dogs-shop.md @@ -0,0 +1,5 @@ +--- +'@graphcommerce/docs': minor +--- + +Split off Magento known issues to separate page From f30c443fd72b3229a3d90bf1d6ca8cc6d53e4318 Mon Sep 17 00:00:00 2001 From: Hans Nieser Date: Tue, 31 Oct 2023 12:27:17 +0100 Subject: [PATCH 06/11] Move customer sign-up issue to known issues page --- docs/magento/known-issues.md | 18 ++++++++++++++++++ docs/magento/readme.md | 10 ---------- 2 files changed, 18 insertions(+), 10 deletions(-) diff --git a/docs/magento/known-issues.md b/docs/magento/known-issues.md index eda1c99418..8803ad0a27 100644 --- a/docs/magento/known-issues.md +++ b/docs/magento/known-issues.md @@ -21,6 +21,24 @@ regression is fixed as of Magento 2.4.7-beta2. See also https://github.com/magento/magento2/commit/49cbe774020d3dfa6ee2b8702376a947801c9971 +## Customer is forced to sign up, even if already registered + +During customer login, GraphCommerce queries Magento to determine whether the +customer account already exists or not. If not, the sign-up form is shown +instead. + +In Magento 2.4.7+ and recent security patch updates, the behavior of the +`isEmailAvailable` query that is used to do this was made dependent on the +`Enable Guest Checkout Login` configuration setting. If disabled, this query +will always return `true`, resulting in the sign-up form always being shown, +even if the customer already exists. + +To solve this, the following setting must be set to `Yes`: +`Stores -> Configuration -> Sales -> Checkout -> Checkout Options -> Enable Guest Checkout Login` + +See also +https://developer.adobe.com/commerce/php/development/backward-incompatible-changes/highlights/#isemailavailable-api + ## Next steps - [Overview](./readme) diff --git a/docs/magento/readme.md b/docs/magento/readme.md index 5172dc07fc..38ef59ecfc 100644 --- a/docs/magento/readme.md +++ b/docs/magento/readme.md @@ -70,16 +70,6 @@ Remove the URL suffixes from products and categories. (default is `.html`) `Stores -> Configuration -> Catalog -> Catalog -> Search Engine Optimization -> Product URL Suffix` `Stores -> Configuration -> Catalog -> Catalog -> Search Engine Optimization -> Category URL Suffix` -### Enable guest checkout login - -During customer login, GraphCommerce queries Magento to determine whether the -customer account already exists. To do this the following setting must be set to -Yes: -`Stores -> Configuration -> Sales -> Checkout -> Checkout Options -> Enable Guest Checkout Login` - -If this is not set correctly, customers will not be able to log in, since they -will always be prompted to create a new account. - ## Optional packages - [Store Pickup / MSI](https://github.com/graphcommerce-org/graphcommerce/tree/main/packages/magento-cart-pickup) From 26d46f8411ad894249781b5eaf351a336d71b8fa Mon Sep 17 00:00:00 2001 From: Hans Nieser Date: Tue, 31 Oct 2023 12:42:02 +0100 Subject: [PATCH 07/11] Fix typo --- docs/magento/known-issues.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/magento/known-issues.md b/docs/magento/known-issues.md index 8803ad0a27..ad3f267d4a 100644 --- a/docs/magento/known-issues.md +++ b/docs/magento/known-issues.md @@ -27,7 +27,7 @@ During customer login, GraphCommerce queries Magento to determine whether the customer account already exists or not. If not, the sign-up form is shown instead. -In Magento 2.4.7+ and recent security patch updates, the behavior of the +In Magento 2.4.7+ and recent security updates, the behavior of the `isEmailAvailable` query that is used to do this was made dependent on the `Enable Guest Checkout Login` configuration setting. If disabled, this query will always return `true`, resulting in the sign-up form always being shown, From 4c313fb93cdd193d4bec6d1d7230f660d66a1d83 Mon Sep 17 00:00:00 2001 From: Hans Nieser Date: Tue, 31 Oct 2023 14:52:25 +0100 Subject: [PATCH 08/11] Document affected Magento versions --- docs/magento/known-issues.md | 34 ++++++++++++++++++++++------------ 1 file changed, 22 insertions(+), 12 deletions(-) diff --git a/docs/magento/known-issues.md b/docs/magento/known-issues.md index ad3f267d4a..8ede54b276 100644 --- a/docs/magento/known-issues.md +++ b/docs/magento/known-issues.md @@ -8,30 +8,40 @@ An overview of bugs and limitations you may run into with Magento's GraphQL API: ## Cart-related mutations result in `Can not find cart with ID` or `Cart isn't active` errors -This is caused by a regression in Magento 2.4.6, which results in some GraphQL -errors no longer getting a category extension string (such as -`graphql-no-such-entity`). Normally, these errors are handling by automatically -creating a new cart, but without the proper error category this error-handling -logic is nog triggered. +Affected Magento versions: + +- `2.4.7`: only `2.4.7-beta1` +- `2.4.6`: all versions + +This is caused by a regression which results in some GraphQL errors no longer +getting a category extension string (such as `graphql-no-such-entity`). +Normally, these errors are handling by automatically creating a new cart, but +without the proper error category this error-handling logic is nog triggered. As a workaround, you can apply -[cart-error-category.patch](./patches/cart-error-category.patch). This -regression is fixed as of Magento 2.4.7-beta2. +[cart-error-category.patch](./patches/cart-error-category.patch). See also https://github.com/magento/magento2/commit/49cbe774020d3dfa6ee2b8702376a947801c9971 ## Customer is forced to sign up, even if already registered +Affected Magento versions: + +- `2.4.7` and all future release series +- `2.4.6`: `2.4.6-p1` and up +- `2.4.5`: `2.4.5-p3` and up +- `2.4.4`: `2.4.4-p4` and up + During customer login, GraphCommerce queries Magento to determine whether the customer account already exists or not. If not, the sign-up form is shown instead. -In Magento 2.4.7+ and recent security updates, the behavior of the -`isEmailAvailable` query that is used to do this was made dependent on the -`Enable Guest Checkout Login` configuration setting. If disabled, this query -will always return `true`, resulting in the sign-up form always being shown, -even if the customer already exists. +In affected Magento versions, the behavior of the `isEmailAvailable` query that +is used to do this was made dependent on the `Enable Guest Checkout Login` +configuration setting. If disabled, this query will always return `true`, +resulting in the sign-up form always being shown, even if the customer already +exists. To solve this, the following setting must be set to `Yes`: `Stores -> Configuration -> Sales -> Checkout -> Checkout Options -> Enable Guest Checkout Login` From 415098713a45c7ea88036611dbf828c02f7cea76 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 2 Nov 2023 11:39:49 +0000 Subject: [PATCH 09/11] chore(release): update prerelease versions --- .changeset/pre.json | 1 + docs/CHANGELOG.md | 6 ++ docs/package.json | 4 +- examples/magento-graphcms/CHANGELOG.md | 2 + examples/magento-graphcms/package.json | 98 +++++++++---------- packages/address-fields-nl/CHANGELOG.md | 2 + packages/address-fields-nl/package.json | 18 ++-- packages/algolia-search/CHANGELOG.md | 2 + packages/algolia-search/package.json | 26 ++--- packages/cli/CHANGELOG.md | 2 + packages/cli/package.json | 12 +-- .../demo-magento-graphcommerce/CHANGELOG.md | 2 + .../demo-magento-graphcommerce/package.json | 12 +-- 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 | 10 +- 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 | 10 +- packages/framer-scroller/package.json | 12 +-- packages/framer-utils/CHANGELOG.md | 2 + packages/framer-utils/package.json | 8 +- packages/googleanalytics/CHANGELOG.md | 2 + packages/googleanalytics/package.json | 22 ++--- packages/googlerecaptcha/CHANGELOG.md | 2 + packages/googlerecaptcha/package.json | 12 +-- packages/googletagmanager/CHANGELOG.md | 2 + packages/googletagmanager/package.json | 12 +-- packages/graphql-mesh/CHANGELOG.md | 2 + packages/graphql-mesh/package.json | 8 +- packages/graphql/CHANGELOG.md | 2 + packages/graphql/package.json | 12 +-- packages/hygraph-cli/CHANGELOG.md | 2 + packages/hygraph-cli/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 | 14 +-- packages/image/CHANGELOG.md | 2 + packages/image/example/CHANGELOG.md | 2 + packages/image/example/package.json | 8 +- packages/image/package.json | 10 +- packages/lighthouse/CHANGELOG.md | 2 + packages/lighthouse/package.json | 8 +- packages/lingui-next/CHANGELOG.md | 2 + packages/lingui-next/package.json | 12 +-- .../magento-cart-billing-address/CHANGELOG.md | 2 + .../magento-cart-billing-address/package.json | 24 ++--- 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 | 20 ++-- 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 | 24 ++--- .../magento-cart-payment-method/CHANGELOG.md | 2 + .../magento-cart-payment-method/package.json | 24 ++--- packages/magento-cart-pickup/CHANGELOG.md | 2 + packages/magento-cart-pickup/package.json | 26 ++--- .../CHANGELOG.md | 2 + .../package.json | 22 ++--- .../magento-cart-shipping-method/CHANGELOG.md | 2 + .../magento-cart-shipping-method/package.json | 24 ++--- 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 ++--- .../magento-customer-account/CHANGELOG.md | 2 + .../magento-customer-account/package.json | 22 ++--- packages/magento-customer-order/CHANGELOG.md | 2 + packages/magento-customer-order/package.json | 22 ++--- packages/magento-customer/CHANGELOG.md | 2 + packages/magento-customer/package.json | 26 ++--- 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-pagebuilder/CHANGELOG.md | 2 + packages/magento-pagebuilder/package.json | 20 ++-- packages/magento-payment-adyen/CHANGELOG.md | 2 + packages/magento-payment-adyen/package.json | 26 ++--- .../magento-payment-braintree/CHANGELOG.md | 2 + .../magento-payment-braintree/package.json | 28 +++--- .../magento-payment-included/CHANGELOG.md | 2 + .../magento-payment-included/package.json | 28 +++--- packages/magento-payment-klarna/CHANGELOG.md | 2 + packages/magento-payment-klarna/package.json | 18 ++-- .../magento-payment-multisafepay/CHANGELOG.md | 2 + .../magento-payment-multisafepay/package.json | 36 +++---- packages/magento-payment-paypal/CHANGELOG.md | 2 + packages/magento-payment-paypal/package.json | 22 ++--- 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 | 34 +++---- .../magento-product-downloadable/CHANGELOG.md | 2 + .../magento-product-downloadable/package.json | 18 ++-- packages/magento-product-grouped/CHANGELOG.md | 2 + packages/magento-product-grouped/package.json | 18 ++-- 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 ++--- packages/magento-review/CHANGELOG.md | 2 + packages/magento-review/package.json | 24 ++--- packages/magento-search/CHANGELOG.md | 2 + packages/magento-search/package.json | 20 ++-- packages/magento-store/CHANGELOG.md | 2 + packages/magento-store/package.json | 16 +-- packages/magento-wishlist/CHANGELOG.md | 2 + packages/magento-wishlist/package.json | 26 ++--- 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 +- 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/next-config/CHANGELOG.md | 2 + packagesDev/next-config/package.json | 2 +- packagesDev/prettier-config/CHANGELOG.md | 2 + packagesDev/prettier-config/package.json | 2 +- packagesDev/typescript-config/CHANGELOG.md | 2 + packagesDev/typescript-config/package.json | 2 +- 145 files changed, 796 insertions(+), 647 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index df1167a21e..dd6ea777b6 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -79,6 +79,7 @@ "brown-planes-retire", "curvy-grapes-accept", "forty-rocks-bow", + "friendly-dogs-shop", "friendly-islands-cough", "fuzzy-clocks-hug", "itchy-snakes-film", diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 624963a2b0..4101ccb6b1 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 7.1.0-canary.31 + +### Minor Changes + +- [#2106](https://github.com/graphcommerce-org/graphcommerce/pull/2106) [`9f8c3cac2`](https://github.com/graphcommerce-org/graphcommerce/commit/9f8c3cac214006315055f37cf8d4a783eb99a7ec) - Split off Magento known issues to separate page ([@hnsr](https://github.com/hnsr)) + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/docs/package.json b/docs/package.json index 7d87e23f55..3a045bf540 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": true, "devDependencies": { - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30" + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31" }, "prettier": "@graphcommerce/prettier-config-pwa" } diff --git a/examples/magento-graphcms/CHANGELOG.md b/examples/magento-graphcms/CHANGELOG.md index 6c266f4099..3a7e99e2bb 100644 --- a/examples/magento-graphcms/CHANGELOG.md +++ b/examples/magento-graphcms/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/examples/magento-graphcms/package.json b/examples/magento-graphcms/package.json index d5d1496051..1f038497c5 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "private": true, "sideEffects": false, "engines": { @@ -20,51 +20,51 @@ }, "dependencies": { "@ducanh2912/next-pwa": "9.5.0", - "@graphcommerce/cli": "7.1.0-canary.30", - "@graphcommerce/demo-magento-graphcommerce": "7.1.0-canary.30", - "@graphcommerce/ecommerce-ui": "7.1.0-canary.30", - "@graphcommerce/framer-next-pages": "7.1.0-canary.30", - "@graphcommerce/framer-scroller": "7.1.0-canary.30", - "@graphcommerce/framer-utils": "7.1.0-canary.30", - "@graphcommerce/googleanalytics": "7.1.0-canary.30", - "@graphcommerce/googlerecaptcha": "7.1.0-canary.30", - "@graphcommerce/googletagmanager": "7.1.0-canary.30", - "@graphcommerce/graphcms-ui": "7.1.0-canary.30", - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/graphql-mesh": "7.1.0-canary.30", - "@graphcommerce/hygraph-cli": "7.1.0-canary.30", - "@graphcommerce/hygraph-dynamic-rows": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/lingui-next": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-cart-billing-address": "7.1.0-canary.30", - "@graphcommerce/magento-cart-checkout": "7.1.0-canary.30", - "@graphcommerce/magento-cart-coupon": "7.1.0-canary.30", - "@graphcommerce/magento-cart-email": "7.1.0-canary.30", - "@graphcommerce/magento-cart-items": "7.1.0-canary.30", - "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.30", - "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.30", - "@graphcommerce/magento-cart-shipping-method": "7.1.0-canary.30", - "@graphcommerce/magento-category": "7.1.0-canary.30", - "@graphcommerce/magento-cms": "7.1.0-canary.30", - "@graphcommerce/magento-compare": "7.1.0-canary.30", - "@graphcommerce/magento-customer": "7.1.0-canary.30", - "@graphcommerce/magento-graphql": "7.1.0-canary.30", - "@graphcommerce/magento-newsletter": "7.1.0-canary.30", - "@graphcommerce/magento-payment-included": "7.1.0-canary.30", - "@graphcommerce/magento-product": "7.1.0-canary.30", - "@graphcommerce/magento-product-bundle": "7.1.0-canary.30", - "@graphcommerce/magento-product-configurable": "7.1.0-canary.30", - "@graphcommerce/magento-product-downloadable": "7.1.0-canary.30", - "@graphcommerce/magento-product-grouped": "7.1.0-canary.30", - "@graphcommerce/magento-product-simple": "7.1.0-canary.30", - "@graphcommerce/magento-product-virtual": "7.1.0-canary.30", - "@graphcommerce/magento-review": "7.1.0-canary.30", - "@graphcommerce/magento-search": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/magento-wishlist": "7.1.0-canary.30", - "@graphcommerce/next-config": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", + "@graphcommerce/cli": "7.1.0-canary.31", + "@graphcommerce/demo-magento-graphcommerce": "7.1.0-canary.31", + "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", + "@graphcommerce/framer-next-pages": "7.1.0-canary.31", + "@graphcommerce/framer-scroller": "7.1.0-canary.31", + "@graphcommerce/framer-utils": "7.1.0-canary.31", + "@graphcommerce/googleanalytics": "7.1.0-canary.31", + "@graphcommerce/googlerecaptcha": "7.1.0-canary.31", + "@graphcommerce/googletagmanager": "7.1.0-canary.31", + "@graphcommerce/graphcms-ui": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/graphql-mesh": "7.1.0-canary.31", + "@graphcommerce/hygraph-cli": "7.1.0-canary.31", + "@graphcommerce/hygraph-dynamic-rows": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/lingui-next": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-cart-billing-address": "7.1.0-canary.31", + "@graphcommerce/magento-cart-checkout": "7.1.0-canary.31", + "@graphcommerce/magento-cart-coupon": "7.1.0-canary.31", + "@graphcommerce/magento-cart-email": "7.1.0-canary.31", + "@graphcommerce/magento-cart-items": "7.1.0-canary.31", + "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.31", + "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.31", + "@graphcommerce/magento-cart-shipping-method": "7.1.0-canary.31", + "@graphcommerce/magento-category": "7.1.0-canary.31", + "@graphcommerce/magento-cms": "7.1.0-canary.31", + "@graphcommerce/magento-compare": "7.1.0-canary.31", + "@graphcommerce/magento-customer": "7.1.0-canary.31", + "@graphcommerce/magento-graphql": "7.1.0-canary.31", + "@graphcommerce/magento-newsletter": "7.1.0-canary.31", + "@graphcommerce/magento-payment-included": "7.1.0-canary.31", + "@graphcommerce/magento-product": "7.1.0-canary.31", + "@graphcommerce/magento-product-bundle": "7.1.0-canary.31", + "@graphcommerce/magento-product-configurable": "7.1.0-canary.31", + "@graphcommerce/magento-product-downloadable": "7.1.0-canary.31", + "@graphcommerce/magento-product-grouped": "7.1.0-canary.31", + "@graphcommerce/magento-product-simple": "7.1.0-canary.31", + "@graphcommerce/magento-product-virtual": "7.1.0-canary.31", + "@graphcommerce/magento-review": "7.1.0-canary.31", + "@graphcommerce/magento-search": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/magento-wishlist": "7.1.0-canary.31", + "@graphcommerce/next-config": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", "@lingui/core": "4.4.2", "@lingui/macro": "4.4.2", "@lingui/react": "4.4.2", @@ -89,9 +89,9 @@ "graphql-jit": "0.8.2" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", "@lingui/cli": "4.4.2", "@playwright/test": "1.37.1", "@types/node": "^16", diff --git a/packages/address-fields-nl/CHANGELOG.md b/packages/address-fields-nl/CHANGELOG.md index bbb1d75e5f..d86ce3ac3c 100644 --- a/packages/address-fields-nl/CHANGELOG.md +++ b/packages/address-fields-nl/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/address-fields-nl +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/address-fields-nl/package.json b/packages/address-fields-nl/package.json index 8294288c75..162d91a40c 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.30", - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/magento-customer": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/magento-customer": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/algolia-search/CHANGELOG.md b/packages/algolia-search/CHANGELOG.md index 25abf67f19..19fdc673bb 100644 --- a/packages/algolia-search/CHANGELOG.md +++ b/packages/algolia-search/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/algolia-search +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/algolia-search/package.json b/packages/algolia-search/package.json index 28994798e4..4431b17615 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,20 +12,20 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/next-config": "^7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/next-config": "^7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/ecommerce-ui": "7.1.0-canary.30", - "@graphcommerce/magento-search": "7.1.0-canary.30", - "@graphcommerce/next-config": "^7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", - "@graphcommerce/magento-product": "7.1.0-canary.30", - "@graphcommerce/graphql-mesh": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", + "@graphcommerce/magento-search": "7.1.0-canary.31", + "@graphcommerce/next-config": "^7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/magento-product": "7.1.0-canary.31", + "@graphcommerce/graphql-mesh": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", "algoliasearch": "^4.15.0", "react-instantsearch-hooks-web": "^6.41.0" }, diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 10a3267f2f..4127acd59a 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/cli +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/cli/package.json b/packages/cli/package.json index c11d9c1240..e39625fe69 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "author": "", "license": "MIT", "scripts": { @@ -24,8 +24,8 @@ "graphcommerce": "dist/bin/graphcommerce.js" }, "dependencies": { - "@graphcommerce/hygraph-cli": "7.1.0-canary.30", - "@graphcommerce/next-config": "7.1.0-canary.30", + "@graphcommerce/hygraph-cli": "7.1.0-canary.31", + "@graphcommerce/next-config": "7.1.0-canary.31", "@graphql-codegen/cli": "5.0.0", "@graphql-mesh/cli": "latest", "@graphql-mesh/cross-helpers": "latest", @@ -44,9 +44,9 @@ "graphql": "^16.7.1" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", "react": "^18.2.0", "typescript": "5.2.2" }, diff --git a/packages/demo-magento-graphcommerce/CHANGELOG.md b/packages/demo-magento-graphcommerce/CHANGELOG.md index 050cd34502..e41102b52e 100644 --- a/packages/demo-magento-graphcommerce/CHANGELOG.md +++ b/packages/demo-magento-graphcommerce/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/demo-magento-graphcommerce +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/demo-magento-graphcommerce/package.json b/packages/demo-magento-graphcommerce/package.json index e129e9c988..117ce3fd5d 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -15,9 +15,9 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "peerDependencies": { "@mui/material": "^5.10.16", @@ -26,7 +26,7 @@ "react-dom": "^18.2.0" }, "dependencies": { - "@graphcommerce/magento-product": "7.1.0-canary.30", - "@graphcommerce/magento-product-configurable": "7.1.0-canary.30" + "@graphcommerce/magento-product": "7.1.0-canary.31", + "@graphcommerce/magento-product-configurable": "7.1.0-canary.31" } } diff --git a/packages/ecommerce-ui/CHANGELOG.md b/packages/ecommerce-ui/CHANGELOG.md index 73520f30d1..31dc83f98b 100644 --- a/packages/ecommerce-ui/CHANGELOG.md +++ b/packages/ecommerce-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/ecommerce-ui +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/ecommerce-ui/package.json b/packages/ecommerce-ui/package.json index ff0f665083..0f972771f0 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", - "@graphcommerce/react-hook-form": "7.1.0-canary.30" + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/react-hook-form": "7.1.0-canary.31" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/framer-next-pages/CHANGELOG.md b/packages/framer-next-pages/CHANGELOG.md index f03042c2b1..3b99a3aa39 100644 --- a/packages/framer-next-pages/CHANGELOG.md +++ b/packages/framer-next-pages/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/framer-next-pages/example/CHANGELOG.md b/packages/framer-next-pages/example/CHANGELOG.md index 7d576b5ed8..5e2b52b64d 100644 --- a/packages/framer-next-pages/example/CHANGELOG.md +++ b/packages/framer-next-pages/example/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/framer-next-pages/example/package.json b/packages/framer-next-pages/example/package.json index 86d36db2b0..229ef81a20 100644 --- a/packages/framer-next-pages/example/package.json +++ b/packages/framer-next-pages/example/package.json @@ -3,17 +3,17 @@ "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", "private": true, - "version": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "scripts": { "dev": "next", "build": "next build", "start": "next start" }, "dependencies": { - "@graphcommerce/framer-next-pages": "7.1.0-canary.30", - "@graphcommerce/lingui-next": "7.1.0-canary.30", - "@graphcommerce/next-config": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", + "@graphcommerce/framer-next-pages": "7.1.0-canary.31", + "@graphcommerce/lingui-next": "7.1.0-canary.31", + "@graphcommerce/next-config": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", "@mui/material": "5.14.7", "framer-motion": "10.16.3", "next": "13.4.20-canary.16", diff --git a/packages/framer-next-pages/package.json b/packages/framer-next-pages/package.json index 8a49c71359..68de1e461a 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,12 +12,12 @@ } }, "dependencies": { - "@graphcommerce/framer-utils": "7.1.0-canary.30" + "@graphcommerce/framer-utils": "7.1.0-canary.31" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "peerDependencies": { "framer-motion": "^10.0.0", diff --git a/packages/framer-scroller/CHANGELOG.md b/packages/framer-scroller/CHANGELOG.md index 33c8ccb208..c281aa7c5e 100644 --- a/packages/framer-scroller/CHANGELOG.md +++ b/packages/framer-scroller/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/framer-scroller/example/CHANGELOG.md b/packages/framer-scroller/example/CHANGELOG.md index 769c42126a..a8d7dcfbf9 100644 --- a/packages/framer-scroller/example/CHANGELOG.md +++ b/packages/framer-scroller/example/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/framer-scroller/example/package.json b/packages/framer-scroller/example/package.json index d4372eed76..9e312fc8d7 100644 --- a/packages/framer-scroller/example/package.json +++ b/packages/framer-scroller/example/package.json @@ -3,17 +3,17 @@ "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", "private": true, - "version": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "scripts": { "dev": "next", "build": "next build", "start": "next start" }, "dependencies": { - "@graphcommerce/framer-scroller": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/next-config": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", + "@graphcommerce/framer-scroller": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/next-config": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", "@mui/material": "5.14.7", "framer-motion": "10.16.3", "next": "13.4.20-canary.16", diff --git a/packages/framer-scroller/package.json b/packages/framer-scroller/package.json index 994669975a..0e3aa1b9d6 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -16,13 +16,13 @@ }, "dependencies": { "popmotion": "11.0.5", - "@graphcommerce/framer-utils": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30" + "@graphcommerce/framer-utils": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "peerDependencies": { "@mui/material": "^5.10.16", diff --git a/packages/framer-utils/CHANGELOG.md b/packages/framer-utils/CHANGELOG.md index a9ecac5e26..7318fea6a4 100644 --- a/packages/framer-utils/CHANGELOG.md +++ b/packages/framer-utils/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/framer-utils/package.json b/packages/framer-utils/package.json index 37f6ad26a0..f7ad03b748 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -15,9 +15,9 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "peerDependencies": { "framer-motion": "^10.0.0", diff --git a/packages/googleanalytics/CHANGELOG.md b/packages/googleanalytics/CHANGELOG.md index f59fc3c882..80c048b352 100644 --- a/packages/googleanalytics/CHANGELOG.md +++ b/packages/googleanalytics/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/googleanalytics/package.json b/packages/googleanalytics/package.json index b569fd5608..1f34088ab6 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "dependencies": { - "@graphcommerce/graphql-mesh": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.30", - "@graphcommerce/magento-cart-shipping-method": "7.1.0-canary.30", - "@graphcommerce/magento-product": "7.1.0-canary.30", - "@graphcommerce/next-config": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30" + "@graphcommerce/graphql-mesh": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.31", + "@graphcommerce/magento-cart-shipping-method": "7.1.0-canary.31", + "@graphcommerce/magento-product": "7.1.0-canary.31", + "@graphcommerce/next-config": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", "@types/gtag.js": "^0.0.13" }, "peerDependencies": { diff --git a/packages/googlerecaptcha/CHANGELOG.md b/packages/googlerecaptcha/CHANGELOG.md index f63ad29862..c1648d678e 100644 --- a/packages/googlerecaptcha/CHANGELOG.md +++ b/packages/googlerecaptcha/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/googlerecaptcha/package.json b/packages/googlerecaptcha/package.json index 3b9f7b59c7..39155f307c 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", "@types/grecaptcha": "^3.0.4" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30" + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31" }, "peerDependencies": { "next": "^13.2.0", diff --git a/packages/googletagmanager/CHANGELOG.md b/packages/googletagmanager/CHANGELOG.md index 21394f8f1f..1fed3eb799 100644 --- a/packages/googletagmanager/CHANGELOG.md +++ b/packages/googletagmanager/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/googletagmanager/package.json b/packages/googletagmanager/package.json index e143358bec..b60fc25cac 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", "@types/gapi.client.tagmanager": "^2.0.2" }, "dependencies": { - "@graphcommerce/magento-product": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30" + "@graphcommerce/magento-product": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31" }, "peerDependencies": { "next": "^13.2.0", diff --git a/packages/graphql-mesh/CHANGELOG.md b/packages/graphql-mesh/CHANGELOG.md index e77d85f30d..55775c2afb 100644 --- a/packages/graphql-mesh/CHANGELOG.md +++ b/packages/graphql-mesh/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/graphql-mesh/package.json b/packages/graphql-mesh/package.json index 7bff3bb046..9611c3d3cf 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "author": "", "license": "MIT", "main": "index.ts", @@ -28,9 +28,9 @@ "graphql": "^16.7.1" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", "typescript": "5.2.2" }, "sideEffects": false, diff --git a/packages/graphql/CHANGELOG.md b/packages/graphql/CHANGELOG.md index b36616338f..2285375e91 100644 --- a/packages/graphql/CHANGELOG.md +++ b/packages/graphql/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/graphql/package.json b/packages/graphql/package.json index 3097130127..5fc594278c 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "main": "index.ts", "prettier": "@graphcommerce/prettier-config-pwa", @@ -14,8 +14,8 @@ }, "dependencies": { "@apollo/client": "~3.8.2", - "@graphcommerce/graphql-codegen-near-operation-file": "7.1.0-canary.30", - "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "7.1.0-canary.30", + "@graphcommerce/graphql-codegen-near-operation-file": "7.1.0-canary.31", + "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "7.1.0-canary.31", "@graphql-codegen/add": "5.0.0", "@graphql-codegen/fragment-matcher": "5.0.0", "@graphql-codegen/introspection": "4.0.0", @@ -28,9 +28,9 @@ "apollo3-cache-persist": "^0.14.1" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "peerDependencies": { "graphql": "^16.7.1", diff --git a/packages/hygraph-cli/CHANGELOG.md b/packages/hygraph-cli/CHANGELOG.md index 019f253c29..99f6d04cea 100644 --- a/packages/hygraph-cli/CHANGELOG.md +++ b/packages/hygraph-cli/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/hygraph-cli +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/hygraph-cli/package.json b/packages/hygraph-cli/package.json index 8e14753656..8aededc2a5 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "author": "", "license": "MIT", "scripts": { @@ -15,7 +15,7 @@ "types": "src/index.ts", "dependencies": { "@apollo/client": "~3.8.2", - "@graphcommerce/next-config": "7.1.0-canary.30", + "@graphcommerce/next-config": "7.1.0-canary.31", "@hygraph/management-sdk": "1.2.3", "@whatwg-node/fetch": "^0.9.4", "graphql-tag": "^2.12.6", @@ -26,9 +26,9 @@ "graphql": "^16.7.1" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", "@types/prompts": "^2.4.4", "typescript": "5.2.2" }, diff --git a/packages/hygraph-dynamic-rows/CHANGELOG.md b/packages/hygraph-dynamic-rows/CHANGELOG.md index 232803b039..c622090c1d 100644 --- a/packages/hygraph-dynamic-rows/CHANGELOG.md +++ b/packages/hygraph-dynamic-rows/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/hygraph-dynamic-rows +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/hygraph-dynamic-rows/package.json b/packages/hygraph-dynamic-rows/package.json index ac09f0907b..7673446bf2 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,15 +12,15 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", - "@graphcommerce/graphcms-ui": "7.1.0-canary.30" + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/graphcms-ui": "7.1.0-canary.31" }, "peerDependencies": { "@mui/material": "^5.10.16", diff --git a/packages/hygraph-ui/CHANGELOG.md b/packages/hygraph-ui/CHANGELOG.md index 76d10dc349..cf2ddef657 100644 --- a/packages/hygraph-ui/CHANGELOG.md +++ b/packages/hygraph-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/hygraph-ui/package.json b/packages/hygraph-ui/package.json index 1aa71b7931..ff750b9f92 100644 --- a/packages/hygraph-ui/package.json +++ b/packages/hygraph-ui/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphcms-ui", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30" + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31" }, "peerDependencies": { "@mui/material": "^5.10.16", diff --git a/packages/image/CHANGELOG.md b/packages/image/CHANGELOG.md index 1b6074b57b..346c772516 100644 --- a/packages/image/CHANGELOG.md +++ b/packages/image/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/image/example/CHANGELOG.md b/packages/image/example/CHANGELOG.md index 1292ce0b6b..dfe8185798 100644 --- a/packages/image/example/CHANGELOG.md +++ b/packages/image/example/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/image/example/package.json b/packages/image/example/package.json index 3ca212b3a4..438f8f1fb2 100644 --- a/packages/image/example/package.json +++ b/packages/image/example/package.json @@ -3,16 +3,16 @@ "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", "private": true, - "version": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "scripts": { "dev": "next", "build": "next build", "start": "next start" }, "dependencies": { - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/next-config": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/next-config": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", "framer-motion": "^10.16.3", "next": "13.4.20-canary.16", "react": "^18.2.0", diff --git a/packages/image/package.json b/packages/image/package.json index 350b07bdbd..6a47ce81d5 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -15,12 +15,12 @@ } }, "dependencies": { - "@graphcommerce/framer-utils": "7.1.0-canary.30" + "@graphcommerce/framer-utils": "7.1.0-canary.31" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "peerDependencies": { "@mui/material": "^5.10.16", diff --git a/packages/lighthouse/CHANGELOG.md b/packages/lighthouse/CHANGELOG.md index a857a5b643..31d54af9f7 100644 --- a/packages/lighthouse/CHANGELOG.md +++ b/packages/lighthouse/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/lighthouse/package.json b/packages/lighthouse/package.json index 158f8f5d7c..617c46cf52 100644 --- a/packages/lighthouse/package.json +++ b/packages/lighthouse/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/lighthouse", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "private": true, "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", @@ -13,9 +13,9 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "peerDependencies": { "next": "^13.2.0" diff --git a/packages/lingui-next/CHANGELOG.md b/packages/lingui-next/CHANGELOG.md index 9f607c045c..ee4b2d7cf0 100644 --- a/packages/lingui-next/CHANGELOG.md +++ b/packages/lingui-next/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/lingui-next/package.json b/packages/lingui-next/package.json index da09bd718c..8451fe6acf 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -15,13 +15,13 @@ } }, "dependencies": { - "@graphcommerce/next-config": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30" + "@graphcommerce/next-config": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", "@lingui/conf": "^4.2.1" }, "peerDependencies": { diff --git a/packages/magento-cart-billing-address/CHANGELOG.md b/packages/magento-cart-billing-address/CHANGELOG.md index be7563de72..1241ab0b34 100644 --- a/packages/magento-cart-billing-address/CHANGELOG.md +++ b/packages/magento-cart-billing-address/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-cart-billing-address/package.json b/packages/magento-cart-billing-address/package.json index 7eef94964b..cc1aec0406 100644 --- a/packages/magento-cart-billing-address/package.json +++ b/packages/magento-cart-billing-address/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-billing-address", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,19 +12,19 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/framer-next-pages": "7.1.0-canary.30", - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-customer": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", - "@graphcommerce/react-hook-form": "7.1.0-canary.30" + "@graphcommerce/framer-next-pages": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-customer": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/react-hook-form": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-checkout/CHANGELOG.md b/packages/magento-cart-checkout/CHANGELOG.md index 18d464ad53..6152da8b35 100644 --- a/packages/magento-cart-checkout/CHANGELOG.md +++ b/packages/magento-cart-checkout/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-cart-checkout/package.json b/packages/magento-cart-checkout/package.json index 6d9b27c82c..e33183d396 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,20 +12,20 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-cart-coupon": "7.1.0-canary.30", - "@graphcommerce/magento-cart-items": "7.1.0-canary.30", - "@graphcommerce/magento-customer": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", - "@graphcommerce/react-hook-form": "7.1.0-canary.30" + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-cart-coupon": "7.1.0-canary.31", + "@graphcommerce/magento-cart-items": "7.1.0-canary.31", + "@graphcommerce/magento-customer": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/react-hook-form": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-coupon/CHANGELOG.md b/packages/magento-cart-coupon/CHANGELOG.md index 6705e689a7..4e298cfc91 100644 --- a/packages/magento-cart-coupon/CHANGELOG.md +++ b/packages/magento-cart-coupon/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-cart-coupon/package.json b/packages/magento-cart-coupon/package.json index 17cb280ac4..8a312dea74 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", - "@graphcommerce/react-hook-form": "7.1.0-canary.30" + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/react-hook-form": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-email/CHANGELOG.md b/packages/magento-cart-email/CHANGELOG.md index 8b99c760ae..22ac491df3 100644 --- a/packages/magento-cart-email/CHANGELOG.md +++ b/packages/magento-cart-email/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-cart-email/package.json b/packages/magento-cart-email/package.json index 44d0ab5df7..70f6f571cb 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,20 +12,20 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.30", - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-customer": "7.1.0-canary.30", - "@graphcommerce/magento-product": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", - "@graphcommerce/react-hook-form": "7.1.0-canary.30" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-customer": "7.1.0-canary.31", + "@graphcommerce/magento-product": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/react-hook-form": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-items/CHANGELOG.md b/packages/magento-cart-items/CHANGELOG.md index 42ed533869..aa905cb4b7 100644 --- a/packages/magento-cart-items/CHANGELOG.md +++ b/packages/magento-cart-items/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-cart-items/package.json b/packages/magento-cart-items/package.json index 973803b901..a51f25d098 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,19 +12,19 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-customer": "7.1.0-canary.30", - "@graphcommerce/magento-product": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", - "@graphcommerce/react-hook-form": "7.1.0-canary.30" + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-customer": "7.1.0-canary.31", + "@graphcommerce/magento-product": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/react-hook-form": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-payment-method/CHANGELOG.md b/packages/magento-cart-payment-method/CHANGELOG.md index 62fe1007ac..ef2c976cc2 100644 --- a/packages/magento-cart-payment-method/CHANGELOG.md +++ b/packages/magento-cart-payment-method/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-cart-payment-method/package.json b/packages/magento-cart-payment-method/package.json index 49edd8486c..d03f9cd8a3 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,19 +12,19 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30", - "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", + "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/framer-scroller": "7.1.0-canary.30", - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", - "@graphcommerce/react-hook-form": "7.1.0-canary.30" + "@graphcommerce/framer-scroller": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/react-hook-form": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-pickup/CHANGELOG.md b/packages/magento-cart-pickup/CHANGELOG.md index 4f01221890..1ce7cbcefc 100644 --- a/packages/magento-cart-pickup/CHANGELOG.md +++ b/packages/magento-cart-pickup/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-cart-pickup/package.json b/packages/magento-cart-pickup/package.json index 196dfa8cf5..3a81fc0c99 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,20 +12,20 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.30", - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/graphql-mesh": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-cart-shipping-method": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", - "@graphcommerce/react-hook-form": "7.1.0-canary.30" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/graphql-mesh": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-cart-shipping-method": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/react-hook-form": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-shipping-address/CHANGELOG.md b/packages/magento-cart-shipping-address/CHANGELOG.md index f256b6d687..98c6c31105 100644 --- a/packages/magento-cart-shipping-address/CHANGELOG.md +++ b/packages/magento-cart-shipping-address/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-cart-shipping-address/package.json b/packages/magento-cart-shipping-address/package.json index dc2f11f239..8322408e8f 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.30", - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-customer": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-customer": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-shipping-method/CHANGELOG.md b/packages/magento-cart-shipping-method/CHANGELOG.md index 054aac2135..35684b4367 100644 --- a/packages/magento-cart-shipping-method/CHANGELOG.md +++ b/packages/magento-cart-shipping-method/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-cart-shipping-method/package.json b/packages/magento-cart-shipping-method/package.json index 4908d01f11..020f7b276a 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,19 +12,19 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/framer-scroller": "7.1.0-canary.30", - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", - "@graphcommerce/react-hook-form": "7.1.0-canary.30" + "@graphcommerce/framer-scroller": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/react-hook-form": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart/CHANGELOG.md b/packages/magento-cart/CHANGELOG.md index a896c957eb..02ac021c2d 100644 --- a/packages/magento-cart/CHANGELOG.md +++ b/packages/magento-cart/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-cart/package.json b/packages/magento-cart/package.json index e1cc7e4918..3685d4db16 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,22 +12,22 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.30", - "@graphcommerce/framer-utils": "7.1.0-canary.30", - "@graphcommerce/framer-next-pages": "7.1.0-canary.30", - "@graphcommerce/framer-scroller": "7.1.0-canary.30", - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-customer": "7.1.0-canary.30", - "@graphcommerce/magento-graphql": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", - "@graphcommerce/react-hook-form": "7.1.0-canary.30" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", + "@graphcommerce/framer-utils": "7.1.0-canary.31", + "@graphcommerce/framer-next-pages": "7.1.0-canary.31", + "@graphcommerce/framer-scroller": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-customer": "7.1.0-canary.31", + "@graphcommerce/magento-graphql": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/react-hook-form": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-category/CHANGELOG.md b/packages/magento-category/CHANGELOG.md index eb1ad75588..4cb36ab351 100644 --- a/packages/magento-category/CHANGELOG.md +++ b/packages/magento-category/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-category/package.json b/packages/magento-category/package.json index ff5f456771..987b1006ba 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/framer-scroller": "7.1.0-canary.30", - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-product": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30" + "@graphcommerce/framer-scroller": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-product": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-cms/CHANGELOG.md b/packages/magento-cms/CHANGELOG.md index a42df1fb9c..cace01de35 100644 --- a/packages/magento-cms/CHANGELOG.md +++ b/packages/magento-cms/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-cms/package.json b/packages/magento-cms/package.json index 5ac9483a47..bc5a0a052a 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,13 +12,13 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30" + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-compare/CHANGELOG.md b/packages/magento-compare/CHANGELOG.md index 97cae80f1d..de4f54f185 100644 --- a/packages/magento-compare/CHANGELOG.md +++ b/packages/magento-compare/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-compare +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-compare/package.json b/packages/magento-compare/package.json index e509786888..53d556e986 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.30", - "@graphcommerce/framer-utils": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-product": "7.1.0-canary.30", - "@graphcommerce/framer-next-pages": "7.1.0-canary.30", - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", + "@graphcommerce/framer-utils": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-product": "7.1.0-canary.31", + "@graphcommerce/framer-next-pages": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-customer-account/CHANGELOG.md b/packages/magento-customer-account/CHANGELOG.md index fe728ff00c..daeb14493c 100644 --- a/packages/magento-customer-account/CHANGELOG.md +++ b/packages/magento-customer-account/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-customer-account/package.json b/packages/magento-customer-account/package.json index 3a6e065438..09a7417656 100644 --- a/packages/magento-customer-account/package.json +++ b/packages/magento-customer-account/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-customer-account", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-customer": "7.1.0-canary.30", - "@graphcommerce/magento-graphql": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", - "@graphcommerce/react-hook-form": "7.1.0-canary.30" + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-customer": "7.1.0-canary.31", + "@graphcommerce/magento-graphql": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/react-hook-form": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-customer-order/CHANGELOG.md b/packages/magento-customer-order/CHANGELOG.md index 8f18df8b77..2aa070c92e 100644 --- a/packages/magento-customer-order/CHANGELOG.md +++ b/packages/magento-customer-order/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-customer-order/package.json b/packages/magento-customer-order/package.json index f68bebb556..030ec1a763 100644 --- a/packages/magento-customer-order/package.json +++ b/packages/magento-customer-order/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-customer-order", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/graphql-mesh": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-customer": "7.1.0-canary.30", - "@graphcommerce/magento-graphql": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30" + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/graphql-mesh": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-customer": "7.1.0-canary.31", + "@graphcommerce/magento-graphql": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-customer/CHANGELOG.md b/packages/magento-customer/CHANGELOG.md index 00f6940a9d..d73f718877 100644 --- a/packages/magento-customer/CHANGELOG.md +++ b/packages/magento-customer/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-customer/package.json b/packages/magento-customer/package.json index a60b0c1704..447a9e7312 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,20 +12,20 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.30", - "@graphcommerce/framer-utils": "7.1.0-canary.30", - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/graphql-mesh": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-graphql": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", - "@graphcommerce/react-hook-form": "7.1.0-canary.30" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", + "@graphcommerce/framer-utils": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/graphql-mesh": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-graphql": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/react-hook-form": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-graphql/CHANGELOG.md b/packages/magento-graphql/CHANGELOG.md index 435ab524ea..6adb1fa6ee 100644 --- a/packages/magento-graphql/CHANGELOG.md +++ b/packages/magento-graphql/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-graphql/package.json b/packages/magento-graphql/package.json index 83340cd223..fc2a712b6e 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "main": "index.ts", "prettier": "@graphcommerce/prettier-config-pwa", @@ -13,12 +13,12 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.30" + "@graphcommerce/graphql": "7.1.0-canary.31" }, "peerDependencies": { "next": "^13.2.0", diff --git a/packages/magento-newsletter/CHANGELOG.md b/packages/magento-newsletter/CHANGELOG.md index 830fcd70db..6b4cbc8763 100644 --- a/packages/magento-newsletter/CHANGELOG.md +++ b/packages/magento-newsletter/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-newsletter/package.json b/packages/magento-newsletter/package.json index 1f34f6835d..dce4de7262 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.30", - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-customer": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", - "@graphcommerce/react-hook-form": "7.1.0-canary.30" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-customer": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/react-hook-form": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-pagebuilder/CHANGELOG.md b/packages/magento-pagebuilder/CHANGELOG.md index fa3b3e16a6..141bd6f271 100644 --- a/packages/magento-pagebuilder/CHANGELOG.md +++ b/packages/magento-pagebuilder/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-pagebuilder +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-pagebuilder/package.json b/packages/magento-pagebuilder/package.json index 75b4ec94b8..12c5c162bc 100644 --- a/packages/magento-pagebuilder/package.json +++ b/packages/magento-pagebuilder/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-pagebuilder", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", "@types/jsdom": "^21.1.2" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/magento-category": "7.1.0-canary.30", - "@graphcommerce/magento-cms": "7.1.0-canary.30", - "@graphcommerce/magento-product": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", - "@graphcommerce/react-hook-form": "7.1.0-canary.30", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/magento-category": "7.1.0-canary.31", + "@graphcommerce/magento-cms": "7.1.0-canary.31", + "@graphcommerce/magento-product": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/react-hook-form": "7.1.0-canary.31", "jsdom": "^22.1.0" }, "peerDependencies": { diff --git a/packages/magento-payment-adyen/CHANGELOG.md b/packages/magento-payment-adyen/CHANGELOG.md index 222b2b3462..da9e0b893c 100644 --- a/packages/magento-payment-adyen/CHANGELOG.md +++ b/packages/magento-payment-adyen/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-adyen +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-payment-adyen/package.json b/packages/magento-payment-adyen/package.json index 1e77b083d9..93705c33c0 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,20 +12,20 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/magento-product": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/magento-product": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.30", - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/graphql-mesh": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/graphql-mesh": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-braintree/CHANGELOG.md b/packages/magento-payment-braintree/CHANGELOG.md index 2f39e8ff22..5b9a7a166d 100644 --- a/packages/magento-payment-braintree/CHANGELOG.md +++ b/packages/magento-payment-braintree/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-payment-braintree/package.json b/packages/magento-payment-braintree/package.json index b9864a1621..55d8174864 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,22 +12,22 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.30", - "@graphcommerce/magento-product": "7.1.0-canary.30", - "@graphcommerce/magento-product-configurable": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.31", + "@graphcommerce/magento-product": "7.1.0-canary.31", + "@graphcommerce/magento-product-configurable": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", "@types/braintree-web": "^3.96.4" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", - "@graphcommerce/react-hook-form": "7.1.0-canary.30", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/react-hook-form": "7.1.0-canary.31", "braintree-web": "^3.95.0-beta-3ds.1" }, "peerDependencies": { diff --git a/packages/magento-payment-included/CHANGELOG.md b/packages/magento-payment-included/CHANGELOG.md index a12b32e25d..d7198e0856 100644 --- a/packages/magento-payment-included/CHANGELOG.md +++ b/packages/magento-payment-included/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-payment-included/package.json b/packages/magento-payment-included/package.json index 574633dd95..6d9bd73e4b 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,21 +12,21 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.30", - "@graphcommerce/magento-product": "7.1.0-canary.30", - "@graphcommerce/magento-product-configurable": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.31", + "@graphcommerce/magento-product": "7.1.0-canary.31", + "@graphcommerce/magento-product-configurable": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", - "@graphcommerce/react-hook-form": "7.1.0-canary.30" + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/react-hook-form": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-klarna/CHANGELOG.md b/packages/magento-payment-klarna/CHANGELOG.md index 98a717c8c2..41127b72f2 100644 --- a/packages/magento-payment-klarna/CHANGELOG.md +++ b/packages/magento-payment-klarna/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-payment-klarna/package.json b/packages/magento-payment-klarna/package.json index 8eab953aad..2c1b39cc84 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "private": true, "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", @@ -13,16 +13,16 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30" + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-multisafepay/CHANGELOG.md b/packages/magento-payment-multisafepay/CHANGELOG.md index 193715cc7f..1bb7c97f1e 100644 --- a/packages/magento-payment-multisafepay/CHANGELOG.md +++ b/packages/magento-payment-multisafepay/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-multisafepay +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-payment-multisafepay/package.json b/packages/magento-payment-multisafepay/package.json index f649917ff8..7c6d6c1418 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,25 +12,25 @@ } }, "devDependencies": { - "@graphcommerce/next-ui": "7.1.0-canary.30", - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.30", - "@graphcommerce/magento-product": "7.1.0-canary.30", - "@graphcommerce/magento-product-configurable": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.31", + "@graphcommerce/magento-product": "7.1.0-canary.31", + "@graphcommerce/magento-product-configurable": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.30", - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/graphql-mesh": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-cart-checkout": "7.1.0-canary.30", - "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", - "@graphcommerce/react-hook-form": "7.1.0-canary.30" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/graphql-mesh": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-cart-checkout": "7.1.0-canary.31", + "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/react-hook-form": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-paypal/CHANGELOG.md b/packages/magento-payment-paypal/CHANGELOG.md index 527b67f58a..7e440fa30e 100644 --- a/packages/magento-payment-paypal/CHANGELOG.md +++ b/packages/magento-payment-paypal/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-paypal +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-payment-paypal/package.json b/packages/magento-payment-paypal/package.json index a848a36daf..75754eece6 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.30", - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-bundle/CHANGELOG.md b/packages/magento-product-bundle/CHANGELOG.md index bc2e2e7789..6b0933aa76 100644 --- a/packages/magento-product-bundle/CHANGELOG.md +++ b/packages/magento-product-bundle/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-product-bundle/package.json b/packages/magento-product-bundle/package.json index 6b849a67be..84d56caf01 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,21 +12,21 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.30", - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-cart-items": "7.1.0-canary.30", - "@graphcommerce/magento-product": "7.1.0-canary.30", - "@graphcommerce/magento-product-simple": "7.1.0-canary.30", - "@graphcommerce/magento-product-virtual": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-cart-items": "7.1.0-canary.31", + "@graphcommerce/magento-product": "7.1.0-canary.31", + "@graphcommerce/magento-product-simple": "7.1.0-canary.31", + "@graphcommerce/magento-product-virtual": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-configurable/CHANGELOG.md b/packages/magento-product-configurable/CHANGELOG.md index c3e8509826..4d76db2461 100644 --- a/packages/magento-product-configurable/CHANGELOG.md +++ b/packages/magento-product-configurable/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-product-configurable/package.json b/packages/magento-product-configurable/package.json index caadf86fca..3495e97979 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,24 +12,24 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.30", - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/graphql-mesh": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-cart-items": "7.1.0-canary.30", - "@graphcommerce/magento-category": "7.1.0-canary.30", - "@graphcommerce/magento-customer": "7.1.0-canary.30", - "@graphcommerce/magento-product": "7.1.0-canary.30", - "@graphcommerce/magento-product-simple": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", - "@graphcommerce/react-hook-form": "7.1.0-canary.30" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/graphql-mesh": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-cart-items": "7.1.0-canary.31", + "@graphcommerce/magento-category": "7.1.0-canary.31", + "@graphcommerce/magento-customer": "7.1.0-canary.31", + "@graphcommerce/magento-product": "7.1.0-canary.31", + "@graphcommerce/magento-product-simple": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/react-hook-form": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-downloadable/CHANGELOG.md b/packages/magento-product-downloadable/CHANGELOG.md index 2688c1d80c..3865a242e3 100644 --- a/packages/magento-product-downloadable/CHANGELOG.md +++ b/packages/magento-product-downloadable/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-product-downloadable/package.json b/packages/magento-product-downloadable/package.json index 6318542bac..2f86779084 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-product": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30" + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-product": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-grouped/CHANGELOG.md b/packages/magento-product-grouped/CHANGELOG.md index 8008762048..3099038713 100644 --- a/packages/magento-product-grouped/CHANGELOG.md +++ b/packages/magento-product-grouped/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-product-grouped/package.json b/packages/magento-product-grouped/package.json index 6bc4b832c6..3ce4fca05b 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-product": "7.1.0-canary.30", - "@graphcommerce/magento-product-simple": "7.1.0-canary.30", - "@graphcommerce/magento-product-virtual": "7.1.0-canary.30" + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-product": "7.1.0-canary.31", + "@graphcommerce/magento-product-simple": "7.1.0-canary.31", + "@graphcommerce/magento-product-virtual": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-simple/CHANGELOG.md b/packages/magento-product-simple/CHANGELOG.md index 7212835f31..6a557a4a60 100644 --- a/packages/magento-product-simple/CHANGELOG.md +++ b/packages/magento-product-simple/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-product-simple/package.json b/packages/magento-product-simple/package.json index 4ac39f5a76..8a3b03dc23 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-cart-items": "7.1.0-canary.30", - "@graphcommerce/magento-product": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30" + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-cart-items": "7.1.0-canary.31", + "@graphcommerce/magento-product": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-virtual/CHANGELOG.md b/packages/magento-product-virtual/CHANGELOG.md index 1449ad793d..695d807e01 100644 --- a/packages/magento-product-virtual/CHANGELOG.md +++ b/packages/magento-product-virtual/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-product-virtual/package.json b/packages/magento-product-virtual/package.json index b1e7edf8a6..97d9146ab4 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-cart-items": "7.1.0-canary.30", - "@graphcommerce/magento-product": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30" + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-cart-items": "7.1.0-canary.31", + "@graphcommerce/magento-product": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-product/CHANGELOG.md b/packages/magento-product/CHANGELOG.md index 37abd881e0..63ab920400 100644 --- a/packages/magento-product/CHANGELOG.md +++ b/packages/magento-product/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-product/package.json b/packages/magento-product/package.json index a2581c883a..fc59c4cc53 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,20 +12,20 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.30", - "@graphcommerce/framer-scroller": "7.1.0-canary.30", - "@graphcommerce/framer-next-pages": "7.1.0-canary.30", - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/graphql-mesh": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", + "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", + "@graphcommerce/framer-scroller": "7.1.0-canary.31", + "@graphcommerce/framer-next-pages": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/graphql-mesh": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", "schema-dts": "^1.1.0" }, "peerDependencies": { diff --git a/packages/magento-review/CHANGELOG.md b/packages/magento-review/CHANGELOG.md index 1c4dcce6cd..f9e1ac294f 100644 --- a/packages/magento-review/CHANGELOG.md +++ b/packages/magento-review/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-review/package.json b/packages/magento-review/package.json index 723b1b220c..f2ad4f1897 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,19 +12,19 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/graphql-mesh": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-customer": "7.1.0-canary.30", - "@graphcommerce/magento-product": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", - "@graphcommerce/react-hook-form": "7.1.0-canary.30", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/graphql-mesh": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-customer": "7.1.0-canary.31", + "@graphcommerce/magento-product": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/react-hook-form": "7.1.0-canary.31", "schema-dts": "^1.1.0" }, "peerDependencies": { diff --git a/packages/magento-search/CHANGELOG.md b/packages/magento-search/CHANGELOG.md index 1a38b79372..423427bece 100644 --- a/packages/magento-search/CHANGELOG.md +++ b/packages/magento-search/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-search/package.json b/packages/magento-search/package.json index 078d6ec184..0259f64598 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.30", - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-product": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", - "@graphcommerce/react-hook-form": "7.1.0-canary.30" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-product": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/react-hook-form": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-store/CHANGELOG.md b/packages/magento-store/CHANGELOG.md index 92b1d2ba12..3ca6f30a75 100644 --- a/packages/magento-store/CHANGELOG.md +++ b/packages/magento-store/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-store/package.json b/packages/magento-store/package.json index ecf3d639a2..94908b32f4 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,15 +12,15 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/graphql-mesh": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30" + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/graphql-mesh": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-wishlist/CHANGELOG.md b/packages/magento-wishlist/CHANGELOG.md index c1f8d393b5..11c1c53c17 100644 --- a/packages/magento-wishlist/CHANGELOG.md +++ b/packages/magento-wishlist/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-wishlist +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/magento-wishlist/package.json b/packages/magento-wishlist/package.json index e955b735da..c0a22f36e8 100644 --- a/packages/magento-wishlist/package.json +++ b/packages/magento-wishlist/package.json @@ -1,6 +1,6 @@ { "name": "@graphcommerce/magento-wishlist", - "version": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "browserslist": [ @@ -13,20 +13,20 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/graphql-mesh": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-customer": "7.1.0-canary.30", - "@graphcommerce/magento-product": "7.1.0-canary.30", - "@graphcommerce/magento-product-configurable": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30" + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/graphql-mesh": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-customer": "7.1.0-canary.31", + "@graphcommerce/magento-product": "7.1.0-canary.31", + "@graphcommerce/magento-product-configurable": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/mollie-magento-payment/CHANGELOG.md b/packages/mollie-magento-payment/CHANGELOG.md index e772f73456..5c915ffce0 100644 --- a/packages/mollie-magento-payment/CHANGELOG.md +++ b/packages/mollie-magento-payment/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/mollie-magento-payment/package.json b/packages/mollie-magento-payment/package.json index 7ecf4b0684..ab21aa236e 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,23 +12,23 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.30", - "@graphcommerce/magento-product": "7.1.0-canary.30", - "@graphcommerce/magento-product-configurable": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.31", + "@graphcommerce/magento-product": "7.1.0-canary.31", + "@graphcommerce/magento-product-configurable": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.30", - "@graphcommerce/graphql": "7.1.0-canary.30", - "@graphcommerce/graphql-mesh": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", - "@graphcommerce/magento-cart": "7.1.0-canary.30", - "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.30", - "@graphcommerce/magento-store": "7.1.0-canary.30", - "@graphcommerce/next-ui": "7.1.0-canary.30", - "@graphcommerce/react-hook-form": "7.1.0-canary.30" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.31", + "@graphcommerce/graphql-mesh": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/magento-cart": "7.1.0-canary.31", + "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.31", + "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/react-hook-form": "7.1.0-canary.31" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/next-ui/CHANGELOG.md b/packages/next-ui/CHANGELOG.md index 014b31dd41..c459054805 100644 --- a/packages/next-ui/CHANGELOG.md +++ b/packages/next-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ### Patch Changes diff --git a/packages/next-ui/package.json b/packages/next-ui/package.json index 6d8e4112e0..28ff05568f 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "author": "", "license": "MIT", "sideEffects": false, @@ -18,18 +18,18 @@ "@emotion/react": "^11.11.1", "@emotion/server": "^11.11.0", "@emotion/styled": "^11.11.0", - "@graphcommerce/framer-next-pages": "7.1.0-canary.30", - "@graphcommerce/framer-scroller": "7.1.0-canary.30", - "@graphcommerce/framer-utils": "7.1.0-canary.30", - "@graphcommerce/image": "7.1.0-canary.30", + "@graphcommerce/framer-next-pages": "7.1.0-canary.31", + "@graphcommerce/framer-scroller": "7.1.0-canary.31", + "@graphcommerce/framer-utils": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.31", "cookie": "^0.5.0", "react-is": "^18.2.0", "schema-dts": "^1.1.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", "@types/cookie": "^0.5.2", "@types/react-is": "^18.2.1", "typescript": "5.2.2" diff --git a/packages/react-hook-form/CHANGELOG.md b/packages/react-hook-form/CHANGELOG.md index 529b08f1aa..1a208bad6f 100644 --- a/packages/react-hook-form/CHANGELOG.md +++ b/packages/react-hook-form/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packages/react-hook-form/package.json b/packages/react-hook-form/package.json index 7d7f57eb81..4a9345684a 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -16,9 +16,9 @@ "react-hook-form": "7.46.1" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", "@testing-library/react": "^14.0.0" }, "peerDependencies": { diff --git a/packagesDev/browserslist-config/CHANGELOG.md b/packagesDev/browserslist-config/CHANGELOG.md index e6df342eb7..d6cec6a8d8 100644 --- a/packagesDev/browserslist-config/CHANGELOG.md +++ b/packagesDev/browserslist-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packagesDev/browserslist-config/package.json b/packagesDev/browserslist-config/package.json index 39d51053cb..1018842284 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "main": "index.js", "sideEffects": false } diff --git a/packagesDev/changeset-changelog/CHANGELOG.md b/packagesDev/changeset-changelog/CHANGELOG.md index e6e5349b63..e6942932eb 100644 --- a/packagesDev/changeset-changelog/CHANGELOG.md +++ b/packagesDev/changeset-changelog/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/changeset-changelog +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packagesDev/changeset-changelog/package.json b/packagesDev/changeset-changelog/package.json index 7d8269bb94..c59056777a 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "type": "commonjs", "main": "dist/index.js", "types": "src/index.ts", diff --git a/packagesDev/eslint-config/CHANGELOG.md b/packagesDev/eslint-config/CHANGELOG.md index 10aefd8b8f..f6cd6586e4 100644 --- a/packagesDev/eslint-config/CHANGELOG.md +++ b/packagesDev/eslint-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packagesDev/eslint-config/package.json b/packagesDev/eslint-config/package.json index 59cfb4f7b2..e650adbfff 100644 --- a/packagesDev/eslint-config/package.json +++ b/packagesDev/eslint-config/package.json @@ -2,10 +2,10 @@ "name": "@graphcommerce/eslint-config-pwa", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "main": "index.js", "dependencies": { - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", "@next/eslint-plugin-next": "13.4.19", "@typescript-eslint/eslint-plugin": "^6.6.0", "@typescript-eslint/parser": "^6.6.0", diff --git a/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md b/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md index 31d6ba09be..38d37d9630 100644 --- a/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md +++ b/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packagesDev/graphql-codegen-markdown-docs/package.json b/packagesDev/graphql-codegen-markdown-docs/package.json index e377e1d40f..50bb5a04a4 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "type": "commonjs", "main": "dist/index.js", @@ -21,9 +21,9 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { "@graphql-codegen/add": "5.0.0", diff --git a/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md b/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md index bd244c26bd..43e2c98fc3 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 +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packagesDev/graphql-codegen-near-operation-file/package.json b/packagesDev/graphql-codegen-near-operation-file/package.json index 228b29dc82..db39740ce8 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "sideEffects": false, "type": "commonjs", "main": "dist/index.js", @@ -21,9 +21,9 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.30" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" }, "dependencies": { "@graphql-codegen/add": "5.0.0", diff --git a/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md b/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md index 921ce312e5..eb32daec04 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 +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json b/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json index 7c8b70593d..b064ff11bf 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "description": "GraphQL Code Generator plugin for optimizing your GraphQL queries relay style.", "license": "MIT", "type": "commonjs", @@ -19,8 +19,8 @@ "@graphql-codegen/plugin-helpers": "5.0.1" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.30", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.30", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", "@graphql-codegen/testing": "3.0.0", "@types/jest": "29.5.4", "@types/relay-compiler": "8.0.3", diff --git a/packagesDev/next-config/CHANGELOG.md b/packagesDev/next-config/CHANGELOG.md index 08b6c808cf..fe371f07d1 100644 --- a/packagesDev/next-config/CHANGELOG.md +++ b/packagesDev/next-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packagesDev/next-config/package.json b/packagesDev/next-config/package.json index b09fc595aa..0303292ed1 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "type": "commonjs", "main": "dist/index.js", "types": "src/index.ts", diff --git a/packagesDev/prettier-config/CHANGELOG.md b/packagesDev/prettier-config/CHANGELOG.md index a19b3d5444..391c98c199 100644 --- a/packagesDev/prettier-config/CHANGELOG.md +++ b/packagesDev/prettier-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packagesDev/prettier-config/package.json b/packagesDev/prettier-config/package.json index dabf869691..7a2c9594ff 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "dependencies": { "prettier-plugin-jsdoc": "^1.0.1" } diff --git a/packagesDev/typescript-config/CHANGELOG.md b/packagesDev/typescript-config/CHANGELOG.md index 083104087a..1fb95845a7 100644 --- a/packagesDev/typescript-config/CHANGELOG.md +++ b/packagesDev/typescript-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.31 + ## 7.1.0-canary.30 ## 7.1.0-canary.29 diff --git a/packagesDev/typescript-config/package.json b/packagesDev/typescript-config/package.json index 145054c25a..f82e53c3c6 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": "7.1.0-canary.30", + "version": "7.1.0-canary.31", "license": "MIT", "sideEffects": false, "devDependencies": { From bef5065adeeabfb0e379dc77c37b01159576955b Mon Sep 17 00:00:00 2001 From: Paul Hachmang Date: Fri, 3 Nov 2023 11:23:48 +0100 Subject: [PATCH 10/11] Moved renderers of the OrderStateLabel inline --- .../magento-graphcms/pages/account/index.tsx | 15 +------------- .../pages/account/orders/view.tsx | 13 +----------- .../components/OrderCard/OrderCard.tsx | 13 +----------- .../OrderStateLabel/OrderStateLabel.tsx | 20 ++++++++++++++++--- .../OrderStateLabel/OrderStateLabelInline.tsx | 17 ++++++++++++++-- 5 files changed, 35 insertions(+), 43 deletions(-) diff --git a/examples/magento-graphcms/pages/account/index.tsx b/examples/magento-graphcms/pages/account/index.tsx index f88f3a57ff..225bf3fc25 100644 --- a/examples/magento-graphcms/pages/account/index.tsx +++ b/examples/magento-graphcms/pages/account/index.tsx @@ -97,20 +97,7 @@ function AccountIndexPage() { {', '} - {latestOrder?.items && ( - , - Invoiced: () => , - Shipped: () => , - Refunded: () => , - Canceled: () => , - Returned: () => , - Partial: () => , - }} - /> - )} + {latestOrder?.items && } ) : undefined } diff --git a/examples/magento-graphcms/pages/account/orders/view.tsx b/examples/magento-graphcms/pages/account/orders/view.tsx index ce5b3e0692..e284424c63 100644 --- a/examples/magento-graphcms/pages/account/orders/view.tsx +++ b/examples/magento-graphcms/pages/account/orders/view.tsx @@ -68,18 +68,7 @@ function OrderDetailPage() { metaRobots={['noindex']} /> ({ textAlign: 'center', mb: theme.spacings.lg })}> - , - Invoiced: () => , - Shipped: () => , - Refunded: () => , - Canceled: () => , - Returned: () => , - Partial: () => , - }} - /> + diff --git a/packages/magento-customer/components/OrderCard/OrderCard.tsx b/packages/magento-customer/components/OrderCard/OrderCard.tsx index 5d3b44d57b..732915842f 100644 --- a/packages/magento-customer/components/OrderCard/OrderCard.tsx +++ b/packages/magento-customer/components/OrderCard/OrderCard.tsx @@ -99,18 +99,7 @@ export function OrderCard(props: OrderCardProps) { #{number} - , - Invoiced: () => , - Shipped: () => , - Refunded: () => , - Canceled: () => , - Returned: () => , - Partial: () => , - }} - /> + React.ReactElement | null > export type OrderStateLabelProps = { - renderer: OrderStateRenderer + renderer?: Partial sx?: SxProps } & OrderStateLabelPropsBase @@ -32,8 +34,20 @@ const { withState } = extendableComponent , + Invoiced: () => , + Shipped: () => , + Refunded: () => , + Canceled: () => , + Returned: () => , + Partial: () => , +} + export function OrderStateLabel(props: OrderStateLabelProps) { - const { items, renderer, sx = [], ...orderProps } = props + const { items, renderer: incomingRenderer, sx = [], ...orderProps } = props + + const renderer: OrderStateRenderer = { ...defaultRenderer, ...incomingRenderer } let orderState: OrderState = 'Partial' if (items?.every((item) => item?.quantity_ordered === item?.quantity_invoiced)) diff --git a/packages/magento-customer/components/OrderStateLabel/OrderStateLabelInline.tsx b/packages/magento-customer/components/OrderStateLabel/OrderStateLabelInline.tsx index ace236ac4e..f2ffdd15c8 100644 --- a/packages/magento-customer/components/OrderStateLabel/OrderStateLabelInline.tsx +++ b/packages/magento-customer/components/OrderStateLabel/OrderStateLabelInline.tsx @@ -1,13 +1,26 @@ -import { OrderStateLabel, OrderStateLabelProps } from './OrderStateLabel' +import { Trans } from '@lingui/react' +import { OrderStateLabel, OrderStateLabelProps, OrderStateRenderer } from './OrderStateLabel' type OrderStateLabelInlineProps = OrderStateLabelProps +const defaultRenderer: OrderStateRenderer = { + Ordered: () => , + Invoiced: () => , + Shipped: () => , + Refunded: () => , + Canceled: () => , + Returned: () => , + Partial: () => , +} + export function OrderStateLabelInline(props: OrderStateLabelInlineProps) { - const { sx = [] } = props + const { sx = [], renderer: incomingRenderer } = props + const renderer: OrderStateRenderer = { ...defaultRenderer, ...incomingRenderer } return ( ({ fontStyle: 'normal', From bd36fc0f6944ee9b0c176f32684d4d6581c8f6db Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 6 Nov 2023 22:27:32 +0000 Subject: [PATCH 11/11] chore(release): update prerelease versions --- .changeset/pre.json | 1 + docs/CHANGELOG.md | 2 + docs/package.json | 4 +- examples/magento-graphcms/CHANGELOG.md | 2 + examples/magento-graphcms/package.json | 98 +++++++++---------- packages/address-fields-nl/CHANGELOG.md | 2 + packages/address-fields-nl/package.json | 18 ++-- packages/algolia-search/CHANGELOG.md | 2 + packages/algolia-search/package.json | 26 ++--- packages/cli/CHANGELOG.md | 2 + packages/cli/package.json | 12 +-- .../demo-magento-graphcommerce/CHANGELOG.md | 2 + .../demo-magento-graphcommerce/package.json | 12 +-- 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 | 10 +- 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 | 10 +- packages/framer-scroller/package.json | 12 +-- packages/framer-utils/CHANGELOG.md | 2 + packages/framer-utils/package.json | 8 +- packages/googleanalytics/CHANGELOG.md | 2 + packages/googleanalytics/package.json | 22 ++--- packages/googlerecaptcha/CHANGELOG.md | 2 + packages/googlerecaptcha/package.json | 12 +-- packages/googletagmanager/CHANGELOG.md | 2 + packages/googletagmanager/package.json | 12 +-- packages/graphql-mesh/CHANGELOG.md | 2 + packages/graphql-mesh/package.json | 8 +- packages/graphql/CHANGELOG.md | 2 + packages/graphql/package.json | 12 +-- packages/hygraph-cli/CHANGELOG.md | 2 + packages/hygraph-cli/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 | 14 +-- packages/image/CHANGELOG.md | 2 + packages/image/example/CHANGELOG.md | 2 + packages/image/example/package.json | 8 +- packages/image/package.json | 10 +- packages/lighthouse/CHANGELOG.md | 2 + packages/lighthouse/package.json | 8 +- packages/lingui-next/CHANGELOG.md | 2 + packages/lingui-next/package.json | 12 +-- .../magento-cart-billing-address/CHANGELOG.md | 2 + .../magento-cart-billing-address/package.json | 24 ++--- 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 | 20 ++-- 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 | 24 ++--- .../magento-cart-payment-method/CHANGELOG.md | 2 + .../magento-cart-payment-method/package.json | 24 ++--- packages/magento-cart-pickup/CHANGELOG.md | 2 + packages/magento-cart-pickup/package.json | 26 ++--- .../CHANGELOG.md | 2 + .../package.json | 22 ++--- .../magento-cart-shipping-method/CHANGELOG.md | 2 + .../magento-cart-shipping-method/package.json | 24 ++--- 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 ++--- .../magento-customer-account/CHANGELOG.md | 2 + .../magento-customer-account/package.json | 22 ++--- packages/magento-customer-order/CHANGELOG.md | 2 + packages/magento-customer-order/package.json | 22 ++--- packages/magento-customer/CHANGELOG.md | 6 ++ packages/magento-customer/package.json | 26 ++--- 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-pagebuilder/CHANGELOG.md | 2 + packages/magento-pagebuilder/package.json | 20 ++-- packages/magento-payment-adyen/CHANGELOG.md | 2 + packages/magento-payment-adyen/package.json | 26 ++--- .../magento-payment-braintree/CHANGELOG.md | 2 + .../magento-payment-braintree/package.json | 28 +++--- .../magento-payment-included/CHANGELOG.md | 2 + .../magento-payment-included/package.json | 28 +++--- packages/magento-payment-klarna/CHANGELOG.md | 2 + packages/magento-payment-klarna/package.json | 18 ++-- .../magento-payment-multisafepay/CHANGELOG.md | 2 + .../magento-payment-multisafepay/package.json | 36 +++---- packages/magento-payment-paypal/CHANGELOG.md | 2 + packages/magento-payment-paypal/package.json | 22 ++--- 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 | 34 +++---- .../magento-product-downloadable/CHANGELOG.md | 2 + .../magento-product-downloadable/package.json | 18 ++-- packages/magento-product-grouped/CHANGELOG.md | 2 + packages/magento-product-grouped/package.json | 18 ++-- 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 ++--- packages/magento-review/CHANGELOG.md | 2 + packages/magento-review/package.json | 24 ++--- packages/magento-search/CHANGELOG.md | 2 + packages/magento-search/package.json | 20 ++-- packages/magento-store/CHANGELOG.md | 2 + packages/magento-store/package.json | 16 +-- packages/magento-wishlist/CHANGELOG.md | 2 + packages/magento-wishlist/package.json | 26 ++--- 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 +- 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/next-config/CHANGELOG.md | 2 + packagesDev/next-config/package.json | 2 +- packagesDev/prettier-config/CHANGELOG.md | 2 + packagesDev/prettier-config/package.json | 2 +- packagesDev/typescript-config/CHANGELOG.md | 2 + packagesDev/typescript-config/package.json | 2 +- 145 files changed, 796 insertions(+), 647 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index dd6ea777b6..96e31ba060 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -78,6 +78,7 @@ "changesets": [ "brown-planes-retire", "curvy-grapes-accept", + "curvy-hairs-suffer", "forty-rocks-bow", "friendly-dogs-shop", "friendly-islands-cough", diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 4101ccb6b1..1016f37beb 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ### Minor Changes diff --git a/docs/package.json b/docs/package.json index 3a045bf540..3da811ca22 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": true, "devDependencies": { - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31" + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32" }, "prettier": "@graphcommerce/prettier-config-pwa" } diff --git a/examples/magento-graphcms/CHANGELOG.md b/examples/magento-graphcms/CHANGELOG.md index 3a7e99e2bb..a2153c1e90 100644 --- a/examples/magento-graphcms/CHANGELOG.md +++ b/examples/magento-graphcms/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/examples/magento-graphcms/package.json b/examples/magento-graphcms/package.json index 1f038497c5..94af8d1b6f 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "private": true, "sideEffects": false, "engines": { @@ -20,51 +20,51 @@ }, "dependencies": { "@ducanh2912/next-pwa": "9.5.0", - "@graphcommerce/cli": "7.1.0-canary.31", - "@graphcommerce/demo-magento-graphcommerce": "7.1.0-canary.31", - "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", - "@graphcommerce/framer-next-pages": "7.1.0-canary.31", - "@graphcommerce/framer-scroller": "7.1.0-canary.31", - "@graphcommerce/framer-utils": "7.1.0-canary.31", - "@graphcommerce/googleanalytics": "7.1.0-canary.31", - "@graphcommerce/googlerecaptcha": "7.1.0-canary.31", - "@graphcommerce/googletagmanager": "7.1.0-canary.31", - "@graphcommerce/graphcms-ui": "7.1.0-canary.31", - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/graphql-mesh": "7.1.0-canary.31", - "@graphcommerce/hygraph-cli": "7.1.0-canary.31", - "@graphcommerce/hygraph-dynamic-rows": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/lingui-next": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-cart-billing-address": "7.1.0-canary.31", - "@graphcommerce/magento-cart-checkout": "7.1.0-canary.31", - "@graphcommerce/magento-cart-coupon": "7.1.0-canary.31", - "@graphcommerce/magento-cart-email": "7.1.0-canary.31", - "@graphcommerce/magento-cart-items": "7.1.0-canary.31", - "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.31", - "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.31", - "@graphcommerce/magento-cart-shipping-method": "7.1.0-canary.31", - "@graphcommerce/magento-category": "7.1.0-canary.31", - "@graphcommerce/magento-cms": "7.1.0-canary.31", - "@graphcommerce/magento-compare": "7.1.0-canary.31", - "@graphcommerce/magento-customer": "7.1.0-canary.31", - "@graphcommerce/magento-graphql": "7.1.0-canary.31", - "@graphcommerce/magento-newsletter": "7.1.0-canary.31", - "@graphcommerce/magento-payment-included": "7.1.0-canary.31", - "@graphcommerce/magento-product": "7.1.0-canary.31", - "@graphcommerce/magento-product-bundle": "7.1.0-canary.31", - "@graphcommerce/magento-product-configurable": "7.1.0-canary.31", - "@graphcommerce/magento-product-downloadable": "7.1.0-canary.31", - "@graphcommerce/magento-product-grouped": "7.1.0-canary.31", - "@graphcommerce/magento-product-simple": "7.1.0-canary.31", - "@graphcommerce/magento-product-virtual": "7.1.0-canary.31", - "@graphcommerce/magento-review": "7.1.0-canary.31", - "@graphcommerce/magento-search": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/magento-wishlist": "7.1.0-canary.31", - "@graphcommerce/next-config": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/cli": "7.1.0-canary.32", + "@graphcommerce/demo-magento-graphcommerce": "7.1.0-canary.32", + "@graphcommerce/ecommerce-ui": "7.1.0-canary.32", + "@graphcommerce/framer-next-pages": "7.1.0-canary.32", + "@graphcommerce/framer-scroller": "7.1.0-canary.32", + "@graphcommerce/framer-utils": "7.1.0-canary.32", + "@graphcommerce/googleanalytics": "7.1.0-canary.32", + "@graphcommerce/googlerecaptcha": "7.1.0-canary.32", + "@graphcommerce/googletagmanager": "7.1.0-canary.32", + "@graphcommerce/graphcms-ui": "7.1.0-canary.32", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/graphql-mesh": "7.1.0-canary.32", + "@graphcommerce/hygraph-cli": "7.1.0-canary.32", + "@graphcommerce/hygraph-dynamic-rows": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/lingui-next": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-cart-billing-address": "7.1.0-canary.32", + "@graphcommerce/magento-cart-checkout": "7.1.0-canary.32", + "@graphcommerce/magento-cart-coupon": "7.1.0-canary.32", + "@graphcommerce/magento-cart-email": "7.1.0-canary.32", + "@graphcommerce/magento-cart-items": "7.1.0-canary.32", + "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.32", + "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.32", + "@graphcommerce/magento-cart-shipping-method": "7.1.0-canary.32", + "@graphcommerce/magento-category": "7.1.0-canary.32", + "@graphcommerce/magento-cms": "7.1.0-canary.32", + "@graphcommerce/magento-compare": "7.1.0-canary.32", + "@graphcommerce/magento-customer": "7.1.0-canary.32", + "@graphcommerce/magento-graphql": "7.1.0-canary.32", + "@graphcommerce/magento-newsletter": "7.1.0-canary.32", + "@graphcommerce/magento-payment-included": "7.1.0-canary.32", + "@graphcommerce/magento-product": "7.1.0-canary.32", + "@graphcommerce/magento-product-bundle": "7.1.0-canary.32", + "@graphcommerce/magento-product-configurable": "7.1.0-canary.32", + "@graphcommerce/magento-product-downloadable": "7.1.0-canary.32", + "@graphcommerce/magento-product-grouped": "7.1.0-canary.32", + "@graphcommerce/magento-product-simple": "7.1.0-canary.32", + "@graphcommerce/magento-product-virtual": "7.1.0-canary.32", + "@graphcommerce/magento-review": "7.1.0-canary.32", + "@graphcommerce/magento-search": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/magento-wishlist": "7.1.0-canary.32", + "@graphcommerce/next-config": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", "@lingui/core": "4.4.2", "@lingui/macro": "4.4.2", "@lingui/react": "4.4.2", @@ -89,9 +89,9 @@ "graphql-jit": "0.8.2" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32", "@lingui/cli": "4.4.2", "@playwright/test": "1.37.1", "@types/node": "^16", diff --git a/packages/address-fields-nl/CHANGELOG.md b/packages/address-fields-nl/CHANGELOG.md index d86ce3ac3c..320ef8a969 100644 --- a/packages/address-fields-nl/CHANGELOG.md +++ b/packages/address-fields-nl/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/address-fields-nl +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/address-fields-nl/package.json b/packages/address-fields-nl/package.json index 162d91a40c..16585b7a9a 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/magento-customer": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.32", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/magento-customer": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/algolia-search/CHANGELOG.md b/packages/algolia-search/CHANGELOG.md index 19fdc673bb..ffa6e545ea 100644 --- a/packages/algolia-search/CHANGELOG.md +++ b/packages/algolia-search/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/algolia-search +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/algolia-search/package.json b/packages/algolia-search/package.json index 4431b17615..69ac6501b5 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,20 +12,20 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/next-config": "^7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/next-config": "^7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", - "@graphcommerce/magento-search": "7.1.0-canary.31", - "@graphcommerce/next-config": "^7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", - "@graphcommerce/magento-product": "7.1.0-canary.31", - "@graphcommerce/graphql-mesh": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/ecommerce-ui": "7.1.0-canary.32", + "@graphcommerce/magento-search": "7.1.0-canary.32", + "@graphcommerce/next-config": "^7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", + "@graphcommerce/magento-product": "7.1.0-canary.32", + "@graphcommerce/graphql-mesh": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", "algoliasearch": "^4.15.0", "react-instantsearch-hooks-web": "^6.41.0" }, diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 4127acd59a..a2889a36e6 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/cli +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/cli/package.json b/packages/cli/package.json index e39625fe69..a3772d2e7d 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "author": "", "license": "MIT", "scripts": { @@ -24,8 +24,8 @@ "graphcommerce": "dist/bin/graphcommerce.js" }, "dependencies": { - "@graphcommerce/hygraph-cli": "7.1.0-canary.31", - "@graphcommerce/next-config": "7.1.0-canary.31", + "@graphcommerce/hygraph-cli": "7.1.0-canary.32", + "@graphcommerce/next-config": "7.1.0-canary.32", "@graphql-codegen/cli": "5.0.0", "@graphql-mesh/cli": "latest", "@graphql-mesh/cross-helpers": "latest", @@ -44,9 +44,9 @@ "graphql": "^16.7.1" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32", "react": "^18.2.0", "typescript": "5.2.2" }, diff --git a/packages/demo-magento-graphcommerce/CHANGELOG.md b/packages/demo-magento-graphcommerce/CHANGELOG.md index e41102b52e..e458511b8a 100644 --- a/packages/demo-magento-graphcommerce/CHANGELOG.md +++ b/packages/demo-magento-graphcommerce/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/demo-magento-graphcommerce +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/demo-magento-graphcommerce/package.json b/packages/demo-magento-graphcommerce/package.json index 117ce3fd5d..50b6aca737 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -15,9 +15,9 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "peerDependencies": { "@mui/material": "^5.10.16", @@ -26,7 +26,7 @@ "react-dom": "^18.2.0" }, "dependencies": { - "@graphcommerce/magento-product": "7.1.0-canary.31", - "@graphcommerce/magento-product-configurable": "7.1.0-canary.31" + "@graphcommerce/magento-product": "7.1.0-canary.32", + "@graphcommerce/magento-product-configurable": "7.1.0-canary.32" } } diff --git a/packages/ecommerce-ui/CHANGELOG.md b/packages/ecommerce-ui/CHANGELOG.md index 31dc83f98b..e22f9f0208 100644 --- a/packages/ecommerce-ui/CHANGELOG.md +++ b/packages/ecommerce-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/ecommerce-ui +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/ecommerce-ui/package.json b/packages/ecommerce-ui/package.json index 0f972771f0..58a8fe4062 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", - "@graphcommerce/react-hook-form": "7.1.0-canary.31" + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", + "@graphcommerce/react-hook-form": "7.1.0-canary.32" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/framer-next-pages/CHANGELOG.md b/packages/framer-next-pages/CHANGELOG.md index 3b99a3aa39..7f9d354787 100644 --- a/packages/framer-next-pages/CHANGELOG.md +++ b/packages/framer-next-pages/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/framer-next-pages/example/CHANGELOG.md b/packages/framer-next-pages/example/CHANGELOG.md index 5e2b52b64d..8500a5468f 100644 --- a/packages/framer-next-pages/example/CHANGELOG.md +++ b/packages/framer-next-pages/example/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/framer-next-pages/example/package.json b/packages/framer-next-pages/example/package.json index 229ef81a20..8aca1bd0b4 100644 --- a/packages/framer-next-pages/example/package.json +++ b/packages/framer-next-pages/example/package.json @@ -3,17 +3,17 @@ "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", "private": true, - "version": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "scripts": { "dev": "next", "build": "next build", "start": "next start" }, "dependencies": { - "@graphcommerce/framer-next-pages": "7.1.0-canary.31", - "@graphcommerce/lingui-next": "7.1.0-canary.31", - "@graphcommerce/next-config": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/framer-next-pages": "7.1.0-canary.32", + "@graphcommerce/lingui-next": "7.1.0-canary.32", + "@graphcommerce/next-config": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", "@mui/material": "5.14.7", "framer-motion": "10.16.3", "next": "13.4.20-canary.16", diff --git a/packages/framer-next-pages/package.json b/packages/framer-next-pages/package.json index 68de1e461a..47a10f9d33 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,12 +12,12 @@ } }, "dependencies": { - "@graphcommerce/framer-utils": "7.1.0-canary.31" + "@graphcommerce/framer-utils": "7.1.0-canary.32" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "peerDependencies": { "framer-motion": "^10.0.0", diff --git a/packages/framer-scroller/CHANGELOG.md b/packages/framer-scroller/CHANGELOG.md index c281aa7c5e..982bc6771f 100644 --- a/packages/framer-scroller/CHANGELOG.md +++ b/packages/framer-scroller/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/framer-scroller/example/CHANGELOG.md b/packages/framer-scroller/example/CHANGELOG.md index a8d7dcfbf9..9c0c394e2c 100644 --- a/packages/framer-scroller/example/CHANGELOG.md +++ b/packages/framer-scroller/example/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/framer-scroller/example/package.json b/packages/framer-scroller/example/package.json index 9e312fc8d7..33463750fd 100644 --- a/packages/framer-scroller/example/package.json +++ b/packages/framer-scroller/example/package.json @@ -3,17 +3,17 @@ "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", "private": true, - "version": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "scripts": { "dev": "next", "build": "next build", "start": "next start" }, "dependencies": { - "@graphcommerce/framer-scroller": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/next-config": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/framer-scroller": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/next-config": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", "@mui/material": "5.14.7", "framer-motion": "10.16.3", "next": "13.4.20-canary.16", diff --git a/packages/framer-scroller/package.json b/packages/framer-scroller/package.json index 0e3aa1b9d6..9229f3abf8 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -16,13 +16,13 @@ }, "dependencies": { "popmotion": "11.0.5", - "@graphcommerce/framer-utils": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31" + "@graphcommerce/framer-utils": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "peerDependencies": { "@mui/material": "^5.10.16", diff --git a/packages/framer-utils/CHANGELOG.md b/packages/framer-utils/CHANGELOG.md index 7318fea6a4..3d59578a9d 100644 --- a/packages/framer-utils/CHANGELOG.md +++ b/packages/framer-utils/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/framer-utils/package.json b/packages/framer-utils/package.json index f7ad03b748..c25efad60a 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -15,9 +15,9 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "peerDependencies": { "framer-motion": "^10.0.0", diff --git a/packages/googleanalytics/CHANGELOG.md b/packages/googleanalytics/CHANGELOG.md index 80c048b352..d37d8c139b 100644 --- a/packages/googleanalytics/CHANGELOG.md +++ b/packages/googleanalytics/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/googleanalytics/package.json b/packages/googleanalytics/package.json index 1f34088ab6..86b8aafa61 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "dependencies": { - "@graphcommerce/graphql-mesh": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.31", - "@graphcommerce/magento-cart-shipping-method": "7.1.0-canary.31", - "@graphcommerce/magento-product": "7.1.0-canary.31", - "@graphcommerce/next-config": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31" + "@graphcommerce/graphql-mesh": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.32", + "@graphcommerce/magento-cart-shipping-method": "7.1.0-canary.32", + "@graphcommerce/magento-product": "7.1.0-canary.32", + "@graphcommerce/next-config": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32", "@types/gtag.js": "^0.0.13" }, "peerDependencies": { diff --git a/packages/googlerecaptcha/CHANGELOG.md b/packages/googlerecaptcha/CHANGELOG.md index c1648d678e..0e680d5d21 100644 --- a/packages/googlerecaptcha/CHANGELOG.md +++ b/packages/googlerecaptcha/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/googlerecaptcha/package.json b/packages/googlerecaptcha/package.json index 39155f307c..864ba26a62 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32", "@types/grecaptcha": "^3.0.4" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31" + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32" }, "peerDependencies": { "next": "^13.2.0", diff --git a/packages/googletagmanager/CHANGELOG.md b/packages/googletagmanager/CHANGELOG.md index 1fed3eb799..1692154c51 100644 --- a/packages/googletagmanager/CHANGELOG.md +++ b/packages/googletagmanager/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/googletagmanager/package.json b/packages/googletagmanager/package.json index b60fc25cac..9a36f536aa 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32", "@types/gapi.client.tagmanager": "^2.0.2" }, "dependencies": { - "@graphcommerce/magento-product": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31" + "@graphcommerce/magento-product": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32" }, "peerDependencies": { "next": "^13.2.0", diff --git a/packages/graphql-mesh/CHANGELOG.md b/packages/graphql-mesh/CHANGELOG.md index 55775c2afb..21886d9a38 100644 --- a/packages/graphql-mesh/CHANGELOG.md +++ b/packages/graphql-mesh/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/graphql-mesh/package.json b/packages/graphql-mesh/package.json index 9611c3d3cf..79dbd9f49a 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "author": "", "license": "MIT", "main": "index.ts", @@ -28,9 +28,9 @@ "graphql": "^16.7.1" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32", "typescript": "5.2.2" }, "sideEffects": false, diff --git a/packages/graphql/CHANGELOG.md b/packages/graphql/CHANGELOG.md index 2285375e91..3f55e12825 100644 --- a/packages/graphql/CHANGELOG.md +++ b/packages/graphql/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/graphql/package.json b/packages/graphql/package.json index 5fc594278c..4a13b3ce9b 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "main": "index.ts", "prettier": "@graphcommerce/prettier-config-pwa", @@ -14,8 +14,8 @@ }, "dependencies": { "@apollo/client": "~3.8.2", - "@graphcommerce/graphql-codegen-near-operation-file": "7.1.0-canary.31", - "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "7.1.0-canary.31", + "@graphcommerce/graphql-codegen-near-operation-file": "7.1.0-canary.32", + "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "7.1.0-canary.32", "@graphql-codegen/add": "5.0.0", "@graphql-codegen/fragment-matcher": "5.0.0", "@graphql-codegen/introspection": "4.0.0", @@ -28,9 +28,9 @@ "apollo3-cache-persist": "^0.14.1" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "peerDependencies": { "graphql": "^16.7.1", diff --git a/packages/hygraph-cli/CHANGELOG.md b/packages/hygraph-cli/CHANGELOG.md index 99f6d04cea..b27ad4f8af 100644 --- a/packages/hygraph-cli/CHANGELOG.md +++ b/packages/hygraph-cli/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/hygraph-cli +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/hygraph-cli/package.json b/packages/hygraph-cli/package.json index 8aededc2a5..835c227f51 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "author": "", "license": "MIT", "scripts": { @@ -15,7 +15,7 @@ "types": "src/index.ts", "dependencies": { "@apollo/client": "~3.8.2", - "@graphcommerce/next-config": "7.1.0-canary.31", + "@graphcommerce/next-config": "7.1.0-canary.32", "@hygraph/management-sdk": "1.2.3", "@whatwg-node/fetch": "^0.9.4", "graphql-tag": "^2.12.6", @@ -26,9 +26,9 @@ "graphql": "^16.7.1" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32", "@types/prompts": "^2.4.4", "typescript": "5.2.2" }, diff --git a/packages/hygraph-dynamic-rows/CHANGELOG.md b/packages/hygraph-dynamic-rows/CHANGELOG.md index c622090c1d..5ed445661d 100644 --- a/packages/hygraph-dynamic-rows/CHANGELOG.md +++ b/packages/hygraph-dynamic-rows/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/hygraph-dynamic-rows +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/hygraph-dynamic-rows/package.json b/packages/hygraph-dynamic-rows/package.json index 7673446bf2..a3777fc395 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,15 +12,15 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", - "@graphcommerce/graphcms-ui": "7.1.0-canary.31" + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", + "@graphcommerce/graphcms-ui": "7.1.0-canary.32" }, "peerDependencies": { "@mui/material": "^5.10.16", diff --git a/packages/hygraph-ui/CHANGELOG.md b/packages/hygraph-ui/CHANGELOG.md index cf2ddef657..395c2c988d 100644 --- a/packages/hygraph-ui/CHANGELOG.md +++ b/packages/hygraph-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/hygraph-ui/package.json b/packages/hygraph-ui/package.json index ff750b9f92..e58bfc9e39 100644 --- a/packages/hygraph-ui/package.json +++ b/packages/hygraph-ui/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphcms-ui", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31" + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32" }, "peerDependencies": { "@mui/material": "^5.10.16", diff --git a/packages/image/CHANGELOG.md b/packages/image/CHANGELOG.md index 346c772516..d31517cb3b 100644 --- a/packages/image/CHANGELOG.md +++ b/packages/image/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/image/example/CHANGELOG.md b/packages/image/example/CHANGELOG.md index dfe8185798..717a99f8d0 100644 --- a/packages/image/example/CHANGELOG.md +++ b/packages/image/example/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/image/example/package.json b/packages/image/example/package.json index 438f8f1fb2..53cf4feed9 100644 --- a/packages/image/example/package.json +++ b/packages/image/example/package.json @@ -3,16 +3,16 @@ "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", "private": true, - "version": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "scripts": { "dev": "next", "build": "next build", "start": "next start" }, "dependencies": { - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/next-config": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/next-config": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", "framer-motion": "^10.16.3", "next": "13.4.20-canary.16", "react": "^18.2.0", diff --git a/packages/image/package.json b/packages/image/package.json index 6a47ce81d5..a0d29957ce 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -15,12 +15,12 @@ } }, "dependencies": { - "@graphcommerce/framer-utils": "7.1.0-canary.31" + "@graphcommerce/framer-utils": "7.1.0-canary.32" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "peerDependencies": { "@mui/material": "^5.10.16", diff --git a/packages/lighthouse/CHANGELOG.md b/packages/lighthouse/CHANGELOG.md index 31d54af9f7..e6336877f3 100644 --- a/packages/lighthouse/CHANGELOG.md +++ b/packages/lighthouse/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/lighthouse/package.json b/packages/lighthouse/package.json index 617c46cf52..ddced96f5f 100644 --- a/packages/lighthouse/package.json +++ b/packages/lighthouse/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/lighthouse", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "private": true, "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", @@ -13,9 +13,9 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "peerDependencies": { "next": "^13.2.0" diff --git a/packages/lingui-next/CHANGELOG.md b/packages/lingui-next/CHANGELOG.md index ee4b2d7cf0..d5ede4af3a 100644 --- a/packages/lingui-next/CHANGELOG.md +++ b/packages/lingui-next/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/lingui-next/package.json b/packages/lingui-next/package.json index 8451fe6acf..bf88e0c1f0 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -15,13 +15,13 @@ } }, "dependencies": { - "@graphcommerce/next-config": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31" + "@graphcommerce/next-config": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32", "@lingui/conf": "^4.2.1" }, "peerDependencies": { diff --git a/packages/magento-cart-billing-address/CHANGELOG.md b/packages/magento-cart-billing-address/CHANGELOG.md index 1241ab0b34..ea90737330 100644 --- a/packages/magento-cart-billing-address/CHANGELOG.md +++ b/packages/magento-cart-billing-address/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-cart-billing-address/package.json b/packages/magento-cart-billing-address/package.json index cc1aec0406..4f55af1d33 100644 --- a/packages/magento-cart-billing-address/package.json +++ b/packages/magento-cart-billing-address/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-billing-address", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,19 +12,19 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/framer-next-pages": "7.1.0-canary.31", - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-customer": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", - "@graphcommerce/react-hook-form": "7.1.0-canary.31" + "@graphcommerce/framer-next-pages": "7.1.0-canary.32", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-customer": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", + "@graphcommerce/react-hook-form": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-checkout/CHANGELOG.md b/packages/magento-cart-checkout/CHANGELOG.md index 6152da8b35..62216619e0 100644 --- a/packages/magento-cart-checkout/CHANGELOG.md +++ b/packages/magento-cart-checkout/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-cart-checkout/package.json b/packages/magento-cart-checkout/package.json index e33183d396..7325f548e3 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,20 +12,20 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-cart-coupon": "7.1.0-canary.31", - "@graphcommerce/magento-cart-items": "7.1.0-canary.31", - "@graphcommerce/magento-customer": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", - "@graphcommerce/react-hook-form": "7.1.0-canary.31" + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-cart-coupon": "7.1.0-canary.32", + "@graphcommerce/magento-cart-items": "7.1.0-canary.32", + "@graphcommerce/magento-customer": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", + "@graphcommerce/react-hook-form": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-coupon/CHANGELOG.md b/packages/magento-cart-coupon/CHANGELOG.md index 4e298cfc91..4f2081f567 100644 --- a/packages/magento-cart-coupon/CHANGELOG.md +++ b/packages/magento-cart-coupon/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-cart-coupon/package.json b/packages/magento-cart-coupon/package.json index 8a312dea74..7eee820bca 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", - "@graphcommerce/react-hook-form": "7.1.0-canary.31" + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", + "@graphcommerce/react-hook-form": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-email/CHANGELOG.md b/packages/magento-cart-email/CHANGELOG.md index 22ac491df3..b64913ca4e 100644 --- a/packages/magento-cart-email/CHANGELOG.md +++ b/packages/magento-cart-email/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-cart-email/package.json b/packages/magento-cart-email/package.json index 70f6f571cb..81926b6d1c 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,20 +12,20 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-customer": "7.1.0-canary.31", - "@graphcommerce/magento-product": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", - "@graphcommerce/react-hook-form": "7.1.0-canary.31" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.32", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-customer": "7.1.0-canary.32", + "@graphcommerce/magento-product": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", + "@graphcommerce/react-hook-form": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-items/CHANGELOG.md b/packages/magento-cart-items/CHANGELOG.md index aa905cb4b7..b1eb11d2b9 100644 --- a/packages/magento-cart-items/CHANGELOG.md +++ b/packages/magento-cart-items/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-cart-items/package.json b/packages/magento-cart-items/package.json index a51f25d098..3af64bfba2 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,19 +12,19 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-customer": "7.1.0-canary.31", - "@graphcommerce/magento-product": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", - "@graphcommerce/react-hook-form": "7.1.0-canary.31" + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-customer": "7.1.0-canary.32", + "@graphcommerce/magento-product": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", + "@graphcommerce/react-hook-form": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-payment-method/CHANGELOG.md b/packages/magento-cart-payment-method/CHANGELOG.md index ef2c976cc2..d643710da9 100644 --- a/packages/magento-cart-payment-method/CHANGELOG.md +++ b/packages/magento-cart-payment-method/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-cart-payment-method/package.json b/packages/magento-cart-payment-method/package.json index d03f9cd8a3..67997d2405 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,19 +12,19 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", - "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32", + "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/framer-scroller": "7.1.0-canary.31", - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", - "@graphcommerce/react-hook-form": "7.1.0-canary.31" + "@graphcommerce/framer-scroller": "7.1.0-canary.32", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", + "@graphcommerce/react-hook-form": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-pickup/CHANGELOG.md b/packages/magento-cart-pickup/CHANGELOG.md index 1ce7cbcefc..dfc6cf54d6 100644 --- a/packages/magento-cart-pickup/CHANGELOG.md +++ b/packages/magento-cart-pickup/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-cart-pickup/package.json b/packages/magento-cart-pickup/package.json index 3a81fc0c99..1b832cde22 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,20 +12,20 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/graphql-mesh": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-cart-shipping-method": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", - "@graphcommerce/react-hook-form": "7.1.0-canary.31" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.32", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/graphql-mesh": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-cart-shipping-method": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", + "@graphcommerce/react-hook-form": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-shipping-address/CHANGELOG.md b/packages/magento-cart-shipping-address/CHANGELOG.md index 98c6c31105..e695cbcd77 100644 --- a/packages/magento-cart-shipping-address/CHANGELOG.md +++ b/packages/magento-cart-shipping-address/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-cart-shipping-address/package.json b/packages/magento-cart-shipping-address/package.json index 8322408e8f..9275a93e60 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-customer": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.32", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-customer": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-shipping-method/CHANGELOG.md b/packages/magento-cart-shipping-method/CHANGELOG.md index 35684b4367..ae098d3caf 100644 --- a/packages/magento-cart-shipping-method/CHANGELOG.md +++ b/packages/magento-cart-shipping-method/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-cart-shipping-method/package.json b/packages/magento-cart-shipping-method/package.json index 020f7b276a..d7cc3dc1e0 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,19 +12,19 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/framer-scroller": "7.1.0-canary.31", - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", - "@graphcommerce/react-hook-form": "7.1.0-canary.31" + "@graphcommerce/framer-scroller": "7.1.0-canary.32", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", + "@graphcommerce/react-hook-form": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart/CHANGELOG.md b/packages/magento-cart/CHANGELOG.md index 02ac021c2d..958cdeed8e 100644 --- a/packages/magento-cart/CHANGELOG.md +++ b/packages/magento-cart/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-cart/package.json b/packages/magento-cart/package.json index 3685d4db16..700942ed86 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,22 +12,22 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", - "@graphcommerce/framer-utils": "7.1.0-canary.31", - "@graphcommerce/framer-next-pages": "7.1.0-canary.31", - "@graphcommerce/framer-scroller": "7.1.0-canary.31", - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-customer": "7.1.0-canary.31", - "@graphcommerce/magento-graphql": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", - "@graphcommerce/react-hook-form": "7.1.0-canary.31" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.32", + "@graphcommerce/framer-utils": "7.1.0-canary.32", + "@graphcommerce/framer-next-pages": "7.1.0-canary.32", + "@graphcommerce/framer-scroller": "7.1.0-canary.32", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-customer": "7.1.0-canary.32", + "@graphcommerce/magento-graphql": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", + "@graphcommerce/react-hook-form": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-category/CHANGELOG.md b/packages/magento-category/CHANGELOG.md index 4cb36ab351..21f908c07e 100644 --- a/packages/magento-category/CHANGELOG.md +++ b/packages/magento-category/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-category/package.json b/packages/magento-category/package.json index 987b1006ba..bfd0a045c2 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/framer-scroller": "7.1.0-canary.31", - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-product": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31" + "@graphcommerce/framer-scroller": "7.1.0-canary.32", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-product": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-cms/CHANGELOG.md b/packages/magento-cms/CHANGELOG.md index cace01de35..573d099311 100644 --- a/packages/magento-cms/CHANGELOG.md +++ b/packages/magento-cms/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-cms/package.json b/packages/magento-cms/package.json index bc5a0a052a..05d1af25a9 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,13 +12,13 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31" + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-compare/CHANGELOG.md b/packages/magento-compare/CHANGELOG.md index de4f54f185..580df4e0e9 100644 --- a/packages/magento-compare/CHANGELOG.md +++ b/packages/magento-compare/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-compare +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-compare/package.json b/packages/magento-compare/package.json index 53d556e986..59bb9c10ef 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", - "@graphcommerce/framer-utils": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-product": "7.1.0-canary.31", - "@graphcommerce/framer-next-pages": "7.1.0-canary.31", - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.32", + "@graphcommerce/framer-utils": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-product": "7.1.0-canary.32", + "@graphcommerce/framer-next-pages": "7.1.0-canary.32", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-customer-account/CHANGELOG.md b/packages/magento-customer-account/CHANGELOG.md index daeb14493c..ff21f2d759 100644 --- a/packages/magento-customer-account/CHANGELOG.md +++ b/packages/magento-customer-account/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-customer-account/package.json b/packages/magento-customer-account/package.json index 09a7417656..39a262674f 100644 --- a/packages/magento-customer-account/package.json +++ b/packages/magento-customer-account/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-customer-account", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-customer": "7.1.0-canary.31", - "@graphcommerce/magento-graphql": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", - "@graphcommerce/react-hook-form": "7.1.0-canary.31" + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-customer": "7.1.0-canary.32", + "@graphcommerce/magento-graphql": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", + "@graphcommerce/react-hook-form": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-customer-order/CHANGELOG.md b/packages/magento-customer-order/CHANGELOG.md index 2aa070c92e..4a5422e61d 100644 --- a/packages/magento-customer-order/CHANGELOG.md +++ b/packages/magento-customer-order/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-customer-order/package.json b/packages/magento-customer-order/package.json index 030ec1a763..8ad616443a 100644 --- a/packages/magento-customer-order/package.json +++ b/packages/magento-customer-order/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-customer-order", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/graphql-mesh": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-customer": "7.1.0-canary.31", - "@graphcommerce/magento-graphql": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31" + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/graphql-mesh": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-customer": "7.1.0-canary.32", + "@graphcommerce/magento-graphql": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-customer/CHANGELOG.md b/packages/magento-customer/CHANGELOG.md index d73f718877..e5a6a96fd7 100644 --- a/packages/magento-customer/CHANGELOG.md +++ b/packages/magento-customer/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 7.1.0-canary.32 + +### Patch Changes + +- [#2091](https://github.com/graphcommerce-org/graphcommerce/pull/2091) [`5b865d376`](https://github.com/graphcommerce-org/graphcommerce/commit/5b865d376fe3b830a03af15b56986a0448af4987) - Update OrderDetails and styling ([@StefanAngenent](https://github.com/StefanAngenent)) + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-customer/package.json b/packages/magento-customer/package.json index 447a9e7312..aa57020114 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,20 +12,20 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", - "@graphcommerce/framer-utils": "7.1.0-canary.31", - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/graphql-mesh": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-graphql": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", - "@graphcommerce/react-hook-form": "7.1.0-canary.31" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.32", + "@graphcommerce/framer-utils": "7.1.0-canary.32", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/graphql-mesh": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-graphql": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", + "@graphcommerce/react-hook-form": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-graphql/CHANGELOG.md b/packages/magento-graphql/CHANGELOG.md index 6adb1fa6ee..0ea419061b 100644 --- a/packages/magento-graphql/CHANGELOG.md +++ b/packages/magento-graphql/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-graphql/package.json b/packages/magento-graphql/package.json index fc2a712b6e..961e0e5e89 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "main": "index.ts", "prettier": "@graphcommerce/prettier-config-pwa", @@ -13,12 +13,12 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.31" + "@graphcommerce/graphql": "7.1.0-canary.32" }, "peerDependencies": { "next": "^13.2.0", diff --git a/packages/magento-newsletter/CHANGELOG.md b/packages/magento-newsletter/CHANGELOG.md index 6b4cbc8763..d848d43330 100644 --- a/packages/magento-newsletter/CHANGELOG.md +++ b/packages/magento-newsletter/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-newsletter/package.json b/packages/magento-newsletter/package.json index dce4de7262..d5bc230714 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-customer": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", - "@graphcommerce/react-hook-form": "7.1.0-canary.31" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.32", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-customer": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", + "@graphcommerce/react-hook-form": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-pagebuilder/CHANGELOG.md b/packages/magento-pagebuilder/CHANGELOG.md index 141bd6f271..f2f0304b7c 100644 --- a/packages/magento-pagebuilder/CHANGELOG.md +++ b/packages/magento-pagebuilder/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-pagebuilder +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-pagebuilder/package.json b/packages/magento-pagebuilder/package.json index 12c5c162bc..bba5ff8666 100644 --- a/packages/magento-pagebuilder/package.json +++ b/packages/magento-pagebuilder/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-pagebuilder", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32", "@types/jsdom": "^21.1.2" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/magento-category": "7.1.0-canary.31", - "@graphcommerce/magento-cms": "7.1.0-canary.31", - "@graphcommerce/magento-product": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", - "@graphcommerce/react-hook-form": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/magento-category": "7.1.0-canary.32", + "@graphcommerce/magento-cms": "7.1.0-canary.32", + "@graphcommerce/magento-product": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", + "@graphcommerce/react-hook-form": "7.1.0-canary.32", "jsdom": "^22.1.0" }, "peerDependencies": { diff --git a/packages/magento-payment-adyen/CHANGELOG.md b/packages/magento-payment-adyen/CHANGELOG.md index da9e0b893c..5cd5519116 100644 --- a/packages/magento-payment-adyen/CHANGELOG.md +++ b/packages/magento-payment-adyen/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-adyen +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-payment-adyen/package.json b/packages/magento-payment-adyen/package.json index 93705c33c0..c1b3458e3f 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,20 +12,20 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/magento-product": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/magento-product": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/graphql-mesh": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.32", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/graphql-mesh": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-braintree/CHANGELOG.md b/packages/magento-payment-braintree/CHANGELOG.md index 5b9a7a166d..5c36fc7145 100644 --- a/packages/magento-payment-braintree/CHANGELOG.md +++ b/packages/magento-payment-braintree/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-payment-braintree/package.json b/packages/magento-payment-braintree/package.json index 55d8174864..ffd6dfebb5 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,22 +12,22 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.31", - "@graphcommerce/magento-product": "7.1.0-canary.31", - "@graphcommerce/magento-product-configurable": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.32", + "@graphcommerce/magento-product": "7.1.0-canary.32", + "@graphcommerce/magento-product-configurable": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32", "@types/braintree-web": "^3.96.4" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", - "@graphcommerce/react-hook-form": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", + "@graphcommerce/react-hook-form": "7.1.0-canary.32", "braintree-web": "^3.95.0-beta-3ds.1" }, "peerDependencies": { diff --git a/packages/magento-payment-included/CHANGELOG.md b/packages/magento-payment-included/CHANGELOG.md index d7198e0856..183d04fff3 100644 --- a/packages/magento-payment-included/CHANGELOG.md +++ b/packages/magento-payment-included/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-payment-included/package.json b/packages/magento-payment-included/package.json index 6d9bd73e4b..b93c1060e2 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,21 +12,21 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.31", - "@graphcommerce/magento-product": "7.1.0-canary.31", - "@graphcommerce/magento-product-configurable": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.32", + "@graphcommerce/magento-product": "7.1.0-canary.32", + "@graphcommerce/magento-product-configurable": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", - "@graphcommerce/react-hook-form": "7.1.0-canary.31" + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", + "@graphcommerce/react-hook-form": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-klarna/CHANGELOG.md b/packages/magento-payment-klarna/CHANGELOG.md index 41127b72f2..0480791221 100644 --- a/packages/magento-payment-klarna/CHANGELOG.md +++ b/packages/magento-payment-klarna/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-payment-klarna/package.json b/packages/magento-payment-klarna/package.json index 2c1b39cc84..6695edfae6 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "private": true, "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", @@ -13,16 +13,16 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31" + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-multisafepay/CHANGELOG.md b/packages/magento-payment-multisafepay/CHANGELOG.md index 1bb7c97f1e..2f75dd1b95 100644 --- a/packages/magento-payment-multisafepay/CHANGELOG.md +++ b/packages/magento-payment-multisafepay/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-multisafepay +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-payment-multisafepay/package.json b/packages/magento-payment-multisafepay/package.json index 7c6d6c1418..1c9928928d 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,25 +12,25 @@ } }, "devDependencies": { - "@graphcommerce/next-ui": "7.1.0-canary.31", - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.31", - "@graphcommerce/magento-product": "7.1.0-canary.31", - "@graphcommerce/magento-product-configurable": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/next-ui": "7.1.0-canary.32", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.32", + "@graphcommerce/magento-product": "7.1.0-canary.32", + "@graphcommerce/magento-product-configurable": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/graphql-mesh": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-cart-checkout": "7.1.0-canary.31", - "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", - "@graphcommerce/react-hook-form": "7.1.0-canary.31" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.32", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/graphql-mesh": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-cart-checkout": "7.1.0-canary.32", + "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", + "@graphcommerce/react-hook-form": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-paypal/CHANGELOG.md b/packages/magento-payment-paypal/CHANGELOG.md index 7e440fa30e..5d5019106c 100644 --- a/packages/magento-payment-paypal/CHANGELOG.md +++ b/packages/magento-payment-paypal/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-paypal +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-payment-paypal/package.json b/packages/magento-payment-paypal/package.json index 75754eece6..a2147de79b 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.32", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-bundle/CHANGELOG.md b/packages/magento-product-bundle/CHANGELOG.md index 6b0933aa76..1455aef9a2 100644 --- a/packages/magento-product-bundle/CHANGELOG.md +++ b/packages/magento-product-bundle/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-product-bundle/package.json b/packages/magento-product-bundle/package.json index 84d56caf01..6312bb2f2a 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,21 +12,21 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-cart-items": "7.1.0-canary.31", - "@graphcommerce/magento-product": "7.1.0-canary.31", - "@graphcommerce/magento-product-simple": "7.1.0-canary.31", - "@graphcommerce/magento-product-virtual": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.32", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-cart-items": "7.1.0-canary.32", + "@graphcommerce/magento-product": "7.1.0-canary.32", + "@graphcommerce/magento-product-simple": "7.1.0-canary.32", + "@graphcommerce/magento-product-virtual": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-configurable/CHANGELOG.md b/packages/magento-product-configurable/CHANGELOG.md index 4d76db2461..edf5875c7c 100644 --- a/packages/magento-product-configurable/CHANGELOG.md +++ b/packages/magento-product-configurable/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-product-configurable/package.json b/packages/magento-product-configurable/package.json index 3495e97979..6d7ae15457 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,24 +12,24 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/graphql-mesh": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-cart-items": "7.1.0-canary.31", - "@graphcommerce/magento-category": "7.1.0-canary.31", - "@graphcommerce/magento-customer": "7.1.0-canary.31", - "@graphcommerce/magento-product": "7.1.0-canary.31", - "@graphcommerce/magento-product-simple": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", - "@graphcommerce/react-hook-form": "7.1.0-canary.31" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.32", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/graphql-mesh": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-cart-items": "7.1.0-canary.32", + "@graphcommerce/magento-category": "7.1.0-canary.32", + "@graphcommerce/magento-customer": "7.1.0-canary.32", + "@graphcommerce/magento-product": "7.1.0-canary.32", + "@graphcommerce/magento-product-simple": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", + "@graphcommerce/react-hook-form": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-downloadable/CHANGELOG.md b/packages/magento-product-downloadable/CHANGELOG.md index 3865a242e3..01d6af2053 100644 --- a/packages/magento-product-downloadable/CHANGELOG.md +++ b/packages/magento-product-downloadable/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-product-downloadable/package.json b/packages/magento-product-downloadable/package.json index 2f86779084..d48f81aae1 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-product": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31" + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-product": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-grouped/CHANGELOG.md b/packages/magento-product-grouped/CHANGELOG.md index 3099038713..589a05a354 100644 --- a/packages/magento-product-grouped/CHANGELOG.md +++ b/packages/magento-product-grouped/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-product-grouped/package.json b/packages/magento-product-grouped/package.json index 3ce4fca05b..a79a492ee8 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-product": "7.1.0-canary.31", - "@graphcommerce/magento-product-simple": "7.1.0-canary.31", - "@graphcommerce/magento-product-virtual": "7.1.0-canary.31" + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-product": "7.1.0-canary.32", + "@graphcommerce/magento-product-simple": "7.1.0-canary.32", + "@graphcommerce/magento-product-virtual": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-simple/CHANGELOG.md b/packages/magento-product-simple/CHANGELOG.md index 6a557a4a60..b76fd54899 100644 --- a/packages/magento-product-simple/CHANGELOG.md +++ b/packages/magento-product-simple/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-product-simple/package.json b/packages/magento-product-simple/package.json index 8a3b03dc23..336d54bf2b 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-cart-items": "7.1.0-canary.31", - "@graphcommerce/magento-product": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31" + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-cart-items": "7.1.0-canary.32", + "@graphcommerce/magento-product": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-virtual/CHANGELOG.md b/packages/magento-product-virtual/CHANGELOG.md index 695d807e01..4c30fdb065 100644 --- a/packages/magento-product-virtual/CHANGELOG.md +++ b/packages/magento-product-virtual/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-product-virtual/package.json b/packages/magento-product-virtual/package.json index 97d9146ab4..8441519ef8 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-cart-items": "7.1.0-canary.31", - "@graphcommerce/magento-product": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31" + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-cart-items": "7.1.0-canary.32", + "@graphcommerce/magento-product": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-product/CHANGELOG.md b/packages/magento-product/CHANGELOG.md index 63ab920400..a1c8739f28 100644 --- a/packages/magento-product/CHANGELOG.md +++ b/packages/magento-product/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-product/package.json b/packages/magento-product/package.json index fc59c4cc53..fa0612aed0 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,20 +12,20 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", - "@graphcommerce/framer-scroller": "7.1.0-canary.31", - "@graphcommerce/framer-next-pages": "7.1.0-canary.31", - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/graphql-mesh": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", + "@graphcommerce/ecommerce-ui": "7.1.0-canary.32", + "@graphcommerce/framer-scroller": "7.1.0-canary.32", + "@graphcommerce/framer-next-pages": "7.1.0-canary.32", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/graphql-mesh": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", "schema-dts": "^1.1.0" }, "peerDependencies": { diff --git a/packages/magento-review/CHANGELOG.md b/packages/magento-review/CHANGELOG.md index f9e1ac294f..ba150cbc80 100644 --- a/packages/magento-review/CHANGELOG.md +++ b/packages/magento-review/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-review/package.json b/packages/magento-review/package.json index f2ad4f1897..78e53ff2e7 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,19 +12,19 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/graphql-mesh": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-customer": "7.1.0-canary.31", - "@graphcommerce/magento-product": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", - "@graphcommerce/react-hook-form": "7.1.0-canary.31", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/graphql-mesh": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-customer": "7.1.0-canary.32", + "@graphcommerce/magento-product": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", + "@graphcommerce/react-hook-form": "7.1.0-canary.32", "schema-dts": "^1.1.0" }, "peerDependencies": { diff --git a/packages/magento-search/CHANGELOG.md b/packages/magento-search/CHANGELOG.md index 423427bece..400529103c 100644 --- a/packages/magento-search/CHANGELOG.md +++ b/packages/magento-search/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-search/package.json b/packages/magento-search/package.json index 0259f64598..a0fc7e3d15 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-product": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", - "@graphcommerce/react-hook-form": "7.1.0-canary.31" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.32", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-product": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", + "@graphcommerce/react-hook-form": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-store/CHANGELOG.md b/packages/magento-store/CHANGELOG.md index 3ca6f30a75..d83db992cd 100644 --- a/packages/magento-store/CHANGELOG.md +++ b/packages/magento-store/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-store/package.json b/packages/magento-store/package.json index 94908b32f4..bd6757aa6c 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,15 +12,15 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/graphql-mesh": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31" + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/graphql-mesh": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/magento-wishlist/CHANGELOG.md b/packages/magento-wishlist/CHANGELOG.md index 11c1c53c17..b469a11733 100644 --- a/packages/magento-wishlist/CHANGELOG.md +++ b/packages/magento-wishlist/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-wishlist +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/magento-wishlist/package.json b/packages/magento-wishlist/package.json index c0a22f36e8..9e46b97d1e 100644 --- a/packages/magento-wishlist/package.json +++ b/packages/magento-wishlist/package.json @@ -1,6 +1,6 @@ { "name": "@graphcommerce/magento-wishlist", - "version": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "browserslist": [ @@ -13,20 +13,20 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/graphql-mesh": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-customer": "7.1.0-canary.31", - "@graphcommerce/magento-product": "7.1.0-canary.31", - "@graphcommerce/magento-product-configurable": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31" + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/graphql-mesh": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-customer": "7.1.0-canary.32", + "@graphcommerce/magento-product": "7.1.0-canary.32", + "@graphcommerce/magento-product-configurable": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/mollie-magento-payment/CHANGELOG.md b/packages/mollie-magento-payment/CHANGELOG.md index 5c915ffce0..42825c1911 100644 --- a/packages/mollie-magento-payment/CHANGELOG.md +++ b/packages/mollie-magento-payment/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/mollie-magento-payment/package.json b/packages/mollie-magento-payment/package.json index ab21aa236e..bca54c5d9e 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,23 +12,23 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.31", - "@graphcommerce/magento-product": "7.1.0-canary.31", - "@graphcommerce/magento-product-configurable": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.32", + "@graphcommerce/magento-product": "7.1.0-canary.32", + "@graphcommerce/magento-product-configurable": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { - "@graphcommerce/ecommerce-ui": "7.1.0-canary.31", - "@graphcommerce/graphql": "7.1.0-canary.31", - "@graphcommerce/graphql-mesh": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", - "@graphcommerce/magento-cart": "7.1.0-canary.31", - "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.31", - "@graphcommerce/magento-store": "7.1.0-canary.31", - "@graphcommerce/next-ui": "7.1.0-canary.31", - "@graphcommerce/react-hook-form": "7.1.0-canary.31" + "@graphcommerce/ecommerce-ui": "7.1.0-canary.32", + "@graphcommerce/graphql": "7.1.0-canary.32", + "@graphcommerce/graphql-mesh": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", + "@graphcommerce/magento-cart": "7.1.0-canary.32", + "@graphcommerce/magento-cart-payment-method": "7.1.0-canary.32", + "@graphcommerce/magento-store": "7.1.0-canary.32", + "@graphcommerce/next-ui": "7.1.0-canary.32", + "@graphcommerce/react-hook-form": "7.1.0-canary.32" }, "peerDependencies": { "@lingui/react": "^4.2.1", diff --git a/packages/next-ui/CHANGELOG.md b/packages/next-ui/CHANGELOG.md index c459054805..c2565d8448 100644 --- a/packages/next-ui/CHANGELOG.md +++ b/packages/next-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/next-ui/package.json b/packages/next-ui/package.json index 28ff05568f..a2a3a679f8 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "author": "", "license": "MIT", "sideEffects": false, @@ -18,18 +18,18 @@ "@emotion/react": "^11.11.1", "@emotion/server": "^11.11.0", "@emotion/styled": "^11.11.0", - "@graphcommerce/framer-next-pages": "7.1.0-canary.31", - "@graphcommerce/framer-scroller": "7.1.0-canary.31", - "@graphcommerce/framer-utils": "7.1.0-canary.31", - "@graphcommerce/image": "7.1.0-canary.31", + "@graphcommerce/framer-next-pages": "7.1.0-canary.32", + "@graphcommerce/framer-scroller": "7.1.0-canary.32", + "@graphcommerce/framer-utils": "7.1.0-canary.32", + "@graphcommerce/image": "7.1.0-canary.32", "cookie": "^0.5.0", "react-is": "^18.2.0", "schema-dts": "^1.1.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32", "@types/cookie": "^0.5.2", "@types/react-is": "^18.2.1", "typescript": "5.2.2" diff --git a/packages/react-hook-form/CHANGELOG.md b/packages/react-hook-form/CHANGELOG.md index 1a208bad6f..25834086c9 100644 --- a/packages/react-hook-form/CHANGELOG.md +++ b/packages/react-hook-form/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packages/react-hook-form/package.json b/packages/react-hook-form/package.json index 4a9345684a..adda1aa073 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -16,9 +16,9 @@ "react-hook-form": "7.46.1" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32", "@testing-library/react": "^14.0.0" }, "peerDependencies": { diff --git a/packagesDev/browserslist-config/CHANGELOG.md b/packagesDev/browserslist-config/CHANGELOG.md index d6cec6a8d8..766cdce2b0 100644 --- a/packagesDev/browserslist-config/CHANGELOG.md +++ b/packagesDev/browserslist-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packagesDev/browserslist-config/package.json b/packagesDev/browserslist-config/package.json index 1018842284..ee517c977e 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "main": "index.js", "sideEffects": false } diff --git a/packagesDev/changeset-changelog/CHANGELOG.md b/packagesDev/changeset-changelog/CHANGELOG.md index e6942932eb..a661e68d24 100644 --- a/packagesDev/changeset-changelog/CHANGELOG.md +++ b/packagesDev/changeset-changelog/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/changeset-changelog +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packagesDev/changeset-changelog/package.json b/packagesDev/changeset-changelog/package.json index c59056777a..9c7e11fa52 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "type": "commonjs", "main": "dist/index.js", "types": "src/index.ts", diff --git a/packagesDev/eslint-config/CHANGELOG.md b/packagesDev/eslint-config/CHANGELOG.md index f6cd6586e4..6bd1a7102d 100644 --- a/packagesDev/eslint-config/CHANGELOG.md +++ b/packagesDev/eslint-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packagesDev/eslint-config/package.json b/packagesDev/eslint-config/package.json index e650adbfff..9e3329c96d 100644 --- a/packagesDev/eslint-config/package.json +++ b/packagesDev/eslint-config/package.json @@ -2,10 +2,10 @@ "name": "@graphcommerce/eslint-config-pwa", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "main": "index.js", "dependencies": { - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32", "@next/eslint-plugin-next": "13.4.19", "@typescript-eslint/eslint-plugin": "^6.6.0", "@typescript-eslint/parser": "^6.6.0", diff --git a/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md b/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md index 38d37d9630..be9ce1d6c2 100644 --- a/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md +++ b/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packagesDev/graphql-codegen-markdown-docs/package.json b/packagesDev/graphql-codegen-markdown-docs/package.json index 50bb5a04a4..fb7460df59 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "type": "commonjs", "main": "dist/index.js", @@ -21,9 +21,9 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { "@graphql-codegen/add": "5.0.0", diff --git a/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md b/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md index 43e2c98fc3..7f8d7e745d 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 +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packagesDev/graphql-codegen-near-operation-file/package.json b/packagesDev/graphql-codegen-near-operation-file/package.json index db39740ce8..408aef32ea 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "sideEffects": false, "type": "commonjs", "main": "dist/index.js", @@ -21,9 +21,9 @@ } }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", - "@graphcommerce/typescript-config-pwa": "7.1.0-canary.31" + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", + "@graphcommerce/typescript-config-pwa": "7.1.0-canary.32" }, "dependencies": { "@graphql-codegen/add": "5.0.0", diff --git a/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md b/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md index eb32daec04..a86867b62c 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 +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json b/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json index b064ff11bf..7c3724ea94 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "description": "GraphQL Code Generator plugin for optimizing your GraphQL queries relay style.", "license": "MIT", "type": "commonjs", @@ -19,8 +19,8 @@ "@graphql-codegen/plugin-helpers": "5.0.1" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "7.1.0-canary.31", - "@graphcommerce/prettier-config-pwa": "7.1.0-canary.31", + "@graphcommerce/eslint-config-pwa": "7.1.0-canary.32", + "@graphcommerce/prettier-config-pwa": "7.1.0-canary.32", "@graphql-codegen/testing": "3.0.0", "@types/jest": "29.5.4", "@types/relay-compiler": "8.0.3", diff --git a/packagesDev/next-config/CHANGELOG.md b/packagesDev/next-config/CHANGELOG.md index fe371f07d1..5a7d3ce52f 100644 --- a/packagesDev/next-config/CHANGELOG.md +++ b/packagesDev/next-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packagesDev/next-config/package.json b/packagesDev/next-config/package.json index 0303292ed1..a5c441d4da 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "type": "commonjs", "main": "dist/index.js", "types": "src/index.ts", diff --git a/packagesDev/prettier-config/CHANGELOG.md b/packagesDev/prettier-config/CHANGELOG.md index 391c98c199..790ff7d15f 100644 --- a/packagesDev/prettier-config/CHANGELOG.md +++ b/packagesDev/prettier-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packagesDev/prettier-config/package.json b/packagesDev/prettier-config/package.json index 7a2c9594ff..02a989e8a2 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "dependencies": { "prettier-plugin-jsdoc": "^1.0.1" } diff --git a/packagesDev/typescript-config/CHANGELOG.md b/packagesDev/typescript-config/CHANGELOG.md index 1fb95845a7..d26d1aed13 100644 --- a/packagesDev/typescript-config/CHANGELOG.md +++ b/packagesDev/typescript-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 7.1.0-canary.32 + ## 7.1.0-canary.31 ## 7.1.0-canary.30 diff --git a/packagesDev/typescript-config/package.json b/packagesDev/typescript-config/package.json index f82e53c3c6..ac631cfb61 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": "7.1.0-canary.31", + "version": "7.1.0-canary.32", "license": "MIT", "sideEffects": false, "devDependencies": {