@graphcommerce/magento-store 8.0.6-canary.4 → 8.0.7

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 +17 -28
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,14 +1,8 @@
1
1
  # Change Log
2
2
 
3
- ## 8.0.6-canary.4
3
+ ## 8.0.7
4
4
 
5
- ## 8.0.6-canary.3
6
-
7
- ## 8.0.6-canary.2
8
-
9
- ## 8.0.6-canary.1
10
-
11
- ## 8.0.6-canary.0
5
+ ## 8.0.6
12
6
 
13
7
  ## 8.0.5
14
8
 
@@ -70,8 +64,7 @@
70
64
 
71
65
  ### Patch Changes
72
66
 
73
- - [#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
74
- ([@paales](https://github.com/paales))
67
+ - [#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))
75
68
 
76
69
  ## 8.0.1-canary.4
77
70
 
@@ -85,18 +78,15 @@
85
78
 
86
79
  ### Patch Changes
87
80
 
88
- - [#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
89
- ([@paales](https://github.com/paales))
81
+ - [#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))
90
82
 
91
83
  ## 8.0.0
92
84
 
93
85
  ### Patch Changes
94
86
 
95
- - [#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.
96
- ([@carlocarels90](https://github.com/carlocarels90))
87
+ - [#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))
97
88
 
98
- - [#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
99
- ([@hnsr](https://github.com/hnsr))
89
+ - [#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))
100
90
 
101
91
  ## 8.0.0-canary.100
102
92
 
@@ -140,8 +130,7 @@
140
130
 
141
131
  ### Patch Changes
142
132
 
143
- - [#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
144
- ([@hnsr](https://github.com/hnsr))
133
+ - [#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))
145
134
 
146
135
  ## 8.0.0-canary.80
147
136
 
@@ -1286,31 +1275,31 @@
1286
1275
  All occurences of `<Trans>` and `t` need to be replaced:
1287
1276
 
1288
1277
  ```tsx
1289
- import { Trans, t } from "@lingui/macro";
1278
+ import { Trans, t } from '@lingui/macro'
1290
1279
 
1291
1280
  function MyComponent() {
1292
- const foo = "bar";
1281
+ const foo = 'bar'
1293
1282
  return (
1294
1283
  <div aria-label={t`Account ${foo}`}>
1295
1284
  <Trans>My Translation {foo}</Trans>
1296
1285
  </div>
1297
- );
1286
+ )
1298
1287
  }
1299
1288
  ```
1300
1289
 
1301
1290
  Needs to be replaced with:
1302
1291
 
1303
1292
  ```tsx
1304
- import { Trans } from "@lingui/react";
1305
- import { i18n } from "@lingui/core";
1293
+ import { Trans } from '@lingui/react'
1294
+ import { i18n } from '@lingui/core'
1306
1295
 
1307
1296
  function MyComponent() {
1308
- const foo = "bar";
1297
+ const foo = 'bar'
1309
1298
  return (
1310
1299
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1311
- <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1300
+ <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1312
1301
  </div>
1313
- );
1302
+ )
1314
1303
  }
1315
1304
  ```
1316
1305
 
@@ -1447,11 +1436,11 @@
1447
1436
  defaultProps: {
1448
1437
  round: true,
1449
1438
  formatOptions: {
1450
- style: "decimal",
1439
+ style: 'decimal',
1451
1440
  },
1452
1441
  },
1453
1442
  },
1454
- });
1443
+ })
1455
1444
  ```
1456
1445
 
1457
1446
  ### 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": "8.0.6-canary.4",
5
+ "version": "8.0.7",
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": "^8.0.6-canary.4",
16
- "@graphcommerce/graphql": "^8.0.6-canary.4",
17
- "@graphcommerce/graphql-mesh": "^8.0.6-canary.4",
18
- "@graphcommerce/image": "^8.0.6-canary.4",
19
- "@graphcommerce/next-ui": "^8.0.6-canary.4",
20
- "@graphcommerce/prettier-config-pwa": "^8.0.6-canary.4",
21
- "@graphcommerce/typescript-config-pwa": "^8.0.6-canary.4",
15
+ "@graphcommerce/eslint-config-pwa": "^8.0.7",
16
+ "@graphcommerce/graphql": "^8.0.7",
17
+ "@graphcommerce/graphql-mesh": "^8.0.7",
18
+ "@graphcommerce/image": "^8.0.7",
19
+ "@graphcommerce/next-ui": "^8.0.7",
20
+ "@graphcommerce/prettier-config-pwa": "^8.0.7",
21
+ "@graphcommerce/typescript-config-pwa": "^8.0.7",
22
22
  "@lingui/core": "^4.2.1",
23
23
  "@lingui/macro": "^4.2.1",
24
24
  "@lingui/react": "^4.2.1",