@graphcommerce/magento-product 9.0.0-canary.100 → 9.0.0-canary.103

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 (96) hide show
  1. package/CHANGELOG.md +83 -1252
  2. package/components/AddProductsToCart/AddProductsToCartButton.tsx +4 -5
  3. package/components/AddProductsToCart/AddProductsToCartError.tsx +2 -1
  4. package/components/AddProductsToCart/AddProductsToCartFab.tsx +5 -6
  5. package/components/AddProductsToCart/AddProductsToCartForm.tsx +15 -19
  6. package/components/AddProductsToCart/AddProductsToCartQuantity.tsx +5 -3
  7. package/components/AddProductsToCart/AddProductsToCartSnackbar.tsx +2 -1
  8. package/components/AddProductsToCart/AddProductsToCartSnackbarMessage.tsx +3 -4
  9. package/components/AddProductsToCart/findAddedItems.ts +2 -2
  10. package/components/AddProductsToCart/toUserErrors.ts +2 -2
  11. package/components/AddProductsToCart/useAddProductsToCartAction.ts +4 -3
  12. package/components/AddProductsToCart/useFormAddProductsToCart.ts +2 -2
  13. package/components/JsonLdProduct/ProductPageJsonLd.tsx +1 -1
  14. package/components/JsonLdProduct/jsonLdProduct.tsx +2 -2
  15. package/components/ProductAddToCart/ProductAddToCart.tsx +6 -3
  16. package/components/ProductCustomizable/CustomizableAreaOption.tsx +4 -3
  17. package/components/ProductCustomizable/CustomizableCheckboxOption.tsx +3 -7
  18. package/components/ProductCustomizable/CustomizableDateOption.tsx +2 -2
  19. package/components/ProductCustomizable/CustomizableDropDownOption.tsx +5 -5
  20. package/components/ProductCustomizable/CustomizableFieldOption.tsx +2 -2
  21. package/components/ProductCustomizable/CustomizableMultipleOption.tsx +3 -7
  22. package/components/ProductCustomizable/CustomizableRadioOption.tsx +3 -7
  23. package/components/ProductCustomizable/ProductCustomizable.tsx +5 -4
  24. package/components/ProductFiltersPro/PriceSlider.tsx +4 -2
  25. package/components/ProductFiltersPro/ProductFiltersPro.tsx +10 -19
  26. package/components/ProductFiltersPro/ProductFiltersProAggregations.tsx +2 -2
  27. package/components/ProductFiltersPro/ProductFiltersProAllFiltersChip.tsx +5 -6
  28. package/components/ProductFiltersPro/ProductFiltersProAllFiltersSidebar.tsx +7 -12
  29. package/components/ProductFiltersPro/ProductFiltersProCategorySection.tsx +6 -8
  30. package/components/ProductFiltersPro/ProductFiltersProChips.tsx +1 -1
  31. package/components/ProductFiltersPro/ProductFiltersProClearAll.tsx +2 -2
  32. package/components/ProductFiltersPro/ProductFiltersProLayoutSidebar.tsx +4 -2
  33. package/components/ProductFiltersPro/ProductFiltersProLimitChip.tsx +4 -2
  34. package/components/ProductFiltersPro/ProductFiltersProLimitSection.tsx +3 -2
  35. package/components/ProductFiltersPro/ProductFiltersProNoResults.tsx +3 -2
  36. package/components/ProductFiltersPro/ProductFiltersProSortChip.tsx +4 -2
  37. package/components/ProductFiltersPro/ProductFiltersProSortDirectionArrow.tsx +1 -1
  38. package/components/ProductFiltersPro/ProductFiltersProSortSection.tsx +3 -2
  39. package/components/ProductFiltersPro/activeAggregations.ts +2 -2
  40. package/components/ProductFiltersPro/applyAggregationCount.ts +2 -2
  41. package/components/ProductFiltersPro/useProductFiltersProClearAllAction.ts +1 -1
  42. package/components/ProductFiltersPro/useProductFiltersProSort.tsx +3 -3
  43. package/components/ProductListCount/ProductListCount.tsx +3 -2
  44. package/components/ProductListFilters/FilterCheckboxType.tsx +4 -3
  45. package/components/ProductListFilters/FilterEqualType.tsx +5 -4
  46. package/components/ProductListFilters/FilterRangeType.tsx +3 -2
  47. package/components/ProductListFilters/ProductListFilters.tsx +3 -3
  48. package/components/ProductListFiltersContainer/ProductListFiltersContainer.tsx +3 -2
  49. package/components/ProductListItem/ProductDiscountLabel.tsx +3 -2
  50. package/components/ProductListItem/ProductListItem.tsx +10 -15
  51. package/components/ProductListItem/ProductListItemImage.tsx +4 -2
  52. package/components/ProductListItem/ProductListItemImageContainer.tsx +7 -6
  53. package/components/ProductListItem/ProductListItemLinkOrDiv.tsx +2 -1
  54. package/components/ProductListItem/ProductListItemTitleAndPrice.tsx +4 -3
  55. package/components/ProductListItems/ProductListItemsBase.tsx +5 -4
  56. package/components/ProductListItems/ProductListParamsProvider.tsx +1 -1
  57. package/components/ProductListItems/filteredProductList.tsx +2 -2
  58. package/components/ProductListItems/getFilterTypes.ts +2 -1
  59. package/components/ProductListItems/productListApplyCategoryDefaults.ts +5 -4
  60. package/components/ProductListItems/renderer.tsx +2 -2
  61. package/components/ProductListLink/ProductListLink.tsx +5 -3
  62. package/components/ProductListPagination/ProductListPagination.tsx +5 -4
  63. package/components/ProductListPrice/ProductListPrice.tsx +3 -2
  64. package/components/ProductListSort/ProductListSort.tsx +7 -5
  65. package/components/ProductListSuggestions/ProductListSuggestions.tsx +1 -1
  66. package/components/ProductPage/ProductPageAddToCartRow.tsx +3 -2
  67. package/components/ProductPageBreadcrumb/ProductPageBreadcrumb.tsx +3 -2
  68. package/components/ProductPageBreadcrumb/ProductPageBreadcrumbs.tsx +3 -3
  69. package/components/ProductPageCategory/productPageCategory.ts +1 -1
  70. package/components/ProductPageDescription/ProductPageDescription.tsx +5 -4
  71. package/components/ProductPageGallery/ProductImage.tsx +1 -1
  72. package/components/ProductPageGallery/ProductPageGallery.tsx +3 -7
  73. package/components/ProductPageGallery/ProductVideo.tsx +1 -1
  74. package/components/ProductPageMeta/ProductPageMeta.tsx +2 -2
  75. package/components/ProductPageName/ProductPageName.tsx +2 -2
  76. package/components/ProductPagePrice/ProductPagePrice.tsx +5 -6
  77. package/components/ProductPagePrice/ProductPagePriceTiers.tsx +2 -2
  78. package/components/ProductPagePrice/getProductTierPrice.ts +2 -2
  79. package/components/ProductPagePrice/useCustomizableOptionPrice.ts +6 -5
  80. package/components/ProductScroller/ProductScroller.tsx +6 -13
  81. package/components/ProductShortDescription/ProductShortDescription.tsx +3 -2
  82. package/components/ProductSidebarDelivery/ProductSidebarDelivery.tsx +2 -2
  83. package/components/ProductSpecs/ProductSpecs.tsx +4 -3
  84. package/components/ProductSpecs/ProductSpecsAggregations.tsx +2 -2
  85. package/components/ProductSpecs/ProductSpecsCustomAttributes.tsx +2 -2
  86. package/components/ProductStaticPaths/getProductStaticPaths.ts +4 -3
  87. package/components/ProductStaticPaths/getSitemapPaths.ts +2 -2
  88. package/components/ProductWeight/ProductWeight.tsx +3 -2
  89. package/context/productListParamsContext.ts +1 -1
  90. package/hooks/useProductLink.ts +5 -1
  91. package/hooks/useProductList.ts +10 -13
  92. package/hooks/useProductListLink.ts +7 -5
  93. package/hooks/useProductListLinkReplace.ts +1 -1
  94. package/package.json +15 -15
  95. package/test/productURL.fixture.ts +1 -1
  96. package/tsconfig.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,22 +1,6 @@
1
1
  # Change Log
2
2
 
3
- ## 9.0.0-canary.100
4
-
5
- ## 9.0.0-canary.99
6
-
7
- ## 9.0.0-canary.98
8
-
9
- ## 9.0.0-canary.97
10
-
11
- ## 9.0.0-canary.96
12
-
13
- ## 9.0.0-canary.95
14
-
15
- ## 9.0.0-canary.94
16
-
17
- ## 9.0.0-canary.93
18
-
19
- ## 9.0.0-canary.92
3
+ ## 9.0.0-canary.103
20
4
 
21
5
  ## 9.0.0-canary.91
22
6
 
@@ -24,14 +8,6 @@
24
8
 
25
9
  - [#2367](https://github.com/graphcommerce-org/graphcommerce/pull/2367) [`71d412d`](https://github.com/graphcommerce-org/graphcommerce/commit/71d412d202bc94a0e676745547de5d809a7a850b) - When a user access a category page which is beyond the available total_pages, the user will be redirected to the last available page. ([@paales](https://github.com/paales))
26
10
 
27
- ## 9.0.0-canary.90
28
-
29
- ## 9.0.0-canary.89
30
-
31
- ## 9.0.0-canary.88
32
-
33
- ## 9.0.0-canary.87
34
-
35
11
  ## 9.0.0-canary.86
36
12
 
37
13
  ### Patch Changes
@@ -44,68 +20,24 @@
44
20
 
45
21
  - [#2378](https://github.com/graphcommerce-org/graphcommerce/pull/2378) [`c8237dc`](https://github.com/graphcommerce-org/graphcommerce/commit/c8237dc8f496a0ffddcf8fd4fc697941e257ed00) - Fixed the products sitemap not containing more than 100 products when limit SSG is enabled ([@rustmaestro](https://github.com/rustmaestro))
46
22
 
47
- ## 9.0.0-canary.84
48
-
49
- ## 9.0.0-canary.83
50
-
51
- ## 9.0.0-canary.82
52
-
53
- ## 9.0.0-canary.81
54
-
55
23
  ## 9.0.0-canary.80
56
24
 
57
25
  ### Minor Changes
58
26
 
59
27
  - [#2341](https://github.com/graphcommerce-org/graphcommerce/pull/2341) [`1d6512d`](https://github.com/graphcommerce-org/graphcommerce/commit/1d6512d4118cfb46602aa1f2432c3566fdb3261d) - Rename experimental_useV2 prop to deprecated_useV1 in useFromGql and enable it by default ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
60
28
 
61
- ## 9.0.0-canary.79
62
-
63
- ## 9.0.0-canary.78
64
-
65
- ## 9.0.0-canary.77
66
-
67
- ## 9.0.0-canary.76
68
-
69
- ## 9.0.0-canary.75
70
-
71
- ## 9.0.0-canary.74
72
-
73
- ## 9.0.0-canary.73
74
-
75
29
  ## 9.0.0-canary.72
76
30
 
77
31
  ### Minor Changes
78
32
 
79
33
  - [#2332](https://github.com/graphcommerce-org/graphcommerce/pull/2332) [`73e897a`](https://github.com/graphcommerce-org/graphcommerce/commit/73e897a5a5f266d9ec274807720c71eb1a639074) - Use custom_attributesV2 for product specs when running on magento 247 or higher ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
80
34
 
81
- ## 9.0.0-canary.71
82
-
83
- ## 9.0.0-canary.70
84
-
85
- ## 9.0.0-canary.69
86
-
87
- ## 9.0.0-canary.68
88
-
89
- ## 9.0.0-canary.67
90
-
91
- ## 9.0.0-canary.66
92
-
93
- ## 9.0.0-canary.65
94
-
95
- ## 9.0.0-canary.64
96
-
97
- ## 9.0.0-canary.63
98
-
99
- ## 9.0.0-canary.62
100
-
101
35
  ## 9.0.0-canary.61
102
36
 
103
37
  ### Minor Changes
104
38
 
105
39
  - [#2327](https://github.com/graphcommerce-org/graphcommerce/pull/2327) [`0935c33`](https://github.com/graphcommerce-org/graphcommerce/commit/0935c33ad08c963b2a406c92739590ac6acce7d2) - Move render logic from AddProductsToCartSnackbar to AddProductsToCartSnackbarMessage so this can be reused outside of AddProductsToCartForm ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
106
40
 
107
- ## 9.0.0-canary.60
108
-
109
41
  ## 9.0.0-canary.59
110
42
 
111
43
  ### Patch Changes
@@ -118,126 +50,30 @@
118
50
 
119
51
  - [#2328](https://github.com/graphcommerce-org/graphcommerce/pull/2328) [`ee04368`](https://github.com/graphcommerce-org/graphcommerce/commit/ee04368444f732e5541a595db6e2ef66d15add68) - Move to attributesList to get a list of filterable attributes instead of using an introspection query. `productFiltersProSectionRenderer` and `productFiltersProChipRenderer` keys now now one of `AttributeFrontendInputEnum`. ([@paales](https://github.com/paales))
120
52
 
121
- ## 9.0.0-canary.57
122
-
123
- ## 9.0.0-canary.56
124
-
125
- ## 9.0.0-canary.55
126
-
127
- ## 9.0.0-canary.54
128
-
129
- ## 8.1.0-canary.53
130
-
131
- ## 8.1.0-canary.52
132
-
133
53
  ## 8.1.0-canary.51
134
54
 
135
55
  ### Minor Changes
136
56
 
137
57
  - [#2322](https://github.com/graphcommerce-org/graphcommerce/pull/2322) [`4d08a2b`](https://github.com/graphcommerce-org/graphcommerce/commit/4d08a2bd8c1919bd85b18e8e856775d18fb67e00) - Rename configurable_customizable back to customizable_options ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
138
58
 
139
- ## 8.1.0-canary.50
140
-
141
- ## 8.1.0-canary.49
142
-
143
- ## 8.1.0-canary.48
144
-
145
- ## 8.1.0-canary.47
146
-
147
- ## 8.1.0-canary.46
148
-
149
- ## 8.1.0-canary.45
150
-
151
- ## 8.1.0-canary.44
152
-
153
- ## 8.1.0-canary.43
154
-
155
- ## 8.1.0-canary.42
156
-
157
59
  ## 8.1.0-canary.41
158
60
 
159
61
  ### Patch Changes
160
62
 
161
63
  - [#2242](https://github.com/graphcommerce-org/graphcommerce/pull/2242) [`a4cce76`](https://github.com/graphcommerce-org/graphcommerce/commit/a4cce76ca37af2bec604e953ada4bb11bd91f55d) - Add option to show an extended version of the pagination component. Configurable via the "productListPaginationVariant" key in your graphcommerce.config.js COMPACT means: "< Page X of Y >" EXTENDED means: "< 1 2 ... [5] ... 10 11 >" ([@FrankHarland](https://github.com/FrankHarland))
162
64
 
163
- ## 8.1.0-canary.40
164
-
165
- ## 8.1.0-canary.39
166
-
167
- ## 8.1.0-canary.38
168
-
169
- ## 8.1.0-canary.37
170
-
171
- ## 8.1.0-canary.36
172
-
173
- ## 8.1.0-canary.35
174
-
175
- ## 8.1.0-canary.34
176
-
177
- ## 8.1.0-canary.33
178
-
179
- ## 8.1.0-canary.32
180
-
181
- ## 8.1.0-canary.31
182
-
183
- ## 8.1.0-canary.30
184
-
185
- ## 8.1.0-canary.29
186
-
187
- ## 8.1.0-canary.28
188
-
189
65
  ## 8.1.0-canary.27
190
66
 
191
67
  ### Minor Changes
192
68
 
193
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))
194
70
 
195
- ## 8.1.0-canary.26
196
-
197
- ## 8.1.0-canary.25
198
-
199
- ## 8.1.0-canary.24
200
-
201
- ## 8.1.0-canary.23
202
-
203
- ## 8.1.0-canary.22
204
-
205
- ## 8.1.0-canary.21
206
-
207
- ## 8.1.0-canary.20
208
-
209
- ## 8.1.0-canary.19
210
-
211
- ## 8.1.0-canary.18
212
-
213
- ## 8.1.0-canary.17
214
-
215
- ## 8.1.0-canary.16
216
-
217
- ## 8.1.0-canary.15
218
-
219
- ## 8.1.0-canary.14
220
-
221
- ## 8.1.0-canary.13
222
-
223
- ## 8.1.0-canary.12
224
-
225
71
  ## 8.1.0-canary.11
226
72
 
227
73
  ### Patch Changes
228
74
 
229
75
  - [#2255](https://github.com/graphcommerce-org/graphcommerce/pull/2255) [`679d07d`](https://github.com/graphcommerce-org/graphcommerce/commit/679d07dad5b5e2dab3c0f3d537716b6115af8ef7) - make the ProductPageMeta fragment injectable ([@carlocarels90](https://github.com/carlocarels90))
230
76
 
231
- ## 8.1.0-canary.10
232
-
233
- ## 8.1.0-canary.9
234
-
235
- ## 8.1.0-canary.8
236
-
237
- ## 8.1.0-canary.7
238
-
239
- ## 8.1.0-canary.6
240
-
241
77
  ## 8.1.0-canary.5
242
78
 
243
79
  ### Patch Changes
@@ -250,8 +86,6 @@
250
86
 
251
87
  - [#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))
252
88
 
253
- ## 8.0.6-canary.3
254
-
255
89
  ## 8.0.6-canary.2
256
90
 
257
91
  ### Patch Changes
@@ -260,8 +94,6 @@
260
94
 
261
95
  - [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`43bd04a`](https://github.com/graphcommerce-org/graphcommerce/commit/43bd04a777c5800cc7e01bee1e123a5aad82f194) - Prevent BillingPage query from rerunning on each mutation ([@FrankHarland](https://github.com/FrankHarland))
262
96
 
263
- ## 8.0.6-canary.1
264
-
265
97
  ## 8.0.6-canary.0
266
98
 
267
99
  ### Patch Changes
@@ -274,92 +106,18 @@
274
106
 
275
107
  - [#2239](https://github.com/graphcommerce-org/graphcommerce/pull/2239) [`a2a6e78`](https://github.com/graphcommerce-org/graphcommerce/commit/a2a6e78291ab978f4ef1236a4476b4d54555af7f) - Prices of products are now updated when customizable options are selected ([@Jessevdpoel](https://github.com/Jessevdpoel))
276
108
 
277
- ## 8.0.5-canary.10
278
-
279
- ## 8.0.5-canary.9
280
-
281
- ## 8.0.5-canary.8
282
-
283
- ### Patch Changes
284
-
285
- - [#2239](https://github.com/graphcommerce-org/graphcommerce/pull/2239) [`a2a6e78`](https://github.com/graphcommerce-org/graphcommerce/commit/a2a6e78291ab978f4ef1236a4476b4d54555af7f) - Prices of products are now updated when customizable options are selected ([@Jessevdpoel](https://github.com/Jessevdpoel))
286
-
287
- ## 8.0.5-canary.7
288
-
289
- ## 8.0.5-canary.6
290
-
291
- ## 8.0.5-canary.5
292
-
293
- ## 8.0.5-canary.4
294
-
295
- ## 8.0.5-canary.3
296
-
297
- ## 8.0.5-canary.2
298
-
299
- ## 8.0.5-canary.1
300
-
301
- ## 8.0.5-canary.0
302
-
303
- ## 8.0.4
304
-
305
- ## 8.0.4-canary.1
306
-
307
- ## 8.0.4-canary.0
308
-
309
109
  ## 8.0.3
310
110
 
311
111
  ### Patch Changes
312
112
 
313
113
  - [#2217](https://github.com/graphcommerce-org/graphcommerce/pull/2217) [`2b750da`](https://github.com/graphcommerce-org/graphcommerce/commit/2b750da77723d37485da01df05f52d19b80cc90c) - fix for breadcrumbs on pdp when no category attached to product ([@JoshuaS98](https://github.com/JoshuaS98))
314
114
 
315
- ## 8.0.3-canary.6
316
-
317
- ### Patch Changes
318
-
319
- - [#2217](https://github.com/graphcommerce-org/graphcommerce/pull/2217) [`2b750da`](https://github.com/graphcommerce-org/graphcommerce/commit/2b750da77723d37485da01df05f52d19b80cc90c) - fix for breadcrumbs on pdp when no category attached to product ([@JoshuaS98](https://github.com/JoshuaS98))
320
-
321
- ## 8.0.3-canary.5
322
-
323
- ## 8.0.3-canary.4
324
-
325
- ## 8.0.3-canary.3
326
-
327
- ## 8.0.3-canary.2
328
-
329
- ## 8.0.3-canary.1
330
-
331
- ## 8.0.3-canary.0
332
-
333
115
  ## 8.0.2
334
116
 
335
117
  ### Patch Changes
336
118
 
337
119
  - [#2201](https://github.com/graphcommerce-org/graphcommerce/pull/2201) [`e16fea4`](https://github.com/graphcommerce-org/graphcommerce/commit/e16fea4b0ff9661fd15a32089fbfc0c6a1c903fe) - Fix issue where patches would not be applied correctly on the AddProductsAddToCartForm ([@paales](https://github.com/paales))
338
120
 
339
- ## 8.0.2-canary.3
340
-
341
- ### Patch Changes
342
-
343
- - [#2201](https://github.com/graphcommerce-org/graphcommerce/pull/2201) [`e16fea4`](https://github.com/graphcommerce-org/graphcommerce/commit/e16fea4b0ff9661fd15a32089fbfc0c6a1c903fe) - Fix issue where patches would not be applied correctly on the AddProductsAddToCartForm ([@paales](https://github.com/paales))
344
-
345
- ## 8.0.2-canary.2
346
-
347
- ## 8.0.2-canary.1
348
-
349
- ## 8.0.2-canary.0
350
-
351
- ## 8.0.1
352
-
353
- ## 8.0.1-canary.4
354
-
355
- ## 8.0.1-canary.3
356
-
357
- ## 8.0.1-canary.2
358
-
359
- ## 8.0.1-canary.1
360
-
361
- ## 8.0.1-canary.0
362
-
363
121
  ## 8.0.0
364
122
 
365
123
  ### Major Changes
@@ -402,1100 +160,173 @@
402
160
 
403
161
  - [#2077](https://github.com/graphcommerce-org/graphcommerce/pull/2077) [`5f4455b`](https://github.com/graphcommerce-org/graphcommerce/commit/5f4455b1cccddf1501f0279e5ca2d9277a07ff07) - New `<ProductListItemSkeleton />` component and added support to the productListRenderer. Used for the new Recently Viewed Products feature. ([@bramvanderholst](https://github.com/bramvanderholst))
404
162
 
405
- ## 8.0.0-canary.100
406
-
407
- ## 8.0.0-canary.99
163
+ ## 7.0.0
408
164
 
409
- ## 8.0.0-canary.98
165
+ ### Major Changes
410
166
 
411
- ## 8.0.0-canary.97
167
+ - [`e55d8c390`](https://github.com/graphcommerce-org/graphcommerce/commit/e55d8c390d90b4bb7bab11c6a99027ac72bd7e3e) - Created a new sidebar layout system, can be configured with productFiltersLayout in the graphcommerce.config.js ([@paales](https://github.com/paales))
412
168
 
413
- ## 8.0.0-canary.96
169
+ ### Minor Changes
414
170
 
415
- ## 8.0.0-canary.95
171
+ - [#1978](https://github.com/graphcommerce-org/graphcommerce/pull/1978) [`0c91ac1f7`](https://github.com/graphcommerce-org/graphcommerce/commit/0c91ac1f70f58dec418e945fc4a6a8c6732cc21e) - When a user selects a variant, it will switch the values on the configurable page with the values of the configured variant. Enabling options here will allow switching of those variants. ([@carlocarels90](https://github.com/carlocarels90))
416
172
 
417
- ## 8.0.0-canary.94
173
+ - [#1961](https://github.com/graphcommerce-org/graphcommerce/pull/1961) [`4a759c662`](https://github.com/graphcommerce-org/graphcommerce/commit/4a759c66215eaa69edc342b898e05e8f92c3ba9a) - Add Open Graph meta tags to all pages ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
418
174
 
419
- ## 8.0.0-canary.93
175
+ - [#1956](https://github.com/graphcommerce-org/graphcommerce/pull/1956) [`9e87443a1`](https://github.com/graphcommerce-org/graphcommerce/commit/9e87443a1139a87f2ead3227fee3f4a76dd65841) - Allow children to be passed into ProductSpecs ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
420
176
 
421
- ## 8.0.0-canary.92
177
+ ### Patch Changes
422
178
 
423
- ## 8.0.0-canary.91
179
+ - [#1914](https://github.com/graphcommerce-org/graphcommerce/pull/1914) [`c237f2f2c`](https://github.com/graphcommerce-org/graphcommerce/commit/c237f2f2c87d9e3c8aefc536a13b5b9203556f27) - Category pages now have the ability to select the displayed pageSize of a page if the backend provides multiple options. A non-default pageSize and a non-default sort option will now receive noindex meta tags when viewed. ([@paales](https://github.com/paales))
424
180
 
425
- ## 8.0.0-canary.90
181
+ - [#1911](https://github.com/graphcommerce-org/graphcommerce/pull/1911) [`c10d6d5be`](https://github.com/graphcommerce-org/graphcommerce/commit/c10d6d5beb0d1560d33e3e301d88fa9201515133) - Translations were missing for the ProductSidebarDelivery ([@rustmaestro](https://github.com/rustmaestro))
426
182
 
427
- ## 8.0.0-canary.89
183
+ - [#1948](https://github.com/graphcommerce-org/graphcommerce/pull/1948) [`17390af4f`](https://github.com/graphcommerce-org/graphcommerce/commit/17390af4f9d4a73c11c857b92eeb05ae185da9da) - Allow the redirect prop of AddProductsToCartForm to be false, so redirects can be disabled ([@bramvanderholst](https://github.com/bramvanderholst))
428
184
 
429
- ## 8.0.0-canary.88
185
+ - [#2001](https://github.com/graphcommerce-org/graphcommerce/pull/2001) [`9cc5f8495`](https://github.com/graphcommerce-org/graphcommerce/commit/9cc5f8495d0970d457ac15eda4bb4e7cd3f8120a) - Migrate to productListLink, away from the ProductListLink component ([@paales](https://github.com/paales))
430
186
 
431
- ## 8.0.0-canary.87
187
+ - [#1973](https://github.com/graphcommerce-org/graphcommerce/pull/1973) [`257a66e38`](https://github.com/graphcommerce-org/graphcommerce/commit/257a66e388933a333941d9459e6e6a266d05cda4) - Limit would not be applied correctly for the product listing ([@JoshuaS98](https://github.com/JoshuaS98))
432
188
 
433
- ### Patch Changes
189
+ - [#1919](https://github.com/graphcommerce-org/graphcommerce/pull/1919) [`201e75401`](https://github.com/graphcommerce-org/graphcommerce/commit/201e75401c99b7e7aeee06c7e5db737c19749298) - Fixed incorrect className for topRight ProductListItem location ([@bramvanderholst](https://github.com/bramvanderholst))
434
190
 
435
- - [#2168](https://github.com/graphcommerce-org/graphcommerce/pull/2168) [`986dc96`](https://github.com/graphcommerce-org/graphcommerce/commit/986dc96e6e88b58471dfcccf952d99bbb8a81884) - Added schema-dts as a dependency, so it isn't required in the example ([@paales](https://github.com/paales))
191
+ - [#2003](https://github.com/graphcommerce-org/graphcommerce/pull/2003) [`c4b102577`](https://github.com/graphcommerce-org/graphcommerce/commit/c4b1025774aad87c5e51f05c5b988d364f4bf20e) - ProductPageAddToCartRow wasn't aligned in the middle causing the price to be misaligned ([@Jessevdpoel](https://github.com/Jessevdpoel))
436
192
 
437
- ## 8.0.0-canary.86
193
+ - [#1992](https://github.com/graphcommerce-org/graphcommerce/pull/1992) [`bffdff6f0`](https://github.com/graphcommerce-org/graphcommerce/commit/bffdff6f09d92e0d56ba904422b939ffeed12fae) - Export props from ProductPagePrice and ProductListPrice ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
438
194
 
439
- ## 8.0.0-canary.85
195
+ - [#1914](https://github.com/graphcommerce-org/graphcommerce/pull/1914) [`b1abccb67`](https://github.com/graphcommerce-org/graphcommerce/commit/b1abccb677b83b090882ed1e0cf5336c52b175a4) - Category limit url param wasn't parsed correctly, causing a 404. ([@paales](https://github.com/paales))
440
196
 
441
- ## 8.0.0-canary.84
197
+ - [#1959](https://github.com/graphcommerce-org/graphcommerce/pull/1959) [`d0809b132`](https://github.com/graphcommerce-org/graphcommerce/commit/d0809b132a0e4cbdfeb86164f6c16a89ebecd987) - Added support for default values in the Config.graphqls files for the documentation ([@JoshuaS98](https://github.com/JoshuaS98))
442
198
 
443
- ## 8.0.0-canary.83
199
+ ## 6.1.0
444
200
 
445
- ### Patch Changes
201
+ ### Minor Changes
446
202
 
447
- - [#2164](https://github.com/graphcommerce-org/graphcommerce/pull/2164) [`5224755`](https://github.com/graphcommerce-org/graphcommerce/commit/522475503fd40e4718fd4d7d33f8164c01588c0c) - Fixed filters dissapearing when no items are found with applied filters ([@Jessevdpoel](https://github.com/Jessevdpoel))
203
+ - [#1890](https://github.com/graphcommerce-org/graphcommerce/pull/1890) [`f88727915`](https://github.com/graphcommerce-org/graphcommerce/commit/f88727915998690b34d35c7eb5b2af3ca154da3d) - Aggregation options (filters) now show a relevant count when applying filters and hide the count when it doesn't make sense. ([@paales](https://github.com/paales))
448
204
 
449
- ## 8.0.0-canary.82
205
+ - [#1877](https://github.com/graphcommerce-org/graphcommerce/pull/1877) [`27cd09247`](https://github.com/graphcommerce-org/graphcommerce/commit/27cd0924751a1ed2d1043e09600c039df76bad45) - Fetching core product page and and related+upsells in parallel so Magento doesn't choke on the query complexity limit. ([@paales](https://github.com/paales))
450
206
 
451
207
  ### Patch Changes
452
208
 
453
- - [#2150](https://github.com/graphcommerce-org/graphcommerce/pull/2150) [`59844cd`](https://github.com/graphcommerce-org/graphcommerce/commit/59844cdd8adfaf03d22b04b9082552e22f386fb6) - Fixed a bug which caused the default values of the productAddToCartForm to be overwritten if the selected configurable option of a product contained a visible simple product. Before the fix you could not add the same product twice without reloading the page. ([@Jessevdpoel](https://github.com/Jessevdpoel))
209
+ - [#1888](https://github.com/graphcommerce-org/graphcommerce/pull/1888) [`5460925a7`](https://github.com/graphcommerce-org/graphcommerce/commit/5460925a7f8bd0b8a871ed77098bec3a490fa8f2) - Filtering on category_uid wouldn't work on search results page ([@paales](https://github.com/paales))
454
210
 
455
- ## 8.0.0-canary.81
211
+ - [#1888](https://github.com/graphcommerce-org/graphcommerce/pull/1888) [`47429b293`](https://github.com/graphcommerce-org/graphcommerce/commit/47429b293f37b3977a862a36cff4da6956c44a4f) - When filtering on a paginated page it would not reset the currentPage to 1 ([@paales](https://github.com/paales))
456
212
 
457
- ## 8.0.0-canary.80
213
+ - [#1888](https://github.com/graphcommerce-org/graphcommerce/pull/1888) [`504d74916`](https://github.com/graphcommerce-org/graphcommerce/commit/504d749161959759b78cc5e9dcc7ca61349a0f12) - When the category_uid is filterable it would always show an active filter on all filters ([@paales](https://github.com/paales))
458
214
 
459
- ## 8.0.0-canary.79
215
+ - [#1870](https://github.com/graphcommerce-org/graphcommerce/pull/1870) [`fc567a9bd`](https://github.com/graphcommerce-org/graphcommerce/commit/fc567a9bd1b0ef4e8a8996752f279f7b5fd1fe84) - Crosssells will now be preloaded during the addProductsToCart mutation so they are already available in the 'added' overlay, preventing a second scroll. ([@bramvanderholst](https://github.com/bramvanderholst))
460
216
 
461
- ## 8.0.0-canary.78
217
+ - [#1894](https://github.com/graphcommerce-org/graphcommerce/pull/1894) [`e08879934`](https://github.com/graphcommerce-org/graphcommerce/commit/e08879934095cee9c8371a4013543864b58c4706) - ProductSpecs would throw an hydration error if there were multiple categories with the same label ([@paales](https://github.com/paales))
462
218
 
463
- ## 8.0.0-canary.77
219
+ ## 6.0.1
464
220
 
465
221
  ### Patch Changes
466
222
 
467
- - [`e33660f`](https://github.com/graphcommerce-org/graphcommerce/commit/e33660f172466dcfa0ab7262cee612d9a3e47776) - a11y improvements (see https://github.com/graphcommerce-org/graphcommerce/issues/1995 for more info) ([@FrankHarland](https://github.com/FrankHarland))
468
-
469
- ## 8.0.0-canary.76
470
-
471
- ## 8.0.0-canary.75
472
-
473
- ### Patch Changes
223
+ - [#1857](https://github.com/graphcommerce-org/graphcommerce/pull/1857) [`fc71d9382`](https://github.com/graphcommerce-org/graphcommerce/commit/fc71d9382b6aa2f92ac56c426ba9484da8219259) - Solve an issue where the sorting option didn’t get a highlighted badge: Always show a (1) when an OverlayOrPopperChip is selected ([@paales](https://github.com/paales))
474
224
 
475
- - [#2160](https://github.com/graphcommerce-org/graphcommerce/pull/2160) [`89b58be`](https://github.com/graphcommerce-org/graphcommerce/commit/89b58be9812e1e515b6996b2f5ce67ab8a596980) - The ProductFilters and ProductList queries would only run after the hygraphPageContent query would be resolved, although they don't depend on each other, now they run in parallel. ([@paales](https://github.com/paales))
225
+ - [#1857](https://github.com/graphcommerce-org/graphcommerce/pull/1857) [`429a43c66`](https://github.com/graphcommerce-org/graphcommerce/commit/429a43c662c811f541eb1bbe7e7eeea8267593a9) - Reset all filters at once was missing from All Filters panenl ([@paales](https://github.com/paales))
476
226
 
477
- - [#2160](https://github.com/graphcommerce-org/graphcommerce/pull/2160) [`154cd12`](https://github.com/graphcommerce-org/graphcommerce/commit/154cd12438f6cb30638e37b9a76a0649992b90f4) - Do not break words when wrapping ([@paales](https://github.com/paales))
227
+ - [#1857](https://github.com/graphcommerce-org/graphcommerce/pull/1857) [`dd4d043f8`](https://github.com/graphcommerce-org/graphcommerce/commit/dd4d043f83b3720a8c207bb0d18f58a98a440871) - All Filters chip would always show a filter count even if there was nothing filtered ([@paales](https://github.com/paales))
478
228
 
479
- ## 8.0.0-canary.74
229
+ - [#1857](https://github.com/graphcommerce-org/graphcommerce/pull/1857) [`76aee3918`](https://github.com/graphcommerce-org/graphcommerce/commit/76aee391859e6cef0bc783cd12a450c3c6473fb2) - All Filters sort is unable to be reset ([@paales](https://github.com/paales))
480
230
 
481
- ### Minor Changes
231
+ ## 6.0.0
482
232
 
483
- - [#2133](https://github.com/graphcommerce-org/graphcommerce/pull/2133) [`133f908`](https://github.com/graphcommerce-org/graphcommerce/commit/133f908200a79589036420f2925835724522cab8) - Added lazy hydration to improve total blocking time. Added LazyHydrate component which can be wrapped around other components you want to lazy hydrate. ([@Jessevdpoel](https://github.com/Jessevdpoel))
233
+ ### Major Changes
484
234
 
485
- ## 8.0.0-canary.73
235
+ - [#1749](https://github.com/graphcommerce-org/graphcommerce/pull/1749) [`0cc472915`](https://github.com/graphcommerce-org/graphcommerce/commit/0cc4729154d316227a41712b5f0adf514768e91f) - Introducing the new ProductFiltersPro component set with completely new filter and UI behavior. Filters will appear as a popper on the md and up breakpoints and as an overlay on sm and below breakpoints. Filters now have an Apply button instead of applying directly. ([@paales](https://github.com/paales))
486
236
 
487
- ## 8.0.0-canary.72
237
+ - [#1786](https://github.com/graphcommerce-org/graphcommerce/pull/1786) [`b76679204`](https://github.com/graphcommerce-org/graphcommerce/commit/b766792049e1e6ebe45671c0b36e78746ef159e2) - Created a completely new [GraphCommerce config system](https://www.graphcommerce.org/docs/framework/config) to allow for greater confiugration options and rely less on a .env file to configuration.
488
238
 
489
- ## 8.0.0-canary.71
239
+ - GraphCommerce can be configured in the graphcommerce.config.js
240
+ - The configuration is automatically validated on startup.
241
+ - All configuration values can be overwritten by environment variables. ([@paales](https://github.com/paales))
490
242
 
491
243
  ### Minor Changes
492
244
 
493
- - [#2099](https://github.com/graphcommerce-org/graphcommerce/pull/2099) [`ff796b8`](https://github.com/graphcommerce-org/graphcommerce/commit/ff796b838fae6cb5e35b101500133b0235a8677d) - Created UI for all customizable options except for the file upload customizable option ([@Jessevdpoel](https://github.com/Jessevdpoel))
494
-
495
- ## 8.0.0-canary.70
496
-
497
- ## 8.0.0-canary.69
245
+ - [#1822](https://github.com/graphcommerce-org/graphcommerce/pull/1822) [`cc02c46e3`](https://github.com/graphcommerce-org/graphcommerce/commit/cc02c46e32c9a44a90789591f43d91ae234dac84) - Added Facebook Open Graph tags to product pages:
498
246
 
499
- ### Major Changes
247
+ - og:title
248
+ - og:image
249
+ - og:url
250
+ - type
251
+ - product:retailer_part_no
252
+ - product:price:amount
253
+ - product:sale_price:amount
254
+ - product:price:currency
255
+ - product:category ([@KMalkowski](https://github.com/KMalkowski))
500
256
 
501
- - [#2041](https://github.com/graphcommerce-org/graphcommerce/pull/2041) [`bc3a833`](https://github.com/graphcommerce-org/graphcommerce/commit/bc3a8339b0b0f15b4d5cb014d4f95e6ea28c2cfe) - Removed legacyProductRoute from GraphCommerce ([@paales](https://github.com/paales))
257
+ - [#1814](https://github.com/graphcommerce-org/graphcommerce/pull/1814) [`15aa59049`](https://github.com/graphcommerce-org/graphcommerce/commit/15aa590493bf7639231f3bb3dd623c234ebad7cf) - ActionCard default styling introduced for a more inline and changed the look of selected filters. ([@ErwinOtten](https://github.com/ErwinOtten))
502
258
 
503
- ## 7.1.0-canary.68
259
+ - [#1828](https://github.com/graphcommerce-org/graphcommerce/pull/1828) [`3df85faf1`](https://github.com/graphcommerce-org/graphcommerce/commit/3df85faf189b95e2c7d9c3fc756474fcafb1c8b4) - Added a new `productRoute` configuration to create freedom in the actual product route used (default: /p/). Simplified redirects from legacy product routes to new routes by creating redirects. ([@paales](https://github.com/paales))
504
260
 
505
- ## 7.1.0-canary.67
261
+ - [#1791](https://github.com/graphcommerce-org/graphcommerce/pull/1791) [`38461cbc1`](https://github.com/graphcommerce-org/graphcommerce/commit/38461cbc1ba7f9478be3405abe10c7aee2a30363) - Products will now render tier prices when they are released ([@haelbichalex](https://github.com/haelbichalex))
506
262
 
507
263
  ### Patch Changes
508
264
 
509
- - [#2108](https://github.com/graphcommerce-org/graphcommerce/pull/2108) [`6f214fb`](https://github.com/graphcommerce-org/graphcommerce/commit/6f214fbfd8ef24cc6dcba72f403bdcb1d8a5ed8a) - Remove marginBottom from ProductScroller by default and let implementor set the margin ([@StefanAngenent](https://github.com/StefanAngenent))
510
-
511
- ## 7.1.0-canary.66
512
-
513
- ## 7.1.0-canary.65
514
-
515
- ## 7.1.0-canary.64
516
-
517
- ## 7.1.0-canary.63
518
-
519
- ## 7.1.0-canary.62
520
-
521
- ## 7.1.0-canary.61
522
-
523
- ## 7.1.0-canary.60
524
-
525
- ## 7.1.0-canary.59
526
-
527
- ## 7.1.0-canary.58
528
-
529
- ## 7.1.0-canary.57
265
+ - [#1799](https://github.com/graphcommerce-org/graphcommerce/pull/1799) [`cdf7eafc4`](https://github.com/graphcommerce-org/graphcommerce/commit/cdf7eafc4f16e2b02daae1b2403f6f69b3154bdc) - ProductListFilters and ProductListFiltersPro would render `category_id` or `category_uid` as a filter on category pages. ([@carlocarels90](https://github.com/carlocarels90))
530
266
 
531
- ## 7.1.0-canary.56
267
+ - [#1847](https://github.com/graphcommerce-org/graphcommerce/pull/1847) [`e0d43194a`](https://github.com/graphcommerce-org/graphcommerce/commit/e0d43194a4a2d2852cac27ab3c1efbc172d0d229) - ProductFiltersPro would route to an old page because the form wasn't reset to be in sync with the URL. ([@paales](https://github.com/paales))
532
268
 
533
- ## 7.1.0-canary.55
269
+ - [#1749](https://github.com/graphcommerce-org/graphcommerce/pull/1749) [`16e91da42`](https://github.com/graphcommerce-org/graphcommerce/commit/16e91da42dcb454ea4761d1780b9338c88ef1463) - Corrected spelling mistake: incomming to incoming ([@paales](https://github.com/paales))
534
270
 
535
- ## 7.1.0-canary.54
271
+ - [#1749](https://github.com/graphcommerce-org/graphcommerce/pull/1749) [`b132583d5`](https://github.com/graphcommerce-org/graphcommerce/commit/b132583d5145bb7cfe62b81695ea5a6f6bcaf083) - Generalize ProductCustomizable renderer to automatically fail the build if there are OptionTypeRenderers missing ([@paales](https://github.com/paales))
536
272
 
537
- ## 7.1.0-canary.53
273
+ ## 5.1.0
538
274
 
539
- ## 7.1.0-canary.52
275
+ ### Minor Changes
540
276
 
541
- ## 7.1.0-canary.51
277
+ - [#1757](https://github.com/graphcommerce-org/graphcommerce/pull/1757) [`ca2e2ab59`](https://github.com/graphcommerce-org/graphcommerce/commit/ca2e2ab594ab1cc0fedf908869829811e1f4009f) - Handle stock_status OUT_OF_STOCK properly and show only_x_left_in_stock if feature is enabled ([@paales](https://github.com/paales))
542
278
 
543
- ## 7.1.0-canary.50
279
+ - [#1756](https://github.com/graphcommerce-org/graphcommerce/pull/1756) [`1abaaedde`](https://github.com/graphcommerce-org/graphcommerce/commit/1abaaedde4062d3b19696e333d0016972681afaf) - Show cart item error messages when running Magento >= 2.4.5 or this [patch is applied](https://raw.githubusercontent.com/graphcommerce-org/graphcommerce/main/packages/magento-cart/243-244-magento-module-quote-graphql-cart-item-errors.patch)
544
280
 
545
- ## 7.1.0-canary.49
281
+ - Fixes an issue where the cart can get into a broken state, if items contain errors.
282
+ - AddToCartForm now shows a success message if there is an error but the error is related to another item in the cart.
283
+ - Disable checkout buttons when there are cart item errors and show a message. ([@paales](https://github.com/paales))
546
284
 
547
- ## 7.1.0-canary.48
285
+ - [#1761](https://github.com/graphcommerce-org/graphcommerce/pull/1761) [`c17318d6e`](https://github.com/graphcommerce-org/graphcommerce/commit/c17318d6ee7ca9faaaaccff121d84d4e1b1f2a13) - Generate sitemaps per locale so it can better handle large number of products ([@paales](https://github.com/paales))
548
286
 
549
- ## 7.1.0-canary.47
287
+ ### Patch Changes
550
288
 
551
- ## 7.1.0-canary.46
289
+ - [#1752](https://github.com/graphcommerce-org/graphcommerce/pull/1752) [`2a6a4d9ec`](https://github.com/graphcommerce-org/graphcommerce/commit/2a6a4d9ecfa1b58a66ba9b9d00016d6feda9aa95) - Updated dependencies to latest versions, except for nextjs; Solve tons of peer dependency issues.
552
290
 
553
- ## 7.1.0-canary.45
291
+ - Updated the @mui/material package
292
+ - Removed dependencies on react-hook-form-mui and @playwright/test
293
+ - Upgraded dependencies including type-fest and graphql-mesh
294
+ - Solved peer dependency issues ([@paales](https://github.com/paales))
554
295
 
555
- ### Patch Changes
296
+ - [#1744](https://github.com/graphcommerce-org/graphcommerce/pull/1744) [`cf1c864eb`](https://github.com/graphcommerce-org/graphcommerce/commit/cf1c864eb9819d5730f957be1d6c074ba14deb2a) - Fixed SKU undefined error when adding an item to the cart with an invalid configuration ([@mikekeehnen](https://github.com/mikekeehnen))
556
297
 
557
- - [#2077](https://github.com/graphcommerce-org/graphcommerce/pull/2077) [`0d2cb22a5`](https://github.com/graphcommerce-org/graphcommerce/commit/0d2cb22a58451d40102981263209aacb93016c76) - Removed unwanted space below ProductListItem images caused by line-height. Images are now perfectly square as expected. ([@bramvanderholst](https://github.com/bramvanderholst))
298
+ ## 5.0.0
558
299
 
559
- - [#2077](https://github.com/graphcommerce-org/graphcommerce/pull/2077) [`5f4455b1c`](https://github.com/graphcommerce-org/graphcommerce/commit/5f4455b1cccddf1501f0279e5ca2d9277a07ff07) - Added Skeleton render type to productListRenderer ([@bramvanderholst](https://github.com/bramvanderholst))
300
+ ### Major Changes
560
301
 
561
- ## 7.1.0-canary.38
302
+ - [#1734](https://github.com/graphcommerce-org/graphcommerce/pull/1734) [`e4c7fe17e`](https://github.com/graphcommerce-org/graphcommerce/commit/e4c7fe17e413e37362ceae92e67f1b3a5f62d398) - Bump major version of all packages ([@github-actions](https://github.com/apps/github-actions))
562
303
 
563
304
  ### Minor Changes
564
305
 
565
- - [#2048](https://github.com/graphcommerce-org/graphcommerce/pull/2048) [`13e23e426`](https://github.com/graphcommerce-org/graphcommerce/commit/13e23e4265bac70fb4d0830e4661019e71ce299f) - Wishlist will now support configurable products and uses the ActionCardLayout ([@Jessevdpoel](https://github.com/Jessevdpoel))
306
+ - [#1718](https://github.com/graphcommerce-org/graphcommerce/pull/1718) [`876c8253d`](https://github.com/graphcommerce-org/graphcommerce/commit/876c8253d62af8bfe534cda50cb13d88543fc117) - Export useAddProductsToCartAction and do not set the default to redirect ([@paales](https://github.com/paales))
566
307
 
567
308
  ### Patch Changes
568
309
 
569
- - [#2048](https://github.com/graphcommerce-org/graphcommerce/pull/2048) [`8d4f1ef00`](https://github.com/graphcommerce-org/graphcommerce/commit/8d4f1ef00bd7a8b8ca3be46302ce3959eae33a23) - When a product has a discount price, render that on the product page ([@Jessevdpoel](https://github.com/Jessevdpoel))
570
-
571
- - [#2048](https://github.com/graphcommerce-org/graphcommerce/pull/2048) [`0335dd941`](https://github.com/graphcommerce-org/graphcommerce/commit/0335dd9417b8fe1c4f1009dad354b9edab892b9f) - The product page will now also load all information that a ProductListItem will load ([@Jessevdpoel](https://github.com/Jessevdpoel))
572
-
573
- ## 7.1.0-canary.37
574
-
575
- ## 7.1.0-canary.36
576
-
577
- ## 7.1.0-canary.35
578
-
579
- ## 7.1.0-canary.34
580
-
581
- ## 7.1.0-canary.33
582
-
583
- ## 7.1.0-canary.32
584
-
585
- ## 7.1.0-canary.31
586
-
587
- ## 7.1.0-canary.30
588
-
589
- ## 7.1.0-canary.29
590
-
591
- ## 7.1.0-canary.28
592
-
593
- ## 7.1.0-canary.27
594
-
595
- ## 7.1.0-canary.26
596
-
597
- ## 7.1.0-canary.25
598
-
599
- ## 7.1.0-canary.24
600
-
601
- ## 7.1.0-canary.23
310
+ - [#1718](https://github.com/graphcommerce-org/graphcommerce/pull/1718) [`37e86cdc8`](https://github.com/graphcommerce-org/graphcommerce/commit/37e86cdc86ccca3db77d6c59b1e14c8112bb7893) - Remove usage of PropsWithChildren ([@paales](https://github.com/paales))
602
311
 
603
- ## 7.1.0-canary.22
312
+ - [#1722](https://github.com/graphcommerce-org/graphcommerce/pull/1722) [`7b36ea1d1`](https://github.com/graphcommerce-org/graphcommerce/commit/7b36ea1d100239892f21f67e5606852dd29b7c75) - Feature/fix cross sell item ([@FrankHarland](https://github.com/FrankHarland))
604
313
 
605
- ## 7.1.0-canary.21
314
+ - [#1734](https://github.com/graphcommerce-org/graphcommerce/pull/1734) [`9c3047c2f`](https://github.com/graphcommerce-org/graphcommerce/commit/9c3047c2fc6ea11ef9bd0c5128af883bffccc7e5) - Added GraphQL Injectable documentation ([@github-actions](https://github.com/apps/github-actions))
606
315
 
607
- ## 7.1.0-canary.20
316
+ - [#1738](https://github.com/graphcommerce-org/graphcommerce/pull/1738) [`9ee6f7def`](https://github.com/graphcommerce-org/graphcommerce/commit/9ee6f7def14919548fedb01f65e9f0cda2e949dc) - After the AddProductsToCartForm has been submitted, reset the submitted SKU's ([@paales](https://github.com/paales))
608
317
 
609
- ## 7.1.0-canary.19
318
+ ## 4.13.1
610
319
 
611
320
  ### Patch Changes
612
321
 
613
- - [#2083](https://github.com/graphcommerce-org/graphcommerce/pull/2083) [`ca493c7b2`](https://github.com/graphcommerce-org/graphcommerce/commit/ca493c7b208b8526c1109695d54bad7b2956a8bd) - Filters which are not yet applied and which option has 0 as item count will not be shown anymore. ([@Jessevdpoel](https://github.com/Jessevdpoel))
614
-
615
- ## 7.1.0-canary.18
616
-
617
- ## 7.1.0-canary.17
618
-
619
- ## 7.1.0-canary.16
620
-
621
- ## 7.1.0-canary.15
622
-
623
- ## 7.1.0-canary.14
322
+ - [#1715](https://github.com/graphcommerce-org/graphcommerce/pull/1715) [`c478585c0`](https://github.com/graphcommerce-org/graphcommerce/commit/c478585c050a389828a636208de7596e0d396f70) Thanks [@Jessevdpoel](https://github.com/Jessevdpoel)! - Added sorting on category_level
624
323
 
625
- ## 7.1.0-canary.13
626
-
627
- ### Patch Changes
628
-
629
- - [#2076](https://github.com/graphcommerce-org/graphcommerce/pull/2076) [`f860e6860`](https://github.com/graphcommerce-org/graphcommerce/commit/f860e68603526a15dcf2567f4ca57230423ef5c3) - fix maxWidth on productPageDescription ([@StefanAngenent](https://github.com/StefanAngenent))
630
-
631
- ## 7.1.0-canary.12
632
-
633
- ## 7.1.0-canary.11
634
-
635
- ### Patch Changes
636
-
637
- - [#2058](https://github.com/graphcommerce-org/graphcommerce/pull/2058) [`16dc48895`](https://github.com/graphcommerce-org/graphcommerce/commit/16dc4889543106238b1a87694e75586e4c1a787c) - Provide instant feedback on availble attribute options when making a selection on a configurable product ([@FrankHarland](https://github.com/FrankHarland))
638
-
639
- ## 7.1.0-canary.10
640
-
641
- ### Patch Changes
642
-
643
- - [#2081](https://github.com/graphcommerce-org/graphcommerce/pull/2081) [`22454110a`](https://github.com/graphcommerce-org/graphcommerce/commit/22454110a99de36a35e6f4b08c584b0165db32f4) - Removed the duplicate omitted name attribute from AddToCartQuantityProps ([@mikekeehnen](https://github.com/mikekeehnen))
644
-
645
- ## 7.1.0-canary.9
646
-
647
- ### Patch Changes
648
-
649
- - [#2007](https://github.com/graphcommerce-org/graphcommerce/pull/2007) [`f59c27660`](https://github.com/graphcommerce-org/graphcommerce/commit/f59c276605f9ed649d1197a9ba0e3f12d7c6d026) - Reconstruct crosssells behaviour. Add submitted variables & showSuccess to RHF ([@JoshuaS98](https://github.com/JoshuaS98))
650
-
651
- ## 7.1.0-canary.8
652
-
653
- ## 7.0.2-canary.7
654
-
655
- ## 7.0.2-canary.6
656
-
657
- ## 7.0.2-canary.5
658
-
659
- ## 7.0.1
660
-
661
- ## 7.0.1-canary.15
662
-
663
- ## 7.0.1-canary.14
664
-
665
- ## 7.0.1-canary.13
666
-
667
- ## 7.0.1-canary.12
668
-
669
- ## 7.0.1-canary.11
670
-
671
- ## 7.0.1-canary.10
672
-
673
- ## 7.0.1-canary.9
674
-
675
- ## 7.0.1-canary.8
676
-
677
- ## 7.0.1-canary.7
678
-
679
- ## 7.0.1-canary.6
680
-
681
- ## 7.0.1-canary.5
682
-
683
- ## 7.0.1-canary.4
684
-
685
- ## 7.0.1-canary.3
686
-
687
- ## 7.0.1-canary.2
688
-
689
- ## 7.0.1-canary.1
690
-
691
- ## 7.0.1-canary.0
692
-
693
- ## 7.0.0
694
-
695
- ### Major Changes
696
-
697
- - [`e55d8c390`](https://github.com/graphcommerce-org/graphcommerce/commit/e55d8c390d90b4bb7bab11c6a99027ac72bd7e3e) - Created a new sidebar layout system, can be configured with productFiltersLayout in the graphcommerce.config.js ([@paales](https://github.com/paales))
698
-
699
- ### Minor Changes
700
-
701
- - [#1978](https://github.com/graphcommerce-org/graphcommerce/pull/1978) [`0c91ac1f7`](https://github.com/graphcommerce-org/graphcommerce/commit/0c91ac1f70f58dec418e945fc4a6a8c6732cc21e) - When a user selects a variant, it will switch the values on the configurable page with the values of the configured variant. Enabling options here will allow switching of those variants. ([@carlocarels90](https://github.com/carlocarels90))
702
-
703
- - [#1961](https://github.com/graphcommerce-org/graphcommerce/pull/1961) [`4a759c662`](https://github.com/graphcommerce-org/graphcommerce/commit/4a759c66215eaa69edc342b898e05e8f92c3ba9a) - Add Open Graph meta tags to all pages ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
704
-
705
- - [#1956](https://github.com/graphcommerce-org/graphcommerce/pull/1956) [`9e87443a1`](https://github.com/graphcommerce-org/graphcommerce/commit/9e87443a1139a87f2ead3227fee3f4a76dd65841) - Allow children to be passed into ProductSpecs ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
706
-
707
- ### Patch Changes
708
-
709
- - [#1914](https://github.com/graphcommerce-org/graphcommerce/pull/1914) [`c237f2f2c`](https://github.com/graphcommerce-org/graphcommerce/commit/c237f2f2c87d9e3c8aefc536a13b5b9203556f27) - Category pages now have the ability to select the displayed pageSize of a page if the backend provides multiple options. A non-default pageSize and a non-default sort option will now receive noindex meta tags when viewed. ([@paales](https://github.com/paales))
710
-
711
- - [#1911](https://github.com/graphcommerce-org/graphcommerce/pull/1911) [`c10d6d5be`](https://github.com/graphcommerce-org/graphcommerce/commit/c10d6d5beb0d1560d33e3e301d88fa9201515133) - Translations were missing for the ProductSidebarDelivery ([@rustmaestro](https://github.com/rustmaestro))
712
-
713
- - [#1948](https://github.com/graphcommerce-org/graphcommerce/pull/1948) [`17390af4f`](https://github.com/graphcommerce-org/graphcommerce/commit/17390af4f9d4a73c11c857b92eeb05ae185da9da) - Allow the redirect prop of AddProductsToCartForm to be false, so redirects can be disabled ([@bramvanderholst](https://github.com/bramvanderholst))
714
-
715
- - [#2001](https://github.com/graphcommerce-org/graphcommerce/pull/2001) [`9cc5f8495`](https://github.com/graphcommerce-org/graphcommerce/commit/9cc5f8495d0970d457ac15eda4bb4e7cd3f8120a) - Migrate to productListLink, away from the ProductListLink component ([@paales](https://github.com/paales))
716
-
717
- - [#1973](https://github.com/graphcommerce-org/graphcommerce/pull/1973) [`257a66e38`](https://github.com/graphcommerce-org/graphcommerce/commit/257a66e388933a333941d9459e6e6a266d05cda4) - Limit would not be applied correctly for the product listing ([@JoshuaS98](https://github.com/JoshuaS98))
718
-
719
- - [#1919](https://github.com/graphcommerce-org/graphcommerce/pull/1919) [`201e75401`](https://github.com/graphcommerce-org/graphcommerce/commit/201e75401c99b7e7aeee06c7e5db737c19749298) - Fixed incorrect className for topRight ProductListItem location ([@bramvanderholst](https://github.com/bramvanderholst))
720
-
721
- - [#2003](https://github.com/graphcommerce-org/graphcommerce/pull/2003) [`c4b102577`](https://github.com/graphcommerce-org/graphcommerce/commit/c4b1025774aad87c5e51f05c5b988d364f4bf20e) - ProductPageAddToCartRow wasn't aligned in the middle causing the price to be misaligned ([@Jessevdpoel](https://github.com/Jessevdpoel))
722
-
723
- - [#1992](https://github.com/graphcommerce-org/graphcommerce/pull/1992) [`bffdff6f0`](https://github.com/graphcommerce-org/graphcommerce/commit/bffdff6f09d92e0d56ba904422b939ffeed12fae) - Export props from ProductPagePrice and ProductListPrice ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
724
-
725
- - [#1914](https://github.com/graphcommerce-org/graphcommerce/pull/1914) [`b1abccb67`](https://github.com/graphcommerce-org/graphcommerce/commit/b1abccb677b83b090882ed1e0cf5336c52b175a4) - Category limit url param wasn't parsed correctly, causing a 404. ([@paales](https://github.com/paales))
726
-
727
- - [#1959](https://github.com/graphcommerce-org/graphcommerce/pull/1959) [`d0809b132`](https://github.com/graphcommerce-org/graphcommerce/commit/d0809b132a0e4cbdfeb86164f6c16a89ebecd987) - Added support for default values in the Config.graphqls files for the documentation ([@JoshuaS98](https://github.com/JoshuaS98))
728
-
729
- ## 6.2.0-canary.98
730
-
731
- ## 6.2.0-canary.97
732
-
733
- ## 6.2.0-canary.96
734
-
735
- ## 6.2.0-canary.95
736
-
737
- ## 6.2.0-canary.94
738
-
739
- ## 6.2.0-canary.93
740
-
741
- ## 6.2.0-canary.92
742
-
743
- ## 6.2.0-canary.91
744
-
745
- ## 6.2.0-canary.90
746
-
747
- ## 6.2.0-canary.89
748
-
749
- ## 6.2.0-canary.88
750
-
751
- ## 6.2.0-canary.87
752
-
753
- ## 6.2.0-canary.86
754
-
755
- ## 6.2.0-canary.85
756
-
757
- ## 6.2.0-canary.84
758
-
759
- ## 6.2.0-canary.83
760
-
761
- ## 6.2.0-canary.82
762
-
763
- ## 6.2.0-canary.81
764
-
765
- ### Patch Changes
766
-
767
- - [#2003](https://github.com/graphcommerce-org/graphcommerce/pull/2003) [`c4b102577`](https://github.com/graphcommerce-org/graphcommerce/commit/c4b1025774aad87c5e51f05c5b988d364f4bf20e) - ProductPageAddToCartRow wasn't aligned in the middle causing the price to be misaligned ([@Jessevdpoel](https://github.com/Jessevdpoel))
768
-
769
- ## 6.2.0-canary.80
770
-
771
- ### Patch Changes
772
-
773
- - [#2001](https://github.com/graphcommerce-org/graphcommerce/pull/2001) [`9cc5f8495`](https://github.com/graphcommerce-org/graphcommerce/commit/9cc5f8495d0970d457ac15eda4bb4e7cd3f8120a) - Migrate to productListLink, away from the ProductListLink component ([@paales](https://github.com/paales))
774
-
775
- ## 6.2.0-canary.79
776
-
777
- ## 6.2.0-canary.78
778
-
779
- ## 6.2.0-canary.77
780
-
781
- ## 6.2.0-canary.76
782
-
783
- ## 6.2.0-canary.75
784
-
785
- ## 6.2.0-canary.74
786
-
787
- ## 6.2.0-canary.73
788
-
789
- ### Minor Changes
790
-
791
- - [#1978](https://github.com/graphcommerce-org/graphcommerce/pull/1978) [`0c91ac1f7`](https://github.com/graphcommerce-org/graphcommerce/commit/0c91ac1f70f58dec418e945fc4a6a8c6732cc21e) - When a user selects a variant, it will switch the values on the configurable page with the values of the configured variant. Enabling options here will allow switching of those variants. ([@carlocarels90](https://github.com/carlocarels90))
792
-
793
- ## 6.2.0-canary.72
794
-
795
- ## 6.2.0-canary.71
796
-
797
- ## 6.2.0-canary.70
798
-
799
- ## 6.2.0-canary.69
800
-
801
- ## 6.2.0-canary.68
802
-
803
- ## 6.2.0-canary.67
804
-
805
- ## 6.2.0-canary.66
806
-
807
- ## 6.2.0-canary.65
808
-
809
- ## 6.2.0-canary.64
810
-
811
- ## 6.2.0-canary.63
812
-
813
- ## 6.2.0-canary.62
814
-
815
- ### Patch Changes
816
-
817
- - [#1992](https://github.com/graphcommerce-org/graphcommerce/pull/1992) [`bffdff6f0`](https://github.com/graphcommerce-org/graphcommerce/commit/bffdff6f09d92e0d56ba904422b939ffeed12fae) - Export props from ProductPagePrice and ProductListPrice ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
818
-
819
- ## 6.2.0-canary.61
820
-
821
- ### Patch Changes
822
-
823
- - [#1975](https://github.com/graphcommerce-org/graphcommerce/pull/1975) [`93efa6eea`](https://github.com/graphcommerce-org/graphcommerce/commit/93efa6eea16894a56e2964050e4ce84bf96e652f) - collapse limitsection filters ([@JoshuaS98](https://github.com/JoshuaS98))
824
-
825
- ## 6.2.0-canary.60
826
-
827
- ## 6.2.0-canary.59
828
-
829
- ## 6.2.0-canary.58
830
-
831
- ## 6.2.0-canary.57
832
-
833
- ## 6.2.0-canary.56
834
-
835
- ## 6.2.0-canary.55
836
-
837
- ## 6.2.0-canary.54
838
-
839
- ## 6.2.0-canary.53
840
-
841
- ### Patch Changes
842
-
843
- - [#1973](https://github.com/graphcommerce-org/graphcommerce/pull/1973) [`257a66e38`](https://github.com/graphcommerce-org/graphcommerce/commit/257a66e388933a333941d9459e6e6a266d05cda4) - Fix limit filters ([@JoshuaS98](https://github.com/JoshuaS98))
844
-
845
- ## 6.2.0-canary.52
846
-
847
- ## 6.2.0-canary.51
848
-
849
- ## 6.2.0-canary.50
850
-
851
- ### Minor Changes
852
-
853
- - [`e55d8c390`](https://github.com/graphcommerce-org/graphcommerce/commit/e55d8c390d90b4bb7bab11c6a99027ac72bd7e3e) - Created a new sidebar layout system, can be configured with productFiltersLayout in the graphcommerce.config.js ([@paales](https://github.com/paales))
854
-
855
- ## 6.2.0-canary.49
856
-
857
- ### Patch Changes
858
-
859
- - [#1959](https://github.com/graphcommerce-org/graphcommerce/pull/1959) [`d0809b132`](https://github.com/graphcommerce-org/graphcommerce/commit/d0809b132a0e4cbdfeb86164f6c16a89ebecd987) - Added support for default values in the Config.graphqls files for the documentation ([@JoshuaS98](https://github.com/JoshuaS98))
860
-
861
- ## 6.2.0-canary.48
862
-
863
- ### Minor Changes
864
-
865
- - [#1961](https://github.com/graphcommerce-org/graphcommerce/pull/1961) [`4a759c662`](https://github.com/graphcommerce-org/graphcommerce/commit/4a759c66215eaa69edc342b898e05e8f92c3ba9a) - Add Open Graph meta tags to all pages ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
866
-
867
- ## 6.2.0-canary.47
868
-
869
- ## 6.2.0-canary.46
870
-
871
- ## 6.2.0-canary.45
872
-
873
- ## 6.2.0-canary.44
874
-
875
- ## 6.2.0-canary.43
876
-
877
- ## 6.2.0-canary.42
878
-
879
- ## 6.2.0-canary.41
880
-
881
- ## 6.2.0-canary.40
882
-
883
- ### Minor Changes
884
-
885
- - [#1956](https://github.com/graphcommerce-org/graphcommerce/pull/1956) [`9e87443a1`](https://github.com/graphcommerce-org/graphcommerce/commit/9e87443a1139a87f2ead3227fee3f4a76dd65841) - Allow children to be passed into ProductSpecs ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
886
-
887
- ## 6.2.0-canary.39
888
-
889
- ## 6.2.0-canary.38
890
-
891
- ## 6.2.0-canary.37
892
-
893
- ## 6.2.0-canary.36
894
-
895
- ## 6.2.0-canary.35
896
-
897
- ## 6.2.0-canary.34
898
-
899
- ## 6.2.0-canary.33
900
-
901
- ## 6.2.0-canary.32
902
-
903
- ## 6.2.0-canary.31
904
-
905
- ## 6.2.0-canary.30
906
-
907
- ## 6.2.0-canary.29
908
-
909
- ## 6.2.0-canary.28
910
-
911
- ### Patch Changes
912
-
913
- - [#1948](https://github.com/graphcommerce-org/graphcommerce/pull/1948) [`17390af4f`](https://github.com/graphcommerce-org/graphcommerce/commit/17390af4f9d4a73c11c857b92eeb05ae185da9da) - Allow the redirect prop of AddProductsToCartForm to be false, so redirects can be disabled ([@bramvanderholst](https://github.com/bramvanderholst))
914
-
915
- ## 6.2.0-canary.27
916
-
917
- ## 6.2.0-canary.26
918
-
919
- ## 6.2.0-canary.25
920
-
921
- ## 6.2.0-canary.24
922
-
923
- ## 6.2.0-canary.23
924
-
925
- ## 6.2.0-canary.22
926
-
927
- ## 6.2.0-canary.21
928
-
929
- ## 6.2.0-canary.20
930
-
931
- ## 6.2.0-canary.19
932
-
933
- ## 6.2.0-canary.18
934
-
935
- ## 6.2.0-canary.17
936
-
937
- ## 6.2.0-canary.16
938
-
939
- ## 6.2.0-canary.15
940
-
941
- ## 6.2.0-canary.14
942
-
943
- ## 6.2.0-canary.13
944
-
945
- ## 6.2.0-canary.12
946
-
947
- ## 6.2.0-canary.11
948
-
949
- ### Patch Changes
950
-
951
- - [#1919](https://github.com/graphcommerce-org/graphcommerce/pull/1919) [`201e75401`](https://github.com/graphcommerce-org/graphcommerce/commit/201e75401c99b7e7aeee06c7e5db737c19749298) - Fixed incorrect className for topRight ProductListItem location ([@bramvanderholst](https://github.com/bramvanderholst))
952
-
953
- ## 6.2.0-canary.10
954
-
955
- ## 6.2.0-canary.9
956
-
957
- ## 6.2.0-canary.8
958
-
959
- ## 6.2.0-canary.7
960
-
961
- ## 6.2.0-canary.6
962
-
963
- ## 6.1.1-canary.5
964
-
965
- ## 6.1.1-canary.4
966
-
967
- ### Patch Changes
968
-
969
- - [#1914](https://github.com/graphcommerce-org/graphcommerce/pull/1914) [`c237f2f2c`](https://github.com/graphcommerce-org/graphcommerce/commit/c237f2f2c87d9e3c8aefc536a13b5b9203556f27) - Category pages now have the ability to select the displayed pageSize of a page and a non-default pageSize and a non-default sort option will now receive noindex meta tags when viewed. ([@paales](https://github.com/paales))
970
-
971
- - [#1914](https://github.com/graphcommerce-org/graphcommerce/pull/1914) [`b1abccb67`](https://github.com/graphcommerce-org/graphcommerce/commit/b1abccb677b83b090882ed1e0cf5336c52b175a4) - Category limit url param wasn't parsed correctly, causing a 404. ([@paales](https://github.com/paales))
972
-
973
- ## 6.1.1-canary.3
974
-
975
- ### Patch Changes
976
-
977
- - [#1911](https://github.com/graphcommerce-org/graphcommerce/pull/1911) [`c10d6d5be`](https://github.com/graphcommerce-org/graphcommerce/commit/c10d6d5beb0d1560d33e3e301d88fa9201515133) - Added missing translations for the ProductSidebarDelivery ([@rustmaestro](https://github.com/rustmaestro))
978
-
979
- ## 6.1.1-canary.2
980
-
981
- ## 6.1.1-canary.1
982
-
983
- ## 6.1.1-canary.0
984
-
985
- ## 6.1.0
986
-
987
- ### Minor Changes
988
-
989
- - [#1890](https://github.com/graphcommerce-org/graphcommerce/pull/1890) [`f88727915`](https://github.com/graphcommerce-org/graphcommerce/commit/f88727915998690b34d35c7eb5b2af3ca154da3d) - Aggregation options (filters) now show a relevant count when applying filters and hide the count when it doesn't make sense. ([@paales](https://github.com/paales))
990
-
991
- - [#1877](https://github.com/graphcommerce-org/graphcommerce/pull/1877) [`27cd09247`](https://github.com/graphcommerce-org/graphcommerce/commit/27cd0924751a1ed2d1043e09600c039df76bad45) - Fetching core product page and and related+upsells in parallel so Magento doesn't choke on the query complexity limit. ([@paales](https://github.com/paales))
992
-
993
- ### Patch Changes
994
-
995
- - [#1888](https://github.com/graphcommerce-org/graphcommerce/pull/1888) [`5460925a7`](https://github.com/graphcommerce-org/graphcommerce/commit/5460925a7f8bd0b8a871ed77098bec3a490fa8f2) - Filtering on category_uid wouldn't work on search results page ([@paales](https://github.com/paales))
996
-
997
- - [#1888](https://github.com/graphcommerce-org/graphcommerce/pull/1888) [`47429b293`](https://github.com/graphcommerce-org/graphcommerce/commit/47429b293f37b3977a862a36cff4da6956c44a4f) - When filtering on a paginated page it would not reset the currentPage to 1 ([@paales](https://github.com/paales))
998
-
999
- - [#1888](https://github.com/graphcommerce-org/graphcommerce/pull/1888) [`504d74916`](https://github.com/graphcommerce-org/graphcommerce/commit/504d749161959759b78cc5e9dcc7ca61349a0f12) - When the category_uid is filterable it would always show an active filter on all filters ([@paales](https://github.com/paales))
1000
-
1001
- - [#1870](https://github.com/graphcommerce-org/graphcommerce/pull/1870) [`fc567a9bd`](https://github.com/graphcommerce-org/graphcommerce/commit/fc567a9bd1b0ef4e8a8996752f279f7b5fd1fe84) - Crosssells will now be preloaded during the addProductsToCart mutation so they are already available in the 'added' overlay, preventing a second scroll. ([@bramvanderholst](https://github.com/bramvanderholst))
1002
-
1003
- - [#1894](https://github.com/graphcommerce-org/graphcommerce/pull/1894) [`e08879934`](https://github.com/graphcommerce-org/graphcommerce/commit/e08879934095cee9c8371a4013543864b58c4706) - ProductSpecs would throw an hydration error if there were multiple categories with the same label ([@paales](https://github.com/paales))
1004
-
1005
- ## 6.0.2-canary.22
1006
-
1007
- ## 6.0.2-canary.21
1008
-
1009
- ## 6.0.2-canary.20
1010
-
1011
- ## 6.0.2-canary.19
1012
-
1013
- ## 6.0.2-canary.18
1014
-
1015
- ## 6.0.2-canary.17
1016
-
1017
- ## 6.0.2-canary.16
1018
-
1019
- ## 6.0.2-canary.15
1020
-
1021
- ### Patch Changes
1022
-
1023
- - [#1870](https://github.com/graphcommerce-org/graphcommerce/pull/1870) [`fc567a9bd`](https://github.com/graphcommerce-org/graphcommerce/commit/fc567a9bd1b0ef4e8a8996752f279f7b5fd1fe84) - Crosssells will now be preloaded during the addProductsToCart mutation so they are already available in the 'added' overlay, preventing a second scroll. ([@bramvanderholst](https://github.com/bramvanderholst))
1024
-
1025
- ## 6.0.2-canary.14
1026
-
1027
- ### Patch Changes
1028
-
1029
- - [#1894](https://github.com/graphcommerce-org/graphcommerce/pull/1894) [`e08879934`](https://github.com/graphcommerce-org/graphcommerce/commit/e08879934095cee9c8371a4013543864b58c4706) - ProductSpecs would throw an hydration error if there were multiple categories with the same label ([@paales](https://github.com/paales))
1030
-
1031
- ## 6.0.2-canary.13
1032
-
1033
- ## 6.0.2-canary.12
1034
-
1035
- ## 6.0.2-canary.11
1036
-
1037
- ### Patch Changes
1038
-
1039
- - [#1890](https://github.com/graphcommerce-org/graphcommerce/pull/1890) [`f88727915`](https://github.com/graphcommerce-org/graphcommerce/commit/f88727915998690b34d35c7eb5b2af3ca154da3d) - Aggregation options (filters) now show a relevant count when applying filters and hide the count when it doesn't make sense. ([@paales](https://github.com/paales))
1040
-
1041
- ## 6.0.2-canary.10
1042
-
1043
- ## 6.0.2-canary.9
1044
-
1045
- ## 6.0.2-canary.8
1046
-
1047
- ### Patch Changes
1048
-
1049
- - [#1888](https://github.com/graphcommerce-org/graphcommerce/pull/1888) [`5460925a7`](https://github.com/graphcommerce-org/graphcommerce/commit/5460925a7f8bd0b8a871ed77098bec3a490fa8f2) - Filtering on category_uid wouldn't work on search results page ([@paales](https://github.com/paales))
1050
-
1051
- - [#1888](https://github.com/graphcommerce-org/graphcommerce/pull/1888) [`47429b293`](https://github.com/graphcommerce-org/graphcommerce/commit/47429b293f37b3977a862a36cff4da6956c44a4f) - When filtering on a paginated page it would not reset the currentPage to 1 ([@paales](https://github.com/paales))
1052
-
1053
- - [#1888](https://github.com/graphcommerce-org/graphcommerce/pull/1888) [`504d74916`](https://github.com/graphcommerce-org/graphcommerce/commit/504d749161959759b78cc5e9dcc7ca61349a0f12) - When the category_uid is filterable it would always show an active filter on all filters ([@paales](https://github.com/paales))
1054
-
1055
- - [#1877](https://github.com/graphcommerce-org/graphcommerce/pull/1877) [`27cd09247`](https://github.com/graphcommerce-org/graphcommerce/commit/27cd0924751a1ed2d1043e09600c039df76bad45) - Fetching core product page and and related+upsells in parallel so Magento doesn't choke on the query complexity limit. ([@paales](https://github.com/paales))
1056
-
1057
- ## 6.0.2-canary.7
1058
-
1059
- ## 6.0.2-canary.6
1060
-
1061
- ## 6.0.2-canary.5
1062
-
1063
- ## 6.0.2-canary.4
1064
-
1065
- ## 6.0.2-canary.3
1066
-
1067
- ## 6.0.2-canary.2
1068
-
1069
- ## 6.0.2-canary.1
1070
-
1071
- ## 6.0.2-canary.0
1072
-
1073
- ## 6.0.1
1074
-
1075
- ### Patch Changes
1076
-
1077
- - [#1857](https://github.com/graphcommerce-org/graphcommerce/pull/1857) [`fc71d9382`](https://github.com/graphcommerce-org/graphcommerce/commit/fc71d9382b6aa2f92ac56c426ba9484da8219259) - Solve an issue where the sorting option didn’t get a highlighted badge: Always show a (1) when an OverlayOrPopperChip is selected ([@paales](https://github.com/paales))
1078
-
1079
- - [#1857](https://github.com/graphcommerce-org/graphcommerce/pull/1857) [`429a43c66`](https://github.com/graphcommerce-org/graphcommerce/commit/429a43c662c811f541eb1bbe7e7eeea8267593a9) - Reset all filters at once was missing from All Filters panenl ([@paales](https://github.com/paales))
1080
-
1081
- - [#1857](https://github.com/graphcommerce-org/graphcommerce/pull/1857) [`dd4d043f8`](https://github.com/graphcommerce-org/graphcommerce/commit/dd4d043f83b3720a8c207bb0d18f58a98a440871) - All Filters chip would always show a filter count even if there was nothing filtered ([@paales](https://github.com/paales))
1082
-
1083
- - [#1857](https://github.com/graphcommerce-org/graphcommerce/pull/1857) [`76aee3918`](https://github.com/graphcommerce-org/graphcommerce/commit/76aee391859e6cef0bc783cd12a450c3c6473fb2) - All Filters sort is unable to be reset ([@paales](https://github.com/paales))
1084
-
1085
- ## 6.0.1-canary.7
1086
-
1087
- ## 6.0.1-canary.6
1088
-
1089
- ## 6.0.1-canary.5
1090
-
1091
- ## 6.0.1-canary.4
1092
-
1093
- ## 6.0.1-canary.3
1094
-
1095
- ## 6.0.1-canary.2
1096
-
1097
- ## 6.0.1-canary.1
1098
-
1099
- ### Patch Changes
1100
-
1101
- - [#1857](https://github.com/graphcommerce-org/graphcommerce/pull/1857) [`fc71d9382`](https://github.com/graphcommerce-org/graphcommerce/commit/fc71d9382b6aa2f92ac56c426ba9484da8219259) - Solve an issue where the sorting option didn’t get a highlighted badge: Always show a (1) when an OverlayOrPopperChip is selected ([@paales](https://github.com/paales))
1102
-
1103
- - [#1857](https://github.com/graphcommerce-org/graphcommerce/pull/1857) [`429a43c66`](https://github.com/graphcommerce-org/graphcommerce/commit/429a43c662c811f541eb1bbe7e7eeea8267593a9) - Reset all filters at once was missing from All Filters panenl ([@paales](https://github.com/paales))
1104
-
1105
- - [#1857](https://github.com/graphcommerce-org/graphcommerce/pull/1857) [`dd4d043f8`](https://github.com/graphcommerce-org/graphcommerce/commit/dd4d043f83b3720a8c207bb0d18f58a98a440871) - All Filters chip would always show a filter count even if there was nothing filtered ([@paales](https://github.com/paales))
1106
-
1107
- - [#1857](https://github.com/graphcommerce-org/graphcommerce/pull/1857) [`76aee3918`](https://github.com/graphcommerce-org/graphcommerce/commit/76aee391859e6cef0bc783cd12a450c3c6473fb2) - All Filters sort is unable to be reset ([@paales](https://github.com/paales))
1108
-
1109
- ## 6.0.1-canary.0
1110
-
1111
- ## 6.0.0
1112
-
1113
- ### Major Changes
1114
-
1115
- - [#1749](https://github.com/graphcommerce-org/graphcommerce/pull/1749) [`0cc472915`](https://github.com/graphcommerce-org/graphcommerce/commit/0cc4729154d316227a41712b5f0adf514768e91f) - Introducing the new ProductFiltersPro component set with completely new filter and UI behavior. Filters will appear as a popper on the md and up breakpoints and as an overlay on sm and below breakpoints. Filters now have an Apply button instead of applying directly. ([@paales](https://github.com/paales))
1116
-
1117
- - [#1786](https://github.com/graphcommerce-org/graphcommerce/pull/1786) [`b76679204`](https://github.com/graphcommerce-org/graphcommerce/commit/b766792049e1e6ebe45671c0b36e78746ef159e2) - Created a completely new [GraphCommerce config system](https://www.graphcommerce.org/docs/framework/config) to allow for greater confiugration options and rely less on a .env file to configuration.
1118
-
1119
- - GraphCommerce can be configured in the graphcommerce.config.js
1120
- - The configuration is automatically validated on startup.
1121
- - All configuration values can be overwritten by environment variables. ([@paales](https://github.com/paales))
1122
-
1123
- ### Minor Changes
1124
-
1125
- - [#1822](https://github.com/graphcommerce-org/graphcommerce/pull/1822) [`cc02c46e3`](https://github.com/graphcommerce-org/graphcommerce/commit/cc02c46e32c9a44a90789591f43d91ae234dac84) - Added Facebook Open Graph tags to product pages:
1126
-
1127
- - og:title
1128
- - og:image
1129
- - og:url
1130
- - type
1131
- - product:retailer_part_no
1132
- - product:price:amount
1133
- - product:sale_price:amount
1134
- - product:price:currency
1135
- - product:category ([@KMalkowski](https://github.com/KMalkowski))
1136
-
1137
- - [#1814](https://github.com/graphcommerce-org/graphcommerce/pull/1814) [`15aa59049`](https://github.com/graphcommerce-org/graphcommerce/commit/15aa590493bf7639231f3bb3dd623c234ebad7cf) - ActionCard default styling introduced for a more inline and changed the look of selected filters. ([@ErwinOtten](https://github.com/ErwinOtten))
1138
-
1139
- - [#1828](https://github.com/graphcommerce-org/graphcommerce/pull/1828) [`3df85faf1`](https://github.com/graphcommerce-org/graphcommerce/commit/3df85faf189b95e2c7d9c3fc756474fcafb1c8b4) - Added a new `productRoute` configuration to create freedom in the actual product route used (default: /p/). Simplified redirects from legacy product routes to new routes by creating redirects. ([@paales](https://github.com/paales))
1140
-
1141
- - [#1791](https://github.com/graphcommerce-org/graphcommerce/pull/1791) [`38461cbc1`](https://github.com/graphcommerce-org/graphcommerce/commit/38461cbc1ba7f9478be3405abe10c7aee2a30363) - Products will now render tier prices when they are released ([@haelbichalex](https://github.com/haelbichalex))
1142
-
1143
- ### Patch Changes
1144
-
1145
- - [#1799](https://github.com/graphcommerce-org/graphcommerce/pull/1799) [`cdf7eafc4`](https://github.com/graphcommerce-org/graphcommerce/commit/cdf7eafc4f16e2b02daae1b2403f6f69b3154bdc) - ProductListFilters and ProductListFiltersPro would render `category_id` or `category_uid` as a filter on category pages. ([@carlocarels90](https://github.com/carlocarels90))
1146
-
1147
- - [#1847](https://github.com/graphcommerce-org/graphcommerce/pull/1847) [`e0d43194a`](https://github.com/graphcommerce-org/graphcommerce/commit/e0d43194a4a2d2852cac27ab3c1efbc172d0d229) - ProductFiltersPro would route to an old page because the form wasn't reset to be in sync with the URL. ([@paales](https://github.com/paales))
1148
-
1149
- - [#1749](https://github.com/graphcommerce-org/graphcommerce/pull/1749) [`16e91da42`](https://github.com/graphcommerce-org/graphcommerce/commit/16e91da42dcb454ea4761d1780b9338c88ef1463) - Corrected spelling mistake: incomming to incoming ([@paales](https://github.com/paales))
1150
-
1151
- - [#1749](https://github.com/graphcommerce-org/graphcommerce/pull/1749) [`b132583d5`](https://github.com/graphcommerce-org/graphcommerce/commit/b132583d5145bb7cfe62b81695ea5a6f6bcaf083) - Generalize ProductCustomizable renderer to automatically fail the build if there are OptionTypeRenderers missing ([@paales](https://github.com/paales))
1152
-
1153
- ## 6.0.0-canary.54
1154
-
1155
- ## 6.0.0-canary.53
1156
-
1157
- ## 6.0.0-canary.52
1158
-
1159
- ## 6.0.0-canary.51
1160
-
1161
- ## 6.0.0-canary.50
1162
-
1163
- ## 6.0.0-canary.49
1164
-
1165
- ### Patch Changes
1166
-
1167
- - [#1847](https://github.com/graphcommerce-org/graphcommerce/pull/1847) [`e0d43194a`](https://github.com/graphcommerce-org/graphcommerce/commit/e0d43194a4a2d2852cac27ab3c1efbc172d0d229) - ProductFiltersPro should not route to an old page because the form wasn't reset to be in sync with the URL. ([@paales](https://github.com/paales))
1168
-
1169
- ## 6.0.0-canary.48
1170
-
1171
- ## 6.0.0-canary.47
1172
-
1173
- ## 6.0.0-canary.46
1174
-
1175
- ## 6.0.0-canary.45
1176
-
1177
- ## 6.0.0-canary.44
1178
-
1179
- ## 6.0.0-canary.43
1180
-
1181
- ## 6.0.0-canary.42
1182
-
1183
- ## 6.0.0-canary.41
1184
-
1185
- ## 6.0.0-canary.40
1186
-
1187
- ## 6.0.0-canary.39
1188
-
1189
- ## 6.0.0-canary.38
1190
-
1191
- ## 6.0.0-canary.37
1192
-
1193
- ## 6.0.0-canary.36
1194
-
1195
- ## 6.0.0-canary.35
1196
-
1197
- ### Minor Changes
1198
-
1199
- - [#1822](https://github.com/graphcommerce-org/graphcommerce/pull/1822) [`cc02c46e3`](https://github.com/graphcommerce-org/graphcommerce/commit/cc02c46e32c9a44a90789591f43d91ae234dac84) - Added basic meta og:tags to the product page. ([@KMalkowski](https://github.com/KMalkowski))
1200
-
1201
- ## 6.0.0-canary.34
1202
-
1203
- ## 6.0.0-canary.33
1204
-
1205
- ## 6.0.0-canary.32
1206
-
1207
- ### Minor Changes
1208
-
1209
- - [#1814](https://github.com/graphcommerce-org/graphcommerce/pull/1814) [`15aa59049`](https://github.com/graphcommerce-org/graphcommerce/commit/15aa590493bf7639231f3bb3dd623c234ebad7cf) - - Show filter label, instead of value
1210
- - Actioncard default styling
1211
- - Active filter styling ([@ErwinOtten](https://github.com/ErwinOtten))
1212
-
1213
- ## 6.0.0-canary.31
1214
-
1215
- ## 6.0.0-canary.30
1216
-
1217
- ## 6.0.0-canary.29
1218
-
1219
- ### Minor Changes
1220
-
1221
- - [#1828](https://github.com/graphcommerce-org/graphcommerce/pull/1828) [`3df85faf1`](https://github.com/graphcommerce-org/graphcommerce/commit/3df85faf189b95e2c7d9c3fc756474fcafb1c8b4) - Added new `productRoute` configuration to create freedom in the actual product route used (default: /p/). Simplified redirects from legacy product routes to new routes by creating redirects. ([@paales](https://github.com/paales))
1222
-
1223
- ## 6.0.0-canary.28
1224
-
1225
- ### Patch Changes
1226
-
1227
- - [#1823](https://github.com/graphcommerce-org/graphcommerce/pull/1823) [`605d74434`](https://github.com/graphcommerce-org/graphcommerce/commit/605d74434b78baa83f3574b6a4249eae0431d570) - Fix/upgrade instructions ([@paales](https://github.com/paales))
1228
-
1229
- ## 6.0.0-canary.27
1230
-
1231
- ## 6.0.0-canary.26
1232
-
1233
- ## 6.0.0-canary.25
1234
-
1235
- ## 6.0.0-canary.24
1236
-
1237
- ### Minor Changes
1238
-
1239
- - [#1791](https://github.com/graphcommerce-org/graphcommerce/pull/1791) [`38461cbc1`](https://github.com/graphcommerce-org/graphcommerce/commit/38461cbc1ba7f9478be3405abe10c7aee2a30363) - Add price tiers feature ([@haelbichalex](https://github.com/haelbichalex))
1240
-
1241
- ## 6.0.0-canary.23
1242
-
1243
- ## 6.0.0-canary.22
1244
-
1245
- ## 6.0.0-canary.21
1246
-
1247
- ## 6.0.0-canary.20
1248
-
1249
- ### Minor Changes
1250
-
1251
- - [#1786](https://github.com/graphcommerce-org/graphcommerce/pull/1786) [`b76679204`](https://github.com/graphcommerce-org/graphcommerce/commit/b766792049e1e6ebe45671c0b36e78746ef159e2) - Added a new graphcommerce.config.ts which can be accessed with import.mete.graphCommerce.myConfig ([@paales](https://github.com/paales))
1252
-
1253
- ## 5.2.0-canary.19
1254
-
1255
- ## 5.2.0-canary.18
1256
-
1257
- ## 5.2.0-canary.17
1258
-
1259
- ## 5.2.0-canary.16
1260
-
1261
- ### Patch Changes
1262
-
1263
- - [#1799](https://github.com/graphcommerce-org/graphcommerce/pull/1799) [`cdf7eafc4`](https://github.com/graphcommerce-org/graphcommerce/commit/cdf7eafc4f16e2b02daae1b2403f6f69b3154bdc) - prevent that ProductListFilters will render ‘category_uid’ as filter ([@carlocarels90](https://github.com/carlocarels90))
1264
-
1265
- ## 5.2.0-canary.15
1266
-
1267
- ## 5.2.0-canary.14
1268
-
1269
- ## 5.2.0-canary.13
1270
-
1271
- ## 5.2.0-canary.12
1272
-
1273
- ## 5.2.0-canary.11
1274
-
1275
- ## 5.2.0-canary.10
1276
-
1277
- ## 5.2.0-canary.9
1278
-
1279
- ## 5.2.0-canary.8
1280
-
1281
- ## 5.2.0-canary.7
1282
-
1283
- ### Minor Changes
1284
-
1285
- - [#1749](https://github.com/graphcommerce-org/graphcommerce/pull/1749) [`0cc472915`](https://github.com/graphcommerce-org/graphcommerce/commit/0cc4729154d316227a41712b5f0adf514768e91f) - Added new filter UI and behaviour. Filters will appear as a popper on the md and up breakpoints and as an overlay on sm and below breakpoints. Filters now have an Apply button instead of applying directly. ([@paales](https://github.com/paales))
1286
-
1287
- ### Patch Changes
1288
-
1289
- - [#1749](https://github.com/graphcommerce-org/graphcommerce/pull/1749) [`16e91da42`](https://github.com/graphcommerce-org/graphcommerce/commit/16e91da42dcb454ea4761d1780b9338c88ef1463) - Fix spelling error incomming to incoming ([@paales](https://github.com/paales))
1290
-
1291
- - [#1749](https://github.com/graphcommerce-org/graphcommerce/pull/1749) [`b132583d5`](https://github.com/graphcommerce-org/graphcommerce/commit/b132583d5145bb7cfe62b81695ea5a6f6bcaf083) - Generalize ProductCustomizable renderer to automatically fail the build if there are OptionTypeRenderers missing ([@paales](https://github.com/paales))
1292
-
1293
- ## 5.2.0-canary.6
1294
-
1295
- ## 5.2.0-canary.5
1296
-
1297
- ## 5.2.0-canary.4
1298
-
1299
- ## 5.2.0-canary.3
1300
-
1301
- ## 5.2.0-canary.2
1302
-
1303
- ## 5.2.0-canary.1
1304
-
1305
- ## 5.2.0-canary.0
1306
-
1307
- ## 5.1.1
1308
-
1309
- ## 5.1.1-canary.1
1310
-
1311
- ## 5.1.1-canary.0
1312
-
1313
- ## 5.1.0
1314
-
1315
- ### Minor Changes
1316
-
1317
- - [#1757](https://github.com/graphcommerce-org/graphcommerce/pull/1757) [`ca2e2ab59`](https://github.com/graphcommerce-org/graphcommerce/commit/ca2e2ab594ab1cc0fedf908869829811e1f4009f) - Handle stock_status OUT_OF_STOCK properly and show only_x_left_in_stock if feature is enabled ([@paales](https://github.com/paales))
1318
-
1319
- - [#1756](https://github.com/graphcommerce-org/graphcommerce/pull/1756) [`1abaaedde`](https://github.com/graphcommerce-org/graphcommerce/commit/1abaaedde4062d3b19696e333d0016972681afaf) - Show cart item error messages when running Magento >= 2.4.5 or this [patch is applied](https://raw.githubusercontent.com/graphcommerce-org/graphcommerce/main/packages/magento-cart/243-244-magento-module-quote-graphql-cart-item-errors.patch)
1320
-
1321
- - Fixes an issue where the cart can get into a broken state, if items contain errors.
1322
- - AddToCartForm now shows a success message if there is an error but the error is related to another item in the cart.
1323
- - Disable checkout buttons when there are cart item errors and show a message. ([@paales](https://github.com/paales))
1324
-
1325
- - [#1761](https://github.com/graphcommerce-org/graphcommerce/pull/1761) [`c17318d6e`](https://github.com/graphcommerce-org/graphcommerce/commit/c17318d6ee7ca9faaaaccff121d84d4e1b1f2a13) - Generate sitemaps per locale so it can better handle large number of products ([@paales](https://github.com/paales))
1326
-
1327
- ### Patch Changes
1328
-
1329
- - [#1752](https://github.com/graphcommerce-org/graphcommerce/pull/1752) [`2a6a4d9ec`](https://github.com/graphcommerce-org/graphcommerce/commit/2a6a4d9ecfa1b58a66ba9b9d00016d6feda9aa95) - Updated dependencies to latest versions, except for nextjs; Solve tons of peer dependency issues.
1330
-
1331
- - Updated the @mui/material package
1332
- - Removed dependencies on react-hook-form-mui and @playwright/test
1333
- - Upgraded dependencies including type-fest and graphql-mesh
1334
- - Solved peer dependency issues ([@paales](https://github.com/paales))
1335
-
1336
- - [#1744](https://github.com/graphcommerce-org/graphcommerce/pull/1744) [`cf1c864eb`](https://github.com/graphcommerce-org/graphcommerce/commit/cf1c864eb9819d5730f957be1d6c074ba14deb2a) - Fixed SKU undefined error when adding an item to the cart with an invalid configuration ([@mikekeehnen](https://github.com/mikekeehnen))
1337
-
1338
- ## 5.1.0-canary.11
1339
-
1340
- ### Minor Changes
1341
-
1342
- - [#1761](https://github.com/graphcommerce-org/graphcommerce/pull/1761) [`c17318d6e`](https://github.com/graphcommerce-org/graphcommerce/commit/c17318d6ee7ca9faaaaccff121d84d4e1b1f2a13) - Generate sitemaps per locale so it can better handle large number of products ([@paales](https://github.com/paales))
1343
-
1344
- ## 5.1.0-canary.10
1345
-
1346
- ## 5.1.0-canary.9
1347
-
1348
- ## 5.1.0-canary.8
1349
-
1350
- ### Minor Changes
1351
-
1352
- - [#1757](https://github.com/graphcommerce-org/graphcommerce/pull/1757) [`ca2e2ab59`](https://github.com/graphcommerce-org/graphcommerce/commit/ca2e2ab594ab1cc0fedf908869829811e1f4009f) - Handle stock_status OUT_OF_STOCK properly and show only_x_left_in_stock if feature is enabled ([@paales](https://github.com/paales))
1353
-
1354
- ## 5.1.0-canary.7
1355
-
1356
- ### Minor Changes
1357
-
1358
- - [#1756](https://github.com/graphcommerce-org/graphcommerce/pull/1756) [`1abaaedde`](https://github.com/graphcommerce-org/graphcommerce/commit/1abaaedde4062d3b19696e333d0016972681afaf) - Show cart item error messages when running Magento >= 2.4.5 or this [patch is applied](https://raw.githubusercontent.com/graphcommerce-org/graphcommerce/main/packages/magento-cart/243-244-magento-module-quote-graphql-cart-item-errors.patch)
1359
-
1360
- - Fixes an issue where the cart can get into a broken state, if items contain errors.
1361
- - AddToCartForm now shows a success message if there is an error but the error is related to another item in the cart.
1362
- - Disable checkout buttons when there are cart item errors and show a message. ([@paales](https://github.com/paales))
1363
-
1364
- ## 5.1.0-canary.6
1365
-
1366
- ## 5.1.0-canary.5
1367
-
1368
- ## 5.1.0-canary.4
1369
-
1370
- ## 5.1.0-canary.3
1371
-
1372
- ### Patch Changes
1373
-
1374
- - [#1752](https://github.com/graphcommerce-org/graphcommerce/pull/1752) [`2a6a4d9ec`](https://github.com/graphcommerce-org/graphcommerce/commit/2a6a4d9ecfa1b58a66ba9b9d00016d6feda9aa95) - Updated dependencies to latest versions, except for nextjs; Solve tons of peer dependency issues.
1375
-
1376
- - Updated the @mui/material package
1377
- - Removed dependencies on react-hook-form-mui and @playwright/test
1378
- - Upgraded dependencies including type-fest and graphql-mesh
1379
- - Solved peer dependency issues ([@paales](https://github.com/paales))
1380
-
1381
- ## 5.1.0-canary.2
1382
-
1383
- ## 5.1.0-canary.1
1384
-
1385
- ## 5.1.0-canary.0
1386
-
1387
- ### Minor Changes
1388
-
1389
- - [#1744](https://github.com/graphcommerce-org/graphcommerce/pull/1744) [`cf1c864eb`](https://github.com/graphcommerce-org/graphcommerce/commit/cf1c864eb9819d5730f957be1d6c074ba14deb2a) - Fixed Sku undefined error when adding an item to the cart with an invalid configuration ([@mikekeehnen](https://github.com/mikekeehnen))
1390
-
1391
- ## 5.0.0
1392
-
1393
- ### Major Changes
1394
-
1395
- - [#1734](https://github.com/graphcommerce-org/graphcommerce/pull/1734) [`e4c7fe17e`](https://github.com/graphcommerce-org/graphcommerce/commit/e4c7fe17e413e37362ceae92e67f1b3a5f62d398) - Bump major version of all packages ([@github-actions](https://github.com/apps/github-actions))
1396
-
1397
- ### Minor Changes
1398
-
1399
- - [#1718](https://github.com/graphcommerce-org/graphcommerce/pull/1718) [`876c8253d`](https://github.com/graphcommerce-org/graphcommerce/commit/876c8253d62af8bfe534cda50cb13d88543fc117) - Export useAddProductsToCartAction and do not set the default to redirect ([@paales](https://github.com/paales))
1400
-
1401
- ### Patch Changes
1402
-
1403
- - [#1718](https://github.com/graphcommerce-org/graphcommerce/pull/1718) [`37e86cdc8`](https://github.com/graphcommerce-org/graphcommerce/commit/37e86cdc86ccca3db77d6c59b1e14c8112bb7893) - Remove usage of PropsWithChildren ([@paales](https://github.com/paales))
1404
-
1405
- - [#1722](https://github.com/graphcommerce-org/graphcommerce/pull/1722) [`7b36ea1d1`](https://github.com/graphcommerce-org/graphcommerce/commit/7b36ea1d100239892f21f67e5606852dd29b7c75) - Feature/fix cross sell item ([@FrankHarland](https://github.com/FrankHarland))
1406
-
1407
- - [#1734](https://github.com/graphcommerce-org/graphcommerce/pull/1734) [`9c3047c2f`](https://github.com/graphcommerce-org/graphcommerce/commit/9c3047c2fc6ea11ef9bd0c5128af883bffccc7e5) - Added GraphQL Injectable documentation ([@github-actions](https://github.com/apps/github-actions))
1408
-
1409
- - [#1738](https://github.com/graphcommerce-org/graphcommerce/pull/1738) [`9ee6f7def`](https://github.com/graphcommerce-org/graphcommerce/commit/9ee6f7def14919548fedb01f65e9f0cda2e949dc) - After the AddProductsToCartForm has been submitted, reset the submitted SKU's ([@paales](https://github.com/paales))
1410
-
1411
- ## 5.0.0-canary.14
1412
-
1413
- ## 5.0.0-canary.13
1414
-
1415
- ### Major Changes
1416
-
1417
- - [`e4c7fe17e`](https://github.com/graphcommerce-org/graphcommerce/commit/e4c7fe17e413e37362ceae92e67f1b3a5f62d398) - Bump major version of all packages ([@paales](https://github.com/paales))
1418
-
1419
- ## 4.14.0-canary.12
1420
-
1421
- ## 4.14.0-canary.11
1422
-
1423
- ## 4.14.0-canary.10
1424
-
1425
- ## 4.14.0-canary.9
1426
-
1427
- ### Patch Changes
1428
-
1429
- - [`9c3047c2f`](https://github.com/graphcommerce-org/graphcommerce/commit/9c3047c2fc6ea11ef9bd0c5128af883bffccc7e5) - Added GraphQL Injectable documentation ([@paales](https://github.com/paales))
1430
-
1431
- ## 4.14.0-canary.8
1432
-
1433
- ## 4.14.0-canary.7
1434
-
1435
- ### Patch Changes
1436
-
1437
- - [#1738](https://github.com/graphcommerce-org/graphcommerce/pull/1738) [`9ee6f7def`](https://github.com/graphcommerce-org/graphcommerce/commit/9ee6f7def14919548fedb01f65e9f0cda2e949dc) - After the AddProductsToCartForm has been submitted, reset the submitted SKU's ([@paales](https://github.com/paales))
1438
-
1439
- ## 4.14.0-canary.6
1440
-
1441
- ## 4.14.0-canary.5
1442
-
1443
- ## 4.14.0-canary.4
1444
-
1445
- ## 4.14.0-canary.3
1446
-
1447
- ## 4.14.0-canary.2
1448
-
1449
- ### Minor Changes
1450
-
1451
- - [#1718](https://github.com/graphcommerce-org/graphcommerce/pull/1718) [`876c8253d`](https://github.com/graphcommerce-org/graphcommerce/commit/876c8253d62af8bfe534cda50cb13d88543fc117) - Export useAddProductsToCartAction and do not set the default to redirect ([@paales](https://github.com/paales))
1452
-
1453
- ### Patch Changes
1454
-
1455
- - [#1718](https://github.com/graphcommerce-org/graphcommerce/pull/1718) [`37e86cdc8`](https://github.com/graphcommerce-org/graphcommerce/commit/37e86cdc86ccca3db77d6c59b1e14c8112bb7893) - Remove usage of PropsWithChildren ([@paales](https://github.com/paales))
1456
-
1457
- ## 4.13.2-canary.1
1458
-
1459
- ### Patch Changes
1460
-
1461
- - [#1722](https://github.com/graphcommerce-org/graphcommerce/pull/1722) [`7b36ea1d1`](https://github.com/graphcommerce-org/graphcommerce/commit/7b36ea1d100239892f21f67e5606852dd29b7c75) Thanks [@FrankHarland](https://github.com/FrankHarland)! - Feature/fix cross sell item
1462
-
1463
- ## 4.13.2-canary.0
1464
-
1465
- ## 4.13.3
1466
-
1467
- ## 4.13.2
1468
-
1469
- ## 4.13.1
1470
-
1471
- ### Patch Changes
1472
-
1473
- - [#1715](https://github.com/graphcommerce-org/graphcommerce/pull/1715) [`c478585c0`](https://github.com/graphcommerce-org/graphcommerce/commit/c478585c050a389828a636208de7596e0d396f70) Thanks [@Jessevdpoel](https://github.com/Jessevdpoel)! - Added sorting on category_level
1474
-
1475
- ## 4.13.1-canary.2
1476
-
1477
- ### Patch Changes
1478
-
1479
- - [#1715](https://github.com/graphcommerce-org/graphcommerce/pull/1715) [`c478585c0`](https://github.com/graphcommerce-org/graphcommerce/commit/c478585c050a389828a636208de7596e0d396f70) Thanks [@Jessevdpoel](https://github.com/Jessevdpoel)! - Added sorting on category_level
1480
-
1481
- ## 4.13.1-canary.1
1482
-
1483
- ## 4.13.1-canary.0
1484
-
1485
- ## 4.13.0
324
+ ## 4.13.0
1486
325
 
1487
326
  ### Patch Changes
1488
327
 
1489
328
  - [#1702](https://github.com/graphcommerce-org/graphcommerce/pull/1702) [`abb15ef4a`](https://github.com/graphcommerce-org/graphcommerce/commit/abb15ef4a79b12eddb32cc006e5d1d31dd06ac2d) Thanks [@paales](https://github.com/paales)! - Added canary releases to GraphCommerce
1490
329
 
1491
- ## 4.13.0-canary.1
1492
-
1493
- ### Patch Changes
1494
-
1495
- - [`abb15ef4a`](https://github.com/graphcommerce-org/graphcommerce/commit/abb15ef4a79b12eddb32cc006e5d1d31dd06ac2d) Thanks [@paales](https://github.com/paales)! - Added canary releases to GraphCommerce
1496
-
1497
- ## 4.13.0-canary.0
1498
-
1499
330
  ## 4.8.4
1500
331
 
1501
332
  ### Patch Changes