@graphcommerce/hygraph-dynamic-rows-ui 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 +6 -232
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,132 +1,12 @@
|
|
|
1
1
|
# @graphcommerce/hygraph-dynamic-rows-ui
|
|
2
2
|
|
|
3
|
-
## 10.0.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
|
|
44
|
-
|
|
45
|
-
- **Renamed** `lingui.config.js` → `lingui.config.ts` with TypeScript support
|
|
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
|
-
- [#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))
|
|
3
|
+
## 10.0.1-canary.0
|
|
84
4
|
|
|
85
5
|
### Patch Changes
|
|
86
6
|
|
|
87
|
-
- [#
|
|
7
|
+
- [#2568](https://github.com/graphcommerce-org/graphcommerce/pull/2568) [`71e2bcc`](https://github.com/graphcommerce-org/graphcommerce/commit/71e2bcc86db52b937b629f8f0a4defef107ff973) - Peer dependency issues ([@paales](https://github.com/paales))
|
|
88
8
|
|
|
89
|
-
## 10.0.0
|
|
90
|
-
|
|
91
|
-
## 10.0.0-canary.71
|
|
92
|
-
|
|
93
|
-
## 10.0.0-canary.70
|
|
94
|
-
|
|
95
|
-
### Major Changes
|
|
96
|
-
|
|
97
|
-
- [#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))
|
|
98
|
-
|
|
99
|
-
## 10.0.0-canary.69
|
|
100
|
-
|
|
101
|
-
## 10.0.0-canary.68
|
|
102
|
-
|
|
103
|
-
## 10.0.0-canary.67
|
|
104
|
-
|
|
105
|
-
## 10.0.0-canary.66
|
|
106
|
-
|
|
107
|
-
## 10.0.0-canary.65
|
|
108
|
-
|
|
109
|
-
## 10.0.0-canary.64
|
|
110
|
-
|
|
111
|
-
## 10.0.0-canary.63
|
|
112
|
-
|
|
113
|
-
## 10.0.0-canary.62
|
|
114
|
-
|
|
115
|
-
## 10.0.0-canary.61
|
|
116
|
-
|
|
117
|
-
## 10.0.0-canary.60
|
|
118
|
-
|
|
119
|
-
### Patch Changes
|
|
120
|
-
|
|
121
|
-
- [#2556](https://github.com/graphcommerce-org/graphcommerce/pull/2556) [`4aa6c92`](https://github.com/graphcommerce-org/graphcommerce/commit/4aa6c9284cdc6a43abe1ba8173ad4840e0e808fc) - Bump next from 16.0.6 to 16.0.7 ([@dependabot](https://github.com/apps/dependabot))
|
|
122
|
-
|
|
123
|
-
## 10.0.0-canary.59
|
|
124
|
-
|
|
125
|
-
## 10.0.0-canary.58
|
|
126
|
-
|
|
127
|
-
## 10.0.0-canary.57
|
|
128
|
-
|
|
129
|
-
## 10.0.0-canary.56
|
|
9
|
+
## 10.0.0
|
|
130
10
|
|
|
131
11
|
### Major Changes
|
|
132
12
|
|
|
@@ -206,117 +86,11 @@
|
|
|
206
86
|
- `@mui/*` modern alias rewrites
|
|
207
87
|
- Debug plugins (`CircularDependencyPlugin`, `DuplicatesPlugin`) ([@paales](https://github.com/paales))
|
|
208
88
|
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
## 9.1.0-canary.54
|
|
212
|
-
|
|
213
|
-
## 9.1.0-canary.53
|
|
214
|
-
|
|
215
|
-
## 9.1.0-canary.52
|
|
216
|
-
|
|
217
|
-
## 9.1.0-canary.51
|
|
218
|
-
|
|
219
|
-
## 9.1.0-canary.50
|
|
220
|
-
|
|
221
|
-
## 9.1.0-canary.49
|
|
222
|
-
|
|
223
|
-
## 9.1.0-canary.48
|
|
224
|
-
|
|
225
|
-
## 9.1.0-canary.47
|
|
226
|
-
|
|
227
|
-
## 9.1.0-canary.46
|
|
228
|
-
|
|
229
|
-
## 9.1.0-canary.45
|
|
230
|
-
|
|
231
|
-
## 9.1.0-canary.44
|
|
232
|
-
|
|
233
|
-
## 9.1.0-canary.43
|
|
234
|
-
|
|
235
|
-
## 9.1.0-canary.42
|
|
236
|
-
|
|
237
|
-
## 9.1.0-canary.41
|
|
238
|
-
|
|
239
|
-
## 9.1.0-canary.40
|
|
240
|
-
|
|
241
|
-
## 9.1.0-canary.39
|
|
242
|
-
|
|
243
|
-
## 9.1.0-canary.38
|
|
244
|
-
|
|
245
|
-
## 9.1.0-canary.37
|
|
246
|
-
|
|
247
|
-
## 9.1.0-canary.36
|
|
248
|
-
|
|
249
|
-
## 9.1.0-canary.35
|
|
250
|
-
|
|
251
|
-
## 9.1.0-canary.34
|
|
252
|
-
|
|
253
|
-
## 9.1.0-canary.33
|
|
254
|
-
|
|
255
|
-
## 9.1.0-canary.32
|
|
256
|
-
|
|
257
|
-
## 9.1.0-canary.31
|
|
258
|
-
|
|
259
|
-
## 9.1.0-canary.30
|
|
260
|
-
|
|
261
|
-
## 9.1.0-canary.29
|
|
262
|
-
|
|
263
|
-
## 9.1.0-canary.28
|
|
264
|
-
|
|
265
|
-
## 9.1.0-canary.27
|
|
266
|
-
|
|
267
|
-
## 9.1.0-canary.26
|
|
268
|
-
|
|
269
|
-
## 9.1.0-canary.25
|
|
270
|
-
|
|
271
|
-
## 9.1.0-canary.24
|
|
272
|
-
|
|
273
|
-
## 9.1.0-canary.23
|
|
274
|
-
|
|
275
|
-
## 9.1.0-canary.22
|
|
276
|
-
|
|
277
|
-
## 9.1.0-canary.21
|
|
278
|
-
|
|
279
|
-
## 9.1.0-canary.20
|
|
280
|
-
|
|
281
|
-
## 9.1.0-canary.19
|
|
282
|
-
|
|
283
|
-
## 9.1.0-canary.18
|
|
284
|
-
|
|
285
|
-
## 9.1.0-canary.17
|
|
286
|
-
|
|
287
|
-
## 9.1.0-canary.16
|
|
288
|
-
|
|
289
|
-
## 9.1.0-canary.15
|
|
290
|
-
|
|
291
|
-
## 9.0.4-canary.14
|
|
292
|
-
|
|
293
|
-
## 9.0.4-canary.13
|
|
294
|
-
|
|
295
|
-
## 9.0.4-canary.12
|
|
296
|
-
|
|
297
|
-
## 9.0.4-canary.11
|
|
298
|
-
|
|
299
|
-
## 9.0.4-canary.10
|
|
300
|
-
|
|
301
|
-
## 9.0.4-canary.9
|
|
302
|
-
|
|
303
|
-
## 9.0.4-canary.8
|
|
304
|
-
|
|
305
|
-
## 9.0.4-canary.7
|
|
306
|
-
|
|
307
|
-
## 9.0.4-canary.6
|
|
308
|
-
|
|
309
|
-
## 9.0.4-canary.5
|
|
310
|
-
|
|
311
|
-
## 9.0.4-canary.4
|
|
312
|
-
|
|
313
|
-
## 9.0.4-canary.3
|
|
314
|
-
|
|
315
|
-
## 9.0.4-canary.2
|
|
89
|
+
- [#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))
|
|
316
90
|
|
|
317
|
-
|
|
91
|
+
### Patch Changes
|
|
318
92
|
|
|
319
|
-
|
|
93
|
+
- [#2556](https://github.com/graphcommerce-org/graphcommerce/pull/2556) [`4aa6c92`](https://github.com/graphcommerce-org/graphcommerce/commit/4aa6c9284cdc6a43abe1ba8173ad4840e0e808fc) - Bump next from 16.0.6 to 16.0.7 ([@dependabot](https://github.com/apps/dependabot))
|
|
320
94
|
|
|
321
95
|
## 9.0.0
|
|
322
96
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/hygraph-dynamic-rows-ui",
|
|
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
|
"type": "module",
|
|
8
8
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@apollo/client": "^4.0.11",
|
|
23
|
-
"@graphcommerce/next-config": "10.0.0",
|
|
23
|
+
"@graphcommerce/next-config": "10.0.1-canary.0",
|
|
24
24
|
"@hygraph/app-sdk-react": "^0.0.6",
|
|
25
25
|
"@lingui/conf": "5.7.0",
|
|
26
26
|
"@lingui/core": "5.7.0",
|
|
@@ -36,12 +36,13 @@
|
|
|
36
36
|
"next": "16.1.1",
|
|
37
37
|
"react": "^19.2.0",
|
|
38
38
|
"react-dom": "^19.2.0",
|
|
39
|
+
"rxjs": "^7.8.2",
|
|
39
40
|
"webpack": "^5.103.0"
|
|
40
41
|
},
|
|
41
42
|
"devDependencies": {
|
|
42
|
-
"@graphcommerce/eslint-config-pwa": "10.0.0",
|
|
43
|
-
"@graphcommerce/prettier-config-pwa": "10.0.0",
|
|
44
|
-
"@graphcommerce/typescript-config-pwa": "10.0.0",
|
|
43
|
+
"@graphcommerce/eslint-config-pwa": "10.0.1-canary.0",
|
|
44
|
+
"@graphcommerce/prettier-config-pwa": "10.0.1-canary.0",
|
|
45
|
+
"@graphcommerce/typescript-config-pwa": "10.0.1-canary.0",
|
|
45
46
|
"@types/react": "^19.2.7",
|
|
46
47
|
"@types/react-dom": "^19.2.3",
|
|
47
48
|
"@types/react-is": "^19.2.0",
|