@graphcommerce/magento-product 9.0.0-canary.101 → 9.0.0-canary.104
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.
- package/CHANGELOG.md +140 -1309
- package/components/AddProductsToCart/AddProductsToCartButton.tsx +4 -5
- package/components/AddProductsToCart/AddProductsToCartError.tsx +2 -1
- package/components/AddProductsToCart/AddProductsToCartFab.tsx +5 -6
- package/components/AddProductsToCart/AddProductsToCartForm.tsx +15 -19
- package/components/AddProductsToCart/AddProductsToCartQuantity.tsx +5 -3
- package/components/AddProductsToCart/AddProductsToCartSnackbar.tsx +2 -1
- package/components/AddProductsToCart/AddProductsToCartSnackbarMessage.tsx +5 -6
- package/components/AddProductsToCart/findAddedItems.ts +2 -2
- package/components/AddProductsToCart/toUserErrors.ts +2 -2
- package/components/AddProductsToCart/useAddProductsToCartAction.ts +4 -3
- package/components/AddProductsToCart/useFormAddProductsToCart.ts +3 -3
- package/components/JsonLdProduct/ProductPageJsonLd.tsx +1 -1
- package/components/JsonLdProduct/jsonLdProduct.tsx +2 -2
- package/components/ProductAddToCart/ProductAddToCart.tsx +8 -5
- package/components/ProductCustomizable/CustomizableAreaOption.tsx +4 -3
- package/components/ProductCustomizable/CustomizableCheckboxOption.tsx +3 -7
- package/components/ProductCustomizable/CustomizableDateOption.tsx +2 -2
- package/components/ProductCustomizable/CustomizableDropDownOption.tsx +5 -5
- package/components/ProductCustomizable/CustomizableFieldOption.tsx +2 -2
- package/components/ProductCustomizable/CustomizableMultipleOption.tsx +3 -7
- package/components/ProductCustomizable/CustomizableRadioOption.tsx +3 -7
- package/components/ProductCustomizable/ProductCustomizable.tsx +6 -5
- package/components/ProductFiltersPro/PriceSlider.tsx +4 -2
- package/components/ProductFiltersPro/ProductFilterEqualChip.tsx +1 -1
- package/components/ProductFiltersPro/ProductFilterEqualSection.tsx +1 -1
- package/components/ProductFiltersPro/ProductFilterRangeChip.tsx +1 -1
- package/components/ProductFiltersPro/ProductFiltersPro.tsx +10 -19
- package/components/ProductFiltersPro/ProductFiltersProAggregations.tsx +2 -2
- package/components/ProductFiltersPro/ProductFiltersProAllFiltersChip.tsx +5 -6
- package/components/ProductFiltersPro/ProductFiltersProAllFiltersSidebar.tsx +7 -12
- package/components/ProductFiltersPro/ProductFiltersProCategorySection.tsx +6 -8
- package/components/ProductFiltersPro/ProductFiltersProChips.tsx +1 -1
- package/components/ProductFiltersPro/ProductFiltersProClearAll.tsx +2 -2
- package/components/ProductFiltersPro/ProductFiltersProLayoutSidebar.tsx +5 -3
- package/components/ProductFiltersPro/ProductFiltersProLimitChip.tsx +4 -2
- package/components/ProductFiltersPro/ProductFiltersProLimitSection.tsx +3 -2
- package/components/ProductFiltersPro/ProductFiltersProNoResults.tsx +3 -2
- package/components/ProductFiltersPro/ProductFiltersProSortChip.tsx +4 -2
- package/components/ProductFiltersPro/ProductFiltersProSortDirectionArrow.tsx +1 -1
- package/components/ProductFiltersPro/ProductFiltersProSortSection.tsx +3 -2
- package/components/ProductFiltersPro/activeAggregations.ts +2 -2
- package/components/ProductFiltersPro/applyAggregationCount.ts +2 -2
- package/components/ProductFiltersPro/useProductFiltersProClearAllAction.ts +1 -1
- package/components/ProductFiltersPro/useProductFiltersProSort.tsx +3 -3
- package/components/ProductListCount/ProductListCount.tsx +3 -2
- package/components/ProductListFilters/FilterCheckboxType.tsx +5 -4
- package/components/ProductListFilters/FilterEqualType.tsx +6 -6
- package/components/ProductListFilters/FilterRangeType.tsx +3 -2
- package/components/ProductListFilters/ProductListFilters.tsx +3 -3
- package/components/ProductListFiltersContainer/ProductListFiltersContainer.tsx +5 -4
- package/components/ProductListItem/ProductDiscountLabel.tsx +4 -3
- package/components/ProductListItem/ProductListItem.tsx +10 -15
- package/components/ProductListItem/ProductListItemImage.tsx +4 -2
- package/components/ProductListItem/ProductListItemImageContainer.tsx +8 -7
- package/components/ProductListItem/ProductListItemLinkOrDiv.tsx +2 -1
- package/components/ProductListItem/ProductListItemTitleAndPrice.tsx +4 -3
- package/components/ProductListItems/ProductListItemsBase.tsx +5 -4
- package/components/ProductListItems/ProductListParamsProvider.tsx +2 -2
- package/components/ProductListItems/filterTypes.tsx +4 -4
- package/components/ProductListItems/filteredProductList.tsx +2 -2
- package/components/ProductListItems/getFilterTypes.ts +2 -1
- package/components/ProductListItems/productListApplyCategoryDefaults.ts +5 -4
- package/components/ProductListItems/renderer.tsx +2 -2
- package/components/ProductListLink/ProductListLink.tsx +5 -3
- package/components/ProductListPagination/ProductListPagination.tsx +6 -5
- package/components/ProductListPrice/ProductListPrice.tsx +3 -2
- package/components/ProductListSort/ProductListSort.tsx +8 -6
- package/components/ProductListSuggestions/ProductListSuggestions.tsx +1 -1
- package/components/ProductPage/ProductPageAddToCartRow.tsx +3 -2
- package/components/ProductPageBreadcrumb/ProductPageBreadcrumb.tsx +3 -2
- package/components/ProductPageBreadcrumb/ProductPageBreadcrumbs.tsx +3 -3
- package/components/ProductPageCategory/productPageCategory.ts +1 -1
- package/components/ProductPageDescription/ProductPageDescription.tsx +7 -6
- package/components/ProductPageGallery/ProductImage.tsx +1 -1
- package/components/ProductPageGallery/ProductPageGallery.tsx +3 -7
- package/components/ProductPageGallery/ProductVideo.tsx +1 -1
- package/components/ProductPageMeta/ProductPageMeta.tsx +2 -2
- package/components/ProductPageName/ProductPageName.tsx +2 -2
- package/components/ProductPagePrice/ProductPagePrice.tsx +5 -6
- package/components/ProductPagePrice/ProductPagePriceTiers.tsx +2 -2
- package/components/ProductPagePrice/getProductTierPrice.ts +2 -2
- package/components/ProductPagePrice/useCustomizableOptionPrice.ts +7 -6
- package/components/ProductScroller/ProductScroller.tsx +10 -15
- package/components/ProductShortDescription/ProductShortDescription.tsx +3 -2
- package/components/ProductSidebarDelivery/ProductSidebarDelivery.tsx +3 -3
- package/components/ProductSpecs/ProductSpecs.tsx +5 -4
- package/components/ProductSpecs/ProductSpecsAggregations.tsx +2 -2
- package/components/ProductSpecs/ProductSpecsCustomAttributes.tsx +3 -3
- package/components/ProductStaticPaths/getProductStaticPaths.ts +4 -3
- package/components/ProductStaticPaths/getSitemapPaths.ts +2 -2
- package/components/ProductWeight/ProductWeight.tsx +4 -7
- package/context/productListParamsContext.ts +1 -1
- package/hooks/useProductLink.ts +1 -1
- package/hooks/useProductList.ts +11 -14
- package/hooks/useProductListLink.ts +7 -5
- package/hooks/useProductListLinkReplace.ts +1 -1
- package/package.json +14 -14
- package/test/productURL.fixture.ts +1 -1
- package/tsconfig.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,1375 +1,290 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
-
## 9.0.0-canary.
|
3
|
+
## 9.0.0-canary.104
|
4
4
|
|
5
|
-
## 9.0.0-canary.
|
6
|
-
|
7
|
-
## 9.0.0-canary.99
|
8
|
-
|
9
|
-
## 9.0.0-canary.98
|
10
|
-
|
11
|
-
## 9.0.0-canary.97
|
12
|
-
|
13
|
-
## 9.0.0-canary.96
|
14
|
-
|
15
|
-
## 9.0.0-canary.95
|
16
|
-
|
17
|
-
## 9.0.0-canary.94
|
18
|
-
|
19
|
-
## 9.0.0-canary.93
|
20
|
-
|
21
|
-
## 9.0.0-canary.92
|
5
|
+
## 9.0.0-canary.103
|
22
6
|
|
23
7
|
## 9.0.0-canary.91
|
24
8
|
|
25
9
|
### Patch Changes
|
26
10
|
|
27
|
-
- [#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))
|
28
|
-
|
29
|
-
## 9.0.0-canary.90
|
30
|
-
|
31
|
-
## 9.0.0-canary.89
|
32
|
-
|
33
|
-
## 9.0.0-canary.88
|
34
|
-
|
35
|
-
## 9.0.0-canary.87
|
36
|
-
|
37
|
-
## 9.0.0-canary.86
|
38
|
-
|
39
|
-
### Patch Changes
|
40
|
-
|
41
|
-
- [#2379](https://github.com/graphcommerce-org/graphcommerce/pull/2379) [`959e0dd`](https://github.com/graphcommerce-org/graphcommerce/commit/959e0dd81a7943648250be6a2bf8f1bc27be8a3b) - Render multiple items in the RowSpecs table as a list ([@paales](https://github.com/paales))
|
42
|
-
|
43
|
-
## 9.0.0-canary.85
|
44
|
-
|
45
|
-
### Patch Changes
|
46
|
-
|
47
|
-
- [#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))
|
48
|
-
|
49
|
-
## 9.0.0-canary.84
|
50
|
-
|
51
|
-
## 9.0.0-canary.83
|
52
|
-
|
53
|
-
## 9.0.0-canary.82
|
54
|
-
|
55
|
-
## 9.0.0-canary.81
|
56
|
-
|
57
|
-
## 9.0.0-canary.80
|
58
|
-
|
59
|
-
### Minor Changes
|
60
|
-
|
61
|
-
- [#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))
|
62
|
-
|
63
|
-
## 9.0.0-canary.79
|
64
|
-
|
65
|
-
## 9.0.0-canary.78
|
66
|
-
|
67
|
-
## 9.0.0-canary.77
|
68
|
-
|
69
|
-
## 9.0.0-canary.76
|
70
|
-
|
71
|
-
## 9.0.0-canary.75
|
72
|
-
|
73
|
-
## 9.0.0-canary.74
|
74
|
-
|
75
|
-
## 9.0.0-canary.73
|
76
|
-
|
77
|
-
## 9.0.0-canary.72
|
78
|
-
|
79
|
-
### Minor Changes
|
80
|
-
|
81
|
-
- [#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))
|
82
|
-
|
83
|
-
## 9.0.0-canary.71
|
84
|
-
|
85
|
-
## 9.0.0-canary.70
|
86
|
-
|
87
|
-
## 9.0.0-canary.69
|
88
|
-
|
89
|
-
## 9.0.0-canary.68
|
90
|
-
|
91
|
-
## 9.0.0-canary.67
|
92
|
-
|
93
|
-
## 9.0.0-canary.66
|
94
|
-
|
95
|
-
## 9.0.0-canary.65
|
96
|
-
|
97
|
-
## 9.0.0-canary.64
|
98
|
-
|
99
|
-
## 9.0.0-canary.63
|
100
|
-
|
101
|
-
## 9.0.0-canary.62
|
102
|
-
|
103
|
-
## 9.0.0-canary.61
|
104
|
-
|
105
|
-
### Minor Changes
|
106
|
-
|
107
|
-
- [#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))
|
108
|
-
|
109
|
-
## 9.0.0-canary.60
|
110
|
-
|
111
|
-
## 9.0.0-canary.59
|
112
|
-
|
113
|
-
### Patch Changes
|
114
|
-
|
115
|
-
- [#2309](https://github.com/graphcommerce-org/graphcommerce/pull/2309) [`1fe4090`](https://github.com/graphcommerce-org/graphcommerce/commit/1fe409029671b841e582406251e45a9555fc78f9) - Hide SortChip or SortSection when there is only a single filter option. ([@Renzovh](https://github.com/Renzovh))
|
116
|
-
|
117
|
-
## 9.0.0-canary.58
|
118
|
-
|
119
|
-
### Patch Changes
|
120
|
-
|
121
|
-
- [#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))
|
122
|
-
|
123
|
-
## 9.0.0-canary.57
|
124
|
-
|
125
|
-
## 9.0.0-canary.56
|
126
|
-
|
127
|
-
## 9.0.0-canary.55
|
128
|
-
|
129
|
-
## 9.0.0-canary.54
|
130
|
-
|
131
|
-
## 8.1.0-canary.53
|
132
|
-
|
133
|
-
## 8.1.0-canary.52
|
134
|
-
|
135
|
-
## 8.1.0-canary.51
|
136
|
-
|
137
|
-
### Minor Changes
|
138
|
-
|
139
|
-
- [#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))
|
140
|
-
|
141
|
-
## 8.1.0-canary.50
|
142
|
-
|
143
|
-
## 8.1.0-canary.49
|
144
|
-
|
145
|
-
## 8.1.0-canary.48
|
146
|
-
|
147
|
-
## 8.1.0-canary.47
|
148
|
-
|
149
|
-
## 8.1.0-canary.46
|
150
|
-
|
151
|
-
## 8.1.0-canary.45
|
152
|
-
|
153
|
-
## 8.1.0-canary.44
|
154
|
-
|
155
|
-
## 8.1.0-canary.43
|
156
|
-
|
157
|
-
## 8.1.0-canary.42
|
158
|
-
|
159
|
-
## 8.1.0-canary.41
|
160
|
-
|
161
|
-
### Patch Changes
|
162
|
-
|
163
|
-
- [#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))
|
164
|
-
|
165
|
-
## 8.1.0-canary.40
|
166
|
-
|
167
|
-
## 8.1.0-canary.39
|
168
|
-
|
169
|
-
## 8.1.0-canary.38
|
170
|
-
|
171
|
-
## 8.1.0-canary.37
|
172
|
-
|
173
|
-
## 8.1.0-canary.36
|
174
|
-
|
175
|
-
## 8.1.0-canary.35
|
176
|
-
|
177
|
-
## 8.1.0-canary.34
|
178
|
-
|
179
|
-
## 8.1.0-canary.33
|
180
|
-
|
181
|
-
## 8.1.0-canary.32
|
182
|
-
|
183
|
-
## 8.1.0-canary.31
|
184
|
-
|
185
|
-
## 8.1.0-canary.30
|
186
|
-
|
187
|
-
## 8.1.0-canary.29
|
188
|
-
|
189
|
-
## 8.1.0-canary.28
|
190
|
-
|
191
|
-
## 8.1.0-canary.27
|
192
|
-
|
193
|
-
### Minor Changes
|
194
|
-
|
195
|
-
- [#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))
|
196
|
-
|
197
|
-
## 8.1.0-canary.26
|
198
|
-
|
199
|
-
## 8.1.0-canary.25
|
200
|
-
|
201
|
-
## 8.1.0-canary.24
|
202
|
-
|
203
|
-
## 8.1.0-canary.23
|
204
|
-
|
205
|
-
## 8.1.0-canary.22
|
206
|
-
|
207
|
-
## 8.1.0-canary.21
|
208
|
-
|
209
|
-
## 8.1.0-canary.20
|
210
|
-
|
211
|
-
## 8.1.0-canary.19
|
212
|
-
|
213
|
-
## 8.1.0-canary.18
|
214
|
-
|
215
|
-
## 8.1.0-canary.17
|
216
|
-
|
217
|
-
## 8.1.0-canary.16
|
218
|
-
|
219
|
-
## 8.1.0-canary.15
|
220
|
-
|
221
|
-
## 8.1.0-canary.14
|
222
|
-
|
223
|
-
## 8.1.0-canary.13
|
224
|
-
|
225
|
-
## 8.1.0-canary.12
|
226
|
-
|
227
|
-
## 8.1.0-canary.11
|
228
|
-
|
229
|
-
### Patch Changes
|
230
|
-
|
231
|
-
- [#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))
|
232
|
-
|
233
|
-
## 8.1.0-canary.10
|
234
|
-
|
235
|
-
## 8.1.0-canary.9
|
236
|
-
|
237
|
-
## 8.1.0-canary.8
|
238
|
-
|
239
|
-
## 8.1.0-canary.7
|
240
|
-
|
241
|
-
## 8.1.0-canary.6
|
242
|
-
|
243
|
-
## 8.1.0-canary.5
|
244
|
-
|
245
|
-
### Patch Changes
|
246
|
-
|
247
|
-
- [#2224](https://github.com/graphcommerce-org/graphcommerce/pull/2224) [`4dd2d01`](https://github.com/graphcommerce-org/graphcommerce/commit/4dd2d01b3e14e3107ee3e337bef2a8528d654e75) - When applying a filter it would not always scroll to the #products. ([@FrankHarland](https://github.com/FrankHarland))
|
248
|
-
|
249
|
-
## 8.0.6-canary.4
|
250
|
-
|
251
|
-
### Patch Changes
|
252
|
-
|
253
|
-
- [#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))
|
254
|
-
|
255
|
-
## 8.0.6-canary.3
|
256
|
-
|
257
|
-
## 8.0.6-canary.2
|
258
|
-
|
259
|
-
### Patch Changes
|
260
|
-
|
261
|
-
- [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`0767bc4`](https://github.com/graphcommerce-org/graphcommerce/commit/0767bc40f7b596209f24ca4e745ff0441f3275c9) - Upgrade input components to no longer use muiRegister, which improves INP scores ([@FrankHarland](https://github.com/FrankHarland))
|
262
|
-
|
263
|
-
- [#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))
|
264
|
-
|
265
|
-
## 8.0.6-canary.1
|
266
|
-
|
267
|
-
## 8.0.6-canary.0
|
268
|
-
|
269
|
-
### Patch Changes
|
270
|
-
|
271
|
-
- [#2196](https://github.com/graphcommerce-org/graphcommerce/pull/2196) [`84c50e4`](https://github.com/graphcommerce-org/graphcommerce/commit/84c50e49a1a7f154d4a8f4045c37e773e20283ad) - Allow Lingui to use linguiLocale with country identifiers like `en-us`, it would always load `en` in this case. Introced a new `useLocale` hook to use the correct locale string to use in Intl methods. ([@paales](https://github.com/paales))
|
272
|
-
|
273
|
-
## 8.0.5
|
274
|
-
|
275
|
-
### Patch Changes
|
276
|
-
|
277
|
-
- [#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))
|
278
|
-
|
279
|
-
## 8.0.5-canary.10
|
280
|
-
|
281
|
-
## 8.0.5-canary.9
|
282
|
-
|
283
|
-
## 8.0.5-canary.8
|
284
|
-
|
285
|
-
### Patch Changes
|
286
|
-
|
287
|
-
- [#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))
|
288
|
-
|
289
|
-
## 8.0.5-canary.7
|
290
|
-
|
291
|
-
## 8.0.5-canary.6
|
292
|
-
|
293
|
-
## 8.0.5-canary.5
|
294
|
-
|
295
|
-
## 8.0.5-canary.4
|
296
|
-
|
297
|
-
## 8.0.5-canary.3
|
298
|
-
|
299
|
-
## 8.0.5-canary.2
|
300
|
-
|
301
|
-
## 8.0.5-canary.1
|
302
|
-
|
303
|
-
## 8.0.5-canary.0
|
304
|
-
|
305
|
-
## 8.0.4
|
306
|
-
|
307
|
-
## 8.0.4-canary.1
|
308
|
-
|
309
|
-
## 8.0.4-canary.0
|
310
|
-
|
311
|
-
## 8.0.3
|
312
|
-
|
313
|
-
### Patch Changes
|
314
|
-
|
315
|
-
- [#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))
|
316
|
-
|
317
|
-
## 8.0.3-canary.6
|
318
|
-
|
319
|
-
### Patch Changes
|
320
|
-
|
321
|
-
- [#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))
|
322
|
-
|
323
|
-
## 8.0.3-canary.5
|
324
|
-
|
325
|
-
## 8.0.3-canary.4
|
326
|
-
|
327
|
-
## 8.0.3-canary.3
|
328
|
-
|
329
|
-
## 8.0.3-canary.2
|
330
|
-
|
331
|
-
## 8.0.3-canary.1
|
332
|
-
|
333
|
-
## 8.0.3-canary.0
|
334
|
-
|
335
|
-
## 8.0.2
|
336
|
-
|
337
|
-
### Patch Changes
|
338
|
-
|
339
|
-
- [#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))
|
340
|
-
|
341
|
-
## 8.0.2-canary.3
|
342
|
-
|
343
|
-
### Patch Changes
|
344
|
-
|
345
|
-
- [#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))
|
346
|
-
|
347
|
-
## 8.0.2-canary.2
|
348
|
-
|
349
|
-
## 8.0.2-canary.1
|
350
|
-
|
351
|
-
## 8.0.2-canary.0
|
352
|
-
|
353
|
-
## 8.0.1
|
354
|
-
|
355
|
-
## 8.0.1-canary.4
|
356
|
-
|
357
|
-
## 8.0.1-canary.3
|
358
|
-
|
359
|
-
## 8.0.1-canary.2
|
360
|
-
|
361
|
-
## 8.0.1-canary.1
|
362
|
-
|
363
|
-
## 8.0.1-canary.0
|
364
|
-
|
365
|
-
## 8.0.0
|
366
|
-
|
367
|
-
### Major Changes
|
368
|
-
|
369
|
-
- [#2041](https://github.com/graphcommerce-org/graphcommerce/pull/2041) [`bc3a833`](https://github.com/graphcommerce-org/graphcommerce/commit/bc3a8339b0b0f15b4d5cb014d4f95e6ea28c2cfe) - Removed the `legacyProductRoute` configuration option from GraphCommerce ([@paales](https://github.com/paales))
|
370
|
-
|
371
|
-
### Minor Changes
|
372
|
-
|
373
|
-
- [#2133](https://github.com/graphcommerce-org/graphcommerce/pull/2133) [`133f908`](https://github.com/graphcommerce-org/graphcommerce/commit/133f908200a79589036420f2925835724522cab8) - Added new `<LazyHydrate/>` component to improve the Total Blocking Time and implemented them in, `<RowRenderer/>`, `<ProductListItemBase/>`, `<Footer/>` and for the `<NavigationProvider/>`. Reduced the TBT by 50% on the homepage and other pages. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
374
|
-
|
375
|
-
- [#2099](https://github.com/graphcommerce-org/graphcommerce/pull/2099) [`ff796b8`](https://github.com/graphcommerce-org/graphcommerce/commit/ff796b838fae6cb5e35b101500133b0235a8677d) - Support for all customizable product options (except file upload) on the product pages and in the cart. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
376
|
-
|
377
|
-
- [#2048](https://github.com/graphcommerce-org/graphcommerce/pull/2048) [`13e23e4`](https://github.com/graphcommerce-org/graphcommerce/commit/13e23e4265bac70fb4d0830e4661019e71ce299f) - Wishlist will now support configurable products and uses the `<ActionCardLayout/>` ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
378
|
-
|
379
|
-
### Patch Changes
|
380
|
-
|
381
|
-
- [#2083](https://github.com/graphcommerce-org/graphcommerce/pull/2083) [`ca493c7`](https://github.com/graphcommerce-org/graphcommerce/commit/ca493c7b208b8526c1109695d54bad7b2956a8bd) - Filters which are not yet applied and all options have 0 results, will not be shown anymore. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
382
|
-
|
383
|
-
- [#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))
|
384
|
-
|
385
|
-
- [#2048](https://github.com/graphcommerce-org/graphcommerce/pull/2048) [`8d4f1ef`](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))
|
386
|
-
|
387
|
-
- [`e33660f`](https://github.com/graphcommerce-org/graphcommerce/commit/e33660f172466dcfa0ab7262cee612d9a3e47776) - Accessibility improvements for the frontend: Added skip content link. Removed empty buttons from tab flow. Gave focus to elements (such as the menu) that appear when after clicking a button. Improved aria labels where needed ([@FrankHarland](https://github.com/FrankHarland))
|
388
|
-
|
389
|
-
- [#2058](https://github.com/graphcommerce-org/graphcommerce/pull/2058) [`16dc488`](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))
|
390
|
-
|
391
|
-
- [#2164](https://github.com/graphcommerce-org/graphcommerce/pull/2164) [`5224755`](https://github.com/graphcommerce-org/graphcommerce/commit/522475503fd40e4718fd4d7d33f8164c01588c0c) - The filter bar would completely disappear when there were no items returned. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
392
|
-
|
393
|
-
- [#2150](https://github.com/graphcommerce-org/graphcommerce/pull/2150) [`59844cd`](https://github.com/graphcommerce-org/graphcommerce/commit/59844cdd8adfaf03d22b04b9082552e22f386fb6) - Solved an issue where the same product could not be added multiple times to the cart without reloading the page. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
394
|
-
|
395
|
-
- [#2077](https://github.com/graphcommerce-org/graphcommerce/pull/2077) [`0d2cb22`](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))
|
396
|
-
|
397
|
-
- [#2160](https://github.com/graphcommerce-org/graphcommerce/pull/2160) [`154cd12`](https://github.com/graphcommerce-org/graphcommerce/commit/154cd12438f6cb30638e37b9a76a0649992b90f4) - The name of the product in the `<ProductListItem/>` would break words in the middle of a word instead of using a normal word break. ([@paales](https://github.com/paales))
|
398
|
-
|
399
|
-
- [#2007](https://github.com/graphcommerce-org/graphcommerce/pull/2007) [`f59c276`](https://github.com/graphcommerce-org/graphcommerce/commit/f59c276605f9ed649d1197a9ba0e3f12d7c6d026) - Crosssell behavior now properly shows for the latest added product. Added latest submitted variables to be retrieved when using the useFormGql hook. ([@JoshuaS98](https://github.com/JoshuaS98))
|
400
|
-
|
401
|
-
- [#2048](https://github.com/graphcommerce-org/graphcommerce/pull/2048) [`0335dd9`](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))
|
402
|
-
|
403
|
-
- [#2076](https://github.com/graphcommerce-org/graphcommerce/pull/2076) [`f860e68`](https://github.com/graphcommerce-org/graphcommerce/commit/f860e68603526a15dcf2567f4ca57230423ef5c3) - Forward the maxWidth prop to the `<ColumnTwoWithTop />` component from the `<ProductPageDescription maxWidth='lg'/>` component. ([@StefanAngenent](https://github.com/StefanAngenent))
|
404
|
-
|
405
|
-
- [#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))
|
406
|
-
|
407
|
-
## 8.0.0-canary.100
|
408
|
-
|
409
|
-
## 8.0.0-canary.99
|
410
|
-
|
411
|
-
## 8.0.0-canary.98
|
412
|
-
|
413
|
-
## 8.0.0-canary.97
|
414
|
-
|
415
|
-
## 8.0.0-canary.96
|
416
|
-
|
417
|
-
## 8.0.0-canary.95
|
418
|
-
|
419
|
-
## 8.0.0-canary.94
|
420
|
-
|
421
|
-
## 8.0.0-canary.93
|
422
|
-
|
423
|
-
## 8.0.0-canary.92
|
424
|
-
|
425
|
-
## 8.0.0-canary.91
|
426
|
-
|
427
|
-
## 8.0.0-canary.90
|
428
|
-
|
429
|
-
## 8.0.0-canary.89
|
430
|
-
|
431
|
-
## 8.0.0-canary.88
|
432
|
-
|
433
|
-
## 8.0.0-canary.87
|
434
|
-
|
435
|
-
### Patch Changes
|
436
|
-
|
437
|
-
- [#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))
|
438
|
-
|
439
|
-
## 8.0.0-canary.86
|
440
|
-
|
441
|
-
## 8.0.0-canary.85
|
442
|
-
|
443
|
-
## 8.0.0-canary.84
|
444
|
-
|
445
|
-
## 8.0.0-canary.83
|
446
|
-
|
447
|
-
### Patch Changes
|
448
|
-
|
449
|
-
- [#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))
|
450
|
-
|
451
|
-
## 8.0.0-canary.82
|
452
|
-
|
453
|
-
### Patch Changes
|
454
|
-
|
455
|
-
- [#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))
|
456
|
-
|
457
|
-
## 8.0.0-canary.81
|
458
|
-
|
459
|
-
## 8.0.0-canary.80
|
460
|
-
|
461
|
-
## 8.0.0-canary.79
|
462
|
-
|
463
|
-
## 8.0.0-canary.78
|
464
|
-
|
465
|
-
## 8.0.0-canary.77
|
466
|
-
|
467
|
-
### Patch Changes
|
468
|
-
|
469
|
-
- [`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))
|
470
|
-
|
471
|
-
## 8.0.0-canary.76
|
472
|
-
|
473
|
-
## 8.0.0-canary.75
|
474
|
-
|
475
|
-
### Patch Changes
|
476
|
-
|
477
|
-
- [#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))
|
478
|
-
|
479
|
-
- [#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))
|
480
|
-
|
481
|
-
## 8.0.0-canary.74
|
482
|
-
|
483
|
-
### Minor Changes
|
484
|
-
|
485
|
-
- [#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))
|
486
|
-
|
487
|
-
## 8.0.0-canary.73
|
488
|
-
|
489
|
-
## 8.0.0-canary.72
|
490
|
-
|
491
|
-
## 8.0.0-canary.71
|
492
|
-
|
493
|
-
### Minor Changes
|
494
|
-
|
495
|
-
- [#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))
|
496
|
-
|
497
|
-
## 8.0.0-canary.70
|
498
|
-
|
499
|
-
## 8.0.0-canary.69
|
500
|
-
|
501
|
-
### Major Changes
|
502
|
-
|
503
|
-
- [#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))
|
504
|
-
|
505
|
-
## 7.1.0-canary.68
|
506
|
-
|
507
|
-
## 7.1.0-canary.67
|
508
|
-
|
509
|
-
### Patch Changes
|
510
|
-
|
511
|
-
- [#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))
|
512
|
-
|
513
|
-
## 7.1.0-canary.66
|
514
|
-
|
515
|
-
## 7.1.0-canary.65
|
516
|
-
|
517
|
-
## 7.1.0-canary.64
|
518
|
-
|
519
|
-
## 7.1.0-canary.63
|
520
|
-
|
521
|
-
## 7.1.0-canary.62
|
522
|
-
|
523
|
-
## 7.1.0-canary.61
|
524
|
-
|
525
|
-
## 7.1.0-canary.60
|
526
|
-
|
527
|
-
## 7.1.0-canary.59
|
528
|
-
|
529
|
-
## 7.1.0-canary.58
|
530
|
-
|
531
|
-
## 7.1.0-canary.57
|
532
|
-
|
533
|
-
## 7.1.0-canary.56
|
534
|
-
|
535
|
-
## 7.1.0-canary.55
|
536
|
-
|
537
|
-
## 7.1.0-canary.54
|
538
|
-
|
539
|
-
## 7.1.0-canary.53
|
540
|
-
|
541
|
-
## 7.1.0-canary.52
|
542
|
-
|
543
|
-
## 7.1.0-canary.51
|
544
|
-
|
545
|
-
## 7.1.0-canary.50
|
546
|
-
|
547
|
-
## 7.1.0-canary.49
|
548
|
-
|
549
|
-
## 7.1.0-canary.48
|
550
|
-
|
551
|
-
## 7.1.0-canary.47
|
552
|
-
|
553
|
-
## 7.1.0-canary.46
|
554
|
-
|
555
|
-
## 7.1.0-canary.45
|
556
|
-
|
557
|
-
### Patch Changes
|
558
|
-
|
559
|
-
- [#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))
|
560
|
-
|
561
|
-
- [#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))
|
562
|
-
|
563
|
-
## 7.1.0-canary.38
|
564
|
-
|
565
|
-
### Minor Changes
|
566
|
-
|
567
|
-
- [#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))
|
568
|
-
|
569
|
-
### Patch Changes
|
570
|
-
|
571
|
-
- [#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))
|
572
|
-
|
573
|
-
- [#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))
|
574
|
-
|
575
|
-
## 7.1.0-canary.37
|
576
|
-
|
577
|
-
## 7.1.0-canary.36
|
578
|
-
|
579
|
-
## 7.1.0-canary.35
|
580
|
-
|
581
|
-
## 7.1.0-canary.34
|
582
|
-
|
583
|
-
## 7.1.0-canary.33
|
584
|
-
|
585
|
-
## 7.1.0-canary.32
|
586
|
-
|
587
|
-
## 7.1.0-canary.31
|
588
|
-
|
589
|
-
## 7.1.0-canary.30
|
590
|
-
|
591
|
-
## 7.1.0-canary.29
|
592
|
-
|
593
|
-
## 7.1.0-canary.28
|
594
|
-
|
595
|
-
## 7.1.0-canary.27
|
596
|
-
|
597
|
-
## 7.1.0-canary.26
|
598
|
-
|
599
|
-
## 7.1.0-canary.25
|
600
|
-
|
601
|
-
## 7.1.0-canary.24
|
602
|
-
|
603
|
-
## 7.1.0-canary.23
|
604
|
-
|
605
|
-
## 7.1.0-canary.22
|
606
|
-
|
607
|
-
## 7.1.0-canary.21
|
608
|
-
|
609
|
-
## 7.1.0-canary.20
|
610
|
-
|
611
|
-
## 7.1.0-canary.19
|
612
|
-
|
613
|
-
### Patch Changes
|
614
|
-
|
615
|
-
- [#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))
|
616
|
-
|
617
|
-
## 7.1.0-canary.18
|
618
|
-
|
619
|
-
## 7.1.0-canary.17
|
620
|
-
|
621
|
-
## 7.1.0-canary.16
|
622
|
-
|
623
|
-
## 7.1.0-canary.15
|
624
|
-
|
625
|
-
## 7.1.0-canary.14
|
626
|
-
|
627
|
-
## 7.1.0-canary.13
|
628
|
-
|
629
|
-
### Patch Changes
|
630
|
-
|
631
|
-
- [#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))
|
632
|
-
|
633
|
-
## 7.1.0-canary.12
|
634
|
-
|
635
|
-
## 7.1.0-canary.11
|
636
|
-
|
637
|
-
### Patch Changes
|
638
|
-
|
639
|
-
- [#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))
|
640
|
-
|
641
|
-
## 7.1.0-canary.10
|
642
|
-
|
643
|
-
### Patch Changes
|
644
|
-
|
645
|
-
- [#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))
|
646
|
-
|
647
|
-
## 7.1.0-canary.9
|
648
|
-
|
649
|
-
### Patch Changes
|
650
|
-
|
651
|
-
- [#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))
|
652
|
-
|
653
|
-
## 7.1.0-canary.8
|
654
|
-
|
655
|
-
## 7.0.2-canary.7
|
656
|
-
|
657
|
-
## 7.0.2-canary.6
|
658
|
-
|
659
|
-
## 7.0.2-canary.5
|
660
|
-
|
661
|
-
## 7.0.1
|
662
|
-
|
663
|
-
## 7.0.1-canary.15
|
664
|
-
|
665
|
-
## 7.0.1-canary.14
|
666
|
-
|
667
|
-
## 7.0.1-canary.13
|
668
|
-
|
669
|
-
## 7.0.1-canary.12
|
670
|
-
|
671
|
-
## 7.0.1-canary.11
|
672
|
-
|
673
|
-
## 7.0.1-canary.10
|
674
|
-
|
675
|
-
## 7.0.1-canary.9
|
676
|
-
|
677
|
-
## 7.0.1-canary.8
|
678
|
-
|
679
|
-
## 7.0.1-canary.7
|
680
|
-
|
681
|
-
## 7.0.1-canary.6
|
682
|
-
|
683
|
-
## 7.0.1-canary.5
|
684
|
-
|
685
|
-
## 7.0.1-canary.4
|
686
|
-
|
687
|
-
## 7.0.1-canary.3
|
688
|
-
|
689
|
-
## 7.0.1-canary.2
|
690
|
-
|
691
|
-
## 7.0.1-canary.1
|
692
|
-
|
693
|
-
## 7.0.1-canary.0
|
694
|
-
|
695
|
-
## 7.0.0
|
696
|
-
|
697
|
-
### Major Changes
|
698
|
-
|
699
|
-
- [`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))
|
700
|
-
|
701
|
-
### Minor Changes
|
702
|
-
|
703
|
-
- [#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))
|
704
|
-
|
705
|
-
- [#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))
|
706
|
-
|
707
|
-
- [#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))
|
708
|
-
|
709
|
-
### Patch Changes
|
710
|
-
|
711
|
-
- [#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))
|
712
|
-
|
713
|
-
- [#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))
|
714
|
-
|
715
|
-
- [#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))
|
716
|
-
|
717
|
-
- [#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))
|
718
|
-
|
719
|
-
- [#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))
|
720
|
-
|
721
|
-
- [#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))
|
722
|
-
|
723
|
-
- [#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))
|
724
|
-
|
725
|
-
- [#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))
|
726
|
-
|
727
|
-
- [#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))
|
728
|
-
|
729
|
-
- [#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))
|
730
|
-
|
731
|
-
## 6.2.0-canary.98
|
732
|
-
|
733
|
-
## 6.2.0-canary.97
|
734
|
-
|
735
|
-
## 6.2.0-canary.96
|
736
|
-
|
737
|
-
## 6.2.0-canary.95
|
738
|
-
|
739
|
-
## 6.2.0-canary.94
|
740
|
-
|
741
|
-
## 6.2.0-canary.93
|
742
|
-
|
743
|
-
## 6.2.0-canary.92
|
744
|
-
|
745
|
-
## 6.2.0-canary.91
|
746
|
-
|
747
|
-
## 6.2.0-canary.90
|
748
|
-
|
749
|
-
## 6.2.0-canary.89
|
750
|
-
|
751
|
-
## 6.2.0-canary.88
|
752
|
-
|
753
|
-
## 6.2.0-canary.87
|
754
|
-
|
755
|
-
## 6.2.0-canary.86
|
756
|
-
|
757
|
-
## 6.2.0-canary.85
|
758
|
-
|
759
|
-
## 6.2.0-canary.84
|
760
|
-
|
761
|
-
## 6.2.0-canary.83
|
762
|
-
|
763
|
-
## 6.2.0-canary.82
|
764
|
-
|
765
|
-
## 6.2.0-canary.81
|
766
|
-
|
767
|
-
### Patch Changes
|
768
|
-
|
769
|
-
- [#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))
|
770
|
-
|
771
|
-
## 6.2.0-canary.80
|
772
|
-
|
773
|
-
### Patch Changes
|
774
|
-
|
775
|
-
- [#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))
|
776
|
-
|
777
|
-
## 6.2.0-canary.79
|
778
|
-
|
779
|
-
## 6.2.0-canary.78
|
780
|
-
|
781
|
-
## 6.2.0-canary.77
|
782
|
-
|
783
|
-
## 6.2.0-canary.76
|
784
|
-
|
785
|
-
## 6.2.0-canary.75
|
786
|
-
|
787
|
-
## 6.2.0-canary.74
|
788
|
-
|
789
|
-
## 6.2.0-canary.73
|
790
|
-
|
791
|
-
### Minor Changes
|
792
|
-
|
793
|
-
- [#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))
|
794
|
-
|
795
|
-
## 6.2.0-canary.72
|
796
|
-
|
797
|
-
## 6.2.0-canary.71
|
798
|
-
|
799
|
-
## 6.2.0-canary.70
|
800
|
-
|
801
|
-
## 6.2.0-canary.69
|
802
|
-
|
803
|
-
## 6.2.0-canary.68
|
804
|
-
|
805
|
-
## 6.2.0-canary.67
|
806
|
-
|
807
|
-
## 6.2.0-canary.66
|
808
|
-
|
809
|
-
## 6.2.0-canary.65
|
810
|
-
|
811
|
-
## 6.2.0-canary.64
|
812
|
-
|
813
|
-
## 6.2.0-canary.63
|
814
|
-
|
815
|
-
## 6.2.0-canary.62
|
816
|
-
|
817
|
-
### Patch Changes
|
818
|
-
|
819
|
-
- [#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))
|
820
|
-
|
821
|
-
## 6.2.0-canary.61
|
822
|
-
|
823
|
-
### Patch Changes
|
824
|
-
|
825
|
-
- [#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))
|
826
|
-
|
827
|
-
## 6.2.0-canary.60
|
828
|
-
|
829
|
-
## 6.2.0-canary.59
|
830
|
-
|
831
|
-
## 6.2.0-canary.58
|
832
|
-
|
833
|
-
## 6.2.0-canary.57
|
834
|
-
|
835
|
-
## 6.2.0-canary.56
|
836
|
-
|
837
|
-
## 6.2.0-canary.55
|
838
|
-
|
839
|
-
## 6.2.0-canary.54
|
840
|
-
|
841
|
-
## 6.2.0-canary.53
|
842
|
-
|
843
|
-
### Patch Changes
|
844
|
-
|
845
|
-
- [#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))
|
846
|
-
|
847
|
-
## 6.2.0-canary.52
|
848
|
-
|
849
|
-
## 6.2.0-canary.51
|
850
|
-
|
851
|
-
## 6.2.0-canary.50
|
852
|
-
|
853
|
-
### Minor Changes
|
854
|
-
|
855
|
-
- [`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))
|
856
|
-
|
857
|
-
## 6.2.0-canary.49
|
858
|
-
|
859
|
-
### Patch Changes
|
860
|
-
|
861
|
-
- [#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))
|
862
|
-
|
863
|
-
## 6.2.0-canary.48
|
864
|
-
|
865
|
-
### Minor Changes
|
866
|
-
|
867
|
-
- [#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))
|
868
|
-
|
869
|
-
## 6.2.0-canary.47
|
870
|
-
|
871
|
-
## 6.2.0-canary.46
|
872
|
-
|
873
|
-
## 6.2.0-canary.45
|
874
|
-
|
875
|
-
## 6.2.0-canary.44
|
876
|
-
|
877
|
-
## 6.2.0-canary.43
|
878
|
-
|
879
|
-
## 6.2.0-canary.42
|
880
|
-
|
881
|
-
## 6.2.0-canary.41
|
882
|
-
|
883
|
-
## 6.2.0-canary.40
|
884
|
-
|
885
|
-
### Minor Changes
|
886
|
-
|
887
|
-
- [#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))
|
888
|
-
|
889
|
-
## 6.2.0-canary.39
|
890
|
-
|
891
|
-
## 6.2.0-canary.38
|
892
|
-
|
893
|
-
## 6.2.0-canary.37
|
894
|
-
|
895
|
-
## 6.2.0-canary.36
|
896
|
-
|
897
|
-
## 6.2.0-canary.35
|
898
|
-
|
899
|
-
## 6.2.0-canary.34
|
900
|
-
|
901
|
-
## 6.2.0-canary.33
|
902
|
-
|
903
|
-
## 6.2.0-canary.32
|
904
|
-
|
905
|
-
## 6.2.0-canary.31
|
906
|
-
|
907
|
-
## 6.2.0-canary.30
|
908
|
-
|
909
|
-
## 6.2.0-canary.29
|
910
|
-
|
911
|
-
## 6.2.0-canary.28
|
912
|
-
|
913
|
-
### Patch Changes
|
914
|
-
|
915
|
-
- [#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))
|
916
|
-
|
917
|
-
## 6.2.0-canary.27
|
918
|
-
|
919
|
-
## 6.2.0-canary.26
|
920
|
-
|
921
|
-
## 6.2.0-canary.25
|
922
|
-
|
923
|
-
## 6.2.0-canary.24
|
924
|
-
|
925
|
-
## 6.2.0-canary.23
|
926
|
-
|
927
|
-
## 6.2.0-canary.22
|
928
|
-
|
929
|
-
## 6.2.0-canary.21
|
930
|
-
|
931
|
-
## 6.2.0-canary.20
|
932
|
-
|
933
|
-
## 6.2.0-canary.19
|
934
|
-
|
935
|
-
## 6.2.0-canary.18
|
936
|
-
|
937
|
-
## 6.2.0-canary.17
|
938
|
-
|
939
|
-
## 6.2.0-canary.16
|
940
|
-
|
941
|
-
## 6.2.0-canary.15
|
942
|
-
|
943
|
-
## 6.2.0-canary.14
|
944
|
-
|
945
|
-
## 6.2.0-canary.13
|
946
|
-
|
947
|
-
## 6.2.0-canary.12
|
948
|
-
|
949
|
-
## 6.2.0-canary.11
|
950
|
-
|
951
|
-
### Patch Changes
|
952
|
-
|
953
|
-
- [#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))
|
954
|
-
|
955
|
-
## 6.2.0-canary.10
|
956
|
-
|
957
|
-
## 6.2.0-canary.9
|
958
|
-
|
959
|
-
## 6.2.0-canary.8
|
960
|
-
|
961
|
-
## 6.2.0-canary.7
|
962
|
-
|
963
|
-
## 6.2.0-canary.6
|
964
|
-
|
965
|
-
## 6.1.1-canary.5
|
966
|
-
|
967
|
-
## 6.1.1-canary.4
|
968
|
-
|
969
|
-
### Patch Changes
|
970
|
-
|
971
|
-
- [#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))
|
972
|
-
|
973
|
-
- [#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))
|
974
|
-
|
975
|
-
## 6.1.1-canary.3
|
976
|
-
|
977
|
-
### Patch Changes
|
978
|
-
|
979
|
-
- [#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))
|
980
|
-
|
981
|
-
## 6.1.1-canary.2
|
982
|
-
|
983
|
-
## 6.1.1-canary.1
|
984
|
-
|
985
|
-
## 6.1.1-canary.0
|
986
|
-
|
987
|
-
## 6.1.0
|
988
|
-
|
989
|
-
### Minor Changes
|
990
|
-
|
991
|
-
- [#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))
|
992
|
-
|
993
|
-
- [#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))
|
994
|
-
|
995
|
-
### Patch Changes
|
996
|
-
|
997
|
-
- [#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))
|
998
|
-
|
999
|
-
- [#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))
|
1000
|
-
|
1001
|
-
- [#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))
|
1002
|
-
|
1003
|
-
- [#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))
|
1004
|
-
|
1005
|
-
- [#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))
|
1006
|
-
|
1007
|
-
## 6.0.2-canary.22
|
1008
|
-
|
1009
|
-
## 6.0.2-canary.21
|
1010
|
-
|
1011
|
-
## 6.0.2-canary.20
|
1012
|
-
|
1013
|
-
## 6.0.2-canary.19
|
1014
|
-
|
1015
|
-
## 6.0.2-canary.18
|
1016
|
-
|
1017
|
-
## 6.0.2-canary.17
|
1018
|
-
|
1019
|
-
## 6.0.2-canary.16
|
1020
|
-
|
1021
|
-
## 6.0.2-canary.15
|
1022
|
-
|
1023
|
-
### Patch Changes
|
1024
|
-
|
1025
|
-
- [#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))
|
1026
|
-
|
1027
|
-
## 6.0.2-canary.14
|
1028
|
-
|
1029
|
-
### Patch Changes
|
1030
|
-
|
1031
|
-
- [#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))
|
1032
|
-
|
1033
|
-
## 6.0.2-canary.13
|
1034
|
-
|
1035
|
-
## 6.0.2-canary.12
|
1036
|
-
|
1037
|
-
## 6.0.2-canary.11
|
1038
|
-
|
1039
|
-
### Patch Changes
|
1040
|
-
|
1041
|
-
- [#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))
|
1042
|
-
|
1043
|
-
## 6.0.2-canary.10
|
1044
|
-
|
1045
|
-
## 6.0.2-canary.9
|
1046
|
-
|
1047
|
-
## 6.0.2-canary.8
|
1048
|
-
|
1049
|
-
### Patch Changes
|
1050
|
-
|
1051
|
-
- [#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))
|
1052
|
-
|
1053
|
-
- [#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))
|
1054
|
-
|
1055
|
-
- [#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))
|
1056
|
-
|
1057
|
-
- [#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))
|
1058
|
-
|
1059
|
-
## 6.0.2-canary.7
|
1060
|
-
|
1061
|
-
## 6.0.2-canary.6
|
1062
|
-
|
1063
|
-
## 6.0.2-canary.5
|
1064
|
-
|
1065
|
-
## 6.0.2-canary.4
|
1066
|
-
|
1067
|
-
## 6.0.2-canary.3
|
1068
|
-
|
1069
|
-
## 6.0.2-canary.2
|
1070
|
-
|
1071
|
-
## 6.0.2-canary.1
|
1072
|
-
|
1073
|
-
## 6.0.2-canary.0
|
1074
|
-
|
1075
|
-
## 6.0.1
|
1076
|
-
|
1077
|
-
### Patch Changes
|
1078
|
-
|
1079
|
-
- [#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))
|
1080
|
-
|
1081
|
-
- [#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))
|
1082
|
-
|
1083
|
-
- [#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))
|
11
|
+
- [#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))
|
1084
12
|
|
1085
|
-
|
13
|
+
## 9.0.0-canary.86
|
1086
14
|
|
1087
|
-
|
15
|
+
### Patch Changes
|
1088
16
|
|
1089
|
-
|
17
|
+
- [#2379](https://github.com/graphcommerce-org/graphcommerce/pull/2379) [`959e0dd`](https://github.com/graphcommerce-org/graphcommerce/commit/959e0dd81a7943648250be6a2bf8f1bc27be8a3b) - Render multiple items in the RowSpecs table as a list ([@paales](https://github.com/paales))
|
1090
18
|
|
1091
|
-
##
|
19
|
+
## 9.0.0-canary.85
|
1092
20
|
|
1093
|
-
|
21
|
+
### Patch Changes
|
1094
22
|
|
1095
|
-
|
23
|
+
- [#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))
|
1096
24
|
|
1097
|
-
##
|
25
|
+
## 9.0.0-canary.80
|
1098
26
|
|
1099
|
-
|
27
|
+
### Minor Changes
|
1100
28
|
|
1101
|
-
|
29
|
+
- [#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))
|
1102
30
|
|
1103
|
-
|
31
|
+
## 9.0.0-canary.72
|
1104
32
|
|
1105
|
-
|
33
|
+
### Minor Changes
|
1106
34
|
|
1107
|
-
- [#
|
35
|
+
- [#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))
|
1108
36
|
|
1109
|
-
|
37
|
+
## 9.0.0-canary.61
|
1110
38
|
|
1111
|
-
|
39
|
+
### Minor Changes
|
1112
40
|
|
1113
|
-
|
41
|
+
- [#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))
|
1114
42
|
|
1115
|
-
|
43
|
+
## 9.0.0-canary.59
|
1116
44
|
|
1117
|
-
|
45
|
+
### Patch Changes
|
1118
46
|
|
1119
|
-
- [#
|
47
|
+
- [#2309](https://github.com/graphcommerce-org/graphcommerce/pull/2309) [`1fe4090`](https://github.com/graphcommerce-org/graphcommerce/commit/1fe409029671b841e582406251e45a9555fc78f9) - Hide SortChip or SortSection when there is only a single filter option. ([@Renzovh](https://github.com/Renzovh))
|
1120
48
|
|
1121
|
-
|
1122
|
-
- The configuration is automatically validated on startup.
|
1123
|
-
- All configuration values can be overwritten by environment variables. ([@paales](https://github.com/paales))
|
49
|
+
## 9.0.0-canary.58
|
1124
50
|
|
1125
|
-
###
|
51
|
+
### Patch Changes
|
1126
52
|
|
1127
|
-
- [#
|
53
|
+
- [#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))
|
1128
54
|
|
1129
|
-
|
1130
|
-
- og:image
|
1131
|
-
- og:url
|
1132
|
-
- type
|
1133
|
-
- product:retailer_part_no
|
1134
|
-
- product:price:amount
|
1135
|
-
- product:sale_price:amount
|
1136
|
-
- product:price:currency
|
1137
|
-
- product:category ([@KMalkowski](https://github.com/KMalkowski))
|
55
|
+
## 8.1.0-canary.51
|
1138
56
|
|
1139
|
-
|
57
|
+
### Minor Changes
|
1140
58
|
|
1141
|
-
- [#
|
59
|
+
- [#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))
|
1142
60
|
|
1143
|
-
|
61
|
+
## 8.1.0-canary.41
|
1144
62
|
|
1145
63
|
### Patch Changes
|
1146
64
|
|
1147
|
-
- [#
|
65
|
+
- [#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))
|
1148
66
|
|
1149
|
-
|
67
|
+
## 8.1.0-canary.27
|
1150
68
|
|
1151
|
-
|
69
|
+
### Minor Changes
|
1152
70
|
|
1153
|
-
- [#
|
71
|
+
- [#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))
|
72
|
+
|
73
|
+
## 8.1.0-canary.11
|
1154
74
|
|
1155
|
-
|
75
|
+
### Patch Changes
|
1156
76
|
|
1157
|
-
|
77
|
+
- [#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))
|
1158
78
|
|
1159
|
-
##
|
79
|
+
## 8.1.0-canary.5
|
1160
80
|
|
1161
|
-
|
81
|
+
### Patch Changes
|
1162
82
|
|
1163
|
-
|
83
|
+
- [#2224](https://github.com/graphcommerce-org/graphcommerce/pull/2224) [`4dd2d01`](https://github.com/graphcommerce-org/graphcommerce/commit/4dd2d01b3e14e3107ee3e337bef2a8528d654e75) - When applying a filter it would not always scroll to the #products. ([@FrankHarland](https://github.com/FrankHarland))
|
1164
84
|
|
1165
|
-
##
|
85
|
+
## 8.0.6-canary.4
|
1166
86
|
|
1167
87
|
### Patch Changes
|
1168
88
|
|
1169
|
-
- [#
|
89
|
+
- [#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))
|
1170
90
|
|
1171
|
-
##
|
91
|
+
## 8.0.6-canary.2
|
1172
92
|
|
1173
|
-
|
93
|
+
### Patch Changes
|
1174
94
|
|
1175
|
-
|
95
|
+
- [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`0767bc4`](https://github.com/graphcommerce-org/graphcommerce/commit/0767bc40f7b596209f24ca4e745ff0441f3275c9) - Upgrade input components to no longer use muiRegister, which improves INP scores ([@FrankHarland](https://github.com/FrankHarland))
|
1176
96
|
|
1177
|
-
|
97
|
+
- [#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))
|
1178
98
|
|
1179
|
-
##
|
99
|
+
## 8.0.6-canary.0
|
1180
100
|
|
1181
|
-
|
101
|
+
### Patch Changes
|
1182
102
|
|
1183
|
-
|
103
|
+
- [#2196](https://github.com/graphcommerce-org/graphcommerce/pull/2196) [`84c50e4`](https://github.com/graphcommerce-org/graphcommerce/commit/84c50e49a1a7f154d4a8f4045c37e773e20283ad) - Allow Lingui to use linguiLocale with country identifiers like `en-us`, it would always load `en` in this case. Introced a new `useLocale` hook to use the correct locale string to use in Intl methods. ([@paales](https://github.com/paales))
|
1184
104
|
|
1185
|
-
##
|
105
|
+
## 8.0.5
|
1186
106
|
|
1187
|
-
|
107
|
+
### Patch Changes
|
1188
108
|
|
1189
|
-
|
109
|
+
- [#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))
|
1190
110
|
|
1191
|
-
##
|
111
|
+
## 8.0.3
|
1192
112
|
|
1193
|
-
|
113
|
+
### Patch Changes
|
1194
114
|
|
1195
|
-
|
115
|
+
- [#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))
|
1196
116
|
|
1197
|
-
##
|
117
|
+
## 8.0.2
|
1198
118
|
|
1199
|
-
###
|
119
|
+
### Patch Changes
|
1200
120
|
|
1201
|
-
- [#
|
121
|
+
- [#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))
|
1202
122
|
|
1203
|
-
##
|
123
|
+
## 8.0.0
|
1204
124
|
|
1205
|
-
|
125
|
+
### Major Changes
|
1206
126
|
|
1207
|
-
|
127
|
+
- [#2041](https://github.com/graphcommerce-org/graphcommerce/pull/2041) [`bc3a833`](https://github.com/graphcommerce-org/graphcommerce/commit/bc3a8339b0b0f15b4d5cb014d4f95e6ea28c2cfe) - Removed the `legacyProductRoute` configuration option from GraphCommerce ([@paales](https://github.com/paales))
|
1208
128
|
|
1209
129
|
### Minor Changes
|
1210
130
|
|
1211
|
-
- [#
|
1212
|
-
- Actioncard default styling
|
1213
|
-
- Active filter styling ([@ErwinOtten](https://github.com/ErwinOtten))
|
1214
|
-
|
1215
|
-
## 6.0.0-canary.31
|
131
|
+
- [#2133](https://github.com/graphcommerce-org/graphcommerce/pull/2133) [`133f908`](https://github.com/graphcommerce-org/graphcommerce/commit/133f908200a79589036420f2925835724522cab8) - Added new `<LazyHydrate/>` component to improve the Total Blocking Time and implemented them in, `<RowRenderer/>`, `<ProductListItemBase/>`, `<Footer/>` and for the `<NavigationProvider/>`. Reduced the TBT by 50% on the homepage and other pages. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
1216
132
|
|
1217
|
-
|
133
|
+
- [#2099](https://github.com/graphcommerce-org/graphcommerce/pull/2099) [`ff796b8`](https://github.com/graphcommerce-org/graphcommerce/commit/ff796b838fae6cb5e35b101500133b0235a8677d) - Support for all customizable product options (except file upload) on the product pages and in the cart. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
1218
134
|
|
1219
|
-
|
135
|
+
- [#2048](https://github.com/graphcommerce-org/graphcommerce/pull/2048) [`13e23e4`](https://github.com/graphcommerce-org/graphcommerce/commit/13e23e4265bac70fb4d0830e4661019e71ce299f) - Wishlist will now support configurable products and uses the `<ActionCardLayout/>` ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
1220
136
|
|
1221
|
-
###
|
137
|
+
### Patch Changes
|
1222
138
|
|
1223
|
-
- [#
|
139
|
+
- [#2083](https://github.com/graphcommerce-org/graphcommerce/pull/2083) [`ca493c7`](https://github.com/graphcommerce-org/graphcommerce/commit/ca493c7b208b8526c1109695d54bad7b2956a8bd) - Filters which are not yet applied and all options have 0 results, will not be shown anymore. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
1224
140
|
|
1225
|
-
|
141
|
+
- [#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))
|
1226
142
|
|
1227
|
-
|
143
|
+
- [#2048](https://github.com/graphcommerce-org/graphcommerce/pull/2048) [`8d4f1ef`](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))
|
1228
144
|
|
1229
|
-
- [
|
145
|
+
- [`e33660f`](https://github.com/graphcommerce-org/graphcommerce/commit/e33660f172466dcfa0ab7262cee612d9a3e47776) - Accessibility improvements for the frontend: Added skip content link. Removed empty buttons from tab flow. Gave focus to elements (such as the menu) that appear when after clicking a button. Improved aria labels where needed ([@FrankHarland](https://github.com/FrankHarland))
|
1230
146
|
|
1231
|
-
|
147
|
+
- [#2058](https://github.com/graphcommerce-org/graphcommerce/pull/2058) [`16dc488`](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))
|
1232
148
|
|
1233
|
-
|
149
|
+
- [#2164](https://github.com/graphcommerce-org/graphcommerce/pull/2164) [`5224755`](https://github.com/graphcommerce-org/graphcommerce/commit/522475503fd40e4718fd4d7d33f8164c01588c0c) - The filter bar would completely disappear when there were no items returned. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
1234
150
|
|
1235
|
-
|
151
|
+
- [#2150](https://github.com/graphcommerce-org/graphcommerce/pull/2150) [`59844cd`](https://github.com/graphcommerce-org/graphcommerce/commit/59844cdd8adfaf03d22b04b9082552e22f386fb6) - Solved an issue where the same product could not be added multiple times to the cart without reloading the page. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
1236
152
|
|
1237
|
-
|
153
|
+
- [#2077](https://github.com/graphcommerce-org/graphcommerce/pull/2077) [`0d2cb22`](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))
|
1238
154
|
|
1239
|
-
|
155
|
+
- [#2160](https://github.com/graphcommerce-org/graphcommerce/pull/2160) [`154cd12`](https://github.com/graphcommerce-org/graphcommerce/commit/154cd12438f6cb30638e37b9a76a0649992b90f4) - The name of the product in the `<ProductListItem/>` would break words in the middle of a word instead of using a normal word break. ([@paales](https://github.com/paales))
|
1240
156
|
|
1241
|
-
- [#
|
157
|
+
- [#2007](https://github.com/graphcommerce-org/graphcommerce/pull/2007) [`f59c276`](https://github.com/graphcommerce-org/graphcommerce/commit/f59c276605f9ed649d1197a9ba0e3f12d7c6d026) - Crosssell behavior now properly shows for the latest added product. Added latest submitted variables to be retrieved when using the useFormGql hook. ([@JoshuaS98](https://github.com/JoshuaS98))
|
1242
158
|
|
1243
|
-
|
159
|
+
- [#2048](https://github.com/graphcommerce-org/graphcommerce/pull/2048) [`0335dd9`](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))
|
1244
160
|
|
1245
|
-
|
161
|
+
- [#2076](https://github.com/graphcommerce-org/graphcommerce/pull/2076) [`f860e68`](https://github.com/graphcommerce-org/graphcommerce/commit/f860e68603526a15dcf2567f4ca57230423ef5c3) - Forward the maxWidth prop to the `<ColumnTwoWithTop />` component from the `<ProductPageDescription maxWidth='lg'/>` component. ([@StefanAngenent](https://github.com/StefanAngenent))
|
1246
162
|
|
1247
|
-
|
163
|
+
- [#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))
|
1248
164
|
|
1249
|
-
##
|
165
|
+
## 7.0.0
|
1250
166
|
|
1251
|
-
###
|
167
|
+
### Major Changes
|
1252
168
|
|
1253
|
-
- [
|
169
|
+
- [`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))
|
1254
170
|
|
1255
|
-
|
171
|
+
### Minor Changes
|
1256
172
|
|
1257
|
-
|
173
|
+
- [#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))
|
1258
174
|
|
1259
|
-
|
175
|
+
- [#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))
|
1260
176
|
|
1261
|
-
|
177
|
+
- [#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))
|
1262
178
|
|
1263
179
|
### Patch Changes
|
1264
180
|
|
1265
|
-
- [#
|
181
|
+
- [#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))
|
182
|
+
|
183
|
+
- [#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))
|
1266
184
|
|
1267
|
-
|
185
|
+
- [#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))
|
1268
186
|
|
1269
|
-
|
187
|
+
- [#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))
|
1270
188
|
|
1271
|
-
|
189
|
+
- [#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))
|
1272
190
|
|
1273
|
-
|
191
|
+
- [#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))
|
1274
192
|
|
1275
|
-
|
193
|
+
- [#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))
|
1276
194
|
|
1277
|
-
|
195
|
+
- [#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))
|
1278
196
|
|
1279
|
-
|
197
|
+
- [#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))
|
1280
198
|
|
1281
|
-
|
199
|
+
- [#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))
|
1282
200
|
|
1283
|
-
##
|
201
|
+
## 6.1.0
|
1284
202
|
|
1285
203
|
### Minor Changes
|
1286
204
|
|
1287
|
-
- [#
|
205
|
+
- [#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))
|
206
|
+
|
207
|
+
- [#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))
|
1288
208
|
|
1289
209
|
### Patch Changes
|
1290
210
|
|
1291
|
-
- [#
|
211
|
+
- [#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))
|
1292
212
|
|
1293
|
-
- [#
|
213
|
+
- [#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))
|
1294
214
|
|
1295
|
-
|
215
|
+
- [#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))
|
1296
216
|
|
1297
|
-
|
217
|
+
- [#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))
|
1298
218
|
|
1299
|
-
|
219
|
+
- [#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))
|
1300
220
|
|
1301
|
-
##
|
221
|
+
## 6.0.1
|
1302
222
|
|
1303
|
-
|
223
|
+
### Patch Changes
|
1304
224
|
|
1305
|
-
|
225
|
+
- [#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))
|
1306
226
|
|
1307
|
-
|
227
|
+
- [#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))
|
1308
228
|
|
1309
|
-
|
229
|
+
- [#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))
|
1310
230
|
|
1311
|
-
|
231
|
+
- [#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))
|
1312
232
|
|
1313
|
-
##
|
233
|
+
## 6.0.0
|
1314
234
|
|
1315
|
-
|
235
|
+
### Major Changes
|
1316
236
|
|
1317
|
-
|
237
|
+
- [#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))
|
1318
238
|
|
1319
|
-
- [#
|
239
|
+
- [#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.
|
1320
240
|
|
1321
|
-
-
|
241
|
+
- GraphCommerce can be configured in the graphcommerce.config.js
|
242
|
+
- The configuration is automatically validated on startup.
|
243
|
+
- All configuration values can be overwritten by environment variables. ([@paales](https://github.com/paales))
|
1322
244
|
|
1323
|
-
|
1324
|
-
- AddToCartForm now shows a success message if there is an error but the error is related to another item in the cart.
|
1325
|
-
- Disable checkout buttons when there are cart item errors and show a message. ([@paales](https://github.com/paales))
|
245
|
+
### Minor Changes
|
1326
246
|
|
1327
|
-
- [#
|
247
|
+
- [#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:
|
1328
248
|
|
1329
|
-
|
249
|
+
- og:title
|
250
|
+
- og:image
|
251
|
+
- og:url
|
252
|
+
- type
|
253
|
+
- product:retailer_part_no
|
254
|
+
- product:price:amount
|
255
|
+
- product:sale_price:amount
|
256
|
+
- product:price:currency
|
257
|
+
- product:category ([@KMalkowski](https://github.com/KMalkowski))
|
1330
258
|
|
1331
|
-
- [#
|
259
|
+
- [#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))
|
1332
260
|
|
1333
|
-
|
1334
|
-
- Removed dependencies on react-hook-form-mui and @playwright/test
|
1335
|
-
- Upgraded dependencies including type-fest and graphql-mesh
|
1336
|
-
- Solved peer dependency issues ([@paales](https://github.com/paales))
|
261
|
+
- [#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))
|
1337
262
|
|
1338
|
-
- [#
|
263
|
+
- [#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))
|
1339
264
|
|
1340
|
-
|
265
|
+
### Patch Changes
|
1341
266
|
|
1342
|
-
|
267
|
+
- [#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))
|
1343
268
|
|
1344
|
-
- [#
|
269
|
+
- [#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))
|
1345
270
|
|
1346
|
-
|
271
|
+
- [#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))
|
1347
272
|
|
1348
|
-
|
273
|
+
- [#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))
|
1349
274
|
|
1350
|
-
## 5.1.0
|
275
|
+
## 5.1.0
|
1351
276
|
|
1352
277
|
### Minor Changes
|
1353
278
|
|
1354
279
|
- [#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))
|
1355
280
|
|
1356
|
-
## 5.1.0-canary.7
|
1357
|
-
|
1358
|
-
### Minor Changes
|
1359
|
-
|
1360
281
|
- [#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)
|
1361
282
|
|
1362
283
|
- Fixes an issue where the cart can get into a broken state, if items contain errors.
|
1363
284
|
- AddToCartForm now shows a success message if there is an error but the error is related to another item in the cart.
|
1364
285
|
- Disable checkout buttons when there are cart item errors and show a message. ([@paales](https://github.com/paales))
|
1365
286
|
|
1366
|
-
|
1367
|
-
|
1368
|
-
## 5.1.0-canary.5
|
1369
|
-
|
1370
|
-
## 5.1.0-canary.4
|
1371
|
-
|
1372
|
-
## 5.1.0-canary.3
|
287
|
+
- [#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))
|
1373
288
|
|
1374
289
|
### Patch Changes
|
1375
290
|
|
@@ -1380,15 +295,7 @@
|
|
1380
295
|
- Upgraded dependencies including type-fest and graphql-mesh
|
1381
296
|
- Solved peer dependency issues ([@paales](https://github.com/paales))
|
1382
297
|
|
1383
|
-
|
1384
|
-
|
1385
|
-
## 5.1.0-canary.1
|
1386
|
-
|
1387
|
-
## 5.1.0-canary.0
|
1388
|
-
|
1389
|
-
### Minor Changes
|
1390
|
-
|
1391
|
-
- [#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))
|
298
|
+
- [#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))
|
1392
299
|
|
1393
300
|
## 5.0.0
|
1394
301
|
|
@@ -1410,94 +317,18 @@
|
|
1410
317
|
|
1411
318
|
- [#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))
|
1412
319
|
|
1413
|
-
## 5.0.0-canary.14
|
1414
|
-
|
1415
|
-
## 5.0.0-canary.13
|
1416
|
-
|
1417
|
-
### Major Changes
|
1418
|
-
|
1419
|
-
- [`e4c7fe17e`](https://github.com/graphcommerce-org/graphcommerce/commit/e4c7fe17e413e37362ceae92e67f1b3a5f62d398) - Bump major version of all packages ([@paales](https://github.com/paales))
|
1420
|
-
|
1421
|
-
## 4.14.0-canary.12
|
1422
|
-
|
1423
|
-
## 4.14.0-canary.11
|
1424
|
-
|
1425
|
-
## 4.14.0-canary.10
|
1426
|
-
|
1427
|
-
## 4.14.0-canary.9
|
1428
|
-
|
1429
|
-
### Patch Changes
|
1430
|
-
|
1431
|
-
- [`9c3047c2f`](https://github.com/graphcommerce-org/graphcommerce/commit/9c3047c2fc6ea11ef9bd0c5128af883bffccc7e5) - Added GraphQL Injectable documentation ([@paales](https://github.com/paales))
|
1432
|
-
|
1433
|
-
## 4.14.0-canary.8
|
1434
|
-
|
1435
|
-
## 4.14.0-canary.7
|
1436
|
-
|
1437
|
-
### Patch Changes
|
1438
|
-
|
1439
|
-
- [#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))
|
1440
|
-
|
1441
|
-
## 4.14.0-canary.6
|
1442
|
-
|
1443
|
-
## 4.14.0-canary.5
|
1444
|
-
|
1445
|
-
## 4.14.0-canary.4
|
1446
|
-
|
1447
|
-
## 4.14.0-canary.3
|
1448
|
-
|
1449
|
-
## 4.14.0-canary.2
|
1450
|
-
|
1451
|
-
### Minor Changes
|
1452
|
-
|
1453
|
-
- [#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))
|
1454
|
-
|
1455
|
-
### Patch Changes
|
1456
|
-
|
1457
|
-
- [#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))
|
1458
|
-
|
1459
|
-
## 4.13.2-canary.1
|
1460
|
-
|
1461
|
-
### Patch Changes
|
1462
|
-
|
1463
|
-
- [#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
|
1464
|
-
|
1465
|
-
## 4.13.2-canary.0
|
1466
|
-
|
1467
|
-
## 4.13.3
|
1468
|
-
|
1469
|
-
## 4.13.2
|
1470
|
-
|
1471
320
|
## 4.13.1
|
1472
321
|
|
1473
322
|
### Patch Changes
|
1474
323
|
|
1475
324
|
- [#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
|
1476
325
|
|
1477
|
-
## 4.13.1-canary.2
|
1478
|
-
|
1479
|
-
### Patch Changes
|
1480
|
-
|
1481
|
-
- [#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
|
1482
|
-
|
1483
|
-
## 4.13.1-canary.1
|
1484
|
-
|
1485
|
-
## 4.13.1-canary.0
|
1486
|
-
|
1487
326
|
## 4.13.0
|
1488
327
|
|
1489
328
|
### Patch Changes
|
1490
329
|
|
1491
330
|
- [#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
|
1492
331
|
|
1493
|
-
## 4.13.0-canary.1
|
1494
|
-
|
1495
|
-
### Patch Changes
|
1496
|
-
|
1497
|
-
- [`abb15ef4a`](https://github.com/graphcommerce-org/graphcommerce/commit/abb15ef4a79b12eddb32cc006e5d1d31dd06ac2d) Thanks [@paales](https://github.com/paales)! - Added canary releases to GraphCommerce
|
1498
|
-
|
1499
|
-
## 4.13.0-canary.0
|
1500
|
-
|
1501
332
|
## 4.8.4
|
1502
333
|
|
1503
334
|
### Patch Changes
|
@@ -2093,8 +924,8 @@
|
|
2093
924
|
Needs to be replaced with:
|
2094
925
|
|
2095
926
|
```tsx
|
2096
|
-
import { Trans } from '@lingui/react'
|
2097
927
|
import { i18n } from '@lingui/core'
|
928
|
+
import { Trans } from '@lingui/react'
|
2098
929
|
|
2099
930
|
function MyComponent() {
|
2100
931
|
const foo = 'bar'
|