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

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 -18
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 9.0.0-canary.58
4
+
5
+ ## 9.0.0-canary.57
6
+
3
7
  ## 9.0.0-canary.56
4
8
 
5
9
  ## 9.0.0-canary.55
@@ -62,11 +66,9 @@
62
66
 
63
67
  ### Minor Changes
64
68
 
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))
69
+ - [#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
70
 
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))
71
+ - [#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
72
 
71
73
  ## 8.1.0-canary.26
72
74
 
@@ -94,8 +96,7 @@
94
96
 
95
97
  ### Patch Changes
96
98
 
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))
99
+ - [#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
100
 
100
101
  ## 8.1.0-canary.14
101
102
 
@@ -121,8 +122,7 @@
121
122
 
122
123
  ### Patch Changes
123
124
 
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))
125
+ - [#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
126
 
127
127
  ## 8.0.6-canary.3
128
128
 
@@ -204,8 +204,7 @@
204
204
 
205
205
  ### Patch Changes
206
206
 
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))
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. ([@Jessevdpoel](https://github.com/Jessevdpoel))
209
208
 
210
209
  ## 8.0.0-canary.100
211
210
 
@@ -1544,31 +1543,31 @@
1544
1543
  All occurences of `<Trans>` and `t` need to be replaced:
1545
1544
 
1546
1545
  ```tsx
1547
- import { Trans, t } from "@lingui/macro";
1546
+ import { Trans, t } from '@lingui/macro'
1548
1547
 
1549
1548
  function MyComponent() {
1550
- const foo = "bar";
1549
+ const foo = 'bar'
1551
1550
  return (
1552
1551
  <div aria-label={t`Account ${foo}`}>
1553
1552
  <Trans>My Translation {foo}</Trans>
1554
1553
  </div>
1555
- );
1554
+ )
1556
1555
  }
1557
1556
  ```
1558
1557
 
1559
1558
  Needs to be replaced with:
1560
1559
 
1561
1560
  ```tsx
1562
- import { Trans } from "@lingui/react";
1563
- import { i18n } from "@lingui/core";
1561
+ import { Trans } from '@lingui/react'
1562
+ import { i18n } from '@lingui/core'
1564
1563
 
1565
1564
  function MyComponent() {
1566
- const foo = "bar";
1565
+ const foo = 'bar'
1567
1566
  return (
1568
1567
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1569
- <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1568
+ <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1570
1569
  </div>
1571
- );
1570
+ )
1572
1571
  }
1573
1572
  ```
1574
1573
 
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.58",
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.58",
16
+ "@graphcommerce/framer-scroller": "^9.0.0-canary.58",
17
+ "@graphcommerce/graphql": "^9.0.0-canary.58",
18
+ "@graphcommerce/image": "^9.0.0-canary.58",
19
+ "@graphcommerce/magento-product": "^9.0.0-canary.58",
20
+ "@graphcommerce/magento-store": "^9.0.0-canary.58",
21
+ "@graphcommerce/next-ui": "^9.0.0-canary.58",
22
+ "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.58",
23
+ "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.58",
24
24
  "@lingui/core": "^4.2.1",
25
25
  "@lingui/macro": "^4.2.1",
26
26
  "@lingui/react": "^4.2.1",