forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.json
1780 lines (1780 loc) · 46.7 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": "@rushstack/node-core-library",
"entries": [
{
"version": "3.35.1",
"tag": "@rushstack/node-core-library_v3.35.1",
"date": "Wed, 11 Nov 2020 01:08:59 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" to `2.3.1`"
}
]
}
},
{
"version": "3.35.0",
"tag": "@rushstack/node-core-library_v3.35.0",
"date": "Tue, 10 Nov 2020 23:13:11 GMT",
"comments": {
"minor": [
{
"comment": "Add new \"copyFileToMany\" API to copy a single file to multiple locations"
},
{
"comment": "Add an alreadyExistsBehavior option to the options for creating links in FileSystem."
}
]
}
},
{
"version": "3.34.7",
"tag": "@rushstack/node-core-library_v3.34.7",
"date": "Fri, 30 Oct 2020 06:38:39 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" to `2.3.0`"
}
]
}
},
{
"version": "3.34.6",
"tag": "@rushstack/node-core-library_v3.34.6",
"date": "Fri, 30 Oct 2020 00:10:14 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" to `2.2.3`"
}
]
}
},
{
"version": "3.34.5",
"tag": "@rushstack/node-core-library_v3.34.5",
"date": "Wed, 28 Oct 2020 01:18:03 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" to `2.2.2`"
}
]
}
},
{
"version": "3.34.4",
"tag": "@rushstack/node-core-library_v3.34.4",
"date": "Tue, 27 Oct 2020 15:10:13 GMT",
"comments": {
"patch": [
{
"comment": "Fix an issue where the TextAttribute.Bold ANSI escape was not rendered correctly by Linux"
}
]
}
},
{
"version": "3.34.3",
"tag": "@rushstack/node-core-library_v3.34.3",
"date": "Tue, 06 Oct 2020 00:24:06 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" to `2.2.1`"
}
]
}
},
{
"version": "3.34.2",
"tag": "@rushstack/node-core-library_v3.34.2",
"date": "Mon, 05 Oct 2020 22:36:57 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" to `2.2.0`"
}
]
}
},
{
"version": "3.34.1",
"tag": "@rushstack/node-core-library_v3.34.1",
"date": "Wed, 30 Sep 2020 18:39:17 GMT",
"comments": {
"patch": [
{
"comment": "Update to build with @rushstack/heft-node-rig"
}
],
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" to `2.1.3`"
}
]
}
},
{
"version": "3.34.0",
"tag": "@rushstack/node-core-library_v3.34.0",
"date": "Wed, 30 Sep 2020 06:53:53 GMT",
"comments": {
"minor": [
{
"comment": "Add Path.isEqual(), Path.formatConcisely(), Path.convertToSlashes(), Path.convertToBackslashes(), and Path.isDownwardRelative()"
},
{
"comment": "Upgrade compiler; the API now requires TypeScript 3.9 or newer"
}
],
"patch": [
{
"comment": "Update README.md"
}
],
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" to `2.1.2`"
}
]
}
},
{
"version": "3.33.6",
"tag": "@rushstack/node-core-library_v3.33.6",
"date": "Tue, 22 Sep 2020 05:45:57 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" to `2.1.1`"
}
]
}
},
{
"version": "3.33.5",
"tag": "@rushstack/node-core-library_v3.33.5",
"date": "Tue, 22 Sep 2020 01:45:31 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" to `2.1.0`"
}
]
}
},
{
"version": "3.33.4",
"tag": "@rushstack/node-core-library_v3.33.4",
"date": "Tue, 22 Sep 2020 00:08:53 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" to `2.0.0`"
}
]
}
},
{
"version": "3.33.3",
"tag": "@rushstack/node-core-library_v3.33.3",
"date": "Sat, 19 Sep 2020 04:37:27 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" to `1.4.2`"
}
]
}
},
{
"version": "3.33.2",
"tag": "@rushstack/node-core-library_v3.33.2",
"date": "Sat, 19 Sep 2020 03:33:07 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" to `1.4.1`"
}
]
}
},
{
"version": "3.33.1",
"tag": "@rushstack/node-core-library_v3.33.1",
"date": "Fri, 18 Sep 2020 22:57:25 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" to `1.4.0`"
}
]
}
},
{
"version": "3.33.0",
"tag": "@rushstack/node-core-library_v3.33.0",
"date": "Fri, 18 Sep 2020 21:49:53 GMT",
"comments": {
"minor": [
{
"comment": "Add a missing \"existsAsync\" function to the FileSystem API."
}
]
}
},
{
"version": "3.32.0",
"tag": "@rushstack/node-core-library_v3.32.0",
"date": "Fri, 11 Sep 2020 02:13:35 GMT",
"comments": {
"minor": [
{
"comment": "Add Text.getNewline() and FileWriter.filePath"
},
{
"comment": "Add Brand API"
}
]
}
},
{
"version": "3.31.0",
"tag": "@rushstack/node-core-library_v3.31.0",
"date": "Mon, 07 Sep 2020 07:37:37 GMT",
"comments": {
"minor": [
{
"comment": "Replace Colors.normalizeColorTokensForTest() (which was marked as \"beta\") with AnsiEscape.formatForTests()"
}
]
}
},
{
"version": "3.30.0",
"tag": "@rushstack/node-core-library_v3.30.0",
"date": "Thu, 27 Aug 2020 11:27:06 GMT",
"comments": {
"minor": [
{
"comment": "Include an API for resolving packages and modules."
}
],
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" to `1.3.0`"
}
]
}
},
{
"version": "3.29.1",
"tag": "@rushstack/node-core-library_v3.29.1",
"date": "Mon, 24 Aug 2020 07:35:20 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" to `1.2.1`"
}
]
}
},
{
"version": "3.29.0",
"tag": "@rushstack/node-core-library_v3.29.0",
"date": "Sat, 22 Aug 2020 05:55:42 GMT",
"comments": {
"minor": [
{
"comment": "Introduce a \"JsonNull\" type for describing legacy JSON structures without triggering the \"@rushstack/no-new-null\" lint rule"
}
],
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" to `1.2.0`"
}
]
}
},
{
"version": "3.28.0",
"tag": "@rushstack/node-core-library_v3.28.0",
"date": "Tue, 18 Aug 2020 23:59:42 GMT",
"comments": {
"minor": [
{
"comment": "Add a utility function for making console color codes human-readable."
},
{
"comment": "Create a lighter weight function to get own package version."
}
],
"patch": [
{
"comment": "Lazy-import some packages to improve spin up times."
}
]
}
},
{
"version": "3.27.0",
"tag": "@rushstack/node-core-library_v3.27.0",
"date": "Mon, 17 Aug 2020 04:53:23 GMT",
"comments": {
"minor": [
{
"comment": "Add new APIs AlreadyReportedError and TypeUuid"
}
],
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" to `1.1.0`"
}
]
}
},
{
"version": "3.26.2",
"tag": "@rushstack/node-core-library_v3.26.2",
"date": "Wed, 12 Aug 2020 00:10:05 GMT",
"comments": {
"patch": [
{
"comment": "Updated project to build with Heft"
}
],
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" to `1.0.4`"
}
]
}
},
{
"version": "3.26.1",
"tag": "@rushstack/node-core-library_v3.26.1",
"date": "Wed, 05 Aug 2020 18:27:32 GMT",
"comments": {
"patch": [
{
"comment": "Triggering publish of dependents"
}
]
}
},
{
"version": "3.26.0",
"tag": "@rushstack/node-core-library_v3.26.0",
"date": "Mon, 03 Aug 2020 06:55:14 GMT",
"comments": {
"minor": [
{
"comment": "Added IJsonFileStringifyOptions.headerComment"
}
]
}
},
{
"version": "3.25.0",
"tag": "@rushstack/node-core-library_v3.25.0",
"date": "Fri, 03 Jul 2020 15:09:04 GMT",
"comments": {
"minor": [
{
"comment": "Add a utility method to convert a map into an object"
}
]
}
},
{
"version": "3.24.4",
"tag": "@rushstack/node-core-library_v3.24.4",
"date": "Thu, 25 Jun 2020 06:43:35 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" from `1.0.1` to `1.0.2`"
}
]
}
},
{
"version": "3.24.3",
"tag": "@rushstack/node-core-library_v3.24.3",
"date": "Wed, 24 Jun 2020 09:50:48 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" from `1.0.0` to `1.0.1`"
}
]
}
},
{
"version": "3.24.2",
"tag": "@rushstack/node-core-library_v3.24.2",
"date": "Wed, 24 Jun 2020 09:04:28 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" from `0.5.8` to `1.0.0`"
}
]
}
},
{
"version": "3.24.1",
"tag": "@rushstack/node-core-library_v3.24.1",
"date": "Wed, 10 Jun 2020 20:48:30 GMT",
"comments": {
"patch": [
{
"comment": "Improve API docs for \"LockFile\""
}
]
}
},
{
"version": "3.24.0",
"tag": "@rushstack/node-core-library_v3.24.0",
"date": "Sat, 30 May 2020 02:59:54 GMT",
"comments": {
"minor": [
{
"comment": "Add a FileSystem.copyFiles() API for recursively copying folders, and clarify that FileSystem.copyFile() only copies a single file"
}
]
}
},
{
"version": "3.23.1",
"tag": "@rushstack/node-core-library_v3.23.1",
"date": "Thu, 28 May 2020 05:59:02 GMT",
"comments": {
"patch": [
{
"comment": "Improve async callstacks for FileSystem API (when using Node 12)"
}
]
}
},
{
"version": "3.23.0",
"tag": "@rushstack/node-core-library_v3.23.0",
"date": "Wed, 27 May 2020 05:15:10 GMT",
"comments": {
"minor": [
{
"comment": "Add an \"FileSystemStats\" alias to avoid the need to import \"fs\" when using the FileSystem API"
},
{
"comment": "Add FileSystem.readLink() and readLinkAsync()"
}
],
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" from `0.5.7` to `0.5.8`"
}
]
}
},
{
"version": "3.22.1",
"tag": "@rushstack/node-core-library_v3.22.1",
"date": "Tue, 26 May 2020 23:00:25 GMT",
"comments": {
"patch": [
{
"comment": "Make not-exist error messages more readable."
}
]
}
},
{
"version": "3.22.0",
"tag": "@rushstack/node-core-library_v3.22.0",
"date": "Fri, 22 May 2020 15:08:42 GMT",
"comments": {
"minor": [
{
"comment": "Expose string parsing APIs from JsonFile."
}
]
}
},
{
"version": "3.21.0",
"tag": "@rushstack/node-core-library_v3.21.0",
"date": "Thu, 21 May 2020 23:09:44 GMT",
"comments": {
"minor": [
{
"comment": "Create async versions of FileSystem and JsonFile APIs."
}
]
}
},
{
"version": "3.20.0",
"tag": "@rushstack/node-core-library_v3.20.0",
"date": "Thu, 21 May 2020 15:41:59 GMT",
"comments": {
"minor": [
{
"comment": "Add PackageNameParser class, which is a configurable version of the PackageName API"
}
]
}
},
{
"version": "3.19.7",
"tag": "@rushstack/node-core-library_v3.19.7",
"date": "Wed, 08 Apr 2020 04:07:34 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" from `0.5.6` to `0.5.7`"
}
]
}
},
{
"version": "3.19.6",
"tag": "@rushstack/node-core-library_v3.19.6",
"date": "Sat, 28 Mar 2020 00:37:16 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" from `0.5.5` to `0.5.6`"
}
]
}
},
{
"version": "3.19.5",
"tag": "@rushstack/node-core-library_v3.19.5",
"date": "Wed, 18 Mar 2020 15:07:47 GMT",
"comments": {
"patch": [
{
"comment": "Upgrade cyclic dependencies"
}
],
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" from `0.5.4` to `0.5.5`"
}
]
}
},
{
"version": "3.19.4",
"tag": "@rushstack/node-core-library_v3.19.4",
"date": "Tue, 17 Mar 2020 23:55:58 GMT",
"comments": {
"patch": [
{
"comment": "PACKAGE NAME CHANGE: The NPM scope was changed from `@microsoft/node-core-library` to `@rushstack/node-core-library`"
}
]
}
},
{
"version": "3.19.3",
"tag": "@microsoft/node-core-library_v3.19.3",
"date": "Tue, 28 Jan 2020 02:23:44 GMT",
"comments": {
"patch": [
{
"comment": "Fix a typing issue that prevented LegacyAdapters from being used with the new glob typings."
}
]
}
},
{
"version": "3.19.2",
"tag": "@microsoft/node-core-library_v3.19.2",
"date": "Thu, 23 Jan 2020 01:07:56 GMT",
"comments": {
"patch": [
{
"comment": "Fix an issue with a missing type in LegacyAdapters"
}
]
}
},
{
"version": "3.19.1",
"tag": "@microsoft/node-core-library_v3.19.1",
"date": "Tue, 21 Jan 2020 21:56:14 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" from `0.5.3` to `0.5.4`"
}
]
}
},
{
"version": "3.19.0",
"tag": "@microsoft/node-core-library_v3.19.0",
"date": "Sun, 19 Jan 2020 02:26:52 GMT",
"comments": {
"minor": [
{
"comment": "Upgrade Node typings to Node 10"
}
],
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" from `0.5.2` to `0.5.3`"
}
]
}
},
{
"version": "3.18.3",
"tag": "@microsoft/node-core-library_v3.18.3",
"date": "Fri, 17 Jan 2020 01:08:23 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" from `0.5.1` to `0.5.2`"
}
]
}
},
{
"version": "3.18.2",
"tag": "@microsoft/node-core-library_v3.18.2",
"date": "Thu, 09 Jan 2020 06:44:13 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" from `0.5.0` to `0.5.1`"
}
]
}
},
{
"version": "3.18.1",
"tag": "@microsoft/node-core-library_v3.18.1",
"date": "Wed, 08 Jan 2020 00:11:31 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" from `0.4.2` to `0.5.0`"
}
]
}
},
{
"version": "3.18.0",
"tag": "@microsoft/node-core-library_v3.18.0",
"date": "Fri, 15 Nov 2019 04:50:50 GMT",
"comments": {
"minor": [
{
"comment": "Add NewlineKind.OsDefault and fix some comments"
}
]
}
},
{
"version": "3.17.1",
"tag": "@microsoft/node-core-library_v3.17.1",
"date": "Mon, 11 Nov 2019 16:07:56 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" from `0.4.1` to `0.4.2`"
}
]
}
},
{
"version": "3.17.0",
"tag": "@microsoft/node-core-library_v3.17.0",
"date": "Tue, 05 Nov 2019 06:49:28 GMT",
"comments": {
"minor": [
{
"comment": "Add new API LegacyAdapters.stableSort(), and update the Sort API to be stable"
}
]
}
},
{
"version": "3.16.0",
"tag": "@microsoft/node-core-library_v3.16.0",
"date": "Tue, 22 Oct 2019 06:24:44 GMT",
"comments": {
"patch": [
{
"comment": "Refactor some code as part of migration from TSLint to ESLint"
}
],
"minor": [
{
"comment": "Add JsonObject type"
}
],
"dependency": [
{
"comment": "Updating dependency \"@rushstack/eslint-config\" from `0.4.0` to `0.4.1`"
}
]
}
},
{
"version": "3.15.1",
"tag": "@microsoft/node-core-library_v3.15.1",
"date": "Sun, 29 Sep 2019 23:56:29 GMT",
"comments": {
"patch": [
{
"comment": "Update repository URL"
}
]
}
},
{
"version": "3.15.0",
"tag": "@microsoft/node-core-library_v3.15.0",
"date": "Mon, 23 Sep 2019 15:14:55 GMT",
"comments": {
"minor": [
{
"comment": "Upgrade @types/node dependency and remove unnecessary dependencies on @types/fs-extra, @types/jju, and @types/z-schema"
}
]
}
},
{
"version": "3.14.2",
"tag": "@microsoft/node-core-library_v3.14.2",
"date": "Tue, 10 Sep 2019 22:32:23 GMT",
"comments": {
"patch": [
{
"comment": "Update documentation"
}
]
}
},
{
"version": "3.14.1",
"tag": "@microsoft/node-core-library_v3.14.1",
"date": "Wed, 04 Sep 2019 18:28:06 GMT",
"comments": {
"patch": [
{
"comment": "Add support for two more arguments in LegacyAdapters.convertCallbackToPromise."
}
]
}
},
{
"version": "3.14.0",
"tag": "@microsoft/node-core-library_v3.14.0",
"date": "Thu, 08 Aug 2019 15:14:17 GMT",
"comments": {
"minor": [
{
"comment": "Remove experimental IPackageJsonTsdocConfiguration API, since the \"tsdocFlavor\" field is no longer used by API Extractor"
}
]
}
},
{
"version": "3.13.0",
"tag": "@microsoft/node-core-library_v3.13.0",
"date": "Wed, 20 Mar 2019 19:14:49 GMT",
"comments": {
"minor": [
{
"comment": "Introduce an interface INodePackageJson for loading package.json files whose \"version\" field may be missing."
},
{
"comment": "Add two new APIs PackageJsonLookup.loadNodePackageJson() and tryLoadNodePackageJsonFor() that return INodePackageJson"
}
]
}
},
{
"version": "3.12.1",
"tag": "@microsoft/node-core-library_v3.12.1",
"date": "Mon, 18 Mar 2019 04:28:43 GMT",
"comments": {
"patch": [
{
"comment": "Export ColorValue and TextAttribute to eliminate the ae-forgotten-export warning"
}
]
}
},
{
"version": "3.12.0",
"tag": "@microsoft/node-core-library_v3.12.0",
"date": "Wed, 27 Feb 2019 22:13:58 GMT",
"comments": {
"minor": [
{
"comment": "Treat `types` as an alias for `typings` in package.json"
}
]
}
},
{
"version": "3.11.1",
"tag": "@microsoft/node-core-library_v3.11.1",
"date": "Wed, 27 Feb 2019 17:13:17 GMT",
"comments": {
"patch": [
{
"comment": "Include an enum that had been missing from the exports."
}
]
}
},
{
"version": "3.11.0",
"tag": "@microsoft/node-core-library_v3.11.0",
"date": "Mon, 18 Feb 2019 17:13:23 GMT",
"comments": {
"minor": [
{
"comment": "Exposing field tsdocMetadata in package.json"
}
]
}
},
{
"version": "3.10.0",
"tag": "@microsoft/node-core-library_v3.10.0",
"date": "Mon, 11 Feb 2019 03:31:55 GMT",
"comments": {
"minor": [
{
"comment": "Include support for text formatting in the Terminal API."
},
{
"comment": "Add new API `InternalError.breakInDebugger`"
}
],
"patch": [
{
"comment": "Exposing utility class StringBufferTerminalProvider, useful to clients of Terminal API for their own unit tests"
}
]
}
},
{
"version": "3.9.0",
"tag": "@microsoft/node-core-library_v3.9.0",
"date": "Thu, 10 Jan 2019 01:57:52 GMT",
"comments": {
"minor": [
{
"comment": "Remove deprecated FileDiffTest API for unit tests; please use Jest snapshots instead"
}
]
}
},
{
"version": "3.8.3",
"tag": "@microsoft/node-core-library_v3.8.3",
"date": "Wed, 19 Dec 2018 05:57:33 GMT",
"comments": {
"patch": [
{
"comment": "Add missing space in error message"
}
]
}
},
{
"version": "3.8.2",
"tag": "@microsoft/node-core-library_v3.8.2",
"date": "Thu, 13 Dec 2018 02:58:10 GMT",
"comments": {
"patch": [
{
"comment": "Use @types/jju not custom typings"
}
]
}
},
{
"version": "3.8.1",
"tag": "@microsoft/node-core-library_v3.8.1",
"date": "Wed, 12 Dec 2018 17:04:19 GMT",
"comments": {
"patch": [
{
"comment": "Clarify error message reported by JsonFile._validateNoUndefinedMembers()"
}
]
}
},
{
"version": "3.8.0",
"tag": "@microsoft/node-core-library_v3.8.0",
"date": "Fri, 07 Dec 2018 17:04:56 GMT",
"comments": {
"minor": [
{
"comment": "Added a new \"InternalError\" API for reporting software defects"
}
]
}
},
{
"version": "3.7.1",
"tag": "@microsoft/node-core-library_v3.7.1",
"date": "Thu, 29 Nov 2018 07:02:09 GMT",
"comments": {
"patch": [
{
"comment": "Improve Sort.compareByValue() to consistently order \"null\" and \"undefined\" values"
}
]
}
},
{
"version": "3.7.0",
"tag": "@microsoft/node-core-library_v3.7.0",
"date": "Wed, 28 Nov 2018 02:17:11 GMT",
"comments": {
"minor": [
{
"comment": "Add new API PackageJsonLookup.loadOwnPackageJson()"
}
]
}
},
{
"version": "3.6.0",
"tag": "@microsoft/node-core-library_v3.6.0",
"date": "Fri, 16 Nov 2018 21:37:10 GMT",
"comments": {
"minor": [
{
"comment": "Add new APIs Sort.sortSet() and Sort.sortSetBy()"
}
]
}
},
{
"version": "3.5.2",
"tag": "@microsoft/node-core-library_v3.5.2",
"date": "Wed, 07 Nov 2018 21:04:35 GMT",
"comments": {
"patch": [
{
"comment": "Upgrade fs-extra to eliminate the \"ERROR: ENOTEMPTY: directory not empty, rmdir\" error that sometimes occurred with FileSystem.deleteFolder()"
}
]
}
},
{
"version": "3.5.1",
"tag": "@microsoft/node-core-library_v3.5.1",
"date": "Mon, 05 Nov 2018 17:04:24 GMT",
"comments": {
"patch": [
{
"comment": "Remove all dependencies on the \"rimraf\" library"
}
]
}
},
{
"version": "3.5.0",
"tag": "@microsoft/node-core-library_v3.5.0",
"date": "Thu, 25 Oct 2018 23:20:40 GMT",
"comments": {
"minor": [