@graphcommerce/magento-product 10.0.0 → 10.0.1-canary.1
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 +4 -338
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 10.0.1-canary.1
|
|
4
|
+
|
|
5
|
+
## 10.0.1-canary.0
|
|
6
|
+
|
|
3
7
|
## 10.0.0
|
|
4
8
|
|
|
5
9
|
### Major Changes
|
|
@@ -158,344 +162,6 @@
|
|
|
158
162
|
|
|
159
163
|
- [#2530](https://github.com/graphcommerce-org/graphcommerce/pull/2530) [`f4a20a7`](https://github.com/graphcommerce-org/graphcommerce/commit/f4a20a7bb37701b779dfe7bd3073574eb6c1cab2) - Make sure the product price is updated when the quantity of a product is changed. ([@paales](https://github.com/paales))
|
|
160
164
|
|
|
161
|
-
## 10.0.0-canary.72
|
|
162
|
-
|
|
163
|
-
## 10.0.0-canary.71
|
|
164
|
-
|
|
165
|
-
## 10.0.0-canary.70
|
|
166
|
-
|
|
167
|
-
### Major Changes
|
|
168
|
-
|
|
169
|
-
- [#2565](https://github.com/graphcommerce-org/graphcommerce/pull/2565) [`c96dfcd`](https://github.com/graphcommerce-org/graphcommerce/commit/c96dfcdca981baca387c270ad9e2b9515cdd00cc) - Updated to Apollo Client 4 ([@paales](https://github.com/paales))
|
|
170
|
-
|
|
171
|
-
## 10.0.0-canary.69
|
|
172
|
-
|
|
173
|
-
## 10.0.0-canary.68
|
|
174
|
-
|
|
175
|
-
### Major Changes
|
|
176
|
-
|
|
177
|
-
- [#2557](https://github.com/graphcommerce-org/graphcommerce/pull/2557) [`ceaadd8`](https://github.com/graphcommerce-org/graphcommerce/commit/ceaadd87f0648982a068a3b07b1fa149c9127f49) - ## Material UI v5 → v7 Migration
|
|
178
|
-
|
|
179
|
-
This release upgrades Material UI from v5 to v7 with full CSS variables support. ([@paales](https://github.com/paales))
|
|
180
|
-
|
|
181
|
-
## 10.0.0-canary.67
|
|
182
|
-
|
|
183
|
-
### Patch Changes
|
|
184
|
-
|
|
185
|
-
- [#2506](https://github.com/graphcommerce-org/graphcommerce/pull/2506) [`cfb5ed6`](https://github.com/graphcommerce-org/graphcommerce/commit/cfb5ed6c457314ac7bc3379c5947e88e5d87dfa5) - feat(GCOM-1577): show product name and link on PDP breadcrumbs ([@FrankHarland](https://github.com/FrankHarland))
|
|
186
|
-
|
|
187
|
-
## 10.0.0-canary.66
|
|
188
|
-
|
|
189
|
-
## 10.0.0-canary.65
|
|
190
|
-
|
|
191
|
-
## 10.0.0-canary.64
|
|
192
|
-
|
|
193
|
-
## 10.0.0-canary.63
|
|
194
|
-
|
|
195
|
-
## 10.0.0-canary.62
|
|
196
|
-
|
|
197
|
-
## 10.0.0-canary.61
|
|
198
|
-
|
|
199
|
-
## 10.0.0-canary.60
|
|
200
|
-
|
|
201
|
-
## 10.0.0-canary.59
|
|
202
|
-
|
|
203
|
-
## 10.0.0-canary.58
|
|
204
|
-
|
|
205
|
-
## 10.0.0-canary.57
|
|
206
|
-
|
|
207
|
-
## 10.0.0-canary.56
|
|
208
|
-
|
|
209
|
-
### Major Changes
|
|
210
|
-
|
|
211
|
-
- [#2546](https://github.com/graphcommerce-org/graphcommerce/pull/2546) [`ed9332a`](https://github.com/graphcommerce-org/graphcommerce/commit/ed9332a7f78966d932041d9a7725641edc92b28d) - ## GraphCommerce 10 - Turbopack Support
|
|
212
|
-
|
|
213
|
-
This major release brings full Turbopack compatibility, dramatically improving development speed.
|
|
214
|
-
|
|
215
|
-
### 🚀 Turbopack-Compatible Interceptor System
|
|
216
|
-
|
|
217
|
-
The entire plugin/interceptor system has been rewritten to work with Turbopack:
|
|
218
|
-
|
|
219
|
-
- **No more Webpack plugins** - Removed `InterceptorPlugin` webpack plugin entirely
|
|
220
|
-
- **File-based interception** - Original files are moved to `.original.tsx` and replaced with interceptor content
|
|
221
|
-
- **Direct imports** - Interceptors import from `.original` files instead of embedding source
|
|
222
|
-
- **New CLI commands**:
|
|
223
|
-
- `graphcommerce codegen-interceptors` - Generate interceptor files
|
|
224
|
-
- `graphcommerce cleanup-interceptors` - Reset interceptor system, restore original files
|
|
225
|
-
- **Stable file hashing** - Deterministic interceptor generation for better caching
|
|
226
|
-
|
|
227
|
-
### ⚙️ Treeshakable Configuration System
|
|
228
|
-
|
|
229
|
-
Replaced Webpack `DefinePlugin`-based `import.meta.graphCommerce` with a new generated configuration system:
|
|
230
|
-
|
|
231
|
-
- **New `codegen-config-values` command** - Generates TypeScript files with precise typing
|
|
232
|
-
- **Schema-driven** - Dynamically introspects Zod schemas to determine all available properties
|
|
233
|
-
- **Fully treeshakable** - Unused config values are eliminated from the bundle
|
|
234
|
-
- **Type-safe** - Uses `Get<GraphCommerceConfig, 'path'>` for nested property access
|
|
235
|
-
- **Separate files for nested objects** - Optimal treeshaking for complex configurations
|
|
236
|
-
|
|
237
|
-
### 🔧 withGraphCommerce Changes
|
|
238
|
-
|
|
239
|
-
- **Removed** `InterceptorPlugin` - No longer needed with file-based interception
|
|
240
|
-
- **Removed** `DefinePlugin` for `import.meta.graphCommerce` - Replaced with generated config
|
|
241
|
-
- **Removed** `@mui/*` alias rewrites - No longer required
|
|
242
|
-
- **Added** Turbopack loader rules for `.yaml`, `.yml`, and `.po` files
|
|
243
|
-
- **Added** `serverExternalPackages` for all `@whatwg-node/*` packages
|
|
244
|
-
- **Added** `optimizePackageImports` for better bundle optimization
|
|
245
|
-
- **Added** `images.qualities: [52, 75]` for Next.js image optimization
|
|
246
|
-
|
|
247
|
-
### 📦 Lingui Configuration
|
|
248
|
-
|
|
249
|
-
- **Renamed** `lingui.config.js` → `lingui.config.ts` with TypeScript support
|
|
250
|
-
- **Updated** `@graphcommerce/lingui-next/config` to TypeScript with proper exports
|
|
251
|
-
- **Simplified** formatter options
|
|
252
|
-
|
|
253
|
-
### ⚛️ React 19 & Next.js 16 Compatibility
|
|
254
|
-
|
|
255
|
-
- Updated `RefObject<T>` types for React 19 (now includes `null` by default)
|
|
256
|
-
- Replaced deprecated `React.VFC` with `React.FC`
|
|
257
|
-
- Fixed `useRef` calls to require explicit initial values
|
|
258
|
-
- Updated `MutableRefObject` usage in `framer-scroller`
|
|
259
|
-
|
|
260
|
-
### 📋 ESLint 9 Flat Config
|
|
261
|
-
|
|
262
|
-
- Migrated from legacy `.eslintrc` to new flat config format (`eslint.config.mjs`)
|
|
263
|
-
- Updated `@typescript-eslint/*` packages to v8
|
|
264
|
-
- Fixed AST selector for `SxProps` rule (`typeParameters` → `typeArguments`)
|
|
265
|
-
|
|
266
|
-
### 🔄 Apollo Client
|
|
267
|
-
|
|
268
|
-
- Fixed deprecated `name` option → `clientAwareness: { name: 'ssr' }`
|
|
269
|
-
- Updated error handling types to accept `ApolloError | null | undefined`
|
|
270
|
-
|
|
271
|
-
### ⚠️ Breaking Changes
|
|
272
|
-
|
|
273
|
-
- **Node.js 24.x not supported** - Restricted to `>=20 <24.0.0` due to [nodejs/undici#4290](https://github.com/nodejs/undici/issues/4290)
|
|
274
|
-
- **Interceptor files changed** - Original components now at `.original.tsx`
|
|
275
|
-
- **Config access changed** - Use generated config values instead of `import.meta.graphCommerce`
|
|
276
|
-
- **ESLint config format** - Must use flat config (`eslint.config.mjs`)
|
|
277
|
-
- **Lingui config** - Rename `lingui.config.js` to `lingui.config.ts`
|
|
278
|
-
|
|
279
|
-
### 🗑️ Removed
|
|
280
|
-
|
|
281
|
-
- `InterceptorPlugin` webpack plugin
|
|
282
|
-
- `configToImportMeta` utility
|
|
283
|
-
- Webpack `DefinePlugin` usage for config
|
|
284
|
-
- `@mui/*` modern alias rewrites
|
|
285
|
-
- Debug plugins (`CircularDependencyPlugin`, `DuplicatesPlugin`) ([@paales](https://github.com/paales))
|
|
286
|
-
|
|
287
|
-
## 9.1.0-canary.55
|
|
288
|
-
|
|
289
|
-
### Patch Changes
|
|
290
|
-
|
|
291
|
-
- [#2539](https://github.com/graphcommerce-org/graphcommerce/pull/2539) [`21686e3`](https://github.com/graphcommerce-org/graphcommerce/commit/21686e3dd5673de7ada5e1741e4b77e00aeaef48) - Forward the cart to AddProductsToCartSnackbarMessage ([@paales](https://github.com/paales))
|
|
292
|
-
|
|
293
|
-
## 9.1.0-canary.54
|
|
294
|
-
|
|
295
|
-
## 9.1.0-canary.53
|
|
296
|
-
|
|
297
|
-
## 9.1.0-canary.52
|
|
298
|
-
|
|
299
|
-
### Patch Changes
|
|
300
|
-
|
|
301
|
-
- [`abdda4c`](https://github.com/graphcommerce-org/graphcommerce/commit/abdda4c052cdf0452dfe0daa36866541ccf502f0) - Solve issue where Specs table values would still be shown when the value would be '0' ([@paales](https://github.com/paales))
|
|
302
|
-
|
|
303
|
-
## 9.1.0-canary.51
|
|
304
|
-
|
|
305
|
-
## 9.1.0-canary.50
|
|
306
|
-
|
|
307
|
-
## 9.1.0-canary.49
|
|
308
|
-
|
|
309
|
-
### Patch Changes
|
|
310
|
-
|
|
311
|
-
- [#2533](https://github.com/graphcommerce-org/graphcommerce/pull/2533) [`dc3be1d`](https://github.com/graphcommerce-org/graphcommerce/commit/dc3be1da43916b65b1d3d4170c09e63ad3818bac) - Solve issue when a user applies their first filter on a category page, a redundant GraphQL call would be made, even though the user was navigating to the `/c/[..url]` route. ([@paales](https://github.com/paales))
|
|
312
|
-
|
|
313
|
-
- [#2533](https://github.com/graphcommerce-org/graphcommerce/pull/2533) [`45c2fbb`](https://github.com/graphcommerce-org/graphcommerce/commit/45c2fbbed55e3ba42f1ecc45e80039977b6ffe7c) - Solve issue where in some cases a second ProductList query was made because the category used an `eq` filter instead of an `in` filter. ([@paales](https://github.com/paales))
|
|
314
|
-
|
|
315
|
-
- [#2533](https://github.com/graphcommerce-org/graphcommerce/pull/2533) [`88abcbf`](https://github.com/graphcommerce-org/graphcommerce/commit/88abcbf011b65b0cd1235e984f5d8306256bd518) - When loading the category/search page in the case that there are no filters applied, the amount or product related queries is reduced from 2 to 1 (ProductFilters is skipped). Pagination, sorting and search terms also do not affect this. When a filter is applied we fall back to the previous functionality and do a second query to retrieve the filters.
|
|
316
|
-
|
|
317
|
-
This did not matter when the categories/search pages were served by Magento as Magento would cache the result of the ProductFilters query. When the the catalog is served by an external service like Algolia this might be a problem.
|
|
318
|
-
|
|
319
|
-
Implementation details: When filters are applied (e.g., filtering by color:blue), the ProductList query only returns products matching that filter, which means other filter options (like other colors) are excluded from the filter options. This behavior is expected since those other options wouldn't return any products. However, when no filters are applied, the ProductList query returns all products along with all available filter options, eliminating the need for a separate ProductFilters query. ([@paales](https://github.com/paales))
|
|
320
|
-
|
|
321
|
-
## 9.1.0-canary.48
|
|
322
|
-
|
|
323
|
-
## 9.1.0-canary.47
|
|
324
|
-
|
|
325
|
-
## 9.1.0-canary.46
|
|
326
|
-
|
|
327
|
-
## 9.1.0-canary.45
|
|
328
|
-
|
|
329
|
-
### Patch Changes
|
|
330
|
-
|
|
331
|
-
- [`7d59e59`](https://github.com/graphcommerce-org/graphcommerce/commit/7d59e592b4bc87cb0e05b6128820de2762297f7f) - Make sure you are able to set the defaultValue for the ProductPagePrice when running in total mode, so it works for GroupedProducts that might start with a default quantity of zero. ([@paales](https://github.com/paales))
|
|
332
|
-
|
|
333
|
-
- [`7d59e59`](https://github.com/graphcommerce-org/graphcommerce/commit/7d59e592b4bc87cb0e05b6128820de2762297f7f) - Forward inputProps for AddProductToCartQuantity ([@paales](https://github.com/paales))
|
|
334
|
-
|
|
335
|
-
## 9.1.0-canary.44
|
|
336
|
-
|
|
337
|
-
## 9.1.0-canary.43
|
|
338
|
-
|
|
339
|
-
## 9.1.0-canary.42
|
|
340
|
-
|
|
341
|
-
### Patch Changes
|
|
342
|
-
|
|
343
|
-
- [`fe2ca31`](https://github.com/graphcommerce-org/graphcommerce/commit/fe2ca31286628b563f7b490a736d698e170edd65) - Solve issue where ProductListItemReal couldn't be replaced or extended without also replacing ProductListItem ([@paales](https://github.com/paales))
|
|
344
|
-
|
|
345
|
-
## 9.1.0-canary.41
|
|
346
|
-
|
|
347
|
-
### Patch Changes
|
|
348
|
-
|
|
349
|
-
- [#2530](https://github.com/graphcommerce-org/graphcommerce/pull/2530) [`2075f33`](https://github.com/graphcommerce-org/graphcommerce/commit/2075f331eec38e894722d8ba4539d865f2db5507) - Add support for `variant=unit` and `variant=total` rendering of `ProductPagePrice` to include the quantity or not. ([@paales](https://github.com/paales))
|
|
350
|
-
|
|
351
|
-
- [#2530](https://github.com/graphcommerce-org/graphcommerce/pull/2530) [`4c60c55`](https://github.com/graphcommerce-org/graphcommerce/commit/4c60c55a0e83a8635fb2e97622cecd981d894970) - Created a ProductPagePriceLowest component that switches when the configurable option changes. ([@paales](https://github.com/paales))
|
|
352
|
-
|
|
353
|
-
- [#2530](https://github.com/graphcommerce-org/graphcommerce/pull/2530) [`5900c8d`](https://github.com/graphcommerce-org/graphcommerce/commit/5900c8d56bc9a3e0e4c2c8e61d5ff219877fd9ec) - Solve issue where the tier price doesn't get divided by the quantity, thus showing the wrong price. ([@paales](https://github.com/paales))
|
|
354
|
-
|
|
355
|
-
- [#2530](https://github.com/graphcommerce-org/graphcommerce/pull/2530) [`f4a20a7`](https://github.com/graphcommerce-org/graphcommerce/commit/f4a20a7bb37701b779dfe7bd3073574eb6c1cab2) - Make sure the product price is updated when the quantity of a product is changed. ([@paales](https://github.com/paales))
|
|
356
|
-
|
|
357
|
-
## 9.1.0-canary.40
|
|
358
|
-
|
|
359
|
-
## 9.1.0-canary.39
|
|
360
|
-
|
|
361
|
-
### Patch Changes
|
|
362
|
-
|
|
363
|
-
- [#2526](https://github.com/graphcommerce-org/graphcommerce/pull/2526) [`94951f2`](https://github.com/graphcommerce-org/graphcommerce/commit/94951f20a2da049c82d6c14519bce145a108c105) - Solve issue where the added item couldn't be properly found based on the input filters, causing problems when sending data to the data layer. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
364
|
-
|
|
365
|
-
## 9.1.0-canary.38
|
|
366
|
-
|
|
367
|
-
## 9.1.0-canary.37
|
|
368
|
-
|
|
369
|
-
### Patch Changes
|
|
370
|
-
|
|
371
|
-
- [`984f5e3`](https://github.com/graphcommerce-org/graphcommerce/commit/984f5e37b9cc83897782f95b8fe652855986a452) - Solve plugin issue with ProductListPrice ([@paales](https://github.com/paales))
|
|
372
|
-
|
|
373
|
-
## 9.1.0-canary.36
|
|
374
|
-
|
|
375
|
-
### Patch Changes
|
|
376
|
-
|
|
377
|
-
- [`c8aa135`](https://github.com/graphcommerce-org/graphcommerce/commit/c8aa13561f2a25b658466c0f3cddaa1bd338c443) - Add support for price prefix and suffix to be able to customize rendering ([@paales](https://github.com/paales))
|
|
378
|
-
|
|
379
|
-
## 9.1.0-canary.35
|
|
380
|
-
|
|
381
|
-
### Patch Changes
|
|
382
|
-
|
|
383
|
-
- [`4b02607`](https://github.com/graphcommerce-org/graphcommerce/commit/4b02607b26dd45e33bba3fb73d36052757dc2dec) - Solve issue where seaches containing a `/` would not consider everything after the `/` as part of the search. ([@paales](https://github.com/paales))
|
|
384
|
-
|
|
385
|
-
## 9.1.0-canary.34
|
|
386
|
-
|
|
387
|
-
## 9.1.0-canary.33
|
|
388
|
-
|
|
389
|
-
## 9.1.0-canary.32
|
|
390
|
-
|
|
391
|
-
## 9.1.0-canary.31
|
|
392
|
-
|
|
393
|
-
## 9.1.0-canary.30
|
|
394
|
-
|
|
395
|
-
## 9.1.0-canary.29
|
|
396
|
-
|
|
397
|
-
### Patch Changes
|
|
398
|
-
|
|
399
|
-
- [#2525](https://github.com/graphcommerce-org/graphcommerce/pull/2525) [`2f66469`](https://github.com/graphcommerce-org/graphcommerce/commit/2f66469479689ceaf9983b51c77f082e3a44cf97) - Translate relevance sort option when a non translated value is communicated from algolia. ([@paales](https://github.com/paales))
|
|
400
|
-
|
|
401
|
-
## 9.1.0-canary.28
|
|
402
|
-
|
|
403
|
-
## 9.1.0-canary.27
|
|
404
|
-
|
|
405
|
-
## 9.1.0-canary.26
|
|
406
|
-
|
|
407
|
-
### Patch Changes
|
|
408
|
-
|
|
409
|
-
- [#2522](https://github.com/graphcommerce-org/graphcommerce/pull/2522) [`43641a4`](https://github.com/graphcommerce-org/graphcommerce/commit/43641a48e0f3828d99b686b2f7cbca915f426d64) - Solve issue where grouped products could only be added to the cart correctly once. ([@paales](https://github.com/paales))
|
|
410
|
-
|
|
411
|
-
## 9.1.0-canary.25
|
|
412
|
-
|
|
413
|
-
## 9.1.0-canary.24
|
|
414
|
-
|
|
415
|
-
## 9.1.0-canary.23
|
|
416
|
-
|
|
417
|
-
### Patch Changes
|
|
418
|
-
|
|
419
|
-
- [#2521](https://github.com/graphcommerce-org/graphcommerce/pull/2521) [`78b8640`](https://github.com/graphcommerce-org/graphcommerce/commit/78b86401fc5410ffb3b001bc7c79049496a54ae7) - Solve issue where the category sidebar navigation would show a Clear button while it wasn't clearable. ([@paales](https://github.com/paales))
|
|
420
|
-
|
|
421
|
-
- [#2521](https://github.com/graphcommerce-org/graphcommerce/pull/2521) [`0464fbf`](https://github.com/graphcommerce-org/graphcommerce/commit/0464fbf798723e17c094e264a558ec0ebe73e8b0) - Fix regression issue where the sidebar filter values would be rendered too big and padding was missing on the top when values would be renderd in a bottom sheet. ([@paales](https://github.com/paales))
|
|
422
|
-
|
|
423
|
-
## 9.1.0-canary.22
|
|
424
|
-
|
|
425
|
-
## 9.1.0-canary.21
|
|
426
|
-
|
|
427
|
-
## 9.1.0-canary.20
|
|
428
|
-
|
|
429
|
-
## 9.1.0-canary.19
|
|
430
|
-
|
|
431
|
-
### Patch Changes
|
|
432
|
-
|
|
433
|
-
- [#2499](https://github.com/graphcommerce-org/graphcommerce/pull/2499) [`89e785d`](https://github.com/graphcommerce-org/graphcommerce/commit/89e785de9d62c2f6cf6b2885da72ff63b16fc70d) - Added support for TIME and DATE for the customizable options. Added required stars. ([@paales](https://github.com/paales))
|
|
434
|
-
|
|
435
|
-
- [#2499](https://github.com/graphcommerce-org/graphcommerce/pull/2499) [`7565120`](https://github.com/graphcommerce-org/graphcommerce/commit/756512031642371609258fba322a7f3a4845a17b) - Customizable Product Options wouldn't be properly selected because the parent woudln't rerender anymore. ([@paales](https://github.com/paales))
|
|
436
|
-
|
|
437
|
-
- [#2499](https://github.com/graphcommerce-org/graphcommerce/pull/2499) [`37c00d8`](https://github.com/graphcommerce-org/graphcommerce/commit/37c00d80419b209850457559d7b7eca4101f5705) - Forward productListRenderer for all locations that can be rendered by pagebuilder ([@paales](https://github.com/paales))
|
|
438
|
-
|
|
439
|
-
- [#2499](https://github.com/graphcommerce-org/graphcommerce/pull/2499) [`e9da6a9`](https://github.com/graphcommerce-org/graphcommerce/commit/e9da6a9e55a9344a1f8ef8f1f20060af2bb38ee9) - Added support for video's on the product page. ([@paales](https://github.com/paales))
|
|
440
|
-
|
|
441
|
-
- [#2499](https://github.com/graphcommerce-org/graphcommerce/pull/2499) [`1e38811`](https://github.com/graphcommerce-org/graphcommerce/commit/1e3881177065548165b7141a29cff8ab27692b25) - Added support for meta_keyword for products and categories ([@paales](https://github.com/paales))
|
|
442
|
-
|
|
443
|
-
- [#2499](https://github.com/graphcommerce-org/graphcommerce/pull/2499) [`b497116`](https://github.com/graphcommerce-org/graphcommerce/commit/b497116798e26419950982a6a9d05932a9e99961) - Make sure CustomizableOptions are sorted correctly ([@paales](https://github.com/paales))
|
|
444
|
-
|
|
445
|
-
- [#2499](https://github.com/graphcommerce-org/graphcommerce/pull/2499) [`89e785d`](https://github.com/graphcommerce-org/graphcommerce/commit/89e785de9d62c2f6cf6b2885da72ff63b16fc70d) - Created a CustomizablePrice component that will highlight the price, to prevent duplicating logic and preventing rerenders. ([@paales](https://github.com/paales))
|
|
446
|
-
|
|
447
|
-
- [#2499](https://github.com/graphcommerce-org/graphcommerce/pull/2499) [`722763f`](https://github.com/graphcommerce-org/graphcommerce/commit/722763f01f9c4726126d5a30919bdcd25929a330) - Support for new_from_date and new_to_date labels ([@paales](https://github.com/paales))
|
|
448
|
-
|
|
449
|
-
- [#2499](https://github.com/graphcommerce-org/graphcommerce/pull/2499) [`35fdadd`](https://github.com/graphcommerce-org/graphcommerce/commit/35fdadd8896619a2c84e91e39279f5928c0c9007) - Refactored the price calculation of customizable options on the product page so required options are correctly handled. ([@paales](https://github.com/paales))
|
|
450
|
-
|
|
451
|
-
- [#2499](https://github.com/graphcommerce-org/graphcommerce/pull/2499) [`35fdadd`](https://github.com/graphcommerce-org/graphcommerce/commit/35fdadd8896619a2c84e91e39279f5928c0c9007) - Renamed customizable_options_entered to entered_options_record and customizable_options to selected_options_record ([@paales](https://github.com/paales))
|
|
452
|
-
|
|
453
|
-
## 9.1.0-canary.18
|
|
454
|
-
|
|
455
|
-
## 9.1.0-canary.17
|
|
456
|
-
|
|
457
|
-
## 9.1.0-canary.16
|
|
458
|
-
|
|
459
|
-
## 9.1.0-canary.15
|
|
460
|
-
|
|
461
|
-
## 9.0.4-canary.14
|
|
462
|
-
|
|
463
|
-
## 9.0.4-canary.13
|
|
464
|
-
|
|
465
|
-
## 9.0.4-canary.12
|
|
466
|
-
|
|
467
|
-
## 9.0.4-canary.11
|
|
468
|
-
|
|
469
|
-
### Patch Changes
|
|
470
|
-
|
|
471
|
-
- [#2485](https://github.com/graphcommerce-org/graphcommerce/pull/2485) [`10200f1`](https://github.com/graphcommerce-org/graphcommerce/commit/10200f1eda8a34261ed3975c603b456014d4f8a3) - ProductSpecs now uses `attribute { label }` instead of `useQuery(ProductSpecsTypes)` ([@paales](https://github.com/paales))
|
|
472
|
-
|
|
473
|
-
## 9.0.4-canary.10
|
|
474
|
-
|
|
475
|
-
## 9.0.4-canary.9
|
|
476
|
-
|
|
477
|
-
## 9.0.4-canary.8
|
|
478
|
-
|
|
479
|
-
## 9.0.4-canary.7
|
|
480
|
-
|
|
481
|
-
## 9.0.4-canary.6
|
|
482
|
-
|
|
483
|
-
## 9.0.4-canary.5
|
|
484
|
-
|
|
485
|
-
## 9.0.4-canary.4
|
|
486
|
-
|
|
487
|
-
## 9.0.4-canary.3
|
|
488
|
-
|
|
489
|
-
## 9.0.4-canary.2
|
|
490
|
-
|
|
491
|
-
### Patch Changes
|
|
492
|
-
|
|
493
|
-
- [#2473](https://github.com/graphcommerce-org/graphcommerce/pull/2473) [`f085c89`](https://github.com/graphcommerce-org/graphcommerce/commit/f085c89416fd91cdc2729f8a6da0ec37d93e8e80) - Solve issue where the ProductListItemsBase was already wrapped in a form. ([@paales](https://github.com/paales))
|
|
494
|
-
|
|
495
|
-
## 9.0.4-canary.1
|
|
496
|
-
|
|
497
|
-
## 9.0.4-canary.0
|
|
498
|
-
|
|
499
165
|
## 9.0.1
|
|
500
166
|
|
|
501
167
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/magento-product",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "10.0.
|
|
5
|
+
"version": "10.0.1-canary.1",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -18,18 +18,18 @@
|
|
|
18
18
|
"typescript": "5.9.3"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
|
-
"@graphcommerce/ecommerce-ui": "^10.0.
|
|
22
|
-
"@graphcommerce/eslint-config-pwa": "^10.0.
|
|
23
|
-
"@graphcommerce/framer-next-pages": "^10.0.
|
|
24
|
-
"@graphcommerce/framer-scroller": "^10.0.
|
|
25
|
-
"@graphcommerce/graphql": "^10.0.
|
|
26
|
-
"@graphcommerce/graphql-mesh": "^10.0.
|
|
27
|
-
"@graphcommerce/image": "^10.0.
|
|
28
|
-
"@graphcommerce/magento-cart": "^10.0.
|
|
29
|
-
"@graphcommerce/magento-store": "^10.0.
|
|
30
|
-
"@graphcommerce/next-ui": "^10.0.
|
|
31
|
-
"@graphcommerce/prettier-config-pwa": "^10.0.
|
|
32
|
-
"@graphcommerce/typescript-config-pwa": "^10.0.
|
|
21
|
+
"@graphcommerce/ecommerce-ui": "^10.0.1-canary.1",
|
|
22
|
+
"@graphcommerce/eslint-config-pwa": "^10.0.1-canary.1",
|
|
23
|
+
"@graphcommerce/framer-next-pages": "^10.0.1-canary.1",
|
|
24
|
+
"@graphcommerce/framer-scroller": "^10.0.1-canary.1",
|
|
25
|
+
"@graphcommerce/graphql": "^10.0.1-canary.1",
|
|
26
|
+
"@graphcommerce/graphql-mesh": "^10.0.1-canary.1",
|
|
27
|
+
"@graphcommerce/image": "^10.0.1-canary.1",
|
|
28
|
+
"@graphcommerce/magento-cart": "^10.0.1-canary.1",
|
|
29
|
+
"@graphcommerce/magento-store": "^10.0.1-canary.1",
|
|
30
|
+
"@graphcommerce/next-ui": "^10.0.1-canary.1",
|
|
31
|
+
"@graphcommerce/prettier-config-pwa": "^10.0.1-canary.1",
|
|
32
|
+
"@graphcommerce/typescript-config-pwa": "^10.0.1-canary.1",
|
|
33
33
|
"@lingui/core": "^5",
|
|
34
34
|
"@lingui/macro": "^5",
|
|
35
35
|
"@lingui/react": "^5",
|