@graphcommerce/magento-review 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 +15 -18
  2. package/package.json +14 -14
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
@@ -112,15 +114,13 @@
112
114
 
113
115
  ### Patch Changes
114
116
 
115
- - [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`0767bc4`](https://github.com/graphcommerce-org/graphcommerce/commit/0767bc40f7b596209f24ca4e745ff0441f3275c9) - Upgrade input components to no longer use muiRegister, which improves INP scores
116
- ([@FrankHarland](https://github.com/FrankHarland))
117
+ - [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`0767bc4`](https://github.com/graphcommerce-org/graphcommerce/commit/0767bc40f7b596209f24ca4e745ff0441f3275c9) - Upgrade input components to no longer use muiRegister, which improves INP scores ([@FrankHarland](https://github.com/FrankHarland))
117
118
 
118
119
  ## 8.0.6-canary.1
119
120
 
120
121
  ### Patch Changes
121
122
 
122
- - [#2213](https://github.com/graphcommerce-org/graphcommerce/pull/2213) [`a0d952e`](https://github.com/graphcommerce-org/graphcommerce/commit/a0d952e6b8a71a7451bfdb2bdb5150fc218169e2) - Moved product reviews to the relatedUpsells query so we do not pass the queryComplexity limit
123
- ([@paales](https://github.com/paales))
123
+ - [#2213](https://github.com/graphcommerce-org/graphcommerce/pull/2213) [`a0d952e`](https://github.com/graphcommerce-org/graphcommerce/commit/a0d952e6b8a71a7451bfdb2bdb5150fc218169e2) - Moved product reviews to the relatedUpsells query so we do not pass the queryComplexity limit ([@paales](https://github.com/paales))
124
124
 
125
125
  ## 8.0.6-canary.0
126
126
 
@@ -196,8 +196,7 @@
196
196
 
197
197
  ### Patch Changes
198
198
 
199
- - [`e33660f`](https://github.com/graphcommerce-org/graphcommerce/commit/e33660f172466dcfa0ab7262cee612d9a3e47776) - Accessibility improvements for the frontend: Added skip content link. Removed empty buttons from tab flow. Gave focus to elements (such as the menu) that appear when after clicking a button. Improved aria labels where needed
200
- ([@FrankHarland](https://github.com/FrankHarland))
199
+ - [`e33660f`](https://github.com/graphcommerce-org/graphcommerce/commit/e33660f172466dcfa0ab7262cee612d9a3e47776) - Accessibility improvements for the frontend: Added skip content link. Removed empty buttons from tab flow. Gave focus to elements (such as the menu) that appear when after clicking a button. Improved aria labels where needed ([@FrankHarland](https://github.com/FrankHarland))
201
200
 
202
201
  ## 8.0.0-canary.100
203
202
 
@@ -229,8 +228,7 @@
229
228
 
230
229
  ### Patch Changes
231
230
 
232
- - [#2168](https://github.com/graphcommerce-org/graphcommerce/pull/2168) [`986dc96`](https://github.com/graphcommerce-org/graphcommerce/commit/986dc96e6e88b58471dfcccf952d99bbb8a81884) - Added schema-dts as a dependency, so it isn't required in the example
233
- ([@paales](https://github.com/paales))
231
+ - [#2168](https://github.com/graphcommerce-org/graphcommerce/pull/2168) [`986dc96`](https://github.com/graphcommerce-org/graphcommerce/commit/986dc96e6e88b58471dfcccf952d99bbb8a81884) - Added schema-dts as a dependency, so it isn't required in the example ([@paales](https://github.com/paales))
234
232
 
235
233
  ## 8.0.0-canary.86
236
234
 
@@ -254,8 +252,7 @@
254
252
 
255
253
  ### Patch Changes
256
254
 
257
- - [`e33660f`](https://github.com/graphcommerce-org/graphcommerce/commit/e33660f172466dcfa0ab7262cee612d9a3e47776) - a11y improvements (see https://github.com/graphcommerce-org/graphcommerce/issues/1995 for more info)
258
- ([@FrankHarland](https://github.com/FrankHarland))
255
+ - [`e33660f`](https://github.com/graphcommerce-org/graphcommerce/commit/e33660f172466dcfa0ab7262cee612d9a3e47776) - a11y improvements (see https://github.com/graphcommerce-org/graphcommerce/issues/1995 for more info) ([@FrankHarland](https://github.com/FrankHarland))
259
256
 
260
257
  ## 8.0.0-canary.76
261
258
 
@@ -1486,31 +1483,31 @@
1486
1483
  All occurences of `<Trans>` and `t` need to be replaced:
1487
1484
 
1488
1485
  ```tsx
1489
- import { Trans, t } from "@lingui/macro";
1486
+ import { Trans, t } from '@lingui/macro'
1490
1487
 
1491
1488
  function MyComponent() {
1492
- const foo = "bar";
1489
+ const foo = 'bar'
1493
1490
  return (
1494
1491
  <div aria-label={t`Account ${foo}`}>
1495
1492
  <Trans>My Translation {foo}</Trans>
1496
1493
  </div>
1497
- );
1494
+ )
1498
1495
  }
1499
1496
  ```
1500
1497
 
1501
1498
  Needs to be replaced with:
1502
1499
 
1503
1500
  ```tsx
1504
- import { Trans } from "@lingui/react";
1505
- import { i18n } from "@lingui/core";
1501
+ import { Trans } from '@lingui/react'
1502
+ import { i18n } from '@lingui/core'
1506
1503
 
1507
1504
  function MyComponent() {
1508
- const foo = "bar";
1505
+ const foo = 'bar'
1509
1506
  return (
1510
1507
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1511
- <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1508
+ <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1512
1509
  </div>
1513
- );
1510
+ )
1514
1511
  }
1515
1512
  ```
1516
1513
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-review",
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": {
@@ -15,21 +15,21 @@
15
15
  "schema-dts": "^1.1.2"
16
16
  },
17
17
  "devDependencies": {
18
- "typescript": "5.3.3"
18
+ "typescript": "5.5.3"
19
19
  },
20
20
  "peerDependencies": {
21
- "@graphcommerce/ecommerce-ui": "^9.0.0-canary.56",
22
- "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.56",
23
- "@graphcommerce/graphql": "^9.0.0-canary.56",
24
- "@graphcommerce/graphql-mesh": "^9.0.0-canary.56",
25
- "@graphcommerce/image": "^9.0.0-canary.56",
26
- "@graphcommerce/magento-customer": "^9.0.0-canary.56",
27
- "@graphcommerce/magento-product": "^9.0.0-canary.56",
28
- "@graphcommerce/magento-store": "^9.0.0-canary.56",
29
- "@graphcommerce/next-ui": "^9.0.0-canary.56",
30
- "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.56",
31
- "@graphcommerce/react-hook-form": "^9.0.0-canary.56",
32
- "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.56",
21
+ "@graphcommerce/ecommerce-ui": "^9.0.0-canary.57",
22
+ "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.57",
23
+ "@graphcommerce/graphql": "^9.0.0-canary.57",
24
+ "@graphcommerce/graphql-mesh": "^9.0.0-canary.57",
25
+ "@graphcommerce/image": "^9.0.0-canary.57",
26
+ "@graphcommerce/magento-customer": "^9.0.0-canary.57",
27
+ "@graphcommerce/magento-product": "^9.0.0-canary.57",
28
+ "@graphcommerce/magento-store": "^9.0.0-canary.57",
29
+ "@graphcommerce/next-ui": "^9.0.0-canary.57",
30
+ "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.57",
31
+ "@graphcommerce/react-hook-form": "^9.0.0-canary.57",
32
+ "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.57",
33
33
  "@lingui/core": "^4.2.1",
34
34
  "@lingui/macro": "^4.2.1",
35
35
  "@lingui/react": "^4.2.1",