@graphcommerce/magento-category 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.
- package/CHANGELOG.md +13 -10
- package/package.json +10 -10
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
|
|
@@ -74,8 +78,7 @@
|
|
|
74
78
|
|
|
75
79
|
### Patch Changes
|
|
76
80
|
|
|
77
|
-
- [#2145](https://github.com/graphcommerce-org/graphcommerce/pull/2145) [`4fc2fda`](https://github.com/graphcommerce-org/graphcommerce/commit/4fc2fda92519159631cfe9a8eafcef58197f9986) - Solved an issue where the currently paginated page would be included in URL for the subcategory, resulting in a 404 error for some pages.
|
|
78
|
-
([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
81
|
+
- [#2145](https://github.com/graphcommerce-org/graphcommerce/pull/2145) [`4fc2fda`](https://github.com/graphcommerce-org/graphcommerce/commit/4fc2fda92519159631cfe9a8eafcef58197f9986) - Solved an issue where the currently paginated page would be included in URL for the subcategory, resulting in a 404 error for some pages. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
79
82
|
|
|
80
83
|
## 8.0.0-canary.100
|
|
81
84
|
|
|
@@ -1414,31 +1417,31 @@
|
|
|
1414
1417
|
All occurences of `<Trans>` and `t` need to be replaced:
|
|
1415
1418
|
|
|
1416
1419
|
```tsx
|
|
1417
|
-
import { Trans, t } from
|
|
1420
|
+
import { Trans, t } from '@lingui/macro'
|
|
1418
1421
|
|
|
1419
1422
|
function MyComponent() {
|
|
1420
|
-
const foo =
|
|
1423
|
+
const foo = 'bar'
|
|
1421
1424
|
return (
|
|
1422
1425
|
<div aria-label={t`Account ${foo}`}>
|
|
1423
1426
|
<Trans>My Translation {foo}</Trans>
|
|
1424
1427
|
</div>
|
|
1425
|
-
)
|
|
1428
|
+
)
|
|
1426
1429
|
}
|
|
1427
1430
|
```
|
|
1428
1431
|
|
|
1429
1432
|
Needs to be replaced with:
|
|
1430
1433
|
|
|
1431
1434
|
```tsx
|
|
1432
|
-
import { Trans } from
|
|
1433
|
-
import { i18n } from
|
|
1435
|
+
import { Trans } from '@lingui/react'
|
|
1436
|
+
import { i18n } from '@lingui/core'
|
|
1434
1437
|
|
|
1435
1438
|
function MyComponent() {
|
|
1436
|
-
const foo =
|
|
1439
|
+
const foo = 'bar'
|
|
1437
1440
|
return (
|
|
1438
1441
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
|
1439
|
-
<Trans key=
|
|
1442
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
|
1440
1443
|
</div>
|
|
1441
|
-
)
|
|
1444
|
+
)
|
|
1442
1445
|
}
|
|
1443
1446
|
```
|
|
1444
1447
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/magento-category",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "8.0.
|
|
5
|
+
"version": "8.0.8",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -12,15 +12,15 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"@graphcommerce/eslint-config-pwa": "^8.0.
|
|
16
|
-
"@graphcommerce/framer-scroller": "^8.0.
|
|
17
|
-
"@graphcommerce/graphql": "^8.0.
|
|
18
|
-
"@graphcommerce/image": "^8.0.
|
|
19
|
-
"@graphcommerce/magento-product": "^8.0.
|
|
20
|
-
"@graphcommerce/magento-store": "^8.0.
|
|
21
|
-
"@graphcommerce/next-ui": "^8.0.
|
|
22
|
-
"@graphcommerce/prettier-config-pwa": "^8.0.
|
|
23
|
-
"@graphcommerce/typescript-config-pwa": "^8.0.
|
|
15
|
+
"@graphcommerce/eslint-config-pwa": "^8.0.8",
|
|
16
|
+
"@graphcommerce/framer-scroller": "^8.0.8",
|
|
17
|
+
"@graphcommerce/graphql": "^8.0.8",
|
|
18
|
+
"@graphcommerce/image": "^8.0.8",
|
|
19
|
+
"@graphcommerce/magento-product": "^8.0.8",
|
|
20
|
+
"@graphcommerce/magento-store": "^8.0.8",
|
|
21
|
+
"@graphcommerce/next-ui": "^8.0.8",
|
|
22
|
+
"@graphcommerce/prettier-config-pwa": "^8.0.8",
|
|
23
|
+
"@graphcommerce/typescript-config-pwa": "^8.0.8",
|
|
24
24
|
"@lingui/core": "^4.2.1",
|
|
25
25
|
"@lingui/macro": "^4.2.1",
|
|
26
26
|
"@lingui/react": "^4.2.1",
|