@graphcommerce/magento-store 8.0.6 → 8.0.8

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 +19 -20
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 8.0.8
4
+
5
+ ## 8.0.7
6
+
3
7
  ## 8.0.6
4
8
 
5
9
  ## 8.0.5
@@ -62,8 +66,7 @@
62
66
 
63
67
  ### Patch Changes
64
68
 
65
- - [#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
66
- ([@paales](https://github.com/paales))
69
+ - [#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))
67
70
 
68
71
  ## 8.0.1-canary.4
69
72
 
@@ -77,18 +80,15 @@
77
80
 
78
81
  ### Patch Changes
79
82
 
80
- - [#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
81
- ([@paales](https://github.com/paales))
83
+ - [#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))
82
84
 
83
85
  ## 8.0.0
84
86
 
85
87
  ### Patch Changes
86
88
 
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.
88
- ([@carlocarels90](https://github.com/carlocarels90))
89
+ - [#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))
89
90
 
90
- - [#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
91
- ([@hnsr](https://github.com/hnsr))
91
+ - [#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))
92
92
 
93
93
  ## 8.0.0-canary.100
94
94
 
@@ -132,8 +132,7 @@
132
132
 
133
133
  ### Patch Changes
134
134
 
135
- - [#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
136
- ([@hnsr](https://github.com/hnsr))
135
+ - [#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))
137
136
 
138
137
  ## 8.0.0-canary.80
139
138
 
@@ -1278,31 +1277,31 @@
1278
1277
  All occurences of `<Trans>` and `t` need to be replaced:
1279
1278
 
1280
1279
  ```tsx
1281
- import { Trans, t } from "@lingui/macro";
1280
+ import { Trans, t } from '@lingui/macro'
1282
1281
 
1283
1282
  function MyComponent() {
1284
- const foo = "bar";
1283
+ const foo = 'bar'
1285
1284
  return (
1286
1285
  <div aria-label={t`Account ${foo}`}>
1287
1286
  <Trans>My Translation {foo}</Trans>
1288
1287
  </div>
1289
- );
1288
+ )
1290
1289
  }
1291
1290
  ```
1292
1291
 
1293
1292
  Needs to be replaced with:
1294
1293
 
1295
1294
  ```tsx
1296
- import { Trans } from "@lingui/react";
1297
- import { i18n } from "@lingui/core";
1295
+ import { Trans } from '@lingui/react'
1296
+ import { i18n } from '@lingui/core'
1298
1297
 
1299
1298
  function MyComponent() {
1300
- const foo = "bar";
1299
+ const foo = 'bar'
1301
1300
  return (
1302
1301
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1303
- <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1302
+ <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1304
1303
  </div>
1305
- );
1304
+ )
1306
1305
  }
1307
1306
  ```
1308
1307
 
@@ -1439,11 +1438,11 @@
1439
1438
  defaultProps: {
1440
1439
  round: true,
1441
1440
  formatOptions: {
1442
- style: "decimal",
1441
+ style: 'decimal',
1443
1442
  },
1444
1443
  },
1445
1444
  },
1446
- });
1445
+ })
1447
1446
  ```
1448
1447
 
1449
1448
  ### 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",
5
+ "version": "8.0.8",
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",
16
- "@graphcommerce/graphql": "^8.0.6",
17
- "@graphcommerce/graphql-mesh": "^8.0.6",
18
- "@graphcommerce/image": "^8.0.6",
19
- "@graphcommerce/next-ui": "^8.0.6",
20
- "@graphcommerce/prettier-config-pwa": "^8.0.6",
21
- "@graphcommerce/typescript-config-pwa": "^8.0.6",
15
+ "@graphcommerce/eslint-config-pwa": "^8.0.8",
16
+ "@graphcommerce/graphql": "^8.0.8",
17
+ "@graphcommerce/graphql-mesh": "^8.0.8",
18
+ "@graphcommerce/image": "^8.0.8",
19
+ "@graphcommerce/next-ui": "^8.0.8",
20
+ "@graphcommerce/prettier-config-pwa": "^8.0.8",
21
+ "@graphcommerce/typescript-config-pwa": "^8.0.8",
22
22
  "@lingui/core": "^4.2.1",
23
23
  "@lingui/macro": "^4.2.1",
24
24
  "@lingui/react": "^4.2.1",