@graphcommerce/magento-category 9.0.0-canary.55 → 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 +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.57
4
+
5
+ ## 9.0.0-canary.56
6
+
3
7
  ## 9.0.0-canary.55
4
8
 
5
9
  ## 9.0.0-canary.54
@@ -60,11 +64,9 @@
60
64
 
61
65
  ### Minor Changes
62
66
 
63
- - [#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
64
- ([@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))
65
68
 
66
- - [#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.
67
- ([@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))
68
70
 
69
71
  ## 8.1.0-canary.26
70
72
 
@@ -92,8 +94,7 @@
92
94
 
93
95
  ### Patch Changes
94
96
 
95
- - [#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
96
- ([@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))
97
98
 
98
99
  ## 8.1.0-canary.14
99
100
 
@@ -119,8 +120,7 @@
119
120
 
120
121
  ### Patch Changes
121
122
 
122
- - [#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.
123
- ([@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))
124
124
 
125
125
  ## 8.0.6-canary.3
126
126
 
@@ -202,8 +202,7 @@
202
202
 
203
203
  ### Patch Changes
204
204
 
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.
206
- ([@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))
207
206
 
208
207
  ## 8.0.0-canary.100
209
208
 
@@ -1542,31 +1541,31 @@
1542
1541
  All occurences of `<Trans>` and `t` need to be replaced:
1543
1542
 
1544
1543
  ```tsx
1545
- import { Trans, t } from "@lingui/macro";
1544
+ import { Trans, t } from '@lingui/macro'
1546
1545
 
1547
1546
  function MyComponent() {
1548
- const foo = "bar";
1547
+ const foo = 'bar'
1549
1548
  return (
1550
1549
  <div aria-label={t`Account ${foo}`}>
1551
1550
  <Trans>My Translation {foo}</Trans>
1552
1551
  </div>
1553
- );
1552
+ )
1554
1553
  }
1555
1554
  ```
1556
1555
 
1557
1556
  Needs to be replaced with:
1558
1557
 
1559
1558
  ```tsx
1560
- import { Trans } from "@lingui/react";
1561
- import { i18n } from "@lingui/core";
1559
+ import { Trans } from '@lingui/react'
1560
+ import { i18n } from '@lingui/core'
1562
1561
 
1563
1562
  function MyComponent() {
1564
- const foo = "bar";
1563
+ const foo = 'bar'
1565
1564
  return (
1566
1565
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1567
- <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1566
+ <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1568
1567
  </div>
1569
- );
1568
+ )
1570
1569
  }
1571
1570
  ```
1572
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.55",
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.55",
16
- "@graphcommerce/framer-scroller": "^9.0.0-canary.55",
17
- "@graphcommerce/graphql": "^9.0.0-canary.55",
18
- "@graphcommerce/image": "^9.0.0-canary.55",
19
- "@graphcommerce/magento-product": "^9.0.0-canary.55",
20
- "@graphcommerce/magento-store": "^9.0.0-canary.55",
21
- "@graphcommerce/next-ui": "^9.0.0-canary.55",
22
- "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.55",
23
- "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.55",
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",