@react-native-windows/codegen 0.0.0-canary.13 → 0.0.0-canary.131

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 (61) hide show
  1. package/CHANGELOG.md +1135 -16
  2. package/README.md +1 -1
  3. package/bin.js +0 -0
  4. package/lib-commonjs/Cli.d.ts +7 -0
  5. package/lib-commonjs/Cli.js +103 -0
  6. package/lib-commonjs/Cli.js.map +1 -0
  7. package/lib-commonjs/generators/AliasGen.d.ts +12 -0
  8. package/lib-commonjs/generators/AliasGen.js +115 -0
  9. package/lib-commonjs/generators/AliasGen.js.map +1 -0
  10. package/lib-commonjs/generators/AliasManaging.d.ts +15 -0
  11. package/lib-commonjs/generators/AliasManaging.js +49 -0
  12. package/lib-commonjs/generators/AliasManaging.js.map +1 -0
  13. package/lib-commonjs/generators/GenerateComponentWindows.d.ts +13 -0
  14. package/lib-commonjs/generators/GenerateComponentWindows.js +468 -0
  15. package/lib-commonjs/generators/GenerateComponentWindows.js.map +1 -0
  16. package/lib-commonjs/generators/GenerateNM2.d.ts +15 -0
  17. package/lib-commonjs/generators/GenerateNM2.js +145 -0
  18. package/lib-commonjs/generators/GenerateNM2.js.map +1 -0
  19. package/lib-commonjs/generators/GenerateTypeScript.d.ts +11 -0
  20. package/lib-commonjs/generators/GenerateTypeScript.js +165 -0
  21. package/lib-commonjs/generators/GenerateTypeScript.js.map +1 -0
  22. package/lib-commonjs/generators/ObjectTypes.d.ts +13 -0
  23. package/lib-commonjs/generators/ObjectTypes.js +81 -0
  24. package/lib-commonjs/generators/ObjectTypes.js.map +1 -0
  25. package/lib-commonjs/generators/ParamTypes.d.ts +13 -0
  26. package/lib-commonjs/generators/ParamTypes.js +183 -0
  27. package/lib-commonjs/generators/ParamTypes.js.map +1 -0
  28. package/lib-commonjs/generators/PropObjectTypes.d.ts +18 -0
  29. package/lib-commonjs/generators/PropObjectTypes.js +208 -0
  30. package/lib-commonjs/generators/PropObjectTypes.js.map +1 -0
  31. package/lib-commonjs/generators/ReturnTypes.d.ts +10 -0
  32. package/lib-commonjs/generators/ReturnTypes.js +29 -0
  33. package/lib-commonjs/generators/ReturnTypes.js.map +1 -0
  34. package/lib-commonjs/generators/ValidateConstants.d.ts +8 -0
  35. package/lib-commonjs/generators/ValidateConstants.js +38 -0
  36. package/lib-commonjs/generators/ValidateConstants.js.map +1 -0
  37. package/lib-commonjs/generators/ValidateMethods.d.ts +14 -0
  38. package/lib-commonjs/generators/ValidateMethods.js +112 -0
  39. package/lib-commonjs/generators/ValidateMethods.js.map +1 -0
  40. package/lib-commonjs/index.d.ts +39 -0
  41. package/lib-commonjs/index.js +227 -0
  42. package/lib-commonjs/index.js.map +1 -0
  43. package/package.json +39 -21
  44. package/src/Cli.ts +69 -232
  45. package/src/generators/AliasGen.ts +195 -0
  46. package/src/generators/AliasManaging.ts +75 -0
  47. package/src/generators/GenerateComponentWindows.ts +616 -0
  48. package/src/generators/GenerateNM2.ts +128 -131
  49. package/src/generators/GenerateTypeScript.ts +250 -0
  50. package/src/generators/ObjectTypes.ts +95 -37
  51. package/src/generators/ParamTypes.ts +309 -53
  52. package/src/generators/PropObjectTypes.ts +223 -0
  53. package/src/generators/ReturnTypes.ts +38 -40
  54. package/src/generators/ValidateConstants.ts +50 -0
  55. package/src/generators/ValidateMethods.ts +270 -0
  56. package/src/index.ts +412 -0
  57. package/.eslintrc.js +0 -4
  58. package/.vscode/launch.json +0 -23
  59. package/CHANGELOG.json +0 -726
  60. package/jest.config.js +0 -1
  61. package/tsconfig.json +0 -5
package/CHANGELOG.md CHANGED
@@ -1,18 +1,1137 @@
1
- # Change Log - @react-native-windows/codegen
2
-
3
- This log was last generated on Thu, 09 Sep 2021 05:07:03 GMT and should not be manually modified.
4
-
5
- <!-- Start content -->
6
-
7
- ## 0.0.0-canary.13
8
-
9
- Thu, 09 Sep 2021 05:07:03 GMT
10
-
11
- ### Changes
12
-
13
- - Bump to 0.66-based react-native-tscodegen (ngerlem@microsoft.com)
14
- - Generate nullable type for turbo module (53799235+ZihanChen-MSFT@users.noreply.github.com)
15
-
1
+ # Change Log - @react-native-windows/codegen
2
+
3
+ <!-- This log was last generated on Sat, 07 Mar 2026 04:06:59 GMT and should not be manually modified. -->
4
+
5
+ <!-- Start content -->
6
+
7
+ ## 0.0.0-canary.131
8
+
9
+ Sat, 07 Mar 2026 04:06:59 GMT
10
+
11
+ ### Changes
12
+
13
+ - refactor: replace depcheck with knip (PHILLIPS71@users.noreply.github.com)
14
+ - Integrate 0.83.0-nightly-20251104-502efe1cc (66076509+vineethkuttan@users.noreply.github.com)
15
+ - Stop writing codegen files if it just changes new lines (30809111+acoates-ms@users.noreply.github.com)
16
+
17
+ ## 0.0.0-canary.130
18
+
19
+ Wed, 04 Mar 2026 22:34:21 GMT
20
+
21
+ ### Changes
22
+
23
+ - Generate fields to notify native if a JS event is being listened to (30809111+acoates-ms@users.noreply.github.com)
24
+ - Fix issues with more complex props and event types (30809111+acoates-ms@users.noreply.github.com)
25
+ - Fix lifetime issue with codegen'd eventemitter args (30809111+acoates-ms@users.noreply.github.com)
26
+
27
+ ## 0.0.0-canary.129
28
+
29
+ Sat, 10 Jan 2026 06:40:18 GMT
30
+
31
+ ### Changes
32
+
33
+ - Add ability to customize native accessibility of custom native components (30809111+acoates-ms@users.noreply.github.com)
34
+
35
+ ## 0.0.0-canary.128
36
+
37
+ Mon, 17 Nov 2025 06:42:06 GMT
38
+
39
+ ### Changes
40
+
41
+ - Bump @react-native-windows/fs to v0.0.0-canary.70
42
+ - Bump @rnw-scripts/just-task to v2.3.58
43
+
44
+ ## 0.0.0-canary.127
45
+
46
+ Wed, 12 Nov 2025 21:00:41 GMT
47
+
48
+ ### Changes
49
+
50
+ - Fix CI linter issues caused by unbroken errors (vmorozov@microsoft.com)
51
+ - Integrate 0.82.0-nightly-20250806-5936f29d6 (66076509+vineethkuttan@users.noreply.github.com)
52
+ - Bump @react-native-windows/fs to v0.0.0-canary.69
53
+ - Bump @rnw-scripts/eslint-config to v1.2.38
54
+ - Bump @rnw-scripts/just-task to v2.3.57
55
+
56
+ ## 0.0.0-canary.126
57
+
58
+ Tue, 07 Oct 2025 05:27:28 GMT
59
+
60
+ ### Changes
61
+
62
+ - Bump @react-native-windows/fs to v0.0.0-canary.68
63
+ - Bump @rnw-scripts/just-task to v2.3.56
64
+
65
+ ## 0.0.0-canary.125
66
+
67
+ Sat, 23 Aug 2025 05:30:40 GMT
68
+
69
+ ### Changes
70
+
71
+ - Upgrade to node22 (10109130+sharath2727@users.noreply.github.com)
72
+ - Bump @react-native-windows/fs to v0.0.0-canary.67
73
+ - Bump @rnw-scripts/eslint-config to v1.2.37
74
+ - Bump @rnw-scripts/jest-unittest-config to v1.5.12
75
+ - Bump @rnw-scripts/just-task to v2.3.55
76
+ - Bump @rnw-scripts/ts-config to v2.0.6
77
+
78
+ ## 0.0.0-canary.124
79
+
80
+ Thu, 17 Jul 2025 05:27:01 GMT
81
+
82
+ ### Changes
83
+
84
+ - Bump @react-native-windows/fs to v0.0.0-canary.66
85
+ - Bump @rnw-scripts/just-task to v2.3.54
86
+
87
+ ## 0.0.0-canary.123
88
+
89
+ Fri, 30 May 2025 05:25:00 GMT
90
+
91
+ ### Changes
92
+
93
+ - integration nightly 0.79.0-nightly-20250303-cee63397b , overrides solved (tatianakapos@microsoft.com)
94
+ - Bump @react-native-windows/fs to v0.0.0-canary.65
95
+ - Bump @rnw-scripts/eslint-config to v1.2.36
96
+ - Bump @rnw-scripts/just-task to v2.3.53
97
+
98
+ ## 0.0.0-canary.122
99
+
100
+ Tue, 13 May 2025 21:05:07 GMT
101
+
102
+ ### Changes
103
+
104
+ - Bump @react-native-windows/fs to v0.0.0-canary.64
105
+ - Bump @rnw-scripts/eslint-config to v1.2.35
106
+ - Bump @rnw-scripts/just-task to v2.3.52
107
+
108
+ ## 0.0.0-canary.121
109
+
110
+ Thu, 08 May 2025 05:23:33 GMT
111
+
112
+ ### Changes
113
+
114
+ - Bump @react-native-windows/fs to v0.0.0-canary.63
115
+ - Bump @rnw-scripts/eslint-config to v1.2.34
116
+ - Bump @rnw-scripts/just-task to v2.3.51
117
+
118
+ ## 0.0.0-canary.120
119
+
120
+ Wed, 02 Apr 2025 05:22:08 GMT
121
+
122
+ ### Changes
123
+
124
+ - Bump @react-native-windows/fs to v0.0.0-canary.62
125
+ - Bump @rnw-scripts/eslint-config to v1.2.33
126
+ - Bump @rnw-scripts/just-task to v2.3.50
127
+
128
+ ## 0.0.0-canary.119
129
+
130
+ Fri, 07 Mar 2025 06:27:16 GMT
131
+
132
+ ### Changes
133
+
134
+ - Fix build issue building component codegen using clang (30809111+acoates-ms@users.noreply.github.com)
135
+
136
+ ## 0.0.0-canary.118
137
+
138
+ Fri, 31 Jan 2025 18:29:44 GMT
139
+
140
+ ### Changes
141
+
142
+ - Fix UpdateState on generated base class (30809111+acoates-ms@users.noreply.github.com)
143
+
144
+ ## 0.0.0-canary.117
145
+
146
+ Thu, 23 Jan 2025 06:24:57 GMT
147
+
148
+ ### Changes
149
+
150
+ - Initial integrate (yajurgrover24@gmail.com)
151
+
152
+ ## 0.0.0-canary.116
153
+
154
+ Sat, 11 Jan 2025 06:30:40 GMT
155
+
156
+ ### Changes
157
+
158
+ - Bump @react-native-windows/fs to v0.0.0-canary.61
159
+ - Bump @rnw-scripts/eslint-config to v1.2.32
160
+ - Bump @rnw-scripts/just-task to v2.3.49
161
+
162
+ ## 0.0.0-canary.115
163
+
164
+ Fri, 10 Jan 2025 06:23:19 GMT
165
+
166
+ ### Changes
167
+
168
+ - Bump @react-native-windows/fs to v0.0.0-canary.60
169
+ - Bump @rnw-scripts/eslint-config to v1.2.31
170
+ - Bump @rnw-scripts/just-task to v2.3.48
171
+
172
+ ## 0.0.0-canary.114
173
+
174
+ Tue, 10 Dec 2024 06:29:30 GMT
175
+
176
+ ### Changes
177
+
178
+ - Add linter exception to generated headers for Office builds (email not defined)
179
+ - Add ability to override UpdateLayoutMetrics and VisualToMountChildrenInto (30809111+acoates-ms@users.noreply.github.com)
180
+
181
+ ## 0.0.0-canary.113
182
+
183
+ Sat, 23 Nov 2024 06:23:15 GMT
184
+
185
+ ### Changes
186
+
187
+ - Integrate 10/20 (yajurgrover24@gmail.com)
188
+
189
+ ## 0.0.0-canary.112
190
+
191
+ Fri, 15 Nov 2024 06:22:29 GMT
192
+
193
+ ### Changes
194
+
195
+ - test integrate 10/15 (yajurgrover24@gmail.com)
196
+
197
+ ## 0.0.0-canary.111
198
+
199
+ Fri, 08 Nov 2024 06:20:37 GMT
200
+
201
+ ### Changes
202
+
203
+ - Add RnwNewArch property and RNW_NEW_ARCH constants when building projects for the new architecture (jthysell@microsoft.com)
204
+
205
+ ## 0.0.0-canary.110
206
+
207
+ Sun, 03 Nov 2024 05:28:15 GMT
208
+
209
+ ### Changes
210
+
211
+ - Fix issue with prop cloning with custom native props (53619745+rnbot@users.noreply.github.com)
212
+
213
+ ## 0.0.0-canary.109
214
+
215
+ Sat, 02 Nov 2024 05:28:15 GMT
216
+
217
+ ### Changes
218
+
219
+ - Implement accessibilityState checked (34109996+chiaramooney@users.noreply.github.com)
220
+
221
+ ## 0.0.0-canary.108
222
+
223
+ Sat, 19 Oct 2024 05:29:46 GMT
224
+
225
+ ### Changes
226
+
227
+ - Fix repo linting with prettier (jthysell@microsoft.com)
228
+ - Bump @react-native-windows/fs to v0.0.0-canary.59
229
+ - Bump @rnw-scripts/eslint-config to v1.2.30
230
+ - Bump @rnw-scripts/just-task to v2.3.47
231
+
232
+ ## 0.0.0-canary.107
233
+
234
+ Wed, 16 Oct 2024 05:20:54 GMT
235
+
236
+ ### Changes
237
+
238
+ - 0.77.0-nightly-20241001-223e98cc4 (tatianakapos@microsoft.com)
239
+
240
+ ## 0.0.0-canary.106
241
+
242
+ Mon, 07 Oct 2024 19:54:26 GMT
243
+
244
+ ### Changes
245
+
246
+ - integrate RN nightly 0.77.0-nightly-20240921-1747f57c6 (tatianakapos@microsoft.com)
247
+ - Bump @react-native-windows/fs to v0.0.0-canary.58
248
+ - Bump @rnw-scripts/eslint-config to v1.2.29
249
+ - Bump @rnw-scripts/jest-unittest-config to v1.5.11
250
+ - Bump @rnw-scripts/just-task to v2.3.46
251
+
252
+ ## 0.0.0-canary.104
253
+
254
+ Thu, 26 Sep 2024 17:38:27 GMT
255
+
256
+ ### Changes
257
+
258
+ - Bump @react-native-windows/fs to v0.0.0-canary.56
259
+ - Bump @rnw-scripts/eslint-config to v1.2.27
260
+ - Bump @rnw-scripts/jest-unittest-config to v1.5.9
261
+ - Bump @rnw-scripts/just-task to v2.3.44
262
+
263
+ ## 0.0.0-canary.103
264
+
265
+ Mon, 16 Sep 2024 21:21:15 GMT
266
+
267
+ ### Changes
268
+
269
+ - [Fabric] Add FocusNavigationDirection and allow overriding of default command handling (30809111+acoates-ms@users.noreply.github.com)
270
+
271
+ ## 0.0.0-canary.102
272
+
273
+ Sat, 07 Sep 2024 05:14:11 GMT
274
+
275
+ ### Changes
276
+
277
+ - Integrate 8/31 (34109996+chiaramooney@users.noreply.github.com)
278
+
279
+ ## 0.0.0-canary.101
280
+
281
+ Fri, 06 Sep 2024 05:14:01 GMT
282
+
283
+ ### Changes
284
+
285
+ - [Fabric] Add native component codegen (30809111+acoates-ms@users.noreply.github.com)
286
+
287
+ ## 0.0.0-canary.100
288
+
289
+ Wed, 14 Aug 2024 05:14:30 GMT
290
+
291
+ ### Changes
292
+
293
+ - Add support for turbomodule eventemitters, and codegen (30809111+acoates-ms@users.noreply.github.com)
294
+
295
+ ## 0.0.0-canary.99
296
+
297
+ Thu, 08 Aug 2024 05:16:48 GMT
298
+
299
+ ### Changes
300
+
301
+ - Integrate 7/1 (jthysell@microsoft.com)
302
+ - Bump @react-native-windows/fs to v0.0.0-canary.55
303
+ - Bump @rnw-scripts/eslint-config to v1.2.26
304
+ - Bump @rnw-scripts/just-task to v2.3.43
305
+
306
+ ## 0.0.0-canary.98
307
+
308
+ Wed, 24 Jul 2024 05:24:36 GMT
309
+
310
+ ### Changes
311
+
312
+ - integrate 0.75.0-nightly-20240618-5df5ed1a8 (tatianakapos@microsoft.com)
313
+ - Bump @react-native-windows/fs to v0.0.0-canary.54
314
+ - Bump @rnw-scripts/eslint-config to v1.2.25
315
+ - Bump @rnw-scripts/just-task to v2.3.42
316
+
317
+ ## 0.0.0-canary.97
318
+
319
+ Wed, 10 Jul 2024 05:15:30 GMT
320
+
321
+ ### Changes
322
+
323
+ - Bump @react-native-windows/fs to v0.0.0-canary.53
324
+ - Bump @rnw-scripts/eslint-config to v1.2.24
325
+ - Bump @rnw-scripts/just-task to v2.3.41
326
+
327
+ ## 0.0.0-canary.96
328
+
329
+ Fri, 21 Jun 2024 05:17:50 GMT
330
+
331
+ ### Changes
332
+
333
+ - SFI: Component Governance fixes 6/19/24 (jthysell@microsoft.com)
334
+
335
+ ## 0.0.0-canary.95
336
+
337
+ Wed, 12 Jun 2024 05:16:24 GMT
338
+
339
+ ### Changes
340
+
341
+ - Bump @react-native-windows/fs to v0.0.0-canary.52
342
+ - Bump @rnw-scripts/eslint-config to v1.2.23
343
+ - Bump @rnw-scripts/just-task to v2.3.40
344
+
345
+ ## 0.0.0-canary.94
346
+
347
+ Sat, 08 Jun 2024 05:17:57 GMT
348
+
349
+ ### Changes
350
+
351
+ - Bump @react-native-windows/fs to v0.0.0-canary.51
352
+ - Bump @rnw-scripts/eslint-config to v1.2.22
353
+ - Bump @rnw-scripts/just-task to v2.3.39
354
+
355
+ ## 0.0.0-canary.93
356
+
357
+ Wed, 05 Jun 2024 05:18:11 GMT
358
+
359
+ ### Changes
360
+
361
+ - Bump @react-native-windows/fs to v0.0.0-canary.50
362
+ - Bump @rnw-scripts/just-task to v2.3.38
363
+
364
+ ## 0.0.0-canary.92
365
+
366
+ Tue, 04 Jun 2024 05:18:35 GMT
367
+
368
+ ### Changes
369
+
370
+ - Bump @react-native-windows/fs to v0.0.0-canary.49
371
+ - Bump @rnw-scripts/eslint-config to v1.2.21
372
+ - Bump @rnw-scripts/just-task to v2.3.37
373
+
374
+ ## 0.0.0-canary.91
375
+
376
+ Sat, 01 Jun 2024 05:21:31 GMT
377
+
378
+ ### Changes
379
+
380
+ - Bump @react-native-windows/fs to v0.0.0-canary.48
381
+ - Bump @rnw-scripts/eslint-config to v1.2.20
382
+ - Bump @rnw-scripts/just-task to v2.3.36
383
+
384
+ ## 0.0.0-canary.90
385
+
386
+ Thu, 30 May 2024 05:18:25 GMT
387
+
388
+ ### Changes
389
+
390
+ - RN Integration 05/11 (1422161+marlenecota@users.noreply.github.com)
391
+ - Bump @react-native-windows/fs to v0.0.0-canary.47
392
+ - Bump @rnw-scripts/eslint-config to v1.2.19
393
+ - Bump @rnw-scripts/just-task to v2.3.35
394
+
395
+ ## 0.0.0-canary.89
396
+
397
+ Thu, 23 May 2024 05:17:50 GMT
398
+
399
+ ### Changes
400
+
401
+ - Bump @react-native-windows/fs to v0.0.0-canary.46
402
+ - Bump @rnw-scripts/eslint-config to v1.2.18
403
+ - Bump @rnw-scripts/just-task to v2.3.34
404
+
405
+ ## 0.0.0-canary.88
406
+
407
+ Wed, 22 May 2024 05:18:18 GMT
408
+
409
+ ### Changes
410
+
411
+ - Bump @react-native-windows/fs to v0.0.0-canary.45
412
+ - Bump @rnw-scripts/eslint-config to v1.2.17
413
+ - Bump @rnw-scripts/just-task to v2.3.33
414
+
415
+ ## 0.0.0-canary.87
416
+
417
+ Wed, 15 May 2024 05:14:54 GMT
418
+
419
+ ### Changes
420
+
421
+ - Bump @react-native-windows/fs to v0.0.0-canary.44
422
+ - Bump @rnw-scripts/eslint-config to v1.2.16
423
+ - Bump @rnw-scripts/just-task to v2.3.32
424
+
425
+ ## 0.0.0-canary.86
426
+
427
+ Sat, 11 May 2024 05:18:30 GMT
428
+
429
+ ### Changes
430
+
431
+ - Bump @react-native-windows/fs to v0.0.0-canary.43
432
+ - Bump @rnw-scripts/eslint-config to v1.2.15
433
+ - Bump @rnw-scripts/just-task to v2.3.31
434
+
435
+ ## 0.0.0-canary.85
436
+
437
+ Thu, 09 May 2024 05:18:44 GMT
438
+
439
+ ### Changes
440
+
441
+ - Bump @react-native-windows/fs to v0.0.0-canary.42
442
+ - Bump @rnw-scripts/eslint-config to v1.2.14
443
+ - Bump @rnw-scripts/just-task to v2.3.30
444
+
445
+ ## 0.0.0-canary.84
446
+
447
+ Thu, 25 Apr 2024 20:12:42 GMT
448
+
449
+ ### Changes
450
+
451
+ - Fix bad version bump (30809111+acoates-ms@users.noreply.github.com)
452
+ - Bump @react-native-windows/fs to v0.0.0-canary.41
453
+ - Bump @rnw-scripts/eslint-config to v1.2.13
454
+ - Bump @rnw-scripts/just-task to v2.3.29
455
+
456
+ ## 0.0.0-canary.83
457
+
458
+ Wed, 10 Apr 2024 05:18:19 GMT
459
+
460
+ ### Changes
461
+
462
+ - Bump @react-native-windows/fs to v0.0.0-canary.40
463
+ - Bump @rnw-scripts/eslint-config to v1.2.11
464
+ - Bump @rnw-scripts/just-task to v2.3.27
465
+
466
+ ## 0.0.0-canary.82
467
+
468
+ Sat, 30 Mar 2024 05:18:04 GMT
469
+
470
+ ### Changes
471
+
472
+ - Bump @react-native-windows/fs to v0.0.0-canary.39
473
+ - Bump @rnw-scripts/eslint-config to v1.2.10
474
+ - Bump @rnw-scripts/just-task to v2.3.26
475
+
476
+ ## 0.0.0-canary.81
477
+
478
+ Sat, 23 Mar 2024 05:17:01 GMT
479
+
480
+ ### Changes
481
+
482
+ - Bump @react-native-windows/fs to v0.0.0-canary.38
483
+ - Bump @rnw-scripts/eslint-config to v1.2.9
484
+ - Bump @rnw-scripts/just-task to v2.3.25
485
+
486
+ ## 0.0.0-canary.80
487
+
488
+ Thu, 07 Mar 2024 06:16:47 GMT
489
+
490
+ ### Changes
491
+
492
+ - Integrate 1/26 (34109996+chiaramooney@users.noreply.github.com)
493
+ - Bump @react-native-windows/fs to v0.0.0-canary.37
494
+ - Bump @rnw-scripts/eslint-config to v1.2.8
495
+ - Bump @rnw-scripts/just-task to v2.3.24
496
+
497
+ ## 0.0.0-canary.79
498
+
499
+ Fri, 01 Mar 2024 06:18:16 GMT
500
+
501
+ ### Changes
502
+
503
+ - Bump @react-native-windows/fs to v0.0.0-canary.36
504
+ - Bump @rnw-scripts/eslint-config to v1.2.7
505
+ - Bump @rnw-scripts/just-task to v2.3.23
506
+
507
+ ## 0.0.0-canary.78
508
+
509
+ Tue, 27 Feb 2024 06:17:59 GMT
510
+
511
+ ### Changes
512
+
513
+ - Update rn-integrate script to more aggressively update align dependencies (30809111+acoates-ms@users.noreply.github.com)
514
+ - Bump @react-native-windows/fs to v0.0.0-canary.35
515
+ - Bump @rnw-scripts/eslint-config to v1.2.6
516
+ - Bump @rnw-scripts/jest-unittest-config to v1.5.8
517
+ - Bump @rnw-scripts/just-task to v2.3.22
518
+
519
+ ## 0.0.0-canary.77
520
+
521
+ Sat, 24 Feb 2024 06:17:16 GMT
522
+
523
+ ### Changes
524
+
525
+ - Migrate src directory to src-win (34109996+chiaramooney@users.noreply.github.com)
526
+ - Bump @react-native-windows/fs to v0.0.0-canary.34
527
+ - Bump @rnw-scripts/just-task to v2.3.21
528
+
529
+ ## 0.0.0-canary.76
530
+
531
+ Thu, 15 Feb 2024 06:18:15 GMT
532
+
533
+ ### Changes
534
+
535
+ - Bump @react-native-windows/fs to v0.0.0-canary.33
536
+ - Bump @rnw-scripts/just-task to v2.3.20
537
+
538
+ ## 0.0.0-canary.75
539
+
540
+ Wed, 14 Feb 2024 06:16:55 GMT
541
+
542
+ ### Changes
543
+
544
+ - Bump @react-native-windows/fs to v0.0.0-canary.32
545
+ - Bump @rnw-scripts/eslint-config to v1.2.5
546
+ - Bump @rnw-scripts/jest-unittest-config to v1.5.7
547
+ - Bump @rnw-scripts/just-task to v2.3.19
548
+
549
+ ## 0.0.0-canary.74
550
+
551
+ Fri, 09 Feb 2024 21:11:18 GMT
552
+
553
+ ### Changes
554
+
555
+ - Bump @react-native-windows/fs to v0.0.0-canary.31
556
+
557
+ ## 0.0.0-canary.73
558
+
559
+ Thu, 08 Feb 2024 06:13:52 GMT
560
+
561
+ ### Changes
562
+
563
+ - Integration up to 01/02/24 (email not defined)
564
+
565
+ ## 0.0.0-canary.72
566
+
567
+ Sat, 21 Oct 2023 05:16:09 GMT
568
+
569
+ ### Changes
570
+
571
+ - Bump @react-native-windows/fs to v0.0.0-canary.30
572
+ - Bump @rnw-scripts/eslint-config to v1.2.4
573
+ - Bump @rnw-scripts/just-task to v2.3.18
574
+
575
+ ## 0.0.0-canary.71
576
+
577
+ Thu, 12 Oct 2023 05:15:54 GMT
578
+
579
+ ### Changes
580
+
581
+ - Bump @react-native-windows/fs to v0.0.0-canary.29
582
+ - Bump @rnw-scripts/eslint-config to v1.2.3
583
+ - Bump @rnw-scripts/just-task to v2.3.17
584
+
585
+ ## 0.0.0-canary.70
586
+
587
+ Fri, 22 Sep 2023 05:13:32 GMT
588
+
589
+ ### Changes
590
+
591
+ - Fix some incorrectly cased requires (ngerlem@fb.com)
592
+
593
+ ## 0.0.0-canary.69
594
+
595
+ Wed, 20 Sep 2023 05:17:49 GMT
596
+
597
+ ### Changes
598
+
599
+ - Bump @react-native-windows/fs to v0.0.0-canary.28
600
+ - Bump @rnw-scripts/just-task to v2.3.16
601
+
602
+ ## 0.0.0-canary.68
603
+
604
+ Tue, 15 Aug 2023 05:14:09 GMT
605
+
606
+ ### Changes
607
+
608
+ - Add `separateDataFiles` to @rnw/cli and @rnw/codegen (53799235+ZihanChen-MSFT@users.noreply.github.com)
609
+
610
+ ## 0.0.0-canary.67
611
+
612
+ Tue, 08 Aug 2023 05:13:00 GMT
613
+
614
+ ### Changes
615
+
616
+ - @rnw/codegen generates GetStructInfo instead of REACT_STRUCT (53799235+ZihanChen-MSFT@users.noreply.github.com)
617
+
618
+ ## 0.0.0-canary.66
619
+
620
+ Fri, 28 Jul 2023 05:14:53 GMT
621
+
622
+ ### Changes
623
+
624
+ - Bump @react-native-windows/fs to v0.0.0-canary.27
625
+ - Bump @rnw-scripts/just-task to v2.3.15
626
+
627
+ ## 0.0.0-canary.65
628
+
629
+ Wed, 26 Jul 2023 05:15:47 GMT
630
+
631
+ ### Changes
632
+
633
+ - Bump @react-native-windows/fs to v0.0.0-canary.26
634
+ - Bump @rnw-scripts/just-task to v2.3.14
635
+
636
+ ## 0.0.0-canary.64
637
+
638
+ Fri, 14 Jul 2023 05:17:05 GMT
639
+
640
+ ### Changes
641
+
642
+ - integration 6/28 (tatianakapos@microsoft.com)
643
+ - Bump @react-native-windows/fs to v0.0.0-canary.25
644
+ - Bump @rnw-scripts/eslint-config to v1.2.2
645
+ - Bump @rnw-scripts/jest-unittest-config to v1.5.6
646
+ - Bump @rnw-scripts/just-task to v2.3.13
647
+ - Bump @rnw-scripts/ts-config to v2.0.5
648
+
649
+ ## 0.0.0-canary.63
650
+
651
+ Sat, 08 Jul 2023 05:13:21 GMT
652
+
653
+ ### Changes
654
+
655
+ - Add configConfig.windows.cppStringType in package.json for @rnw/codegen (53799235+ZihanChen-MSFT@users.noreply.github.com)
656
+ - Add cppStringType option to @rnw/codegen (53799235+ZihanChen-MSFT@users.noreply.github.com)
657
+
658
+ ## 0.0.0-canary.62
659
+
660
+ Sat, 01 Jul 2023 05:14:41 GMT
661
+
662
+ ### Changes
663
+
664
+ - integrate 6/16 (tatianakapos@microsoft.com)
665
+ - Bump @react-native-windows/fs to v0.0.0-canary.24
666
+ - Bump @rnw-scripts/eslint-config to v1.2.1
667
+ - Bump @rnw-scripts/just-task to v2.3.12
668
+
669
+ ## 0.0.0-canary.61
670
+
671
+ Tue, 13 Jun 2023 05:15:41 GMT
672
+
673
+ ### Changes
674
+
675
+ - Bump @react-native-windows/fs to v0.0.0-canary.23
676
+ - Bump @rnw-scripts/eslint-config to v1.2.0
677
+
678
+ ## 0.0.0-canary.60
679
+
680
+ Wed, 07 Jun 2023 05:16:11 GMT
681
+
682
+ ### Changes
683
+
684
+ - Bump @react-native-windows/fs to v0.0.0-canary.22
685
+ - Bump @rnw-scripts/jest-unittest-config to v1.5.5
686
+ - Bump @rnw-scripts/just-task to v2.3.11
687
+
688
+ ## 0.0.0-canary.59
689
+
690
+ Tue, 06 Jun 2023 19:06:44 GMT
691
+
692
+ ### Changes
693
+
694
+ - integrate RN nightly 5/19/23 (tatianakapos@microsoft.com)
695
+ - Bump @react-native-windows/fs to v0.0.0-canary.21
696
+ - Bump @rnw-scripts/jest-unittest-config to v1.5.4
697
+ - Bump @rnw-scripts/just-task to v2.3.10
698
+
699
+ ## 0.0.0-canary.58
700
+
701
+ Tue, 16 May 2023 05:16:30 GMT
702
+
703
+ ### Changes
704
+
705
+ - Bump @react-native-windows/fs to v0.0.0-canary.20
706
+ - Bump @rnw-scripts/jest-unittest-config to v1.5.3
707
+ - Bump @rnw-scripts/just-task to v2.3.9
708
+
709
+ ## 0.0.0-canary.57
710
+
711
+ Mon, 08 May 2023 17:41:04 GMT
712
+
713
+ ### Changes
714
+
715
+ - Fix typos and add `cspell` configuration (jthysell@microsoft.com)
716
+ - Bump @react-native-windows/fs to v0.0.0-canary.19
717
+ - Bump @rnw-scripts/just-task to v2.3.8
718
+
719
+ ## 0.0.0-canary.56
720
+
721
+ Tue, 25 Apr 2023 05:16:58 GMT
722
+
723
+ ### Changes
724
+
725
+ - Update Node to 16 (34109996+chiaramooney@users.noreply.github.com)
726
+ - Bump @react-native-windows/fs to v0.0.0-canary.18
727
+ - Bump @rnw-scripts/eslint-config to v1.1.16
728
+ - Bump @rnw-scripts/jest-unittest-config to v1.5.2
729
+ - Bump @rnw-scripts/just-task to v2.3.7
730
+ - Bump @rnw-scripts/ts-config to v2.0.4
731
+
732
+ ## 0.0.0-canary.55
733
+
734
+ Thu, 13 Apr 2023 05:14:28 GMT
735
+
736
+ ### Changes
737
+
738
+ - Fix RNW not being detected on case-sensitive file systems (4123478+tido64@users.noreply.github.com)
739
+
740
+ ## 0.0.0-canary.54
741
+
742
+ Tue, 21 Mar 2023 21:21:55 GMT
743
+
744
+ ### Changes
745
+
746
+ - Bump @react-native-windows/fs to v0.0.0-canary.17
747
+ - Bump @rnw-scripts/jest-unittest-config to v1.5.1
748
+ - Bump @rnw-scripts/just-task to v2.3.6
749
+
750
+ ## 0.0.0-canary.53
751
+
752
+ Thu, 02 Mar 2023 06:14:21 GMT
753
+
754
+ ### Changes
755
+
756
+ - Merge branch 'YajurG-8875' of https://github.com/YajurG/react-native-windows into YajurG-8875 (email not defined)
757
+ - Bump @react-native-windows/fs to v0.0.0-canary.16
758
+
759
+ ## 0.0.0-canary.52
760
+
761
+ Sat, 25 Feb 2023 06:13:35 GMT
762
+
763
+ ### Changes
764
+
765
+ - Move `@typescript-eslint/eslint-plugin` to `devDependencies` so they don't get installed by consumers (4123478+tido64@users.noreply.github.com)
766
+ - Bump @react-native-windows/fs to v0.0.0-canary.15
767
+
768
+ ## 0.0.0-canary.51
769
+
770
+ Wed, 22 Feb 2023 06:14:08 GMT
771
+
772
+ ### Changes
773
+
774
+ - Fix code to handle newer version of @react-native/codegen (30809111+acoates-ms@users.noreply.github.com)
775
+
776
+ ## 0.0.0-canary.50
777
+
778
+ Fri, 10 Feb 2023 06:15:30 GMT
779
+
780
+ ### Changes
781
+
782
+ - codegen-windows --check always fails (30809111+acoates-ms@users.noreply.github.com)
783
+
784
+ ## 0.0.0-canary.49
785
+
786
+ Thu, 09 Feb 2023 06:16:42 GMT
787
+
788
+ ### Changes
789
+
790
+ - Bump typescript version (30809111+acoates-ms@users.noreply.github.com)
791
+ - Bump @react-native-windows/fs to v0.0.0-canary.14
792
+
793
+ ## 0.0.0-canary.48
794
+
795
+ Wed, 11 Jan 2023 06:15:29 GMT
796
+
797
+ ### Changes
798
+
799
+ - integrate 12/2/22 (tatianakapos@microsoft.com)
800
+ - Bump @react-native-windows/fs to v0.0.0-canary.13
801
+ - Bump @rnw-scripts/jest-unittest-config to v1.5.0
802
+ - Bump @rnw-scripts/just-task to v2.3.5
803
+
804
+ ## 0.0.0-canary.47
805
+
806
+ Wed, 21 Dec 2022 06:15:26 GMT
807
+
808
+ ### Changes
809
+
810
+ - Support enum/union and T in Promise<T> in codegen (53799235+ZihanChen-MSFT@users.noreply.github.com)
811
+
812
+ ## 0.0.0-canary.46
813
+
814
+ Tue, 13 Dec 2022 06:15:22 GMT
815
+
816
+ ### Changes
817
+
818
+ - Standardize on the repository field in package.json (dannyvv@microsoft.com)
819
+ - Bump @react-native-windows/fs to v0.0.0-canary.12
820
+ - Bump @rnw-scripts/eslint-config to v1.1.15
821
+ - Bump @rnw-scripts/jest-unittest-config to v1.4.3
822
+ - Bump @rnw-scripts/just-task to v2.3.4
823
+ - Bump @rnw-scripts/ts-config to v2.0.3
824
+
825
+ ## 0.0.0-canary.45
826
+
827
+ Fri, 02 Dec 2022 06:19:03 GMT
828
+
829
+ ### Changes
830
+
831
+ - Integrate 10/10 (34109996+chiaramooney@users.noreply.github.com)
832
+ - Bump codegen version (30809111+acoates-ms@users.noreply.github.com)
833
+ - Bump @react-native-windows/fs to v0.0.0-canary.11
834
+ - Bump @rnw-scripts/jest-unittest-config to v1.4.2
835
+ - Bump @rnw-scripts/just-task to v2.3.3
836
+
837
+ ## 0.0.0-canary.44
838
+
839
+ Mon, 21 Nov 2022 06:15:36 GMT
840
+
841
+ ### Changes
842
+
843
+ - Enable ability to codegen JSI C++ TurboModule specs (30809111+acoates-ms@users.noreply.github.com)
844
+
845
+ ## 0.0.0-canary.43
846
+
847
+ Wed, 16 Nov 2022 06:16:01 GMT
848
+
849
+ ### Changes
850
+
851
+ - Bump @react-native-windows/fs to v0.0.0-canary.10
852
+ - Bump @rnw-scripts/just-task to v2.3.2
853
+
854
+ ## 0.0.0-canary.42
855
+
856
+ Sat, 12 Nov 2022 06:17:21 GMT
857
+
858
+ ### Changes
859
+
860
+ - Integrate 10/10 (34109996+chiaramooney@users.noreply.github.com)
861
+ - Bump @react-native-windows/fs to v0.0.0-canary.9
862
+ - Bump @rnw-scripts/jest-unittest-config to v1.4.1
863
+ - Bump @rnw-scripts/just-task to v2.3.1
864
+
865
+ ## 0.0.0-canary.41
866
+
867
+ Thu, 10 Nov 2022 06:17:10 GMT
868
+
869
+ ### Changes
870
+
871
+ - integration 9/26/22 (tatianakapos@microsoft.com)
872
+ - Bump @react-native-windows/fs to v0.0.0-canary.8
873
+ - Bump @rnw-scripts/jest-unittest-config to v1.4.0
874
+ - Bump @rnw-scripts/just-task to v2.3.0
875
+
876
+ ## 0.0.0-canary.40
877
+
878
+ Tue, 18 Oct 2022 05:12:09 GMT
879
+
880
+ ### Changes
881
+
882
+ - Use newer react-native-codegen generators (30809111+acoates-ms@users.noreply.github.com)
883
+
884
+ ## 0.0.0-canary.39
885
+
886
+ Sat, 15 Oct 2022 05:12:00 GMT
887
+
888
+ ### Changes
889
+
890
+ - Bump @react-native-windows/fs to v0.0.0-canary.7
891
+
892
+ ## 0.0.0-canary.38
893
+
894
+ Fri, 07 Oct 2022 05:11:46 GMT
895
+
896
+ ### Changes
897
+
898
+ - Remove extra paren in codegen output (30809111+acoates-ms@users.noreply.github.com)
899
+
900
+ ## 0.0.0-canary.37
901
+
902
+ Wed, 05 Oct 2022 05:13:46 GMT
903
+
904
+ ### Changes
905
+
906
+ - Use react-native-codegen from rn, instead of from react-native-tscodegen (30809111+acoates-ms@users.noreply.github.com)
907
+ - integrate 7/29/22 (tatianakapos@microsoft.com)
908
+ - Bump @react-native-windows/fs to v0.0.0-canary.6
909
+ - Bump @rnw-scripts/eslint-config to v1.1.14
910
+ - Bump @rnw-scripts/jest-unittest-config to v1.3.0
911
+ - Bump @rnw-scripts/just-task to v2.2.6
912
+
913
+ ## 0.0.0-canary.36
914
+
915
+ Tue, 27 Sep 2022 05:11:30 GMT
916
+
917
+ ### Changes
918
+
919
+ - Export functionality to allow cli to use it (30809111+acoates-ms@users.noreply.github.com)
920
+
921
+ ## 0.0.0-canary.35
922
+
923
+ Sat, 04 Jun 2022 05:10:05 GMT
924
+
925
+ ### Changes
926
+
927
+ - Bump @react-native-windows/fs to v0.0.0-canary.5
928
+ - Bump @rnw-scripts/jest-unittest-config to v1.2.8
929
+ - Bump @rnw-scripts/just-task to v2.2.5
930
+
931
+ ## 0.0.0-canary.34
932
+
933
+ Thu, 12 May 2022 05:09:43 GMT
934
+
935
+ ### Changes
936
+
937
+ - Build/dependency fixes (ngerlem@microsoft.com)
938
+ - Bump @react-native-windows/fs to v0.0.0-canary.4
939
+ - Bump @rnw-scripts/eslint-config to v1.1.13
940
+ - Bump @rnw-scripts/jest-unittest-config to v1.2.7
941
+ - Bump @rnw-scripts/just-task to v2.2.4
942
+
943
+ ## 0.0.0-canary.33
944
+
945
+ Wed, 11 May 2022 05:08:51 GMT
946
+
947
+ ### Changes
948
+
949
+ - Add --methodonly to RNW/codegen (53799235+ZihanChen-MSFT@users.noreply.github.com)
950
+
951
+ ## 0.0.0-canary.32
952
+
953
+ Wed, 27 Apr 2022 05:10:23 GMT
954
+
955
+ ### Changes
956
+
957
+ - Merge (34109996+chiaramooney@users.noreply.github.com)
958
+ - Bump @react-native-windows/fs to v0.0.0-canary.3
959
+ - Bump @rnw-scripts/eslint-config to v1.1.12
960
+
961
+ ## 0.0.0-canary.31
962
+
963
+ Mon, 25 Apr 2022 22:50:30 GMT
964
+
965
+ ### Changes
966
+
967
+ - Update globby of @react-native-windows/codegen to remove glob-parent 3.x dependency (dannyvv@microsoft.com)
968
+
969
+ ## 0.0.0-canary.30
970
+
971
+ Tue, 12 Apr 2022 05:10:38 GMT
972
+
973
+ ### Changes
974
+
975
+ - Fix Overrides (34109996+chiaramooney@users.noreply.github.com)
976
+ - Bump @react-native-windows/fs to v0.0.0-canary.2
977
+
978
+ ## 0.0.0-canary.29
979
+
980
+ Fri, 01 Apr 2022 05:09:56 GMT
981
+
982
+ ### Changes
983
+
984
+ - Fix publish after promotion to preview (ngerlem@microsoft.com)
985
+ - Bump @react-native-windows/fs to v0.0.0-canary.1
986
+
987
+ ## 0.0.0-canary.28
988
+
989
+ Wed, 09 Mar 2022 06:09:07 GMT
990
+
991
+ ### Changes
992
+
993
+ - Fix turbo module codegen to generate correct import statement and registration (53799235+ZihanChen-MSFT@users.noreply.github.com)
994
+
995
+ ## 0.0.0-canary.27
996
+
997
+ Fri, 04 Mar 2022 06:09:13 GMT
998
+
999
+ ### Changes
1000
+
1001
+ - Generate fabric eventemitter.cpp (acoates@microsoft.com)
1002
+
1003
+ ## 0.0.0-canary.26
1004
+
1005
+ Thu, 24 Feb 2022 06:07:47 GMT
1006
+
1007
+ ### Changes
1008
+
1009
+ - Add TypeScript turbo module definition as new codegen traget (53799235+ZihanChen-MSFT@users.noreply.github.com)
1010
+
1011
+ ## 0.0.0-canary.25
1012
+
1013
+ Wed, 09 Feb 2022 06:09:36 GMT
1014
+
1015
+ ### Changes
1016
+
1017
+ - Bump minimum Node version to 14 (jthysell@microsoft.com)
1018
+ - Bump @react-native-windows/fs to v1.0.2
1019
+ - Bump @rnw-scripts/eslint-config to v1.1.11
1020
+ - Bump @rnw-scripts/jest-unittest-config to v1.2.6
1021
+ - Bump @rnw-scripts/just-task to v2.2.3
1022
+ - Bump @rnw-scripts/ts-config to v2.0.2
1023
+
1024
+ ## 0.0.0-canary.24
1025
+
1026
+ Tue, 08 Feb 2022 18:21:23 GMT
1027
+
1028
+ ### Changes
1029
+
1030
+ - Fix TurboModule codegen document (53799235+ZihanChen-MSFT@users.noreply.github.com)
1031
+
1032
+ ## 0.0.0-canary.23
1033
+
1034
+ Sat, 29 Jan 2022 06:08:58 GMT
1035
+
1036
+ ### Changes
1037
+
1038
+ - Add document for turbo module codegen (53799235+ZihanChen-MSFT@users.noreply.github.com)
1039
+
1040
+ ## 0.0.0-canary.22
1041
+
1042
+ Fri, 03 Dec 2021 06:12:10 GMT
1043
+
1044
+ ### Changes
1045
+
1046
+ - Integrate 11/11 (34109996+chiaramooney@users.noreply.github.com)
1047
+ - Bump @react-native-windows/fs to v1.0.1
1048
+ - Bump @rnw-scripts/eslint-config to v1.1.10
1049
+ - Bump @rnw-scripts/jest-unittest-config to v1.2.5
1050
+ - Bump @rnw-scripts/just-task to v2.2.2
1051
+
1052
+ ## 0.0.0-canary.21
1053
+
1054
+ Thu, 18 Nov 2021 06:11:20 GMT
1055
+
1056
+ ### Changes
1057
+
1058
+ - Use '@react-native-windows/fs' (ngerlem@microsoft.com)
1059
+ - Bump @react-native-windows/fs to v1.0.0
1060
+ - Bump @rnw-scripts/eslint-config to v1.1.9
1061
+
1062
+ ## 0.0.0-canary.20
1063
+
1064
+ Thu, 04 Nov 2021 05:07:29 GMT
1065
+
1066
+ ### Changes
1067
+
1068
+ - Codegen prints `::React::JSValue` instead of `React::JSValue` (53799235+ZihanChen-MSFT@users.noreply.github.com)
1069
+
1070
+ ## 0.0.0-canary.20
1071
+
1072
+ Thu, 04 Nov 2021 05:07:08 GMT
1073
+
1074
+ ### Changes
1075
+
1076
+ - Codegen prints `::React::JSValue` instead of `React::JSValue` (53799235+ZihanChen-MSFT@users.noreply.github.com)
1077
+
1078
+ ## 0.0.0-canary.19
1079
+
1080
+ Sat, 23 Oct 2021 05:06:49 GMT
1081
+
1082
+ ### Changes
1083
+
1084
+ - Only generate component files if a component is specified (30809111+acoates-ms@users.noreply.github.com)
1085
+
1086
+ ## 0.0.0-canary.18
1087
+
1088
+ Fri, 22 Oct 2021 05:06:46 GMT
1089
+
1090
+ ### Changes
1091
+
1092
+ - Built files not included in published package (30809111+acoates-ms@users.noreply.github.com)
1093
+
1094
+ ## 0.0.0-canary.17
1095
+
1096
+ Thu, 21 Oct 2021 05:08:01 GMT
1097
+
1098
+ ### Changes
1099
+
1100
+ - Update to typescript 4 (30809111+acoates-ms@users.noreply.github.com)
1101
+
1102
+ ## 0.0.0-canary.16
1103
+
1104
+ Wed, 29 Sep 2021 05:06:54 GMT
1105
+
1106
+ ### Changes
1107
+
1108
+ - Check constants in generated turbo module specs (53799235+ZihanChen-MSFT@users.noreply.github.com)
1109
+
1110
+ ## 0.0.0-canary.15
1111
+
1112
+ Wed, 15 Sep 2021 05:07:04 GMT
1113
+
1114
+ ### Changes
1115
+
1116
+ - Generate anonymous objects in correct order for turbo module (53799235+ZihanChen-MSFT@users.noreply.github.com)
1117
+
1118
+ ## 0.0.0-canary.14
1119
+
1120
+ Fri, 10 Sep 2021 05:07:31 GMT
1121
+
1122
+ ### Changes
1123
+
1124
+ - Generate `std::vector<T>` for array types in turbo modules (53799235+ZihanChen-MSFT@users.noreply.github.com)
1125
+
1126
+ ## 0.0.0-canary.13
1127
+
1128
+ Thu, 09 Sep 2021 05:07:46 GMT
1129
+
1130
+ ### Changes
1131
+
1132
+ - Bump to 0.66-based react-native-tscodegen (ngerlem@microsoft.com)
1133
+ - Generate nullable type for turbo module (53799235+ZihanChen-MSFT@users.noreply.github.com)
1134
+
16
1135
  ## 0.0.0-canary.12
17
1136
 
18
1137
  Wed, 08 Sep 2021 05:08:53 GMT
@@ -277,4 +1396,4 @@ Thu, 23 Apr 2020 00:04:37 GMT
277
1396
 
278
1397
  ### Patches
279
1398
 
280
- - Initial react-native-windows-codegen (acoates@microsoft.com)
1399
+ - Initial react-native-windows-codegen (acoates@microsoft.com)