forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG.json
3004 lines (3004 loc) · 95.3 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/rush",
"entries": [
{
"version": "5.35.2",
"tag": "@microsoft/rush_v5.35.2",
"date": "Tue, 03 Nov 2020 23:34:30 GMT",
"comments": {
"none": [
{
"comment": "Fix bug where version process is using a wrong `git.addChanges` signature"
}
]
}
},
{
"version": "5.35.1",
"tag": "@microsoft/rush_v5.35.1",
"date": "Fri, 30 Oct 2020 05:17:42 GMT",
"comments": {
"none": [
{
"comment": "Fix a recent \"rush scan\" regression (which resulted from enabling \"esModuleInterop\")"
}
]
}
},
{
"version": "5.35.0",
"tag": "@microsoft/rush_v5.35.0",
"date": "Wed, 28 Oct 2020 21:44:10 GMT",
"comments": {
"none": [
{
"comment": "Adds an --ignore-hooks flag to every rush action that skips event hooks during execution of the action."
},
{
"comment": "Fix bug where version process was not adding version-policy configuration file changes into the version commit"
}
]
}
},
{
"version": "5.34.4",
"tag": "@microsoft/rush_v5.34.4",
"date": "Sat, 17 Oct 2020 00:23:18 GMT",
"comments": {
"none": [
{
"comment": "When running `rush version --bump`, only include package.json updates in the generated commit"
},
{
"comment": "Fix Rush peer dependency validation when satisfied with a package alias"
},
{
"comment": "Prevent `rush unlink` from breaking installs for non-workspace projects"
},
{
"comment": "Add documentation for incremental option for buld custom commands"
}
]
}
},
{
"version": "5.34.3",
"tag": "@microsoft/rush_v5.34.3",
"date": "Wed, 30 Sep 2020 21:04:15 GMT",
"comments": {
"none": [
{
"comment": "Update to build with @rushstack/heft-node-rig"
},
{
"comment": "Update README.md"
},
{
"comment": "Upgrade compiler; the API now requires TypeScript 3.9 or newer"
}
]
}
},
{
"version": "5.34.2",
"tag": "@microsoft/rush_v5.34.2",
"date": "Mon, 21 Sep 2020 22:00:03 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where \"rush build\" output was lagged due to stream-collator not activating streams aggressively enough"
},
{
"comment": "Fix incorrect \"successful\" exit status code"
}
]
}
},
{
"version": "5.34.1",
"tag": "@microsoft/rush_v5.34.1",
"date": "Thu, 17 Sep 2020 07:13:04 GMT",
"comments": {
"none": [
{
"comment": "Fix a regression that reported an error \"The EnvironmentConfiguration must be initialized before values can be accessed\""
}
]
}
},
{
"version": "5.34.0",
"tag": "@microsoft/rush_v5.34.0",
"date": "Thu, 17 Sep 2020 01:23:35 GMT",
"comments": {
"none": [
{
"comment": "Big redesign of \"rush build\" console reporting (fixes GitHub #2135)"
},
{
"comment": "Implement RUSH_GLOBAL_FOLDER environment variable (GitHub #2187)"
},
{
"comment": "Use underscores instead of asterisks for italic formatting in changelogs to match the way Prettier formats italics in markdown."
},
{
"comment": "In PNPM 5, --no-lock and --resolution-strategy flags have been removed. Do not pass these flags if they are not supported by the PNPM version used in the repository."
}
]
}
},
{
"version": "5.33.2",
"tag": "@microsoft/rush_v5.33.2",
"date": "Fri, 21 Aug 2020 22:45:58 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where PNPM would sometimes prompt for input during \"rush publish\" (GitHub #1940)"
},
{
"comment": "Fix an issue that prevented Rush from logging in verbose mode"
}
]
}
},
{
"version": "5.33.1",
"tag": "@microsoft/rush_v5.33.1",
"date": "Thu, 20 Aug 2020 18:25:41 GMT",
"comments": {
"none": [
{
"comment": "Fix issues where installs could fail after running 'rush version' while the 'usePnpmFrozenLockfileForRushInstall' experiment is enabled. See PR #2116 for more details."
},
{
"comment": "Fix an issue where \"rush deploy\" would sometimes report an \"already exists\" when using the \"files\" setting in package.json (GitHub #2121)"
},
{
"comment": "Allow multiple simultaneous invocations of \"rush deploy\" (GitHub #2125)"
},
{
"comment": "Load and validate local projects lazily to further improve Rush startup times."
}
]
}
},
{
"version": "5.33.0",
"tag": "@microsoft/rush_v5.33.0",
"date": "Wed, 19 Aug 2020 00:17:48 GMT",
"comments": {
"none": [
{
"comment": "Add support for shell tab completion. See PR for details: https://github.com/microsoft/rushstack/pull/2060"
},
{
"comment": "Use Import.lazy() to optimize the startup time for Rush"
}
]
}
},
{
"version": "5.32.3",
"tag": "@microsoft/rush_v5.32.3",
"date": "Tue, 18 Aug 2020 03:48:56 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where install-run.js sometimes assigned the shell PATH incorrectly due to inconsistent character case"
}
]
}
},
{
"version": "5.32.2",
"tag": "@microsoft/rush_v5.32.2",
"date": "Fri, 14 Aug 2020 21:03:48 GMT",
"comments": {
"none": [
{
"comment": "Resolve issue with version --bump where the wrong hash would get written to the pnpm-lock file"
}
]
}
},
{
"version": "5.32.1",
"tag": "@microsoft/rush_v5.32.1",
"date": "Fri, 14 Aug 2020 04:06:30 GMT",
"comments": {
"none": [
{
"comment": "Change method used to calculate integrity of tarballs"
}
]
}
},
{
"version": "5.32.0",
"tag": "@microsoft/rush_v5.32.0",
"date": "Thu, 13 Aug 2020 00:53:43 GMT",
"comments": {
"patch": [
{
"comment": "Update temp project tarball integrities during rush bump"
}
]
}
},
{
"version": "5.31.0",
"tag": "@microsoft/rush_v5.31.0",
"date": "Wed, 12 Aug 2020 19:33:44 GMT",
"comments": {
"none": [
{
"comment": "Updated project to build with Heft"
},
{
"comment": "Fix an issue where \"rushx\" did not pass additional command-line arguments to the package.json script (GitHub #1232)"
}
]
}
},
{
"version": "5.30.3",
"tag": "@microsoft/rush_v5.30.3",
"date": "Fri, 07 Aug 2020 21:09:05 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where Mac OS sometimes reported \"An unrecognized file .DS_Store was found in the Rush config folder\""
}
]
}
},
{
"version": "5.30.2",
"tag": "@microsoft/rush_v5.30.2",
"date": "Wed, 05 Aug 2020 17:57:07 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where a package version bump would not bump downstream packages with a `workspace:*` dependency specifier."
}
]
}
},
{
"version": "5.30.1",
"tag": "@microsoft/rush_v5.30.1",
"date": "Thu, 23 Jul 2020 23:47:59 GMT",
"comments": {
"none": [
{
"comment": "Fixed an isssue where the \"rush build\" incremental analysis sometimes reported a warning with large diffs (GitHub #501) or filenames that contain spaces, quotes, or other unusual characters (GitHub #2007)"
},
{
"comment": "Prevent incorrect conversion to \"workspace:\" notation for peer dependencies when running \"rush update --full\""
}
]
}
},
{
"version": "5.30.0",
"tag": "@microsoft/rush_v5.30.0",
"date": "Fri, 17 Jul 2020 05:32:38 GMT",
"comments": {
"minor": [
{
"comment": "Prepare to deprecate 'rush link' and 'rush unlink' commands, as well as the '--no-link' install argument. As we move toward using package managers more directly in Rush, the package managers will perform the linking during install (if linking is even necessary). Additionally, these commands directly conflict with (and have different meanings than) their package manager counterparts. Lastly, similar goals can be accomplished by running 'rush install' and 'rush purge'. In addition to these changes, rush-link.json deprecated and is replaced with a new API which keeps the local dependency tree in memory."
}
]
}
},
{
"version": "5.29.1",
"tag": "@microsoft/rush_v5.29.1",
"date": "Thu, 16 Jul 2020 02:18:39 GMT",
"comments": {
"patch": [
{
"comment": "Consider package.json when determining if install can be skipped for PNPM workspaces"
}
]
}
},
{
"version": "5.29.0",
"tag": "@microsoft/rush_v5.29.0",
"date": "Tue, 14 Jul 2020 05:20:56 GMT",
"comments": {
"none": [
{
"comment": "Give \\\"rush deploy\\\" the ability to select a subset of dependencies to copy over (#1978)"
},
{
"comment": "Fix an issue where package binaries where not created by \"rush deploy\" (#1982)"
},
{
"comment": "Add a new setting \"folderToCopy\" and new command-line parameter \"--create-archive\" for use with \"rush deploy\""
}
]
}
},
{
"version": "5.28.0",
"tag": "@microsoft/rush_v5.28.0",
"date": "Wed, 08 Jul 2020 06:56:47 GMT",
"comments": {
"none": [
{
"comment": "Add new commands \"rush init-autoinstaller\" and \"rush update-autoinstaller\""
},
{
"comment": "Add support for filtered installs when using workspaces"
}
],
"minor": [
{
"comment": "Add preliminary workspaces support for PNPM"
}
]
}
},
{
"version": "5.27.3",
"tag": "@microsoft/rush_v5.27.3",
"date": "Fri, 03 Jul 2020 06:16:09 GMT",
"comments": {
"none": [
{
"comment": "Added support for new format used by pnpm for tarball URLs that now begin with an @ symbol"
}
]
}
},
{
"version": "5.27.2",
"tag": "@microsoft/rush_v5.27.2",
"date": "Thu, 02 Jul 2020 01:52:18 GMT",
"comments": {
"none": [
{
"comment": "Improve \"rush deploy\" to copy PNPM workaround links (fixes GitHub #1942 and 1943)"
}
]
}
},
{
"version": "5.27.1",
"tag": "@microsoft/rush_v5.27.1",
"date": "Mon, 29 Jun 2020 18:39:59 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where environment variable trimming for .npmrc was unnecessarily performed on comment lines"
},
{
"comment": "Add a \"rush init\" template for .npmrc-publish"
},
{
"comment": "Fix a regression affecting GitHub specifiers for package.json dependencies (issue #1749)"
}
]
}
},
{
"version": "5.27.0",
"tag": "@microsoft/rush_v5.27.0",
"date": "Sun, 21 Jun 2020 04:48:53 GMT",
"comments": {
"none": [
{
"comment": "Improve \"rush deploy\" to apply pnpmfile.js when calculating dependencies"
}
]
}
},
{
"version": "5.26.0",
"tag": "@microsoft/rush_v5.26.0",
"date": "Mon, 15 Jun 2020 01:26:24 GMT",
"comments": {
"none": [
{
"comment": "Breaking change for the experimental \"rush deploy\" feature: Simplify the config file design, based on the discussion from GitHub #1906"
}
]
}
},
{
"version": "5.25.2",
"tag": "@microsoft/rush_v5.25.2",
"date": "Thu, 11 Jun 2020 05:34:31 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where Git hook scripts failed in some environments due to CRLF newlines"
}
]
}
},
{
"version": "5.25.1",
"tag": "@microsoft/rush_v5.25.1",
"date": "Thu, 11 Jun 2020 05:05:30 GMT",
"comments": {
"none": [
{
"comment": "Fix some minor errors in the \"rush init\" template that occured when Prettier reformatted the template file macros"
},
{
"comment": "Add a sample Git hook file to the \"rush init\" template"
},
{
"comment": "Fix a minor issue where \"rush link\" failed if no projects were defined yet in rush.json"
},
{
"comment": "Add \"--no-verify\" for commits performed by \"rush version\", since Git hook scripts may fail on CI machines"
}
]
}
},
{
"version": "5.25.0",
"tag": "@microsoft/rush_v5.25.0",
"date": "Wed, 10 Jun 2020 23:53:27 GMT",
"comments": {
"none": [
{
"comment": "Add new command-line.json setting \"autoinstallerName\""
}
]
}
},
{
"version": "5.24.4",
"tag": "@microsoft/rush_v5.24.4",
"date": "Mon, 08 Jun 2020 18:04:35 GMT",
"comments": {
"none": [
{
"comment": "Explicitly assigning the option value for --resolution-strategy. This fixes a crash with pnpm v5, which deprecated the option."
},
{
"comment": "Fix an issue where install-run.js is not able to find its own .bin in PATH"
},
{
"comment": "Fix an issue where \"rush install\" sometimes skipped regenerating temporary packages, which is incompatible with PNPM's \"--frozen-lockfile\" feature"
}
]
}
},
{
"version": "5.24.3",
"tag": "@microsoft/rush_v5.24.3",
"date": "Thu, 04 Jun 2020 22:50:56 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where \"rush deploy\" generated incorrect symlinks on Mac OS if the target folder was symlinked (GitHub #1910)"
}
]
}
},
{
"version": "5.24.2",
"tag": "@microsoft/rush_v5.24.2",
"date": "Wed, 03 Jun 2020 05:35:19 GMT",
"comments": {
"none": [
{
"comment": "Expect error when trying to resolve optional dependency during deploy"
}
]
}
},
{
"version": "5.24.1",
"tag": "@microsoft/rush_v5.24.1",
"date": "Tue, 02 Jun 2020 03:11:32 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where the \"linkCreation\" defaulted to \"none\" instead of \"default\""
}
]
}
},
{
"version": "5.24.0",
"tag": "@microsoft/rush_v5.24.0",
"date": "Mon, 01 Jun 2020 08:48:49 GMT",
"comments": {
"none": [
{
"comment": "Set next LTS node version to 14."
},
{
"comment": "Add new \"rush deploy\" command that copies subsets of files/symlinks to a deployment folder"
}
]
}
},
{
"version": "5.23.5",
"tag": "@microsoft/rush_v5.23.5",
"date": "Thu, 28 May 2020 22:49:57 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where Rush cannot reinstall itself on Windows"
}
]
}
},
{
"version": "5.23.4",
"tag": "@microsoft/rush_v5.23.4",
"date": "Thu, 21 May 2020 15:41:59 GMT",
"comments": {
"none": [
{
"comment": "Add a new rush.json setting \"allowMostlyStandardPackageNames\""
},
{
"comment": "Add RUSH_PARALLELISM environment variable for specifying the --parallelism default"
}
],
"dependency": [
{
"comment": "Updating dependency \"@rushstack/node-core-library\" from `3.19.7` to `3.20.0`"
},
{
"comment": "Updating dependency \"@microsoft/rush-stack-compiler-3.5\" from `0.4.12` to `0.4.13`"
},
{
"comment": "Updating dependency \"@microsoft/node-library-build\" from `6.4.14` to `6.4.15`"
}
]
}
},
{
"version": "5.23.3",
"tag": "@microsoft/rush_v5.23.3",
"date": "Fri, 15 May 2020 08:10:59 GMT",
"comments": {
"none": [
{
"comment": "Fix a few instances of missing spaces in --help documentation."
},
{
"comment": "Provide an option to pass --frozen-lockfile to pnpm for rush install"
}
],
"dependency": [
{
"comment": "Updating dependency \"@microsoft/rush-stack-compiler-3.5\" from `0.4.10` to `0.4.11`"
},
{
"comment": "Updating dependency \"@microsoft/node-library-build\" from `6.4.12` to `6.4.13`"
}
]
}
},
{
"version": "5.23.2",
"tag": "@microsoft/rush_v5.23.2",
"date": "Wed, 22 Apr 2020 18:44:26 GMT",
"comments": {
"none": [
{
"comment": "Add common-versions.json to the set of files that, when changed, will trigger reinstallation of dependencies."
}
]
}
},
{
"version": "5.23.1",
"tag": "@microsoft/rush_v5.23.1",
"date": "Wed, 15 Apr 2020 03:33:55 GMT",
"comments": {
"none": [
{
"comment": "Fix a regression in Rush 5.19.0 where customizing \"rush rebuild\" would call the \"build\" script instead of the \"rebuild\" script."
},
{
"comment": "Fix an issue where, on some minimal systems, Rush used a missing shell command to detect an application path."
},
{
"comment": "Fix an issue where the common/temp/*.tgz files resulted in different shrinkwrap files on different operating systems"
}
]
}
},
{
"version": "5.23.0",
"tag": "@microsoft/rush_v5.23.0",
"date": "Sat, 04 Apr 2020 00:38:29 GMT",
"comments": {
"none": [
{
"comment": "Add a new rush.json setting \"preventManualShrinkwrapChanges\" which prevents against accidental mistakes in pnpm-lock.yaml."
},
{
"comment": "Upgrade node-tar"
},
{
"comment": "Remove some misleading log output for \"rush build\" (GitHub #1733)"
}
]
}
},
{
"version": "5.22.0",
"tag": "@microsoft/rush_v5.22.0",
"date": "Wed, 18 Mar 2020 01:23:22 GMT",
"comments": {
"none": [
{
"comment": "Replace dependencies whose NPM scope was renamed from `@microsoft` to `@rushstack`"
},
{
"comment": "Support setting environment variables for package manager install processes in rush.json and expose --max-install-attempts as a parameter for rush install/update."
}
]
}
},
{
"version": "5.21.0",
"tag": "@microsoft/rush_v5.21.0",
"date": "Sat, 07 Mar 2020 05:36:08 GMT",
"comments": {
"none": [
{
"comment": "Make the event hook failure message print in yellow."
},
{
"comment": "Improve phrasing of an error message."
},
{
"comment": "Add a new command-line.json setting \"required\" for non-optional parameters"
},
{
"comment": "Implement `pnpmOptions.pnpmStore` and RUSH_PNPM_STORE_PATH, to allow the end-user to define where PNPM will place its store."
},
{
"comment": "Add a --json flag for \"rush check\" to facilitate automation"
}
]
}
},
{
"version": "5.20.0",
"tag": "@microsoft/rush_v5.20.0",
"date": "Wed, 12 Feb 2020 21:51:19 GMT",
"comments": {
"none": [
{
"comment": "Support \".\" as a value for the --to and --from parameters to build to the current project."
},
{
"comment": "Improve security by allowing the \"rush publish\" authentication token to be specified via an environment variable."
}
]
}
},
{
"version": "5.19.4",
"tag": "@microsoft/rush_v5.19.4",
"date": "Tue, 28 Jan 2020 03:57:30 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where a missing \"repository\" property in rush.json would cause \"rush change\" to throw."
}
]
}
},
{
"version": "5.19.3",
"tag": "@microsoft/rush_v5.19.3",
"date": "Tue, 28 Jan 2020 01:35:53 GMT",
"comments": {}
},
{
"version": "5.19.2",
"tag": "@microsoft/rush_v5.19.2",
"date": "Tue, 28 Jan 2020 01:08:26 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where the rushx command will always report error."
},
{
"comment": "Fixes \"too many params\" and \"unable to find ref v<version>\" issues in git tagging while publishing."
}
]
}
},
{
"version": "5.19.1",
"tag": "@microsoft/rush_v5.19.1",
"date": "Sat, 25 Jan 2020 05:15:10 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue with install-run.js, where successful executions exit with a nonzero exit code."
}
]
}
},
{
"version": "5.19.0",
"tag": "@microsoft/rush_v5.19.0",
"date": "Sat, 25 Jan 2020 04:19:23 GMT",
"comments": {
"none": [
{
"comment": "Make the default branch and default remote configurable."
},
{
"comment": "Fix an issue where the Rush process terminates without any error message during installation/linking, due to a dependency package that broke its SemVer contract (GitHub #1713)"
},
{
"comment": "Update package.json files without reformatting or reordering properties and fields during \"rush add\", \"rush version\" and \"rush publish\"."
},
{
"comment": "Upgrade Node typings to Node 10"
},
{
"comment": "Update the \"rush init\" .gitignore file to ignore .rush/temp and .DS_Store folders"
},
{
"comment": "Improve command-line.json handling so that the \"rush build\" and \"rush rebuild\" commands can be extended without having to duplicate the built-in options (GitHub #1375)"
},
{
"comment": "Add a --json flag for \"rush list\" to facilitate automation"
}
]
}
},
{
"version": "5.18.0",
"tag": "@microsoft/rush_v5.18.0",
"date": "Sat, 11 Jan 2020 05:38:55 GMT",
"comments": {
"none": [
{
"comment": "Don't use the `build` verb when printing task failures"
},
{
"comment": "Add a --commit command-line argument to the publish command to allow the git commit to be explicitly provided for tagging."
},
{
"comment": "Update GitHub project URL in some resource files"
},
{
"comment": "fix typo in version-policies.json"
}
]
}
},
{
"version": "5.17.2",
"tag": "@microsoft/rush_v5.17.2",
"date": "Tue, 26 Nov 2019 00:53:52 GMT",
"comments": {
"none": [
{
"comment": "Resolve an issue where git tags were not being applied when using pack or publish with --include-all"
}
]
}
},
{
"version": "5.17.1",
"tag": "@microsoft/rush_v5.17.1",
"date": "Thu, 21 Nov 2019 00:50:15 GMT",
"comments": {
"undefined": [
{
"comment": "Remove an error thrown when the --registry and --pack arguments are used on rush publish, because --registry might be required to check if a package has already been published against a custom registry."
}
],
"none": [
{
"comment": "Fix an issue with Rush add, where Rush was unable to add unpublished local projects as dependencies."
}
]
}
},
{
"version": "5.17.0",
"tag": "@microsoft/rush_v5.17.0",
"date": "Thu, 14 Nov 2019 22:52:48 GMT",
"comments": {
"none": [
{
"comment": "Add a new setting \"implicitlyPreferredVersions\" in common-versions.json that can be used to solve some installation failures involving peer dependencies"
},
{
"comment": "Improve the generation of shrinkwrap-deps.json to consider optional peer dependencies and implicitlyPreferredVersions=false"
},
{
"comment": "Fix an issue where certain operations did not use a stable sort when executed on older versions of NodeJS"
}
]
}
},
{
"version": "5.16.1",
"tag": "@microsoft/rush_v5.16.1",
"date": "Fri, 25 Oct 2019 20:15:59 GMT",
"comments": {
"none": [
{
"comment": "Log to console instead of throwing when an unmet peer dependency is encountered during linking, and strictPeerDependencies is false"
},
{
"comment": "Refactor some code as part of migration from TSLint to ESLint"
}
]
}
},
{
"version": "5.16.0",
"tag": "@microsoft/rush_v5.16.0",
"date": "Thu, 17 Oct 2019 00:41:01 GMT",
"comments": {
"none": [
{
"comment": "Support PNPM 4 on Rush"
},
{
"comment": "Add support for \"rush add\" for repos using the Yarn package manager."
}
]
}
},
{
"version": "5.15.1",
"tag": "@microsoft/rush_v5.15.1",
"date": "Thu, 10 Oct 2019 23:47:19 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where build commands can fail because git commands used to track changes can be too long."
},
{
"comment": "Fix compatibility issue where PNPM 4 requires --no-prefer-frozen-lockfile instead of --no-prefer-frozen-shrinkwrap"
}
]
}
},
{
"version": "5.15.0",
"tag": "@microsoft/rush_v5.15.0",
"date": "Tue, 08 Oct 2019 22:58:33 GMT",
"comments": {
"none": [
{
"comment": "Improve 'rush build' to avoid rebuilding unnecessarily when the package-lock.json file has changed (pnpm only)."
}
]
}
},
{
"version": "5.14.0",
"tag": "@microsoft/rush_v5.14.0",
"date": "Wed, 02 Oct 2019 01:18:02 GMT",
"comments": {
"none": [
{
"comment": "Add an --all flag to \"rush add\" to add a dependency to all projects."
},
{
"comment": "Add options to rush change to allow creating changefiles for all changed projects."
},
{
"comment": "Rush update now prints a message when the approved packages files are out-of-date, and rush install exits with an error if they are out-of-date."
},
{
"comment": "Include peerDependencies in the approved packages files."
},
{
"comment": "Make detection of changefiles and changes in projects safer."
},
{
"comment": "Update repository URL"
}
]
}
},
{
"version": "5.13.1",
"tag": "@microsoft/rush_v5.13.1",
"date": "Fri, 27 Sep 2019 22:34:50 GMT",
"comments": {
"none": [
{
"comment": "Improve support for pnpm lockfile version 5.1. Also fixes a regression in Rush 5.12.0 in which rush install can fail on pnpm 3.5+ with the error message \"ERROR: Invalid Version\""
}
]
}
},
{
"version": "5.13.0",
"tag": "@microsoft/rush_v5.13.0",
"date": "Wed, 11 Sep 2019 21:41:34 GMT",
"comments": {
"none": [
{
"comment": "Add support for incremental custom commands. This change also adds a per-project `.rush/temp` folder that should be included in `.gitignore` (i.e. - `.rush/temp/**`)."
},
{
"comment": "Add a --from-version-policy option for bulk commands to allow running the command (like build) from packages with a version policy and their direct and indirect dependent projects"
},
{
"comment": "Update documentation"
},
{
"comment": "Do not delete the pnpm store if an installation retry fails. Delete the pnpm store if and only if all the installation retry attempts fail."
}
]
}
},
{
"version": "5.12.1",
"tag": "@microsoft/rush_v5.12.1",
"date": "Tue, 10 Sep 2019 19:45:15 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where Rush attempted to add Git tags for packages that had already been published when the publish command is run with the --pack and --apply-git-tags-on-pack flags. This caused a fatal error when tags already existed."
}
]
}
},
{
"version": "5.12.0",
"tag": "@microsoft/rush_v5.12.0",
"date": "Wed, 04 Sep 2019 19:01:42 GMT",
"comments": {
"none": [
{
"comment": "Adding --apply-git-tags-on-pack flag to the publish command to apply git tags when using --pack"
},
{
"comment": "For rush publish and rush version, change the path spec for git add to include everything from the repo root directory. This addresses https://github.com/microsoft/web-build-tools/issues/669."
},
{
"comment": "Add support for NPM package aliases (i.e. dependency versions such as \"npm:example@^1.2.3\")"
},
{
"comment": "Fix an issue with rush change that occurs when rush.json isn't in the repository root."
}
]
}
},
{
"version": "5.11.4",
"tag": "@microsoft/rush_v5.11.4",
"date": "Fri, 23 Aug 2019 03:31:52 GMT",
"comments": {
"none": [
{
"comment": "Some optimizations for --to, --from, and cyclic dependency detection for repos with large numbers of projects."
},
{
"comment": "Ensure install-run-rushx script is updated during \"rush update\""
}
]
}
},
{
"version": "5.11.3",
"tag": "@microsoft/rush_v5.11.3",
"date": "Wed, 21 Aug 2019 22:13:26 GMT",
"comments": {