@graphcommerce/react-hook-form 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 +4 -252
- package/package.json +4 -4
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
|
|
@@ -98,258 +102,6 @@
|
|
|
98
102
|
|
|
99
103
|
- [#2477](https://github.com/graphcommerce-org/graphcommerce/pull/2477) [`8015eab`](https://github.com/graphcommerce-org/graphcommerce/commit/8015eabc130dacf1f2703980cd5f0ad2c550aa4d) - Upgraded to @apollo/client 3.12.3 without impacting typescript compilation performance. ([@paales](https://github.com/paales))
|
|
100
104
|
|
|
101
|
-
## 10.0.0-canary.72
|
|
102
|
-
|
|
103
|
-
## 10.0.0-canary.71
|
|
104
|
-
|
|
105
|
-
## 10.0.0-canary.70
|
|
106
|
-
|
|
107
|
-
### Major Changes
|
|
108
|
-
|
|
109
|
-
- [#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))
|
|
110
|
-
|
|
111
|
-
## 10.0.0-canary.69
|
|
112
|
-
|
|
113
|
-
### Patch Changes
|
|
114
|
-
|
|
115
|
-
- [#2567](https://github.com/graphcommerce-org/graphcommerce/pull/2567) [`41f9619`](https://github.com/graphcommerce-org/graphcommerce/commit/41f96194a5740465663d8f8e5ee1c10af0365748) - Fix issue where FormAutoSubmit would not listen for changes when no field names were provided (meaning it should watch changes on all fields) ([@paales](https://github.com/paales))
|
|
116
|
-
|
|
117
|
-
## 10.0.0-canary.68
|
|
118
|
-
|
|
119
|
-
## 10.0.0-canary.67
|
|
120
|
-
|
|
121
|
-
## 10.0.0-canary.66
|
|
122
|
-
|
|
123
|
-
## 10.0.0-canary.65
|
|
124
|
-
|
|
125
|
-
## 10.0.0-canary.64
|
|
126
|
-
|
|
127
|
-
## 10.0.0-canary.63
|
|
128
|
-
|
|
129
|
-
## 10.0.0-canary.62
|
|
130
|
-
|
|
131
|
-
## 10.0.0-canary.61
|
|
132
|
-
|
|
133
|
-
## 10.0.0-canary.60
|
|
134
|
-
|
|
135
|
-
## 10.0.0-canary.59
|
|
136
|
-
|
|
137
|
-
## 10.0.0-canary.58
|
|
138
|
-
|
|
139
|
-
## 10.0.0-canary.57
|
|
140
|
-
|
|
141
|
-
## 10.0.0-canary.56
|
|
142
|
-
|
|
143
|
-
### Major Changes
|
|
144
|
-
|
|
145
|
-
- [#2546](https://github.com/graphcommerce-org/graphcommerce/pull/2546) [`ed9332a`](https://github.com/graphcommerce-org/graphcommerce/commit/ed9332a7f78966d932041d9a7725641edc92b28d) - ## GraphCommerce 10 - Turbopack Support
|
|
146
|
-
|
|
147
|
-
This major release brings full Turbopack compatibility, dramatically improving development speed.
|
|
148
|
-
|
|
149
|
-
### 🚀 Turbopack-Compatible Interceptor System
|
|
150
|
-
|
|
151
|
-
The entire plugin/interceptor system has been rewritten to work with Turbopack:
|
|
152
|
-
|
|
153
|
-
- **No more Webpack plugins** - Removed `InterceptorPlugin` webpack plugin entirely
|
|
154
|
-
- **File-based interception** - Original files are moved to `.original.tsx` and replaced with interceptor content
|
|
155
|
-
- **Direct imports** - Interceptors import from `.original` files instead of embedding source
|
|
156
|
-
- **New CLI commands**:
|
|
157
|
-
- `graphcommerce codegen-interceptors` - Generate interceptor files
|
|
158
|
-
- `graphcommerce cleanup-interceptors` - Reset interceptor system, restore original files
|
|
159
|
-
- **Stable file hashing** - Deterministic interceptor generation for better caching
|
|
160
|
-
|
|
161
|
-
### ⚙️ Treeshakable Configuration System
|
|
162
|
-
|
|
163
|
-
Replaced Webpack `DefinePlugin`-based `import.meta.graphCommerce` with a new generated configuration system:
|
|
164
|
-
|
|
165
|
-
- **New `codegen-config-values` command** - Generates TypeScript files with precise typing
|
|
166
|
-
- **Schema-driven** - Dynamically introspects Zod schemas to determine all available properties
|
|
167
|
-
- **Fully treeshakable** - Unused config values are eliminated from the bundle
|
|
168
|
-
- **Type-safe** - Uses `Get<GraphCommerceConfig, 'path'>` for nested property access
|
|
169
|
-
- **Separate files for nested objects** - Optimal treeshaking for complex configurations
|
|
170
|
-
|
|
171
|
-
### 🔧 withGraphCommerce Changes
|
|
172
|
-
|
|
173
|
-
- **Removed** `InterceptorPlugin` - No longer needed with file-based interception
|
|
174
|
-
- **Removed** `DefinePlugin` for `import.meta.graphCommerce` - Replaced with generated config
|
|
175
|
-
- **Removed** `@mui/*` alias rewrites - No longer required
|
|
176
|
-
- **Added** Turbopack loader rules for `.yaml`, `.yml`, and `.po` files
|
|
177
|
-
- **Added** `serverExternalPackages` for all `@whatwg-node/*` packages
|
|
178
|
-
- **Added** `optimizePackageImports` for better bundle optimization
|
|
179
|
-
- **Added** `images.qualities: [52, 75]` for Next.js image optimization
|
|
180
|
-
|
|
181
|
-
### 📦 Lingui Configuration
|
|
182
|
-
|
|
183
|
-
- **Renamed** `lingui.config.js` → `lingui.config.ts` with TypeScript support
|
|
184
|
-
- **Updated** `@graphcommerce/lingui-next/config` to TypeScript with proper exports
|
|
185
|
-
- **Simplified** formatter options
|
|
186
|
-
|
|
187
|
-
### ⚛️ React 19 & Next.js 16 Compatibility
|
|
188
|
-
|
|
189
|
-
- Updated `RefObject<T>` types for React 19 (now includes `null` by default)
|
|
190
|
-
- Replaced deprecated `React.VFC` with `React.FC`
|
|
191
|
-
- Fixed `useRef` calls to require explicit initial values
|
|
192
|
-
- Updated `MutableRefObject` usage in `framer-scroller`
|
|
193
|
-
|
|
194
|
-
### 📋 ESLint 9 Flat Config
|
|
195
|
-
|
|
196
|
-
- Migrated from legacy `.eslintrc` to new flat config format (`eslint.config.mjs`)
|
|
197
|
-
- Updated `@typescript-eslint/*` packages to v8
|
|
198
|
-
- Fixed AST selector for `SxProps` rule (`typeParameters` → `typeArguments`)
|
|
199
|
-
|
|
200
|
-
### 🔄 Apollo Client
|
|
201
|
-
|
|
202
|
-
- Fixed deprecated `name` option → `clientAwareness: { name: 'ssr' }`
|
|
203
|
-
- Updated error handling types to accept `ApolloError | null | undefined`
|
|
204
|
-
|
|
205
|
-
### ⚠️ Breaking Changes
|
|
206
|
-
|
|
207
|
-
- **Node.js 24.x not supported** - Restricted to `>=20 <24.0.0` due to [nodejs/undici#4290](https://github.com/nodejs/undici/issues/4290)
|
|
208
|
-
- **Interceptor files changed** - Original components now at `.original.tsx`
|
|
209
|
-
- **Config access changed** - Use generated config values instead of `import.meta.graphCommerce`
|
|
210
|
-
- **ESLint config format** - Must use flat config (`eslint.config.mjs`)
|
|
211
|
-
- **Lingui config** - Rename `lingui.config.js` to `lingui.config.ts`
|
|
212
|
-
|
|
213
|
-
### 🗑️ Removed
|
|
214
|
-
|
|
215
|
-
- `InterceptorPlugin` webpack plugin
|
|
216
|
-
- `configToImportMeta` utility
|
|
217
|
-
- Webpack `DefinePlugin` usage for config
|
|
218
|
-
- `@mui/*` modern alias rewrites
|
|
219
|
-
- Debug plugins (`CircularDependencyPlugin`, `DuplicatesPlugin`) ([@paales](https://github.com/paales))
|
|
220
|
-
|
|
221
|
-
## 9.1.0-canary.55
|
|
222
|
-
|
|
223
|
-
### Patch Changes
|
|
224
|
-
|
|
225
|
-
- [#2539](https://github.com/graphcommerce-org/graphcommerce/pull/2539) [`5036171`](https://github.com/graphcommerce-org/graphcommerce/commit/5036171618492d7587cc02c557a4e9343e8240cd) - Fix typescript infer ([@paales](https://github.com/paales))
|
|
226
|
-
|
|
227
|
-
- [#2539](https://github.com/graphcommerce-org/graphcommerce/pull/2539) [`31ef9c5`](https://github.com/graphcommerce-org/graphcommerce/commit/31ef9c59b18dd58fbb3625abf586f0a53f3d63cb) - Solve an issue where the false value of the useFormGql was incorrectly interpreted as an error while it was a SKIP. Fixes an issue where the CustomerAddressForm is not submitting properly when the user is adding a new address. ([@paales](https://github.com/paales))
|
|
228
|
-
|
|
229
|
-
- [#2539](https://github.com/graphcommerce-org/graphcommerce/pull/2539) [`9bf02b6`](https://github.com/graphcommerce-org/graphcommerce/commit/9bf02b6dd20c086db0c93fe9efea140b673bc4a2) - Solve issue with react-hook-form causing ts errors, now version is fixed and the ts error is solved ([@paales](https://github.com/paales))
|
|
230
|
-
|
|
231
|
-
## 9.1.0-canary.54
|
|
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
|
-
## 9.1.0-canary.42
|
|
256
|
-
|
|
257
|
-
## 9.1.0-canary.41
|
|
258
|
-
|
|
259
|
-
## 9.1.0-canary.40
|
|
260
|
-
|
|
261
|
-
## 9.1.0-canary.39
|
|
262
|
-
|
|
263
|
-
## 9.1.0-canary.38
|
|
264
|
-
|
|
265
|
-
## 9.1.0-canary.37
|
|
266
|
-
|
|
267
|
-
## 9.1.0-canary.36
|
|
268
|
-
|
|
269
|
-
## 9.1.0-canary.35
|
|
270
|
-
|
|
271
|
-
## 9.1.0-canary.34
|
|
272
|
-
|
|
273
|
-
## 9.1.0-canary.33
|
|
274
|
-
|
|
275
|
-
## 9.1.0-canary.32
|
|
276
|
-
|
|
277
|
-
## 9.1.0-canary.31
|
|
278
|
-
|
|
279
|
-
## 9.1.0-canary.30
|
|
280
|
-
|
|
281
|
-
## 9.1.0-canary.29
|
|
282
|
-
|
|
283
|
-
## 9.1.0-canary.28
|
|
284
|
-
|
|
285
|
-
## 9.1.0-canary.27
|
|
286
|
-
|
|
287
|
-
## 9.1.0-canary.26
|
|
288
|
-
|
|
289
|
-
## 9.1.0-canary.25
|
|
290
|
-
|
|
291
|
-
## 9.1.0-canary.24
|
|
292
|
-
|
|
293
|
-
## 9.1.0-canary.23
|
|
294
|
-
|
|
295
|
-
## 9.1.0-canary.22
|
|
296
|
-
|
|
297
|
-
## 9.1.0-canary.21
|
|
298
|
-
|
|
299
|
-
## 9.1.0-canary.20
|
|
300
|
-
|
|
301
|
-
## 9.1.0-canary.19
|
|
302
|
-
|
|
303
|
-
## 9.1.0-canary.18
|
|
304
|
-
|
|
305
|
-
## 9.1.0-canary.17
|
|
306
|
-
|
|
307
|
-
## 9.1.0-canary.16
|
|
308
|
-
|
|
309
|
-
## 9.1.0-canary.15
|
|
310
|
-
|
|
311
|
-
## 9.0.4-canary.14
|
|
312
|
-
|
|
313
|
-
## 9.0.4-canary.13
|
|
314
|
-
|
|
315
|
-
### Patch Changes
|
|
316
|
-
|
|
317
|
-
- [`9aa9a3c`](https://github.com/graphcommerce-org/graphcommerce/commit/9aa9a3cc25c121e217f64efc0cfd19e3b90d15aa) - useFormGql and all derivivatives now get the form as an argument in onComplete for easier form resets. ([@paales](https://github.com/paales))
|
|
318
|
-
|
|
319
|
-
## 9.0.4-canary.12
|
|
320
|
-
|
|
321
|
-
## 9.0.4-canary.11
|
|
322
|
-
|
|
323
|
-
## 9.0.4-canary.10
|
|
324
|
-
|
|
325
|
-
### Patch Changes
|
|
326
|
-
|
|
327
|
-
- [#2487](https://github.com/graphcommerce-org/graphcommerce/pull/2487) [`935f8f9`](https://github.com/graphcommerce-org/graphcommerce/commit/935f8f9ebe5e79b336e56d40cb1ec96ce17b84d7) - Remove dependency on Magento for @graphcommerec/react-hook-form ([@paales](https://github.com/paales))
|
|
328
|
-
|
|
329
|
-
## 9.0.4-canary.9
|
|
330
|
-
|
|
331
|
-
## 9.0.4-canary.8
|
|
332
|
-
|
|
333
|
-
## 9.0.4-canary.7
|
|
334
|
-
|
|
335
|
-
## 9.0.4-canary.6
|
|
336
|
-
|
|
337
|
-
## 9.0.4-canary.5
|
|
338
|
-
|
|
339
|
-
## 9.0.4-canary.4
|
|
340
|
-
|
|
341
|
-
## 9.0.4-canary.3
|
|
342
|
-
|
|
343
|
-
### Patch Changes
|
|
344
|
-
|
|
345
|
-
- [#2477](https://github.com/graphcommerce-org/graphcommerce/pull/2477) [`8015eab`](https://github.com/graphcommerce-org/graphcommerce/commit/8015eabc130dacf1f2703980cd5f0ad2c550aa4d) - Upgraded to @apollo/client 3.12.3 without impacting typescript compilation performance. ([@paales](https://github.com/paales))
|
|
346
|
-
|
|
347
|
-
## 9.0.4-canary.2
|
|
348
|
-
|
|
349
|
-
## 9.0.4-canary.1
|
|
350
|
-
|
|
351
|
-
## 9.0.4-canary.0
|
|
352
|
-
|
|
353
105
|
## 9.0.2
|
|
354
106
|
|
|
355
107
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/react-hook-form",
|
|
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": {
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
15
|
"@apollo/client": "*",
|
|
16
|
-
"@graphcommerce/eslint-config-pwa": "^10.0.
|
|
17
|
-
"@graphcommerce/prettier-config-pwa": "^10.0.
|
|
18
|
-
"@graphcommerce/typescript-config-pwa": "^10.0.
|
|
16
|
+
"@graphcommerce/eslint-config-pwa": "^10.0.1-canary.1",
|
|
17
|
+
"@graphcommerce/prettier-config-pwa": "^10.0.1-canary.1",
|
|
18
|
+
"@graphcommerce/typescript-config-pwa": "^10.0.1-canary.1",
|
|
19
19
|
"@mui/utils": "^7.0.0",
|
|
20
20
|
"graphql": "^16.6.0",
|
|
21
21
|
"react": "^19.2.0",
|