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