@graphcommerce/magento-category 9.0.0-canary.56 → 9.0.0-canary.57

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 +15 -18
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Change Log
2
2
 
3
+ ## 9.0.0-canary.57
4
+
3
5
  ## 9.0.0-canary.56
4
6
 
5
7
  ## 9.0.0-canary.55
@@ -62,11 +64,9 @@
62
64
 
63
65
  ### Minor Changes
64
66
 
65
- - [#2273](https://github.com/graphcommerce-org/graphcommerce/pull/2273) [`77955c5`](https://github.com/graphcommerce-org/graphcommerce/commit/77955c56ac8633ab1c5e0f3ddb25e3a87236e2bb) - Improve Breadcrumbs on Category and Product pages
66
- ([@Jessevdpoel](https://github.com/Jessevdpoel))
67
+ - [#2273](https://github.com/graphcommerce-org/graphcommerce/pull/2273) [`77955c5`](https://github.com/graphcommerce-org/graphcommerce/commit/77955c56ac8633ab1c5e0f3ddb25e3a87236e2bb) - Improve Breadcrumbs on Category and Product pages ([@Jessevdpoel](https://github.com/Jessevdpoel))
67
68
 
68
- - [#2273](https://github.com/graphcommerce-org/graphcommerce/pull/2273) [`aa56540`](https://github.com/graphcommerce-org/graphcommerce/commit/aa56540af91638c09e4c7a0a1648aaa6c5fa0afb) - If a category has no children, the sibling links will be shown on the category page.
69
- ([@Jessevdpoel](https://github.com/Jessevdpoel))
69
+ - [#2273](https://github.com/graphcommerce-org/graphcommerce/pull/2273) [`aa56540`](https://github.com/graphcommerce-org/graphcommerce/commit/aa56540af91638c09e4c7a0a1648aaa6c5fa0afb) - If a category has no children, the sibling links will be shown on the category page. ([@Jessevdpoel](https://github.com/Jessevdpoel))
70
70
 
71
71
  ## 8.1.0-canary.26
72
72
 
@@ -94,8 +94,7 @@
94
94
 
95
95
  ### Patch Changes
96
96
 
97
- - [#2267](https://github.com/graphcommerce-org/graphcommerce/pull/2267) [`9d5fd11`](https://github.com/graphcommerce-org/graphcommerce/commit/9d5fd11c7130612e80523608ab442976f3f5ddc5) - make the CategoryHeroNav fragment injectable and add image to the childeren
98
- ([@carlocarels90](https://github.com/carlocarels90))
97
+ - [#2267](https://github.com/graphcommerce-org/graphcommerce/pull/2267) [`9d5fd11`](https://github.com/graphcommerce-org/graphcommerce/commit/9d5fd11c7130612e80523608ab442976f3f5ddc5) - make the CategoryHeroNav fragment injectable and add image to the childeren ([@carlocarels90](https://github.com/carlocarels90))
99
98
 
100
99
  ## 8.1.0-canary.14
101
100
 
@@ -121,8 +120,7 @@
121
120
 
122
121
  ### Patch Changes
123
122
 
124
- - [#2227](https://github.com/graphcommerce-org/graphcommerce/pull/2227) [`d597719`](https://github.com/graphcommerce-org/graphcommerce/commit/d597719baaabbe079660ac063fd021d871831511) - Added option to change sort order (ASC / DESC) for sort options (Name, price, position etc) on catalog and search pages.
125
- ([@FrankHarland](https://github.com/FrankHarland))
123
+ - [#2227](https://github.com/graphcommerce-org/graphcommerce/pull/2227) [`d597719`](https://github.com/graphcommerce-org/graphcommerce/commit/d597719baaabbe079660ac063fd021d871831511) - Added option to change sort order (ASC / DESC) for sort options (Name, price, position etc) on catalog and search pages. ([@FrankHarland](https://github.com/FrankHarland))
126
124
 
127
125
  ## 8.0.6-canary.3
128
126
 
@@ -204,8 +202,7 @@
204
202
 
205
203
  ### Patch Changes
206
204
 
207
- - [#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.
208
- ([@Jessevdpoel](https://github.com/Jessevdpoel))
205
+ - [#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))
209
206
 
210
207
  ## 8.0.0-canary.100
211
208
 
@@ -1544,31 +1541,31 @@
1544
1541
  All occurences of `<Trans>` and `t` need to be replaced:
1545
1542
 
1546
1543
  ```tsx
1547
- import { Trans, t } from "@lingui/macro";
1544
+ import { Trans, t } from '@lingui/macro'
1548
1545
 
1549
1546
  function MyComponent() {
1550
- const foo = "bar";
1547
+ const foo = 'bar'
1551
1548
  return (
1552
1549
  <div aria-label={t`Account ${foo}`}>
1553
1550
  <Trans>My Translation {foo}</Trans>
1554
1551
  </div>
1555
- );
1552
+ )
1556
1553
  }
1557
1554
  ```
1558
1555
 
1559
1556
  Needs to be replaced with:
1560
1557
 
1561
1558
  ```tsx
1562
- import { Trans } from "@lingui/react";
1563
- import { i18n } from "@lingui/core";
1559
+ import { Trans } from '@lingui/react'
1560
+ import { i18n } from '@lingui/core'
1564
1561
 
1565
1562
  function MyComponent() {
1566
- const foo = "bar";
1563
+ const foo = 'bar'
1567
1564
  return (
1568
1565
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1569
- <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1566
+ <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1570
1567
  </div>
1571
- );
1568
+ )
1572
1569
  }
1573
1570
  ```
1574
1571
 
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": "9.0.0-canary.56",
5
+ "version": "9.0.0-canary.57",
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": "^9.0.0-canary.56",
16
- "@graphcommerce/framer-scroller": "^9.0.0-canary.56",
17
- "@graphcommerce/graphql": "^9.0.0-canary.56",
18
- "@graphcommerce/image": "^9.0.0-canary.56",
19
- "@graphcommerce/magento-product": "^9.0.0-canary.56",
20
- "@graphcommerce/magento-store": "^9.0.0-canary.56",
21
- "@graphcommerce/next-ui": "^9.0.0-canary.56",
22
- "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.56",
23
- "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.56",
15
+ "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.57",
16
+ "@graphcommerce/framer-scroller": "^9.0.0-canary.57",
17
+ "@graphcommerce/graphql": "^9.0.0-canary.57",
18
+ "@graphcommerce/image": "^9.0.0-canary.57",
19
+ "@graphcommerce/magento-product": "^9.0.0-canary.57",
20
+ "@graphcommerce/magento-store": "^9.0.0-canary.57",
21
+ "@graphcommerce/next-ui": "^9.0.0-canary.57",
22
+ "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.57",
23
+ "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.57",
24
24
  "@lingui/core": "^4.2.1",
25
25
  "@lingui/macro": "^4.2.1",
26
26
  "@lingui/react": "^4.2.1",