@graphcommerce/google-playstore 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 -224
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,118 +1,8 @@
1
1
  # @graphcommerce/google-playstore
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
- ## 10.0.0-canary.72
84
-
85
- ## 10.0.0-canary.71
86
-
87
- ## 10.0.0-canary.70
88
-
89
- ## 10.0.0-canary.69
90
-
91
- ## 10.0.0-canary.68
92
-
93
- ## 10.0.0-canary.67
94
-
95
- ## 10.0.0-canary.66
96
-
97
- ## 10.0.0-canary.65
98
-
99
- ## 10.0.0-canary.64
100
-
101
- ## 10.0.0-canary.63
102
-
103
- ## 10.0.0-canary.62
104
-
105
- ## 10.0.0-canary.61
106
-
107
- ## 10.0.0-canary.60
108
-
109
- ## 10.0.0-canary.59
110
-
111
- ## 10.0.0-canary.58
112
-
113
- ## 10.0.0-canary.57
3
+ ## 10.0.1-canary.0
114
4
 
115
- ## 10.0.0-canary.56
5
+ ## 10.0.0
116
6
 
117
7
  ### Major Changes
118
8
 
@@ -192,118 +82,6 @@
192
82
  - `@mui/*` modern alias rewrites
193
83
  - Debug plugins (`CircularDependencyPlugin`, `DuplicatesPlugin`) ([@paales](https://github.com/paales))
194
84
 
195
- ## 9.1.0-canary.55
196
-
197
- ## 9.1.0-canary.54
198
-
199
- ## 9.1.0-canary.53
200
-
201
- ## 9.1.0-canary.52
202
-
203
- ## 9.1.0-canary.51
204
-
205
- ## 9.1.0-canary.50
206
-
207
- ## 9.1.0-canary.49
208
-
209
- ## 9.1.0-canary.48
210
-
211
- ## 9.1.0-canary.47
212
-
213
- ## 9.1.0-canary.46
214
-
215
- ## 9.1.0-canary.45
216
-
217
- ## 9.1.0-canary.44
218
-
219
- ## 9.1.0-canary.43
220
-
221
- ## 9.1.0-canary.42
222
-
223
- ## 9.1.0-canary.41
224
-
225
- ## 9.1.0-canary.40
226
-
227
- ## 9.1.0-canary.39
228
-
229
- ## 9.1.0-canary.38
230
-
231
- ## 9.1.0-canary.37
232
-
233
- ## 9.1.0-canary.36
234
-
235
- ## 9.1.0-canary.35
236
-
237
- ## 9.1.0-canary.34
238
-
239
- ## 9.1.0-canary.33
240
-
241
- ## 9.1.0-canary.32
242
-
243
- ## 9.1.0-canary.31
244
-
245
- ## 9.1.0-canary.30
246
-
247
- ## 9.1.0-canary.29
248
-
249
- ## 9.1.0-canary.28
250
-
251
- ## 9.1.0-canary.27
252
-
253
- ## 9.1.0-canary.26
254
-
255
- ## 9.1.0-canary.25
256
-
257
- ## 9.1.0-canary.24
258
-
259
- ## 9.1.0-canary.23
260
-
261
- ## 9.1.0-canary.22
262
-
263
- ## 9.1.0-canary.21
264
-
265
- ## 9.1.0-canary.20
266
-
267
- ## 9.1.0-canary.19
268
-
269
- ## 9.1.0-canary.18
270
-
271
- ## 9.1.0-canary.17
272
-
273
- ## 9.1.0-canary.16
274
-
275
- ## 9.1.0-canary.15
276
-
277
- ## 9.0.4-canary.14
278
-
279
- ## 9.0.4-canary.13
280
-
281
- ## 9.0.4-canary.12
282
-
283
- ## 9.0.4-canary.11
284
-
285
- ## 9.0.4-canary.10
286
-
287
- ## 9.0.4-canary.9
288
-
289
- ## 9.0.4-canary.8
290
-
291
- ## 9.0.4-canary.7
292
-
293
- ## 9.0.4-canary.6
294
-
295
- ## 9.0.4-canary.5
296
-
297
- ## 9.0.4-canary.4
298
-
299
- ## 9.0.4-canary.3
300
-
301
- ## 9.0.4-canary.2
302
-
303
- ## 9.0.4-canary.1
304
-
305
- ## 9.0.4-canary.0
306
-
307
85
  ## 9.0.0
308
86
 
309
87
  ### Major Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphcommerce/google-playstore",
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,10 +13,10 @@
13
13
  }
14
14
  },
15
15
  "peerDependencies": {
16
- "@graphcommerce/eslint-config-pwa": "^10.0.0",
17
- "@graphcommerce/next-ui": "^10.0.0",
18
- "@graphcommerce/prettier-config-pwa": "^10.0.0",
19
- "@graphcommerce/typescript-config-pwa": "^10.0.0",
16
+ "@graphcommerce/eslint-config-pwa": "^10.0.1-canary.0",
17
+ "@graphcommerce/next-ui": "^10.0.1-canary.0",
18
+ "@graphcommerce/prettier-config-pwa": "^10.0.1-canary.0",
19
+ "@graphcommerce/typescript-config-pwa": "^10.0.1-canary.0",
20
20
  "next": "*",
21
21
  "react": "^19.2.0",
22
22
  "react-dom": "^19.2.0"