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