@graphcommerce/magento-product-configurable 10.0.0 → 10.0.1-canary.0
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 +2 -254
- package/package.json +18 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 10.0.1-canary.0
|
|
4
|
+
|
|
3
5
|
## 10.0.0
|
|
4
6
|
|
|
5
7
|
### Major Changes
|
|
@@ -100,260 +102,6 @@
|
|
|
100
102
|
|
|
101
103
|
- [#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))
|
|
102
104
|
|
|
103
|
-
## 10.0.0-canary.72
|
|
104
|
-
|
|
105
|
-
## 10.0.0-canary.71
|
|
106
|
-
|
|
107
|
-
## 10.0.0-canary.70
|
|
108
|
-
|
|
109
|
-
### Major Changes
|
|
110
|
-
|
|
111
|
-
- [#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))
|
|
112
|
-
|
|
113
|
-
## 10.0.0-canary.69
|
|
114
|
-
|
|
115
|
-
## 10.0.0-canary.68
|
|
116
|
-
|
|
117
|
-
### Major Changes
|
|
118
|
-
|
|
119
|
-
- [#2557](https://github.com/graphcommerce-org/graphcommerce/pull/2557) [`ceaadd8`](https://github.com/graphcommerce-org/graphcommerce/commit/ceaadd87f0648982a068a3b07b1fa149c9127f49) - ## Material UI v5 → v7 Migration
|
|
120
|
-
|
|
121
|
-
This release upgrades Material UI from v5 to v7 with full CSS variables support. ([@paales](https://github.com/paales))
|
|
122
|
-
|
|
123
|
-
## 10.0.0-canary.67
|
|
124
|
-
|
|
125
|
-
## 10.0.0-canary.66
|
|
126
|
-
|
|
127
|
-
## 10.0.0-canary.65
|
|
128
|
-
|
|
129
|
-
## 10.0.0-canary.64
|
|
130
|
-
|
|
131
|
-
## 10.0.0-canary.63
|
|
132
|
-
|
|
133
|
-
## 10.0.0-canary.62
|
|
134
|
-
|
|
135
|
-
## 10.0.0-canary.61
|
|
136
|
-
|
|
137
|
-
## 10.0.0-canary.60
|
|
138
|
-
|
|
139
|
-
## 10.0.0-canary.59
|
|
140
|
-
|
|
141
|
-
## 10.0.0-canary.58
|
|
142
|
-
|
|
143
|
-
## 10.0.0-canary.57
|
|
144
|
-
|
|
145
|
-
## 10.0.0-canary.56
|
|
146
|
-
|
|
147
|
-
### Major Changes
|
|
148
|
-
|
|
149
|
-
- [#2546](https://github.com/graphcommerce-org/graphcommerce/pull/2546) [`ed9332a`](https://github.com/graphcommerce-org/graphcommerce/commit/ed9332a7f78966d932041d9a7725641edc92b28d) - ## GraphCommerce 10 - Turbopack Support
|
|
150
|
-
|
|
151
|
-
This major release brings full Turbopack compatibility, dramatically improving development speed.
|
|
152
|
-
|
|
153
|
-
### 🚀 Turbopack-Compatible Interceptor System
|
|
154
|
-
|
|
155
|
-
The entire plugin/interceptor system has been rewritten to work with Turbopack:
|
|
156
|
-
|
|
157
|
-
- **No more Webpack plugins** - Removed `InterceptorPlugin` webpack plugin entirely
|
|
158
|
-
- **File-based interception** - Original files are moved to `.original.tsx` and replaced with interceptor content
|
|
159
|
-
- **Direct imports** - Interceptors import from `.original` files instead of embedding source
|
|
160
|
-
- **New CLI commands**:
|
|
161
|
-
- `graphcommerce codegen-interceptors` - Generate interceptor files
|
|
162
|
-
- `graphcommerce cleanup-interceptors` - Reset interceptor system, restore original files
|
|
163
|
-
- **Stable file hashing** - Deterministic interceptor generation for better caching
|
|
164
|
-
|
|
165
|
-
### ⚙️ Treeshakable Configuration System
|
|
166
|
-
|
|
167
|
-
Replaced Webpack `DefinePlugin`-based `import.meta.graphCommerce` with a new generated configuration system:
|
|
168
|
-
|
|
169
|
-
- **New `codegen-config-values` command** - Generates TypeScript files with precise typing
|
|
170
|
-
- **Schema-driven** - Dynamically introspects Zod schemas to determine all available properties
|
|
171
|
-
- **Fully treeshakable** - Unused config values are eliminated from the bundle
|
|
172
|
-
- **Type-safe** - Uses `Get<GraphCommerceConfig, 'path'>` for nested property access
|
|
173
|
-
- **Separate files for nested objects** - Optimal treeshaking for complex configurations
|
|
174
|
-
|
|
175
|
-
### 🔧 withGraphCommerce Changes
|
|
176
|
-
|
|
177
|
-
- **Removed** `InterceptorPlugin` - No longer needed with file-based interception
|
|
178
|
-
- **Removed** `DefinePlugin` for `import.meta.graphCommerce` - Replaced with generated config
|
|
179
|
-
- **Removed** `@mui/*` alias rewrites - No longer required
|
|
180
|
-
- **Added** Turbopack loader rules for `.yaml`, `.yml`, and `.po` files
|
|
181
|
-
- **Added** `serverExternalPackages` for all `@whatwg-node/*` packages
|
|
182
|
-
- **Added** `optimizePackageImports` for better bundle optimization
|
|
183
|
-
- **Added** `images.qualities: [52, 75]` for Next.js image optimization
|
|
184
|
-
|
|
185
|
-
### 📦 Lingui Configuration
|
|
186
|
-
|
|
187
|
-
- **Renamed** `lingui.config.js` → `lingui.config.ts` with TypeScript support
|
|
188
|
-
- **Updated** `@graphcommerce/lingui-next/config` to TypeScript with proper exports
|
|
189
|
-
- **Simplified** formatter options
|
|
190
|
-
|
|
191
|
-
### ⚛️ React 19 & Next.js 16 Compatibility
|
|
192
|
-
|
|
193
|
-
- Updated `RefObject<T>` types for React 19 (now includes `null` by default)
|
|
194
|
-
- Replaced deprecated `React.VFC` with `React.FC`
|
|
195
|
-
- Fixed `useRef` calls to require explicit initial values
|
|
196
|
-
- Updated `MutableRefObject` usage in `framer-scroller`
|
|
197
|
-
|
|
198
|
-
### 📋 ESLint 9 Flat Config
|
|
199
|
-
|
|
200
|
-
- Migrated from legacy `.eslintrc` to new flat config format (`eslint.config.mjs`)
|
|
201
|
-
- Updated `@typescript-eslint/*` packages to v8
|
|
202
|
-
- Fixed AST selector for `SxProps` rule (`typeParameters` → `typeArguments`)
|
|
203
|
-
|
|
204
|
-
### 🔄 Apollo Client
|
|
205
|
-
|
|
206
|
-
- Fixed deprecated `name` option → `clientAwareness: { name: 'ssr' }`
|
|
207
|
-
- Updated error handling types to accept `ApolloError | null | undefined`
|
|
208
|
-
|
|
209
|
-
### ⚠️ Breaking Changes
|
|
210
|
-
|
|
211
|
-
- **Node.js 24.x not supported** - Restricted to `>=20 <24.0.0` due to [nodejs/undici#4290](https://github.com/nodejs/undici/issues/4290)
|
|
212
|
-
- **Interceptor files changed** - Original components now at `.original.tsx`
|
|
213
|
-
- **Config access changed** - Use generated config values instead of `import.meta.graphCommerce`
|
|
214
|
-
- **ESLint config format** - Must use flat config (`eslint.config.mjs`)
|
|
215
|
-
- **Lingui config** - Rename `lingui.config.js` to `lingui.config.ts`
|
|
216
|
-
|
|
217
|
-
### 🗑️ Removed
|
|
218
|
-
|
|
219
|
-
- `InterceptorPlugin` webpack plugin
|
|
220
|
-
- `configToImportMeta` utility
|
|
221
|
-
- Webpack `DefinePlugin` usage for config
|
|
222
|
-
- `@mui/*` modern alias rewrites
|
|
223
|
-
- Debug plugins (`CircularDependencyPlugin`, `DuplicatesPlugin`) ([@paales](https://github.com/paales))
|
|
224
|
-
|
|
225
|
-
## 9.1.0-canary.55
|
|
226
|
-
|
|
227
|
-
## 9.1.0-canary.54
|
|
228
|
-
|
|
229
|
-
### Patch Changes
|
|
230
|
-
|
|
231
|
-
- [#2544](https://github.com/graphcommerce-org/graphcommerce/pull/2544) [`09a79c0`](https://github.com/graphcommerce-org/graphcommerce/commit/09a79c061c874dd9b5896d37edb2fc1031c7678c) - Solve issue whre Configurable Options would not respect the option position. ([@ThisIsRuddy](https://github.com/ThisIsRuddy))
|
|
232
|
-
|
|
233
|
-
## 9.1.0-canary.53
|
|
234
|
-
|
|
235
|
-
## 9.1.0-canary.52
|
|
236
|
-
|
|
237
|
-
## 9.1.0-canary.51
|
|
238
|
-
|
|
239
|
-
## 9.1.0-canary.50
|
|
240
|
-
|
|
241
|
-
## 9.1.0-canary.49
|
|
242
|
-
|
|
243
|
-
## 9.1.0-canary.48
|
|
244
|
-
|
|
245
|
-
## 9.1.0-canary.47
|
|
246
|
-
|
|
247
|
-
## 9.1.0-canary.46
|
|
248
|
-
|
|
249
|
-
## 9.1.0-canary.45
|
|
250
|
-
|
|
251
|
-
## 9.1.0-canary.44
|
|
252
|
-
|
|
253
|
-
## 9.1.0-canary.43
|
|
254
|
-
|
|
255
|
-
### Patch Changes
|
|
256
|
-
|
|
257
|
-
- [`f7d2bf1`](https://github.com/graphcommerce-org/graphcommerce/commit/f7d2bf13f7e82d5c8e918a51c1375c276ad3d80f) - Fix build issue ([@paales](https://github.com/paales))
|
|
258
|
-
|
|
259
|
-
## 9.1.0-canary.42
|
|
260
|
-
|
|
261
|
-
## 9.1.0-canary.41
|
|
262
|
-
|
|
263
|
-
## 9.1.0-canary.40
|
|
264
|
-
|
|
265
|
-
## 9.1.0-canary.39
|
|
266
|
-
|
|
267
|
-
## 9.1.0-canary.38
|
|
268
|
-
|
|
269
|
-
## 9.1.0-canary.37
|
|
270
|
-
|
|
271
|
-
## 9.1.0-canary.36
|
|
272
|
-
|
|
273
|
-
## 9.1.0-canary.35
|
|
274
|
-
|
|
275
|
-
## 9.1.0-canary.34
|
|
276
|
-
|
|
277
|
-
## 9.1.0-canary.33
|
|
278
|
-
|
|
279
|
-
## 9.1.0-canary.32
|
|
280
|
-
|
|
281
|
-
## 9.1.0-canary.31
|
|
282
|
-
|
|
283
|
-
## 9.1.0-canary.30
|
|
284
|
-
|
|
285
|
-
## 9.1.0-canary.29
|
|
286
|
-
|
|
287
|
-
## 9.1.0-canary.28
|
|
288
|
-
|
|
289
|
-
## 9.1.0-canary.27
|
|
290
|
-
|
|
291
|
-
## 9.1.0-canary.26
|
|
292
|
-
|
|
293
|
-
## 9.1.0-canary.25
|
|
294
|
-
|
|
295
|
-
## 9.1.0-canary.24
|
|
296
|
-
|
|
297
|
-
## 9.1.0-canary.23
|
|
298
|
-
|
|
299
|
-
## 9.1.0-canary.22
|
|
300
|
-
|
|
301
|
-
## 9.1.0-canary.21
|
|
302
|
-
|
|
303
|
-
## 9.1.0-canary.20
|
|
304
|
-
|
|
305
|
-
## 9.1.0-canary.19
|
|
306
|
-
|
|
307
|
-
### Patch Changes
|
|
308
|
-
|
|
309
|
-
- [#2499](https://github.com/graphcommerce-org/graphcommerce/pull/2499) [`d859dd8`](https://github.com/graphcommerce-org/graphcommerce/commit/d859dd8e5e89e4f22cd6e89e3ae8d03067de6c51) - Do not directly update the cache of the defaultConfigurableOptionsSelection, but query the backend. ([@paales](https://github.com/paales))
|
|
310
|
-
|
|
311
|
-
- [#2499](https://github.com/graphcommerce-org/graphcommerce/pull/2499) [`6b2b44c`](https://github.com/graphcommerce-org/graphcommerce/commit/6b2b44ca853279144d7768067f3462d4d4bf0af1) - Move the cartItemEdit functionality to a plugin for configurable products ([@paales](https://github.com/paales))
|
|
312
|
-
|
|
313
|
-
- [#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))
|
|
314
|
-
|
|
315
|
-
## 9.1.0-canary.18
|
|
316
|
-
|
|
317
|
-
## 9.1.0-canary.17
|
|
318
|
-
|
|
319
|
-
## 9.1.0-canary.16
|
|
320
|
-
|
|
321
|
-
## 9.1.0-canary.15
|
|
322
|
-
|
|
323
|
-
## 9.0.4-canary.14
|
|
324
|
-
|
|
325
|
-
## 9.0.4-canary.13
|
|
326
|
-
|
|
327
|
-
## 9.0.4-canary.12
|
|
328
|
-
|
|
329
|
-
## 9.0.4-canary.11
|
|
330
|
-
|
|
331
|
-
### Patch Changes
|
|
332
|
-
|
|
333
|
-
- [#2485](https://github.com/graphcommerce-org/graphcommerce/pull/2485) [`8b8807b`](https://github.com/graphcommerce-org/graphcommerce/commit/8b8807b8e24f1dba78dd988dfdc21316c616274f) - Solve issue where the GetConfigurableOptionsSelection query would be executed even if the product wasn't a ConfigurableProduct. ([@paales](https://github.com/paales))
|
|
334
|
-
|
|
335
|
-
## 9.0.4-canary.10
|
|
336
|
-
|
|
337
|
-
## 9.0.4-canary.9
|
|
338
|
-
|
|
339
|
-
## 9.0.4-canary.8
|
|
340
|
-
|
|
341
|
-
## 9.0.4-canary.7
|
|
342
|
-
|
|
343
|
-
## 9.0.4-canary.6
|
|
344
|
-
|
|
345
|
-
## 9.0.4-canary.5
|
|
346
|
-
|
|
347
|
-
## 9.0.4-canary.4
|
|
348
|
-
|
|
349
|
-
## 9.0.4-canary.3
|
|
350
|
-
|
|
351
|
-
## 9.0.4-canary.2
|
|
352
|
-
|
|
353
|
-
## 9.0.4-canary.1
|
|
354
|
-
|
|
355
|
-
## 9.0.4-canary.0
|
|
356
|
-
|
|
357
105
|
## 9.0.0
|
|
358
106
|
|
|
359
107
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/magento-product-configurable",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "10.0.0",
|
|
5
|
+
"version": "10.0.1-canary.0",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -12,23 +12,23 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"@graphcommerce/ecommerce-ui": "^10.0.0",
|
|
16
|
-
"@graphcommerce/eslint-config-pwa": "^10.0.0",
|
|
17
|
-
"@graphcommerce/graphql": "^10.0.0",
|
|
18
|
-
"@graphcommerce/graphql-mesh": "^10.0.0",
|
|
19
|
-
"@graphcommerce/image": "^10.0.0",
|
|
20
|
-
"@graphcommerce/lingui-next": "10.0.0",
|
|
21
|
-
"@graphcommerce/magento-cart": "^10.0.0",
|
|
22
|
-
"@graphcommerce/magento-cart-items": "^10.0.0",
|
|
23
|
-
"@graphcommerce/magento-category": "^10.0.0",
|
|
24
|
-
"@graphcommerce/magento-customer": "^10.0.0",
|
|
25
|
-
"@graphcommerce/magento-product": "^10.0.0",
|
|
26
|
-
"@graphcommerce/magento-product-simple": "^10.0.0",
|
|
27
|
-
"@graphcommerce/magento-store": "^10.0.0",
|
|
28
|
-
"@graphcommerce/next-ui": "^10.0.0",
|
|
29
|
-
"@graphcommerce/prettier-config-pwa": "^10.0.0",
|
|
30
|
-
"@graphcommerce/react-hook-form": "^10.0.0",
|
|
31
|
-
"@graphcommerce/typescript-config-pwa": "^10.0.0",
|
|
15
|
+
"@graphcommerce/ecommerce-ui": "^10.0.1-canary.0",
|
|
16
|
+
"@graphcommerce/eslint-config-pwa": "^10.0.1-canary.0",
|
|
17
|
+
"@graphcommerce/graphql": "^10.0.1-canary.0",
|
|
18
|
+
"@graphcommerce/graphql-mesh": "^10.0.1-canary.0",
|
|
19
|
+
"@graphcommerce/image": "^10.0.1-canary.0",
|
|
20
|
+
"@graphcommerce/lingui-next": "10.0.1-canary.0",
|
|
21
|
+
"@graphcommerce/magento-cart": "^10.0.1-canary.0",
|
|
22
|
+
"@graphcommerce/magento-cart-items": "^10.0.1-canary.0",
|
|
23
|
+
"@graphcommerce/magento-category": "^10.0.1-canary.0",
|
|
24
|
+
"@graphcommerce/magento-customer": "^10.0.1-canary.0",
|
|
25
|
+
"@graphcommerce/magento-product": "^10.0.1-canary.0",
|
|
26
|
+
"@graphcommerce/magento-product-simple": "^10.0.1-canary.0",
|
|
27
|
+
"@graphcommerce/magento-store": "^10.0.1-canary.0",
|
|
28
|
+
"@graphcommerce/next-ui": "^10.0.1-canary.0",
|
|
29
|
+
"@graphcommerce/prettier-config-pwa": "^10.0.1-canary.0",
|
|
30
|
+
"@graphcommerce/react-hook-form": "^10.0.1-canary.0",
|
|
31
|
+
"@graphcommerce/typescript-config-pwa": "^10.0.1-canary.0",
|
|
32
32
|
"@lingui/core": "^5",
|
|
33
33
|
"@lingui/macro": "^5",
|
|
34
34
|
"@lingui/react": "^5",
|