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