forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.json
3557 lines (3557 loc) · 102 KB
/
CHANGELOG.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "@microsoft/api-extractor",
"entries": [
{
"version": "7.5.1",
"tag": "@microsoft/api-extractor_v7.5.1",
"date": "Fri, 18 Oct 2019 15:15:01 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@microsoft/ts-command-line\" from `4.3.2` to `4.3.3`"
}
]
}
},
{
"version": "7.5.0",
"tag": "@microsoft/api-extractor_v7.5.0",
"date": "Sun, 06 Oct 2019 00:27:39 GMT",
"comments": {
"minor": [
{
"comment": "Allow separate release tags for overloaded functions and methods"
},
{
"comment": "Add new api-extractor.json config setting \"bundledPackages\""
}
]
}
},
{
"version": "7.4.7",
"tag": "@microsoft/api-extractor_v7.4.7",
"date": "Fri, 04 Oct 2019 00:15:22 GMT",
"comments": {
"patch": [
{
"comment": "Fix an issue where IExtractorConfigPrepareOptions.packageJson was ignored (GitHub #1559)"
}
]
}
},
{
"version": "7.4.6",
"tag": "@microsoft/api-extractor_v7.4.6",
"date": "Sun, 29 Sep 2019 23:56:29 GMT",
"comments": {
"patch": [
{
"comment": "Update repository URL"
}
],
"dependency": [
{
"comment": "Updating dependency \"@microsoft/api-extractor-model\" from `7.5.0` to `7.5.1`"
},
{
"comment": "Updating dependency \"@microsoft/node-core-library\" from `3.15.0` to `3.15.1`"
},
{
"comment": "Updating dependency \"@microsoft/ts-command-line\" from `4.3.1` to `4.3.2`"
}
]
}
},
{
"version": "7.4.5",
"tag": "@microsoft/api-extractor_v7.4.5",
"date": "Wed, 25 Sep 2019 15:15:31 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@microsoft/api-extractor-model\" from `7.4.2` to `7.5.0`"
}
]
}
},
{
"version": "7.4.4",
"tag": "@microsoft/api-extractor_v7.4.4",
"date": "Tue, 24 Sep 2019 02:58:49 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@microsoft/ts-command-line\" from `4.3.0` to `4.3.1`"
}
]
}
},
{
"version": "7.4.3",
"tag": "@microsoft/api-extractor_v7.4.3",
"date": "Mon, 23 Sep 2019 15:14:55 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@microsoft/api-extractor-model\" from `7.4.1` to `7.4.2`"
},
{
"comment": "Updating dependency \"@microsoft/node-core-library\" from `3.14.2` to `3.15.0`"
},
{
"comment": "Updating dependency \"@microsoft/ts-command-line\" from `4.2.8` to `4.3.0`"
}
]
}
},
{
"version": "7.4.2",
"tag": "@microsoft/api-extractor_v7.4.2",
"date": "Wed, 11 Sep 2019 19:56:23 GMT",
"comments": {
"patch": [
{
"comment": "Add support for an exported name that conflicts with a global name (GitHub #1350)"
}
]
}
},
{
"version": "7.4.1",
"tag": "@microsoft/api-extractor_v7.4.1",
"date": "Tue, 10 Sep 2019 22:32:23 GMT",
"comments": {
"patch": [
{
"comment": "Update documentation"
}
],
"dependency": [
{
"comment": "Updating dependency \"@microsoft/api-extractor-model\" from `7.4.0` to `7.4.1`"
},
{
"comment": "Updating dependency \"@microsoft/node-core-library\" from `3.14.1` to `3.14.2`"
},
{
"comment": "Updating dependency \"@microsoft/ts-command-line\" from `4.2.7` to `4.2.8`"
}
]
}
},
{
"version": "7.4.0",
"tag": "@microsoft/api-extractor_v7.4.0",
"date": "Tue, 10 Sep 2019 20:38:33 GMT",
"comments": {
"minor": [
{
"comment": "Add support for generating declaration references"
}
],
"dependency": [
{
"comment": "Updating dependency \"@microsoft/api-extractor-model\" from `7.3.4` to `7.4.0`"
}
]
}
},
{
"version": "7.3.11",
"tag": "@microsoft/api-extractor_v7.3.11",
"date": "Wed, 04 Sep 2019 18:28:06 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@microsoft/api-extractor-model\" from `7.3.3` to `7.3.4`"
},
{
"comment": "Updating dependency \"@microsoft/node-core-library\" from `3.14.0` to `3.14.1`"
}
]
}
},
{
"version": "7.3.10",
"tag": "@microsoft/api-extractor_v7.3.10",
"date": "Wed, 04 Sep 2019 15:15:37 GMT",
"comments": {
"patch": [
{
"comment": "Update TSDoc dependency to 0.12.14"
}
],
"dependency": [
{
"comment": "Updating dependency \"@microsoft/api-extractor-model\" from `7.3.2` to `7.3.3`"
}
]
}
},
{
"version": "7.3.9",
"tag": "@microsoft/api-extractor_v7.3.9",
"date": "Fri, 30 Aug 2019 00:14:32 GMT",
"comments": {
"patch": [
{
"comment": "Fix a problem where Unicode API names were not handled correctly"
}
]
}
},
{
"version": "7.3.8",
"tag": "@microsoft/api-extractor_v7.3.8",
"date": "Mon, 12 Aug 2019 15:15:14 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@microsoft/ts-command-line\" from `4.2.6` to `4.2.7`"
}
]
}
},
{
"version": "7.3.7",
"tag": "@microsoft/api-extractor_v7.3.7",
"date": "Thu, 08 Aug 2019 15:14:17 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@microsoft/api-extractor-model\" from `7.3.1` to `7.3.2`"
},
{
"comment": "Updating dependency \"@microsoft/node-core-library\" from `3.13.0` to `3.14.0`"
}
]
}
},
{
"version": "7.3.6",
"tag": "@microsoft/api-extractor_v7.3.6",
"date": "Thu, 08 Aug 2019 00:49:05 GMT",
"comments": {
"patch": [
{
"comment": "Fix an issue where a function with only one declaration was assigned an overloadIndex of 0 instead of 1"
}
],
"dependency": [
{
"comment": "Updating dependency \"@microsoft/api-extractor-model\" from `7.3.0` to `7.3.1`"
}
]
}
},
{
"version": "7.3.5",
"tag": "@microsoft/api-extractor_v7.3.5",
"date": "Mon, 05 Aug 2019 22:04:32 GMT",
"comments": {
"patch": [
{
"comment": "Security updates."
}
]
}
},
{
"version": "7.3.4",
"tag": "@microsoft/api-extractor_v7.3.4",
"date": "Tue, 23 Jul 2019 01:13:01 GMT",
"comments": {
"patch": [
{
"comment": "ApiItem.name is now quoted when it contains invalid identifier characters, to avoid conflicts with an ECMAScript symbol expression"
}
]
}
},
{
"version": "7.3.3",
"tag": "@microsoft/api-extractor_v7.3.3",
"date": "Mon, 22 Jul 2019 19:13:10 GMT",
"comments": {
"patch": [
{
"comment": "Update to use new api-extractor-model"
}
],
"dependency": [
{
"comment": "Updating dependency \"@microsoft/api-extractor-model\" from `7.2.0` to `7.3.0`"
}
]
}
},
{
"version": "7.3.2",
"tag": "@microsoft/api-extractor_v7.3.2",
"date": "Fri, 12 Jul 2019 19:12:46 GMT",
"comments": {
"patch": [
{
"comment": "Clarify docs for \"--typescript-compiler-folder\""
}
]
}
},
{
"version": "7.3.1",
"tag": "@microsoft/api-extractor_v7.3.1",
"date": "Thu, 11 Jul 2019 19:13:08 GMT",
"comments": {
"patch": [
{
"comment": "Add support for TypeScript 3.5"
}
]
}
},
{
"version": "7.3.0",
"tag": "@microsoft/api-extractor_v7.3.0",
"date": "Tue, 09 Jul 2019 19:13:24 GMT",
"comments": {
"minor": [
{
"comment": "Add a \"--diagnostics\" command-line option to help when troubleshooting problems"
}
]
}
},
{
"version": "7.2.3",
"tag": "@microsoft/api-extractor_v7.2.3",
"date": "Mon, 08 Jul 2019 19:12:18 GMT",
"comments": {
"patch": [
{
"comment": "Fix a problem when analyzing .d.ts files that appear in the same folder as the corresponding .ts file (GitHub #1310)"
}
]
}
},
{
"version": "7.2.2",
"tag": "@microsoft/api-extractor_v7.2.2",
"date": "Sat, 29 Jun 2019 02:30:10 GMT",
"comments": {
"patch": [
{
"comment": "Fix GitHub issue #1304 where \"IExtractorInvokeOptions.typescriptCompilerFolder\" did not work with TypeScript 3.4"
}
]
}
},
{
"version": "7.2.1",
"tag": "@microsoft/api-extractor_v7.2.1",
"date": "Wed, 12 Jun 2019 19:12:33 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@microsoft/ts-command-line\" from `4.2.5` to `4.2.6`"
}
]
}
},
{
"version": "7.2.0",
"tag": "@microsoft/api-extractor_v7.2.0",
"date": "Tue, 11 Jun 2019 00:48:06 GMT",
"comments": {
"minor": [
{
"comment": "Generate ApiTypeParameter entries and type alias types"
}
],
"dependency": [
{
"comment": "Updating dependency \"@microsoft/api-extractor-model\" from `7.1.3` to `7.2.0`"
}
]
}
},
{
"version": "7.1.8",
"tag": "@microsoft/api-extractor_v7.1.8",
"date": "Wed, 05 Jun 2019 19:12:34 GMT",
"comments": {
"patch": [
{
"comment": "Fix an issue where TSDoc index selectors (ApiParameterListMixin.overloadIndex) started from 0, whereas TSDoc requires a nonzero number"
}
],
"dependency": [
{
"comment": "Updating dependency \"@microsoft/api-extractor-model\" from `7.1.2` to `7.1.3`"
}
]
}
},
{
"version": "7.1.7",
"tag": "@microsoft/api-extractor_v7.1.7",
"date": "Tue, 04 Jun 2019 05:51:53 GMT",
"comments": {
"patch": [
{
"comment": "Upgrade api-extractor-model to remove ApiConstructor.isStatic, since TypeScript constructors cannot be static"
},
{
"comment": "Improve handling of symbolic property and method names."
}
],
"dependency": [
{
"comment": "Updating dependency \"@microsoft/api-extractor-model\" from `7.1.1` to `7.1.2`"
}
]
}
},
{
"version": "7.1.6",
"tag": "@microsoft/api-extractor_v7.1.6",
"date": "Mon, 27 May 2019 04:13:44 GMT",
"comments": {
"patch": [
{
"comment": "Fix incorrect path resolution for the \"extends\" field when loading tsconfig.json"
}
],
"dependency": [
{
"comment": "Updating dependency \"@microsoft/api-extractor-model\" from `7.1.0` to `7.1.1`"
},
{
"comment": "Updating dependency \"@microsoft/ts-command-line\" from `4.2.4` to `4.2.5`"
}
]
}
},
{
"version": "7.1.5",
"tag": "@microsoft/api-extractor_v7.1.5",
"date": "Mon, 13 May 2019 02:08:35 GMT",
"comments": {
"patch": [
{
"comment": "Broaden support for default imports"
}
]
}
},
{
"version": "7.1.4",
"tag": "@microsoft/api-extractor_v7.1.4",
"date": "Mon, 06 May 2019 20:46:21 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@microsoft/ts-command-line\" from `4.2.3` to `4.2.4`"
}
]
}
},
{
"version": "7.1.3",
"tag": "@microsoft/api-extractor_v7.1.3",
"date": "Mon, 06 May 2019 19:34:54 GMT",
"comments": {
"patch": [
{
"comment": "Add a new setting \"omitTrimmingComments\" to prevent extra comments from being emitted in the .d.ts rollup"
}
]
}
},
{
"version": "7.1.2",
"tag": "@microsoft/api-extractor_v7.1.2",
"date": "Mon, 06 May 2019 19:11:16 GMT",
"comments": {
"patch": [
{
"comment": "Fix an issue where ExtractorResult.warningCount was not incremented for messages handled by IExtractorInvokeOptions.messageCallback (GitHub #1258)"
}
]
}
},
{
"version": "7.1.1",
"tag": "@microsoft/api-extractor_v7.1.1",
"date": "Tue, 30 Apr 2019 23:08:02 GMT",
"comments": {
"patch": [
{
"comment": "Fix an issue where API signatures were sometimes truncated in the .api.json file (GitHub #1249)"
}
]
}
},
{
"version": "7.1.0",
"tag": "@microsoft/api-extractor_v7.1.0",
"date": "Tue, 16 Apr 2019 11:01:37 GMT",
"comments": {
"minor": [
{
"comment": "Initial stable release of API Extractor 7"
}
],
"dependency": [
{
"comment": "Updating dependency \"@microsoft/api-extractor-model\" from `7.0.28` to `7.1.0`"
}
]
}
},
{
"version": "7.0.42",
"tag": "@microsoft/api-extractor_v7.0.42",
"date": "Fri, 12 Apr 2019 06:13:16 GMT",
"comments": {
"patch": [
{
"comment": "Fix a regression that prevented certain types of warnings from being reported"
}
]
}
},
{
"version": "7.0.41",
"tag": "@microsoft/api-extractor_v7.0.41",
"date": "Thu, 11 Apr 2019 07:14:01 GMT",
"comments": {
"patch": [
{
"comment": "THIS IS A RELEASE CANDIDATE FOR API-EXTRACTOR 7"
},
{
"comment": "(Breaking change) Rename \"mainEntryPointFile\" to \"mainEntryPointFilePath\" so all settings use a consistent naming convention"
},
{
"comment": "(Breaking change) Paths that appear in api-extractor.json are now resolved relative to the config file unless prefixed with the `<projectFolder>` token"
},
{
"comment": "Add a new api-extractor.json setting \"tsconfigFilePath\" for customizing the tsconfig.json path"
},
{
"comment": "Replace ExtractorConfig.packageJsonFullPath with ExtractorConfig.packageFolder"
},
{
"comment": "Upgrade API Extractor to use TypeScript 3.4 for analysis"
}
]
}
},
{
"version": "7.0.40",
"tag": "@microsoft/api-extractor_v7.0.40",
"date": "Tue, 09 Apr 2019 05:31:01 GMT",
"comments": {
"patch": [
{
"comment": "Improve the \"--local\" option to automatically create the API report file if it is missing"
}
]
}
},
{
"version": "7.0.39",
"tag": "@microsoft/api-extractor_v7.0.39",
"date": "Mon, 08 Apr 2019 19:12:52 GMT",
"comments": {
"patch": [
{
"comment": "Rename \"addToApiReviewFile\" setting to \"addToApiReportFile\""
}
]
}
},
{
"version": "7.0.38",
"tag": "@microsoft/api-extractor_v7.0.38",
"date": "Sat, 06 Apr 2019 02:05:51 GMT",
"comments": {
"patch": [
{
"comment": "(Breaking change) Removed the ILogger API and renamed ExtractorMessageLogLevel to ExtractorLogLevel"
},
{
"comment": "(Breaking change) Extractor console output is now modeled as ExtractorMessage objects and can be customized/filtered/handled by IExtractorInvokeOptions.messageCallback"
}
]
}
},
{
"version": "7.0.37",
"tag": "@microsoft/api-extractor_v7.0.37",
"date": "Fri, 05 Apr 2019 04:16:16 GMT",
"comments": {
"patch": [
{
"comment": "Introduce \"api-extractor init\" command-line that helps enable API Extractor for a new project"
},
{
"comment": "(Breaking change) Major redesign of the API used to invoke API Extractor"
},
{
"comment": "(Breaking change) Major redesign of the api-extractor.json config file format"
},
{
"comment": "Add a CompilerState API that allows an optimization where multiple invocations of Extractor can reuse the same TypeScript compiler analysis"
}
]
}
},
{
"version": "7.0.36",
"tag": "@microsoft/api-extractor_v7.0.36",
"date": "Wed, 03 Apr 2019 02:58:33 GMT",
"comments": {
"patch": [
{
"comment": "Fix an issue where .d.ts.map file were sometimes mapped to the wrong location"
}
]
}
},
{
"version": "7.0.35",
"tag": "@microsoft/api-extractor_v7.0.35",
"date": "Sat, 30 Mar 2019 22:27:16 GMT",
"comments": {
"patch": [
{
"comment": "Reintroduce the generated documentation notice for internal constructors"
},
{
"comment": "Add limited support for resolving @inheritDoc references to external packages by postprocessing them in api-documenter"
}
]
}
},
{
"version": "7.0.34",
"tag": "@microsoft/api-extractor_v7.0.34",
"date": "Thu, 28 Mar 2019 19:14:27 GMT",
"comments": {
"patch": [
{
"comment": "Validate `@link` tags and report a warning if the link cannot be resolved"
}
]
}
},
{
"version": "7.0.33",
"tag": "@microsoft/api-extractor_v7.0.33",
"date": "Tue, 26 Mar 2019 20:54:18 GMT",
"comments": {
"patch": [
{
"comment": "Reintroduce support for `@inheritDoc` tags"
}
]
}
},
{
"version": "7.0.32",
"tag": "@microsoft/api-extractor_v7.0.32",
"date": "Sat, 23 Mar 2019 03:48:31 GMT",
"comments": {
"patch": [
{
"comment": "If the TSDoc summary is missing for a class constructor, then automatically generate it"
},
{
"comment": "Reintroduce support for the `@preapproved` TSDoc tag"
}
]
}
},
{
"version": "7.0.31",
"tag": "@microsoft/api-extractor_v7.0.31",
"date": "Thu, 21 Mar 2019 04:59:11 GMT",
"comments": {
"patch": [
{
"comment": "Reintroduce \"ae-internal-missing-underscore\" warning for API items marked as `@internal` but whose name does not start with an underscore"
}
]
}
},
{
"version": "7.0.30",
"tag": "@microsoft/api-extractor_v7.0.30",
"date": "Thu, 21 Mar 2019 01:15:32 GMT",
"comments": {
"patch": [
{
"comment": "Improve the API review file generation to include imports and support multiple exports"
}
]
}
},
{
"version": "7.0.29",
"tag": "@microsoft/api-extractor_v7.0.29",
"date": "Wed, 20 Mar 2019 19:14:49 GMT",
"comments": {
"patch": [
{
"comment": "API Extractor can now analyze packages whose package.json file is missing the \"version\" field"
}
],
"dependency": [
{
"comment": "Updating dependency \"@microsoft/api-extractor-model\" from `7.0.27` to `7.0.28`"
},
{
"comment": "Updating dependency \"@microsoft/node-core-library\" from `3.12.1` to `3.13.0`"
}
]
}
},
{
"version": "7.0.28",
"tag": "@microsoft/api-extractor_v7.0.28",
"date": "Mon, 18 Mar 2019 04:28:43 GMT",
"comments": {
"patch": [
{
"comment": "Rename the \"ae-inconsistent-release-tags\" warning to \"ae-different-release-tags\""
},
{
"comment": "Introduce a new warning \"ae-incompatible-release-tags\" that checks for API signatures that reference types with incompatible release tags"
},
{
"comment": "Fix an issue where this error was sometimes reported incorrectly: \"The messages.extractorMessageReporting table contains an unrecognized identifier ___\""
}
],
"dependency": [
{
"comment": "Updating dependency \"@microsoft/api-extractor-model\" from `7.0.26` to `7.0.27`"
},
{
"comment": "Updating dependency \"@microsoft/node-core-library\" from `3.12.0` to `3.12.1`"
}
]
}
},
{
"version": "7.0.27",
"tag": "@microsoft/api-extractor_v7.0.27",
"date": "Fri, 15 Mar 2019 19:13:25 GMT",
"comments": {
"patch": [
{
"comment": "(Breaking change) The file extension for API review files has changed from \".api.ts\" to \"api.md\". For details see https://github.com/Microsoft/web-build-tools/issues/1123"
}
]
}
},
{
"version": "7.0.26",
"tag": "@microsoft/api-extractor_v7.0.26",
"date": "Wed, 13 Mar 2019 19:13:14 GMT",
"comments": {
"patch": [
{
"comment": "Refactor code to move the IndentedWriter API from api-extractor-model to api-documenter"
}
],
"dependency": [
{
"comment": "Updating dependency \"@microsoft/api-extractor-model\" from `7.0.25` to `7.0.26`"
}
]
}
},
{
"version": "7.0.25",
"tag": "@microsoft/api-extractor_v7.0.25",
"date": "Wed, 13 Mar 2019 01:14:05 GMT",
"comments": {
"patch": [
{
"comment": "Upgrade TSDoc"
}
],
"dependency": [
{
"comment": "Updating dependency \"@microsoft/api-extractor-model\" from `7.0.24` to `7.0.25`"
}
]
}
},
{
"version": "7.0.24",
"tag": "@microsoft/api-extractor_v7.0.24",
"date": "Mon, 11 Mar 2019 16:13:36 GMT",
"comments": {
"patch": [
{
"comment": "Fix an issue where spurious TSDoc warnings were issued because the TSDoc parser was configured improperly"
},
{
"comment": "Move the .api.json related APIs into a new NPM package @microsoft/api-extractor-model"
}
],
"dependency": [
{
"comment": "Updating dependency \"@microsoft/api-extractor-model\" from `7.0.23` to `7.0.24`"
}
]
}
},
{
"version": "7.0.23",
"tag": "@microsoft/api-extractor_v7.0.23",
"date": "Tue, 05 Mar 2019 17:13:11 GMT",
"comments": {
"patch": [
{
"comment": "Issue a warning when an exported type refers to another local type that is not exported (ae-forgotten-export)"
},
{
"comment": "The export analyzer now correctly handles symbols imported using \"import x = require('y');\" notation"
}
]
}
},
{
"version": "7.0.22",
"tag": "@microsoft/api-extractor_v7.0.22",
"date": "Mon, 04 Mar 2019 17:13:19 GMT",
"comments": {
"patch": [
{
"comment": "Every error/warning message reported by API Extractor now has an associated message identifier"
},
{
"comment": "Add a new section to api-extractor.json for configuring how errors get reported, with ability to suppress individual errors"
},
{
"comment": "Reintroduce the ability to report issues by writing warnings into the API review file"
},
{
"comment": "Fix an issue where members of type literals were incorrectly being flagged as \"(undocumented)\""
},
{
"comment": "Error messages now cite the original .ts source file, if a source map is present. (To enable this, specify `\"declarationMap\": true` in tsconfig.json.)"
}
]
}
},
{
"version": "7.0.21",
"tag": "@microsoft/api-extractor_v7.0.21",
"date": "Wed, 27 Feb 2019 22:13:58 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@microsoft/node-core-library\" from `3.11.1` to `3.12.0`"
}
]
}
},
{
"version": "7.0.20",
"tag": "@microsoft/api-extractor_v7.0.20",
"date": "Wed, 27 Feb 2019 17:13:17 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@microsoft/node-core-library\" from `3.11.0` to `3.11.1`"
}
]
}
},
{
"version": "7.0.19",
"tag": "@microsoft/api-extractor_v7.0.19",
"date": "Mon, 18 Feb 2019 17:13:23 GMT",
"comments": {
"minor": [
{
"comment": "New way to resolve & generate TSDoc metadata file"
}
],
"dependency": [
{
"comment": "Updating dependency \"@microsoft/node-core-library\" from `3.10.0` to `3.11.0`"
}
]
}
},
{
"version": "7.0.18",
"tag": "@microsoft/api-extractor_v7.0.18",
"date": "Tue, 12 Feb 2019 17:13:12 GMT",
"comments": {
"patch": [
{
"comment": "Add a workaround for the issue where .d.ts rollups sometimes define names that conflict with a global symbol (the full solution is tracked by GitHub #1095)"
}
]
}
},
{
"version": "7.0.17",
"tag": "@microsoft/api-extractor_v7.0.17",
"date": "Mon, 11 Feb 2019 10:32:37 GMT",
"comments": {
"patch": [
{
"comment": "Fix an issue where API Extractor neglected to analyze \"typeof\" expressions"
},
{
"comment": "Fix an issue where declarations inside a namespace were sometimes being incorrectly emitted as top-level exports of the .d.ts rollup"
}
]
}
},
{
"version": "7.0.16",
"tag": "@microsoft/api-extractor_v7.0.16",
"date": "Mon, 11 Feb 2019 08:55:57 GMT",
"comments": {
"patch": [
{
"comment": "Redesign the analyzer so that when an external symbol is reexported by the working package, the local object (AstImport) and external object (AstSymbol) are kept separate"
},
{
"comment": "Fix a number of bugs where external symbols were misinterpreted as being part of the local project"
},
{
"comment": "Eliminate a number of errors involving unusual language constructs, by avoiding analysis of external symbols unless it's really necessary"
},
{
"comment": "Simplify the AstSymbol.nominalAnalysis concept and associated code"
},
{
"comment": "Improve .d.ts rollup trimming to handle reexported symbols correctly"
}
]
}
},
{
"version": "7.0.15",
"tag": "@microsoft/api-extractor_v7.0.15",
"date": "Mon, 11 Feb 2019 03:31:55 GMT",
"comments": {
"patch": [
{
"comment": "The `--debug` parameter now automatically breaks in the debugger when InternalError is thrown"
}
],
"dependency": [
{
"comment": "Updating dependency \"@microsoft/node-core-library\" from `3.9.0` to `3.10.0`"
}
]
}
},
{
"version": "7.0.14",
"tag": "@microsoft/api-extractor_v7.0.14",
"date": "Thu, 31 Jan 2019 17:03:49 GMT",
"comments": {
"patch": [
{
"comment": "Upgrade to TSDoc 0.12.5, which allows `$` in `@param` names"
},
{
"comment": "Add \"testMode\" option in api-extractor.json to eliminate spurious diffs in test files when the version number gets bumped"
},
{
"comment": "Normalize newlines for excerpt strings in the .api.json file"
}
]
}
},
{
"version": "7.0.13",
"tag": "@microsoft/api-extractor_v7.0.13",
"date": "Sat, 19 Jan 2019 03:47:47 GMT",
"comments": {
"patch": [
{
"comment": "Move the skipLibCheck into the config file."
}
]
}
},
{
"version": "7.0.12",
"tag": "@microsoft/api-extractor_v7.0.12",
"date": "Sat, 19 Jan 2019 01:17:51 GMT",
"comments": {
"patch": [
{
"comment": "Fix an issue where files using \"export=\" were incorrectly interpreted as having ambient declarations"
}
]