@graphcommerce/magento-store 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 +18 -22
  2. package/package.json +8 -8
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
@@ -46,8 +48,7 @@
46
48
 
47
49
  ### Minor Changes
48
50
 
49
- - [#2301](https://github.com/graphcommerce-org/graphcommerce/pull/2301) [`47bb47b`](https://github.com/graphcommerce-org/graphcommerce/commit/47bb47bac4b3689a6859afbc587274d813e0b072) - Implement confirm email functionality
50
- ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
51
+ - [#2301](https://github.com/graphcommerce-org/graphcommerce/pull/2301) [`47bb47b`](https://github.com/graphcommerce-org/graphcommerce/commit/47bb47bac4b3689a6859afbc587274d813e0b072) - Implement confirm email functionality ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
51
52
 
52
53
  ## 8.1.0-canary.34
53
54
 
@@ -179,8 +180,7 @@
179
180
 
180
181
  ### Patch Changes
181
182
 
182
- - [#2187](https://github.com/graphcommerce-org/graphcommerce/pull/2187) [`61f90af`](https://github.com/graphcommerce-org/graphcommerce/commit/61f90afc8bc229b2cd4793f724509783af138deb) - redirectOrNotFound would log the incorrect request URL
183
- ([@paales](https://github.com/paales))
183
+ - [#2187](https://github.com/graphcommerce-org/graphcommerce/pull/2187) [`61f90af`](https://github.com/graphcommerce-org/graphcommerce/commit/61f90afc8bc229b2cd4793f724509783af138deb) - redirectOrNotFound would log the incorrect request URL ([@paales](https://github.com/paales))
184
184
 
185
185
  ## 8.0.1-canary.4
186
186
 
@@ -194,18 +194,15 @@
194
194
 
195
195
  ### Patch Changes
196
196
 
197
- - [#2187](https://github.com/graphcommerce-org/graphcommerce/pull/2187) [`61f90af`](https://github.com/graphcommerce-org/graphcommerce/commit/61f90afc8bc229b2cd4793f724509783af138deb) - redirectOrNotFound would log the incorrect request URL
198
- ([@paales](https://github.com/paales))
197
+ - [#2187](https://github.com/graphcommerce-org/graphcommerce/pull/2187) [`61f90af`](https://github.com/graphcommerce-org/graphcommerce/commit/61f90afc8bc229b2cd4793f724509783af138deb) - redirectOrNotFound would log the incorrect request URL ([@paales](https://github.com/paales))
199
198
 
200
199
  ## 8.0.0
201
200
 
202
201
  ### Patch Changes
203
202
 
204
- - [#2067](https://github.com/graphcommerce-org/graphcommerce/pull/2067) [`3406794`](https://github.com/graphcommerce-org/graphcommerce/commit/340679434e0ff1033c8158ef03a091e06e20e6a9) - Prevent HandleRedirect errors by filtering out empty URL values from the candidates array.
205
- ([@carlocarels90](https://github.com/carlocarels90))
203
+ - [#2067](https://github.com/graphcommerce-org/graphcommerce/pull/2067) [`3406794`](https://github.com/graphcommerce-org/graphcommerce/commit/340679434e0ff1033c8158ef03a091e06e20e6a9) - Prevent HandleRedirect errors by filtering out empty URL values from the candidates array. ([@carlocarels90](https://github.com/carlocarels90))
206
204
 
207
- - [#2140](https://github.com/graphcommerce-org/graphcommerce/pull/2140) [`b34d85c`](https://github.com/graphcommerce-org/graphcommerce/commit/b34d85c8c5403c6f49b506b714ee314b8344fd99) - Solve incorrect redirect when locale has own domain
208
- ([@hnsr](https://github.com/hnsr))
205
+ - [#2140](https://github.com/graphcommerce-org/graphcommerce/pull/2140) [`b34d85c`](https://github.com/graphcommerce-org/graphcommerce/commit/b34d85c8c5403c6f49b506b714ee314b8344fd99) - Solve incorrect redirect when locale has own domain ([@hnsr](https://github.com/hnsr))
209
206
 
210
207
  ## 8.0.0-canary.100
211
208
 
@@ -249,8 +246,7 @@
249
246
 
250
247
  ### Patch Changes
251
248
 
252
- - [#2140](https://github.com/graphcommerce-org/graphcommerce/pull/2140) [`b34d85c`](https://github.com/graphcommerce-org/graphcommerce/commit/b34d85c8c5403c6f49b506b714ee314b8344fd99) - Fix incorrect redirect when locale has own domain
253
- ([@hnsr](https://github.com/hnsr))
249
+ - [#2140](https://github.com/graphcommerce-org/graphcommerce/pull/2140) [`b34d85c`](https://github.com/graphcommerce-org/graphcommerce/commit/b34d85c8c5403c6f49b506b714ee314b8344fd99) - Fix incorrect redirect when locale has own domain ([@hnsr](https://github.com/hnsr))
254
250
 
255
251
  ## 8.0.0-canary.80
256
252
 
@@ -1395,31 +1391,31 @@
1395
1391
  All occurences of `<Trans>` and `t` need to be replaced:
1396
1392
 
1397
1393
  ```tsx
1398
- import { Trans, t } from "@lingui/macro";
1394
+ import { Trans, t } from '@lingui/macro'
1399
1395
 
1400
1396
  function MyComponent() {
1401
- const foo = "bar";
1397
+ const foo = 'bar'
1402
1398
  return (
1403
1399
  <div aria-label={t`Account ${foo}`}>
1404
1400
  <Trans>My Translation {foo}</Trans>
1405
1401
  </div>
1406
- );
1402
+ )
1407
1403
  }
1408
1404
  ```
1409
1405
 
1410
1406
  Needs to be replaced with:
1411
1407
 
1412
1408
  ```tsx
1413
- import { Trans } from "@lingui/react";
1414
- import { i18n } from "@lingui/core";
1409
+ import { Trans } from '@lingui/react'
1410
+ import { i18n } from '@lingui/core'
1415
1411
 
1416
1412
  function MyComponent() {
1417
- const foo = "bar";
1413
+ const foo = 'bar'
1418
1414
  return (
1419
1415
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1420
- <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1416
+ <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1421
1417
  </div>
1422
- );
1418
+ )
1423
1419
  }
1424
1420
  ```
1425
1421
 
@@ -1556,11 +1552,11 @@
1556
1552
  defaultProps: {
1557
1553
  round: true,
1558
1554
  formatOptions: {
1559
- style: "decimal",
1555
+ style: 'decimal',
1560
1556
  },
1561
1557
  },
1562
1558
  },
1563
- });
1559
+ })
1564
1560
  ```
1565
1561
 
1566
1562
  ### Patch Changes
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-store",
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,13 +12,13 @@
12
12
  }
13
13
  },
14
14
  "peerDependencies": {
15
- "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.56",
16
- "@graphcommerce/graphql": "^9.0.0-canary.56",
17
- "@graphcommerce/graphql-mesh": "^9.0.0-canary.56",
18
- "@graphcommerce/image": "^9.0.0-canary.56",
19
- "@graphcommerce/next-ui": "^9.0.0-canary.56",
20
- "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.56",
21
- "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.56",
15
+ "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.57",
16
+ "@graphcommerce/graphql": "^9.0.0-canary.57",
17
+ "@graphcommerce/graphql-mesh": "^9.0.0-canary.57",
18
+ "@graphcommerce/image": "^9.0.0-canary.57",
19
+ "@graphcommerce/next-ui": "^9.0.0-canary.57",
20
+ "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.57",
21
+ "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.57",
22
22
  "@lingui/core": "^4.2.1",
23
23
  "@lingui/macro": "^4.2.1",
24
24
  "@lingui/react": "^4.2.1",