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