@graphcommerce/magento-category 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 +11 -10
  2. package/package.json +10 -10
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
@@ -74,8 +76,7 @@
74
76
 
75
77
  ### Patch Changes
76
78
 
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))
79
+ - [#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
80
 
80
81
  ## 8.0.0-canary.100
81
82
 
@@ -1414,31 +1415,31 @@
1414
1415
  All occurences of `<Trans>` and `t` need to be replaced:
1415
1416
 
1416
1417
  ```tsx
1417
- import { Trans, t } from "@lingui/macro";
1418
+ import { Trans, t } from '@lingui/macro'
1418
1419
 
1419
1420
  function MyComponent() {
1420
- const foo = "bar";
1421
+ const foo = 'bar'
1421
1422
  return (
1422
1423
  <div aria-label={t`Account ${foo}`}>
1423
1424
  <Trans>My Translation {foo}</Trans>
1424
1425
  </div>
1425
- );
1426
+ )
1426
1427
  }
1427
1428
  ```
1428
1429
 
1429
1430
  Needs to be replaced with:
1430
1431
 
1431
1432
  ```tsx
1432
- import { Trans } from "@lingui/react";
1433
- import { i18n } from "@lingui/core";
1433
+ import { Trans } from '@lingui/react'
1434
+ import { i18n } from '@lingui/core'
1434
1435
 
1435
1436
  function MyComponent() {
1436
- const foo = "bar";
1437
+ const foo = 'bar'
1437
1438
  return (
1438
1439
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1439
- <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1440
+ <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1440
1441
  </div>
1441
- );
1442
+ )
1442
1443
  }
1443
1444
  ```
1444
1445
 
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.6",
5
+ "version": "8.0.7",
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.6",
16
- "@graphcommerce/framer-scroller": "^8.0.6",
17
- "@graphcommerce/graphql": "^8.0.6",
18
- "@graphcommerce/image": "^8.0.6",
19
- "@graphcommerce/magento-product": "^8.0.6",
20
- "@graphcommerce/magento-store": "^8.0.6",
21
- "@graphcommerce/next-ui": "^8.0.6",
22
- "@graphcommerce/prettier-config-pwa": "^8.0.6",
23
- "@graphcommerce/typescript-config-pwa": "^8.0.6",
15
+ "@graphcommerce/eslint-config-pwa": "^8.0.7",
16
+ "@graphcommerce/framer-scroller": "^8.0.7",
17
+ "@graphcommerce/graphql": "^8.0.7",
18
+ "@graphcommerce/image": "^8.0.7",
19
+ "@graphcommerce/magento-product": "^8.0.7",
20
+ "@graphcommerce/magento-store": "^8.0.7",
21
+ "@graphcommerce/next-ui": "^8.0.7",
22
+ "@graphcommerce/prettier-config-pwa": "^8.0.7",
23
+ "@graphcommerce/typescript-config-pwa": "^8.0.7",
24
24
  "@lingui/core": "^4.2.1",
25
25
  "@lingui/macro": "^4.2.1",
26
26
  "@lingui/react": "^4.2.1",