@graphcommerce/magento-cart-shipping-method 9.0.0-canary.56 → 9.0.0-canary.57

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -16
  2. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Change Log
2
2
 
3
+ ## 9.0.0-canary.57
4
+
3
5
  ## 9.0.0-canary.56
4
6
 
5
7
  ## 9.0.0-canary.55
@@ -78,8 +80,7 @@
78
80
 
79
81
  ### Patch Changes
80
82
 
81
- - [#2264](https://github.com/graphcommerce-org/graphcommerce/pull/2264) [`e5291a4`](https://github.com/graphcommerce-org/graphcommerce/commit/e5291a426c57635f69fb9ec44f4abe150f04c9ed) - prevent rendering 'null' when method_title is not provided
82
- ([@carlocarels90](https://github.com/carlocarels90))
83
+ - [#2264](https://github.com/graphcommerce-org/graphcommerce/pull/2264) [`e5291a4`](https://github.com/graphcommerce-org/graphcommerce/commit/e5291a426c57635f69fb9ec44f4abe150f04c9ed) - prevent rendering 'null' when method_title is not provided ([@carlocarels90](https://github.com/carlocarels90))
83
84
 
84
85
  ## 8.1.0-canary.18
85
86
 
@@ -117,8 +118,7 @@
117
118
 
118
119
  ### Patch Changes
119
120
 
120
- - [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`530076e`](https://github.com/graphcommerce-org/graphcommerce/commit/530076e3664703cb8b577b7fcf1998a420819f60) - Moved all usages of useFormPersist to the <FormPersist/> component to prevent rerenders.
121
- ([@FrankHarland](https://github.com/FrankHarland))
121
+ - [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`530076e`](https://github.com/graphcommerce-org/graphcommerce/commit/530076e3664703cb8b577b7fcf1998a420819f60) - Moved all usages of useFormPersist to the <FormPersist/> component to prevent rerenders. ([@FrankHarland](https://github.com/FrankHarland))
122
122
 
123
123
  ## 8.0.6-canary.1
124
124
 
@@ -196,11 +196,9 @@
196
196
 
197
197
  ### Patch Changes
198
198
 
199
- - [#2093](https://github.com/graphcommerce-org/graphcommerce/pull/2093) [`112b041`](https://github.com/graphcommerce-org/graphcommerce/commit/112b041f01a33fbd521ce3eb3955844f96b29917) - Created a new experimental mutation abort feature inside `useFormGql`. This will allow redundant mutations to be canceled. This is enabled when the `experimental_useV2` prop on the `useFormGql` hook is used.
200
- ([@mikekeehnen](https://github.com/mikekeehnen))
199
+ - [#2093](https://github.com/graphcommerce-org/graphcommerce/pull/2093) [`112b041`](https://github.com/graphcommerce-org/graphcommerce/commit/112b041f01a33fbd521ce3eb3955844f96b29917) - Created a new experimental mutation abort feature inside `useFormGql`. This will allow redundant mutations to be canceled. This is enabled when the `experimental_useV2` prop on the `useFormGql` hook is used. ([@mikekeehnen](https://github.com/mikekeehnen))
201
200
 
202
- - [#2115](https://github.com/graphcommerce-org/graphcommerce/pull/2115) [`105a1af`](https://github.com/graphcommerce-org/graphcommerce/commit/105a1af8b820de8873e430ae398f1922d39a9110) - Disabled ripple animations on all ActionCard ‘Select’ and ‘Change’ so the rendering is more subtle during checkout.
203
- ([@Jessevdpoel](https://github.com/Jessevdpoel))
201
+ - [#2115](https://github.com/graphcommerce-org/graphcommerce/pull/2115) [`105a1af`](https://github.com/graphcommerce-org/graphcommerce/commit/105a1af8b820de8873e430ae398f1922d39a9110) - Disabled ripple animations on all ActionCard ‘Select’ and ‘Change’ so the rendering is more subtle during checkout. ([@Jessevdpoel](https://github.com/Jessevdpoel))
204
202
 
205
203
  ## 8.0.0-canary.100
206
204
 
@@ -1532,31 +1530,31 @@
1532
1530
  All occurences of `<Trans>` and `t` need to be replaced:
1533
1531
 
1534
1532
  ```tsx
1535
- import { Trans, t } from "@lingui/macro";
1533
+ import { Trans, t } from '@lingui/macro'
1536
1534
 
1537
1535
  function MyComponent() {
1538
- const foo = "bar";
1536
+ const foo = 'bar'
1539
1537
  return (
1540
1538
  <div aria-label={t`Account ${foo}`}>
1541
1539
  <Trans>My Translation {foo}</Trans>
1542
1540
  </div>
1543
- );
1541
+ )
1544
1542
  }
1545
1543
  ```
1546
1544
 
1547
1545
  Needs to be replaced with:
1548
1546
 
1549
1547
  ```tsx
1550
- import { Trans } from "@lingui/react";
1551
- import { i18n } from "@lingui/core";
1548
+ import { Trans } from '@lingui/react'
1549
+ import { i18n } from '@lingui/core'
1552
1550
 
1553
1551
  function MyComponent() {
1554
- const foo = "bar";
1552
+ const foo = 'bar'
1555
1553
  return (
1556
1554
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1557
- <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1555
+ <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1558
1556
  </div>
1559
- );
1557
+ )
1560
1558
  }
1561
1559
  ```
1562
1560
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-cart-shipping-method",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "9.0.0-canary.56",
5
+ "version": "9.0.0-canary.57",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -12,17 +12,17 @@
12
12
  }
13
13
  },
14
14
  "peerDependencies": {
15
- "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.56",
16
- "@graphcommerce/framer-scroller": "^9.0.0-canary.56",
17
- "@graphcommerce/graphql": "^9.0.0-canary.56",
18
- "@graphcommerce/image": "^9.0.0-canary.56",
19
- "@graphcommerce/magento-cart": "^9.0.0-canary.56",
20
- "@graphcommerce/magento-cart-shipping-address": "^9.0.0-canary.56",
21
- "@graphcommerce/magento-store": "^9.0.0-canary.56",
22
- "@graphcommerce/next-ui": "^9.0.0-canary.56",
23
- "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.56",
24
- "@graphcommerce/react-hook-form": "^9.0.0-canary.56",
25
- "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.56",
15
+ "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.57",
16
+ "@graphcommerce/framer-scroller": "^9.0.0-canary.57",
17
+ "@graphcommerce/graphql": "^9.0.0-canary.57",
18
+ "@graphcommerce/image": "^9.0.0-canary.57",
19
+ "@graphcommerce/magento-cart": "^9.0.0-canary.57",
20
+ "@graphcommerce/magento-cart-shipping-address": "^9.0.0-canary.57",
21
+ "@graphcommerce/magento-store": "^9.0.0-canary.57",
22
+ "@graphcommerce/next-ui": "^9.0.0-canary.57",
23
+ "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.57",
24
+ "@graphcommerce/react-hook-form": "^9.0.0-canary.57",
25
+ "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.57",
26
26
  "@lingui/core": "^4.2.1",
27
27
  "@lingui/macro": "^4.2.1",
28
28
  "@lingui/react": "^4.2.1",