@graphcommerce/magento-product-bundle 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 +3 -235
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,130 +1,10 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## 10.0.
|
|
4
|
-
|
|
5
|
-
### Major Changes
|
|
6
|
-
|
|
7
|
-
- [#2546](https://github.com/graphcommerce-org/graphcommerce/pull/2546) [`ed9332a`](https://github.com/graphcommerce-org/graphcommerce/commit/ed9332a7f78966d932041d9a7725641edc92b28d) - ## GraphCommerce 10 - Turbopack Support
|
|
8
|
-
|
|
9
|
-
This major release brings full Turbopack compatibility, dramatically improving development speed.
|
|
10
|
-
|
|
11
|
-
### 🚀 Turbopack-Compatible Interceptor System
|
|
12
|
-
|
|
13
|
-
The entire plugin/interceptor system has been rewritten to work with Turbopack:
|
|
14
|
-
|
|
15
|
-
- **No more Webpack plugins** - Removed `InterceptorPlugin` webpack plugin entirely
|
|
16
|
-
- **File-based interception** - Original files are moved to `.original.tsx` and replaced with interceptor content
|
|
17
|
-
- **Direct imports** - Interceptors import from `.original` files instead of embedding source
|
|
18
|
-
- **New CLI commands**:
|
|
19
|
-
- `graphcommerce codegen-interceptors` - Generate interceptor files
|
|
20
|
-
- `graphcommerce cleanup-interceptors` - Reset interceptor system, restore original files
|
|
21
|
-
- **Stable file hashing** - Deterministic interceptor generation for better caching
|
|
22
|
-
|
|
23
|
-
### ⚙️ Treeshakable Configuration System
|
|
24
|
-
|
|
25
|
-
Replaced Webpack `DefinePlugin`-based `import.meta.graphCommerce` with a new generated configuration system:
|
|
26
|
-
|
|
27
|
-
- **New `codegen-config-values` command** - Generates TypeScript files with precise typing
|
|
28
|
-
- **Schema-driven** - Dynamically introspects Zod schemas to determine all available properties
|
|
29
|
-
- **Fully treeshakable** - Unused config values are eliminated from the bundle
|
|
30
|
-
- **Type-safe** - Uses `Get<GraphCommerceConfig, 'path'>` for nested property access
|
|
31
|
-
- **Separate files for nested objects** - Optimal treeshaking for complex configurations
|
|
32
|
-
|
|
33
|
-
### 🔧 withGraphCommerce Changes
|
|
34
|
-
|
|
35
|
-
- **Removed** `InterceptorPlugin` - No longer needed with file-based interception
|
|
36
|
-
- **Removed** `DefinePlugin` for `import.meta.graphCommerce` - Replaced with generated config
|
|
37
|
-
- **Removed** `@mui/*` alias rewrites - No longer required
|
|
38
|
-
- **Added** Turbopack loader rules for `.yaml`, `.yml`, and `.po` files
|
|
39
|
-
- **Added** `serverExternalPackages` for all `@whatwg-node/*` packages
|
|
40
|
-
- **Added** `optimizePackageImports` for better bundle optimization
|
|
41
|
-
- **Added** `images.qualities: [52, 75]` for Next.js image optimization
|
|
42
|
-
|
|
43
|
-
### 📦 Lingui Configuration
|
|
3
|
+
## 10.0.1-canary.1
|
|
44
4
|
|
|
45
|
-
|
|
46
|
-
- **Updated** `@graphcommerce/lingui-next/config` to TypeScript with proper exports
|
|
47
|
-
- **Simplified** formatter options
|
|
48
|
-
|
|
49
|
-
### ⚛️ React 19 & Next.js 16 Compatibility
|
|
50
|
-
|
|
51
|
-
- Updated `RefObject<T>` types for React 19 (now includes `null` by default)
|
|
52
|
-
- Replaced deprecated `React.VFC` with `React.FC`
|
|
53
|
-
- Fixed `useRef` calls to require explicit initial values
|
|
54
|
-
- Updated `MutableRefObject` usage in `framer-scroller`
|
|
55
|
-
|
|
56
|
-
### 📋 ESLint 9 Flat Config
|
|
57
|
-
|
|
58
|
-
- Migrated from legacy `.eslintrc` to new flat config format (`eslint.config.mjs`)
|
|
59
|
-
- Updated `@typescript-eslint/*` packages to v8
|
|
60
|
-
- Fixed AST selector for `SxProps` rule (`typeParameters` → `typeArguments`)
|
|
61
|
-
|
|
62
|
-
### 🔄 Apollo Client
|
|
63
|
-
|
|
64
|
-
- Fixed deprecated `name` option → `clientAwareness: { name: 'ssr' }`
|
|
65
|
-
- Updated error handling types to accept `ApolloError | null | undefined`
|
|
66
|
-
|
|
67
|
-
### ⚠️ Breaking Changes
|
|
68
|
-
|
|
69
|
-
- **Node.js 24.x not supported** - Restricted to `>=20 <24.0.0` due to [nodejs/undici#4290](https://github.com/nodejs/undici/issues/4290)
|
|
70
|
-
- **Interceptor files changed** - Original components now at `.original.tsx`
|
|
71
|
-
- **Config access changed** - Use generated config values instead of `import.meta.graphCommerce`
|
|
72
|
-
- **ESLint config format** - Must use flat config (`eslint.config.mjs`)
|
|
73
|
-
- **Lingui config** - Rename `lingui.config.js` to `lingui.config.ts`
|
|
74
|
-
|
|
75
|
-
### 🗑️ Removed
|
|
76
|
-
|
|
77
|
-
- `InterceptorPlugin` webpack plugin
|
|
78
|
-
- `configToImportMeta` utility
|
|
79
|
-
- Webpack `DefinePlugin` usage for config
|
|
80
|
-
- `@mui/*` modern alias rewrites
|
|
81
|
-
- Debug plugins (`CircularDependencyPlugin`, `DuplicatesPlugin`) ([@paales](https://github.com/paales))
|
|
82
|
-
|
|
83
|
-
### Patch Changes
|
|
84
|
-
|
|
85
|
-
- [#2499](https://github.com/graphcommerce-org/graphcommerce/pull/2499) [`224945f`](https://github.com/graphcommerce-org/graphcommerce/commit/224945faf04dff48692b7fcd99e1835d8a683143) - Add the ability to edit bundle products from the cart page ([@paales](https://github.com/paales))
|
|
5
|
+
## 10.0.1-canary.0
|
|
86
6
|
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
- [#2499](https://github.com/graphcommerce-org/graphcommerce/pull/2499) [`224945f`](https://github.com/graphcommerce-org/graphcommerce/commit/224945faf04dff48692b7fcd99e1835d8a683143) - Calculate the product page price dynamically based on the options and quantities selected. ([@paales](https://github.com/paales))
|
|
90
|
-
|
|
91
|
-
- [#2499](https://github.com/graphcommerce-org/graphcommerce/pull/2499) [`6b2b44c`](https://github.com/graphcommerce-org/graphcommerce/commit/6b2b44ca853279144d7768067f3462d4d4bf0af1) - Implement the Cart options as priceModifiers so the logic can be somewhat re-used for multiple locations ([@paales](https://github.com/paales))
|
|
92
|
-
|
|
93
|
-
- [#2499](https://github.com/graphcommerce-org/graphcommerce/pull/2499) [`2409514`](https://github.com/graphcommerce-org/graphcommerce/commit/240951428ac0bdc11649f4190b6d51c004680b34) - Order/Invoice/CreditMemo and Shipment views ([@paales](https://github.com/paales))
|
|
94
|
-
|
|
95
|
-
## 10.0.0-canary.72
|
|
96
|
-
|
|
97
|
-
## 10.0.0-canary.71
|
|
98
|
-
|
|
99
|
-
## 10.0.0-canary.70
|
|
100
|
-
|
|
101
|
-
## 10.0.0-canary.69
|
|
102
|
-
|
|
103
|
-
## 10.0.0-canary.68
|
|
104
|
-
|
|
105
|
-
## 10.0.0-canary.67
|
|
106
|
-
|
|
107
|
-
## 10.0.0-canary.66
|
|
108
|
-
|
|
109
|
-
## 10.0.0-canary.65
|
|
110
|
-
|
|
111
|
-
## 10.0.0-canary.64
|
|
112
|
-
|
|
113
|
-
## 10.0.0-canary.63
|
|
114
|
-
|
|
115
|
-
## 10.0.0-canary.62
|
|
116
|
-
|
|
117
|
-
## 10.0.0-canary.61
|
|
118
|
-
|
|
119
|
-
## 10.0.0-canary.60
|
|
120
|
-
|
|
121
|
-
## 10.0.0-canary.59
|
|
122
|
-
|
|
123
|
-
## 10.0.0-canary.58
|
|
124
|
-
|
|
125
|
-
## 10.0.0-canary.57
|
|
126
|
-
|
|
127
|
-
## 10.0.0-canary.56
|
|
7
|
+
## 10.0.0
|
|
128
8
|
|
|
129
9
|
### Major Changes
|
|
130
10
|
|
|
@@ -204,80 +84,6 @@
|
|
|
204
84
|
- `@mui/*` modern alias rewrites
|
|
205
85
|
- Debug plugins (`CircularDependencyPlugin`, `DuplicatesPlugin`) ([@paales](https://github.com/paales))
|
|
206
86
|
|
|
207
|
-
## 9.1.0-canary.55
|
|
208
|
-
|
|
209
|
-
## 9.1.0-canary.54
|
|
210
|
-
|
|
211
|
-
## 9.1.0-canary.53
|
|
212
|
-
|
|
213
|
-
## 9.1.0-canary.52
|
|
214
|
-
|
|
215
|
-
## 9.1.0-canary.51
|
|
216
|
-
|
|
217
|
-
## 9.1.0-canary.50
|
|
218
|
-
|
|
219
|
-
## 9.1.0-canary.49
|
|
220
|
-
|
|
221
|
-
## 9.1.0-canary.48
|
|
222
|
-
|
|
223
|
-
## 9.1.0-canary.47
|
|
224
|
-
|
|
225
|
-
## 9.1.0-canary.46
|
|
226
|
-
|
|
227
|
-
## 9.1.0-canary.45
|
|
228
|
-
|
|
229
|
-
## 9.1.0-canary.44
|
|
230
|
-
|
|
231
|
-
## 9.1.0-canary.43
|
|
232
|
-
|
|
233
|
-
## 9.1.0-canary.42
|
|
234
|
-
|
|
235
|
-
## 9.1.0-canary.41
|
|
236
|
-
|
|
237
|
-
## 9.1.0-canary.40
|
|
238
|
-
|
|
239
|
-
## 9.1.0-canary.39
|
|
240
|
-
|
|
241
|
-
## 9.1.0-canary.38
|
|
242
|
-
|
|
243
|
-
## 9.1.0-canary.37
|
|
244
|
-
|
|
245
|
-
## 9.1.0-canary.36
|
|
246
|
-
|
|
247
|
-
## 9.1.0-canary.35
|
|
248
|
-
|
|
249
|
-
## 9.1.0-canary.34
|
|
250
|
-
|
|
251
|
-
## 9.1.0-canary.33
|
|
252
|
-
|
|
253
|
-
## 9.1.0-canary.32
|
|
254
|
-
|
|
255
|
-
## 9.1.0-canary.31
|
|
256
|
-
|
|
257
|
-
## 9.1.0-canary.30
|
|
258
|
-
|
|
259
|
-
## 9.1.0-canary.29
|
|
260
|
-
|
|
261
|
-
## 9.1.0-canary.28
|
|
262
|
-
|
|
263
|
-
## 9.1.0-canary.27
|
|
264
|
-
|
|
265
|
-
## 9.1.0-canary.26
|
|
266
|
-
|
|
267
|
-
## 9.1.0-canary.25
|
|
268
|
-
|
|
269
|
-
## 9.1.0-canary.24
|
|
270
|
-
|
|
271
|
-
## 9.1.0-canary.23
|
|
272
|
-
|
|
273
|
-
## 9.1.0-canary.22
|
|
274
|
-
|
|
275
|
-
## 9.1.0-canary.21
|
|
276
|
-
|
|
277
|
-
## 9.1.0-canary.20
|
|
278
|
-
|
|
279
|
-
## 9.1.0-canary.19
|
|
280
|
-
|
|
281
87
|
### Patch Changes
|
|
282
88
|
|
|
283
89
|
- [#2499](https://github.com/graphcommerce-org/graphcommerce/pull/2499) [`224945f`](https://github.com/graphcommerce-org/graphcommerce/commit/224945faf04dff48692b7fcd99e1835d8a683143) - Add the ability to edit bundle products from the cart page ([@paales](https://github.com/paales))
|
|
@@ -290,44 +96,6 @@
|
|
|
290
96
|
|
|
291
97
|
- [#2499](https://github.com/graphcommerce-org/graphcommerce/pull/2499) [`2409514`](https://github.com/graphcommerce-org/graphcommerce/commit/240951428ac0bdc11649f4190b6d51c004680b34) - Order/Invoice/CreditMemo and Shipment views ([@paales](https://github.com/paales))
|
|
292
98
|
|
|
293
|
-
## 9.1.0-canary.18
|
|
294
|
-
|
|
295
|
-
## 9.1.0-canary.17
|
|
296
|
-
|
|
297
|
-
## 9.1.0-canary.16
|
|
298
|
-
|
|
299
|
-
## 9.1.0-canary.15
|
|
300
|
-
|
|
301
|
-
## 9.0.4-canary.14
|
|
302
|
-
|
|
303
|
-
## 9.0.4-canary.13
|
|
304
|
-
|
|
305
|
-
## 9.0.4-canary.12
|
|
306
|
-
|
|
307
|
-
## 9.0.4-canary.11
|
|
308
|
-
|
|
309
|
-
## 9.0.4-canary.10
|
|
310
|
-
|
|
311
|
-
## 9.0.4-canary.9
|
|
312
|
-
|
|
313
|
-
## 9.0.4-canary.8
|
|
314
|
-
|
|
315
|
-
## 9.0.4-canary.7
|
|
316
|
-
|
|
317
|
-
## 9.0.4-canary.6
|
|
318
|
-
|
|
319
|
-
## 9.0.4-canary.5
|
|
320
|
-
|
|
321
|
-
## 9.0.4-canary.4
|
|
322
|
-
|
|
323
|
-
## 9.0.4-canary.3
|
|
324
|
-
|
|
325
|
-
## 9.0.4-canary.2
|
|
326
|
-
|
|
327
|
-
## 9.0.4-canary.1
|
|
328
|
-
|
|
329
|
-
## 9.0.4-canary.0
|
|
330
|
-
|
|
331
99
|
## 9.0.0
|
|
332
100
|
|
|
333
101
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/magento-product-bundle",
|
|
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": {
|
|
@@ -12,19 +12,19 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"@graphcommerce/ecommerce-ui": "^10.0.
|
|
16
|
-
"@graphcommerce/eslint-config-pwa": "^10.0.
|
|
17
|
-
"@graphcommerce/graphql": "^10.0.
|
|
18
|
-
"@graphcommerce/image": "^10.0.
|
|
19
|
-
"@graphcommerce/magento-cart": "^10.0.
|
|
20
|
-
"@graphcommerce/magento-cart-items": "^10.0.
|
|
21
|
-
"@graphcommerce/magento-product": "^10.0.
|
|
22
|
-
"@graphcommerce/magento-product-simple": "^10.0.
|
|
23
|
-
"@graphcommerce/magento-product-virtual": "^10.0.
|
|
24
|
-
"@graphcommerce/magento-store": "^10.0.
|
|
25
|
-
"@graphcommerce/next-ui": "^10.0.
|
|
26
|
-
"@graphcommerce/prettier-config-pwa": "^10.0.
|
|
27
|
-
"@graphcommerce/typescript-config-pwa": "^10.0.
|
|
15
|
+
"@graphcommerce/ecommerce-ui": "^10.0.1-canary.1",
|
|
16
|
+
"@graphcommerce/eslint-config-pwa": "^10.0.1-canary.1",
|
|
17
|
+
"@graphcommerce/graphql": "^10.0.1-canary.1",
|
|
18
|
+
"@graphcommerce/image": "^10.0.1-canary.1",
|
|
19
|
+
"@graphcommerce/magento-cart": "^10.0.1-canary.1",
|
|
20
|
+
"@graphcommerce/magento-cart-items": "^10.0.1-canary.1",
|
|
21
|
+
"@graphcommerce/magento-product": "^10.0.1-canary.1",
|
|
22
|
+
"@graphcommerce/magento-product-simple": "^10.0.1-canary.1",
|
|
23
|
+
"@graphcommerce/magento-product-virtual": "^10.0.1-canary.1",
|
|
24
|
+
"@graphcommerce/magento-store": "^10.0.1-canary.1",
|
|
25
|
+
"@graphcommerce/next-ui": "^10.0.1-canary.1",
|
|
26
|
+
"@graphcommerce/prettier-config-pwa": "^10.0.1-canary.1",
|
|
27
|
+
"@graphcommerce/typescript-config-pwa": "^10.0.1-canary.1",
|
|
28
28
|
"@lingui/core": "^5",
|
|
29
29
|
"@lingui/macro": "^5",
|
|
30
30
|
"@lingui/react": "^5",
|