forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.json
5230 lines (5230 loc) · 172 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.100.1",
"tag": "@microsoft/rush_v5.100.1",
"date": "Wed, 14 Jun 2023 19:42:12 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where Rush would attempt to open a project's log file for writing twice."
},
{
"comment": "Fix an issue where arguments weren't passed to git hook scripts."
}
]
}
},
{
"version": "5.100.0",
"tag": "@microsoft/rush_v5.100.0",
"date": "Tue, 13 Jun 2023 01:49:21 GMT",
"comments": {
"none": [
{
"comment": "(BREAKING API CHANGE) Remove unused members of the `BumpType` API. See https://github.com/microsoft/rushstack/issues/1335 for details."
},
{
"comment": "Add `--peer` flag to `rush add` command to add peerDependencies"
},
{
"comment": "Add support for PNPM 8."
},
{
"comment": "Remove the dependency on `lodash`."
},
{
"comment": "Add functionality for the Amazon S3 Build Cache Plugin to read credentials from common AWS_* environment variables."
},
{
"comment": "Write cache logs to their own file(s)."
},
{
"comment": "Fix an issue where cache logging data was always written to stdout."
},
{
"comment": "Generate scripts in the Git hooks folder referring to the actual hook implementations in-place in the Rush `common/git-hooks/` folder instead of copying the scripts to the Git hooks folder."
},
{
"comment": "Bump webpack to v5.82.1"
}
]
}
},
{
"version": "5.99.0",
"tag": "@microsoft/rush_v5.99.0",
"date": "Fri, 02 Jun 2023 22:08:28 GMT",
"comments": {
"none": [
{
"comment": "Use a separate temrinal for logging cache subsystem"
},
{
"comment": "Expose beforeLog hook"
},
{
"comment": "Convert to multi-phase Heft"
},
{
"comment": "Use `JSON.parse` instead of `jju` to parse `package.json` files for faster performance."
}
]
}
},
{
"version": "5.98.0",
"tag": "@microsoft/rush_v5.98.0",
"date": "Sun, 21 May 2023 00:18:35 GMT",
"comments": {
"none": [
{
"comment": "Add a \"forbidPhantomResolvableNodeModuleFolders\" experiment that forbids node_modules folders in the repo root and in parent folders."
},
{
"comment": "Update the `RushSession.registerCloudBuildCacheProviderFactory` API to allow a cache provider's factory function to return a promise."
},
{
"comment": "Add built-in plugin rush-http-build-cache-plugin"
},
{
"comment": "Fix an issue where the last character in a project's path is ignored when determining which files contribute to the project's cache ID."
},
{
"comment": "Fix a performance bug in `rush version` when using `workspace:` protocol."
},
{
"comment": "(BREAKING API CHANGE) Add a property `missingScriptBehavior` to phase definitions that can be used to silence missing scripts to reduce log noise. This replaces the `ignoreMissingScript` property visible to the plugin API, although the `ignoreMissingScript` property is still supported in the `common/config/rush/command-line.json` config file for backwards compatibility."
},
{
"comment": "Flatten watch status into a single line with TTY rewrites."
}
]
}
},
{
"version": "5.97.1",
"tag": "@microsoft/rush_v5.97.1",
"date": "Tue, 18 Apr 2023 16:39:03 GMT",
"comments": {
"none": [
{
"comment": "`rush version` will now respect the `ensureConsistentVersions` field in `rush.json`"
},
{
"comment": "Bump webpack to 5.78.0"
},
{
"comment": "Fix file watching on Windows in the presence of Git's fsmonitor by not watching the .git folder."
}
]
}
},
{
"version": "5.97.0",
"tag": "@microsoft/rush_v5.97.0",
"date": "Wed, 05 Apr 2023 21:46:37 GMT",
"comments": {
"none": [
{
"comment": "Convert the `EnvironmentVariableNames` from an enum to a const so that its values can be referred to by type."
}
]
}
},
{
"version": "5.96.0",
"tag": "@microsoft/rush_v5.96.0",
"date": "Fri, 31 Mar 2023 00:27:51 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where rush-sdk sometimes failed to load if the globally installed Rush version was older than rushVersion in rush.json (GitHub #4039)"
},
{
"comment": "Modify the scheduling behavior of phased commands to schedule only the expressly enumerated phases in all selected projects, adding additional phases only where needed to satisfy dependencies."
}
]
}
},
{
"version": "5.95.0",
"tag": "@microsoft/rush_v5.95.0",
"date": "Fri, 24 Mar 2023 08:53:43 GMT",
"comments": {
"none": [
{
"comment": "Add experiment `printEventHooksOutputToConsole` to allow printing outputs from event hooks to the console."
}
]
}
},
{
"version": "5.94.1",
"tag": "@microsoft/rush_v5.94.1",
"date": "Wed, 22 Mar 2023 20:48:48 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where rush plugin autoinstallers would fail to install because the Rush global folder had not yet been initialized."
},
{
"comment": "Fix an issue with `rush update-autoinstaller` where it may fail with an `Cannot install with \"frozen-lockfile\" because pnpm-lock.yaml is not up to date with package.json` error."
}
]
}
},
{
"version": "5.94.0",
"tag": "@microsoft/rush_v5.94.0",
"date": "Mon, 20 Mar 2023 20:14:36 GMT",
"comments": {
"none": [
{
"comment": "Update the `nodeSupportedVersionRange` in `rush.json` generated by `rush init` to remove Node 12 as it is no longer supported and include Node 18 as it is the current LTS version."
},
{
"comment": "Extend LookupByPath to also be able to obtain the index of the remainder of the matched path."
},
{
"comment": "Include some more hooks to allow plugins to monitor phased command execution in real-time."
},
{
"comment": "Fix an issue where running `rush update-autoinstaller` without having run `rush install` or `rush update` first would cause a crash with an unhelpful error message."
}
]
}
},
{
"version": "5.93.2",
"tag": "@microsoft/rush_v5.93.2",
"date": "Mon, 06 Mar 2023 20:18:01 GMT",
"comments": {
"none": [
{
"comment": "Do not delete the local pnpm store after all install attempts has failed. `rush purge` will still delete a local store."
}
]
}
},
{
"version": "5.93.1",
"tag": "@microsoft/rush_v5.93.1",
"date": "Fri, 17 Feb 2023 14:46:59 GMT",
"comments": {
"none": [
{
"comment": "Fix a regression where \"rush-sdk\" failed to load older versions of \"rush-lib\" (GitHub #3979)"
}
]
}
},
{
"version": "5.93.0",
"tag": "@microsoft/rush_v5.93.0",
"date": "Fri, 17 Feb 2023 02:14:43 GMT",
"comments": {
"none": [
{
"comment": "Add code path to @rushstack/rush-sdk for inheriting @microsoft/rush-lib location from a parent process via the RUSH_LIB_PATH environment variable."
}
]
}
},
{
"version": "5.92.0",
"tag": "@microsoft/rush_v5.92.0",
"date": "Sun, 12 Feb 2023 02:50:42 GMT",
"comments": {
"none": [
{
"comment": "Enable @rushstack/rush-sdk to import internal APIs from the proxied @microsoft/rush-lib instance (GitHub #3895)"
}
]
}
},
{
"version": "5.91.0",
"tag": "@microsoft/rush_v5.91.0",
"date": "Sat, 11 Feb 2023 02:04:14 GMT",
"comments": {
"none": [
{
"comment": "Remove runtime dependency on @rushstack/rush-sdk from the AzureStorageAuthentication class in @rushstack/rush-azure-storage-build-cache-plugin so that it can be used in isolation."
},
{
"comment": "Include operation log files in the cache, and restore them during cache hits."
}
]
}
},
{
"version": "5.90.2",
"tag": "@microsoft/rush_v5.90.2",
"date": "Wed, 08 Feb 2023 20:27:06 GMT",
"comments": {}
},
{
"version": "5.90.1",
"tag": "@microsoft/rush_v5.90.1",
"date": "Wed, 08 Feb 2023 19:58:35 GMT",
"comments": {
"none": [
{
"comment": "Disable unused depcheck feature for upgrade-interactive."
},
{
"comment": "Fix an issue where deleting the `common/temp/node_modules` folder encounters an EPERM error and aborts."
}
],
"patch": [
{
"comment": "Fix determination of the root of the current Git worktree when in a multi-worktree setup."
}
]
}
},
{
"version": "5.90.0",
"tag": "@microsoft/rush_v5.90.0",
"date": "Sun, 29 Jan 2023 20:10:17 GMT",
"comments": {
"none": [
{
"comment": "Allow \"shellCommand\" to be optionally specified for bulk custom commands, so that a centralized script can be used instead of invoking package.json scripts (GitHub #3819)"
}
]
}
},
{
"version": "5.89.1",
"tag": "@microsoft/rush_v5.89.1",
"date": "Thu, 26 Jan 2023 02:55:30 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue with `rush add` where the approved packages files aren't updated."
},
{
"comment": "Revert generation of scripts in the Git hooks folder due to various git-related issues"
},
{
"comment": "Upgrade to webpack 5.75.0"
}
]
}
},
{
"version": "5.89.0",
"tag": "@microsoft/rush_v5.89.0",
"date": "Tue, 24 Jan 2023 22:30:06 GMT",
"comments": {
"none": [
{
"comment": "Fix linking error due to PNPM v7 local install path breaking change"
},
{
"comment": "Introduce \"dependsOnAdditionalFiles\" configuration option to operations in rush-project.json. This option allows to pass glob (minimatch) patterns pointing to files outside of .git repository. If provided, the hash values of these files will become part of the final hash when reading and writing from cache."
},
{
"comment": "Use getRepoStateAsync to optimize performance of calculating repository state."
},
{
"comment": "Generate scripts in the Git hooks folder referring to the actual hook implementations in-place in the Rush `common/git-hooks/` folder instead of copying the scripts to the Git hooks folder."
}
]
}
},
{
"version": "5.88.2",
"tag": "@microsoft/rush_v5.88.2",
"date": "Sun, 22 Jan 2023 04:18:44 GMT",
"comments": {
"none": [
{
"comment": "Fix a regression where the 'dist/scripts' folder name was named 'dist/undefined'"
}
]
}
},
{
"version": "5.88.1",
"tag": "@microsoft/rush_v5.88.1",
"date": "Wed, 18 Jan 2023 22:44:31 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where `create-scripts.js` does not exist during `rush deploy`."
},
{
"comment": "Add install-run-rush-pnpm.js script"
},
{
"comment": "Update JSZip to 3.8.0."
}
]
}
},
{
"version": "5.88.0",
"tag": "@microsoft/rush_v5.88.0",
"date": "Thu, 22 Dec 2022 20:11:58 GMT",
"comments": {
"none": [
{
"comment": "Improve the experience during a rush operation when the cached credentials have expired. Now, a warning is printed instead of an error being thrown and the operation halted."
},
{
"comment": "(BREAKING API CHANGE IN @rushstack/rush-azure-storage-build-cache-plugin) Change the signature of `AzureAuthenticationBase.tryGetCachedCredentialAsync` to optionally take an object describing the behavior when credentials have expired. The behavior of the function without an argument is unchanged."
}
]
}
},
{
"version": "5.87.0",
"tag": "@microsoft/rush_v5.87.0",
"date": "Fri, 16 Dec 2022 19:34:26 GMT",
"comments": {
"none": [
{
"comment": "Fix a typo in the artifactory.json template"
},
{
"comment": "Writing local build cache is more robust on a network drive."
},
{
"comment": "Document default value for the \"watchDebounceMs\" setting"
},
{
"comment": "Add \"nodeSupportedVersionInstructions\" property to rush.json, allowing maintainers to provide additional instructions if the user's node version is unsupported."
},
{
"comment": "(IMPORTANT) Fix a regression where the \"strictPeerDependencies\" setting wasn't applied for some versions of PNPM 7 due to unexpected changes of PNPM's default value (GitHub #3828)"
},
{
"comment": "Fix an issue where if the package manager is PNPM 6.1.0 or newer, and `pnpmStore` is set to `\"local\"`, then a global cache was still used."
},
{
"comment": "Write local telemetry for global script actions"
},
{
"comment": "Normalize all newlines in logging statements to LF. On Windows, some newlines were CRLF."
},
{
"comment": "Upgrade `npm-check` dependency from `~5.9.2` to `~6.0.1`"
},
{
"comment": "Work towards bundling the files of \"@rushstack/rush-lib\" (Details in GitHub #3837)"
}
]
}
},
{
"version": "5.86.0",
"tag": "@microsoft/rush_v5.86.0",
"date": "Tue, 29 Nov 2022 00:10:20 GMT",
"comments": {
"none": [
{
"comment": "Add new commands \"rush-pnpm patch\" and \"rush-pnpm patch-commit\" for patching NPM packages when using the PNPM package manager (GitHub #3554)"
}
]
}
},
{
"version": "5.85.1",
"tag": "@microsoft/rush_v5.85.1",
"date": "Fri, 25 Nov 2022 21:51:32 GMT",
"comments": {
"none": [
{
"comment": "Fix an intermittent issue when writing tar log files"
}
]
}
},
{
"version": "5.85.0",
"tag": "@microsoft/rush_v5.85.0",
"date": "Thu, 24 Nov 2022 03:57:19 GMT",
"comments": {
"none": [
{
"comment": "Add support for a `credentialMetadata` property in the CredentialCache."
},
{
"comment": "(BREAKING API CHANGE) Change the signature of `CredentialCache.setCacheEntry` to take the credential ID and an object describing the credential instead of a credential string and an expiration date. The second argument's type now matches the return value of `CredentialCache.tryGetCacheEntry`"
},
{
"comment": "(BREAKING API CHANGE) Change the return type of `AzureAuthenticationBase.tryGetCachedCredentialAsync` (and, therefore, `AzureStorageAuthentication.tryGetCachedCredentialAsync`) from `string | undefined` to `ICredentialCacheEntry | undefined` to include the credentialMetadata."
}
]
}
},
{
"version": "5.84.0",
"tag": "@microsoft/rush_v5.84.0",
"date": "Tue, 22 Nov 2022 23:24:56 GMT",
"comments": {
"none": [
{
"comment": "Add a \"dependsOnEnvVars\" configuration option to operations in rush-project.json. The variables specified in this option are included in the cache key hash calculation."
},
{
"comment": "The \"rush setup\" user prompts can now be customized."
},
{
"comment": "Make autoinstaller logging respect the `--quiet` parameter."
},
{
"comment": "Add project filtering to the upgrade-interactive UI prompt. Also increases the default page size for project lists in UI to 12."
},
{
"comment": "Add a feature (behind the \"cleanInstallAfterNpmrcChanges\" experiment) that will cause a clean install to be performed if the common/temp/.npmrc file has changed since the last install."
}
]
}
},
{
"version": "5.83.4",
"tag": "@microsoft/rush_v5.83.4",
"date": "Fri, 18 Nov 2022 04:02:43 GMT",
"comments": {
"none": [
{
"comment": "Change files and change logs can store custom fields."
}
],
"patch": [
{
"comment": "Fix performance regression from supporting git submodules"
}
]
}
},
{
"version": "5.83.3",
"tag": "@microsoft/rush_v5.83.3",
"date": "Tue, 15 Nov 2022 18:43:51 GMT",
"comments": {
"patch": [
{
"comment": "Fix an issue where Git submodules were not handled correctly by the build cache (GitHub #1711)"
}
]
}
},
{
"version": "5.83.2",
"tag": "@microsoft/rush_v5.83.2",
"date": "Mon, 14 Nov 2022 05:15:22 GMT",
"comments": {
"none": [
{
"comment": "Ensure autoinstaller lockfiles are not leftover after an error"
}
]
}
},
{
"version": "5.83.1",
"tag": "@microsoft/rush_v5.83.1",
"date": "Sat, 12 Nov 2022 04:40:57 GMT",
"comments": {
"none": [
{
"comment": "Update the \"rush init\" template for command-line.json to add usage examples for integer, integer list, string list, choice list parameter kinds"
}
]
}
},
{
"version": "5.83.0",
"tag": "@microsoft/rush_v5.83.0",
"date": "Fri, 11 Nov 2022 03:51:49 GMT",
"comments": {
"none": [
{
"comment": "Add credentialType option for rush setup command"
},
{
"comment": "Rush \"setup\" command works even if plugins cannot be installed"
},
{
"comment": "Add support for integer, integer list, string list, and choice list parameters in plugins."
},
{
"comment": "Introduce a `rush upgrade-interactive` action that provides an interactive way to upgrade outdated dependencies."
},
{
"comment": "Fix a regression from Rush 5.79.0 where \"rush init\" did not create the pnpm-config.json file automatically"
}
]
}
},
{
"version": "5.82.1",
"tag": "@microsoft/rush_v5.82.1",
"date": "Wed, 19 Oct 2022 23:44:02 GMT",
"comments": {}
},
{
"version": "5.82.0",
"tag": "@microsoft/rush_v5.82.0",
"date": "Mon, 17 Oct 2022 22:14:39 GMT",
"comments": {
"none": [
{
"comment": "Replace Travis with GitHub Actions in the `rush init` template.\""
},
{
"comment": "Handle case in ProjectWatcher where a project contains no git tracked files or status information is or was unavailable."
},
{
"comment": "Refactor @rushstack/rush-azure-storage-build-cache-plugin to expose an API for generating and caching Azure credentials for other workloads, in addition to Storage."
},
{
"comment": "Validate the change type in changefiles during publishing."
}
]
}
},
{
"version": "5.81.0",
"tag": "@microsoft/rush_v5.81.0",
"date": "Sat, 08 Oct 2022 02:30:30 GMT",
"comments": {
"none": [
{
"comment": "Add a `rush remove` command that removes one or more dependencies from a project."
},
{
"comment": "Support passing a lockfile to \"install-run.js\" and \"install-run-rush.js\" to ensure stable installation on CI."
},
{
"comment": "Add missing \"environmentVariables\" property to \"pnpm-config.json\" schema to restore feature parity with \"rush.json\" \"pnpmOptions\" field."
}
]
}
},
{
"version": "5.80.1",
"tag": "@microsoft/rush_v5.80.1",
"date": "Mon, 03 Oct 2022 23:11:35 GMT",
"comments": {
"none": [
{
"comment": "Add a more useful error message in cases when a merge base for `rush change` cannot be determined."
}
]
}
},
{
"version": "5.80.0",
"tag": "@microsoft/rush_v5.80.0",
"date": "Thu, 29 Sep 2022 07:13:24 GMT",
"comments": {
"none": [
{
"comment": "Include the operation duration in the telemetry data that was recorded during the non-cached run when a cache hit occurs."
},
{
"comment": "Fix an error message that always says to run \"rush update --purge\" even if the user only needs to run \"rush install --purge.\""
},
{
"comment": "Fix an issue where a \"Current PNPM store path does not match the last one used.\" error will erroneously get thrown on Windows with an unchanged path, but with a forward slash instead of a backslash."
},
{
"comment": "Remove fallback from tar binary to npm 'tar' package. The npm 'tar' package would sometimes produce invalid output if the cache entry was corrupt."
},
{
"comment": "Remove gender from the git config example in rush.json"
}
]
}
},
{
"version": "5.79.0",
"tag": "@microsoft/rush_v5.79.0",
"date": "Sat, 24 Sep 2022 17:37:03 GMT",
"comments": {
"minor": [
{
"comment": "Add a `common/config/pnpm-config.json`, which is used to specify fields like `overrides`, `packageExtensions`, and `neverBuiltDependencies` that would otherwise be placed in a PNPM workspace repo's root-level `package.json`'s `pnpm` field."
}
],
"none": [
{
"comment": "Add a `--commit` and `--commit-message` flag to `rush change` that commits the change files automatically."
}
]
}
},
{
"version": "5.78.1",
"tag": "@microsoft/rush_v5.78.1",
"date": "Fri, 23 Sep 2022 02:54:44 GMT",
"comments": {
"none": [
{
"comment": "Fix Git detection when the current working directory is unrelated to the Rush workspace."
},
{
"comment": "Fix an error that ocurred if an autoinstaller's \"node_modules\" folder was manually deleted (GitHub #2987)"
}
]
}
},
{
"version": "5.78.0",
"tag": "@microsoft/rush_v5.78.0",
"date": "Sat, 17 Sep 2022 00:56:37 GMT",
"comments": {
"none": [
{
"comment": "Add a \"beforeInstall\" hook to the plugin API, for plugins to examine the environment immediately before \"rush install\" or \"rush update\" invoke the package manager."
},
{
"comment": "Fix \"--parallelism XX%\" parsing to return a finite number of CPU cores."
},
{
"comment": "Update the \"rush init\" template to include .gitignore patterns for IntellJ IDEA"
},
{
"comment": "Upgrade the @azure/identity and @azure/storage-blob packages to eliminate a deprecation message during installation."
},
{
"comment": "Define an environment variable RUSH_PNPM_VERIFY_STORE_INTEGRITY that can be used to enable or disable PNPM's store integrity verification during installation for performance."
}
]
}
},
{
"version": "5.77.3",
"tag": "@microsoft/rush_v5.77.3",
"date": "Fri, 02 Sep 2022 17:49:09 GMT",
"comments": {}
},
{
"version": "5.77.2",
"tag": "@microsoft/rush_v5.77.2",
"date": "Wed, 31 Aug 2022 00:43:07 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where \"rush add\" sometimes did not work correctly if a project is nested under another project's folder"
}
]
}
},
{
"version": "5.77.1",
"tag": "@microsoft/rush_v5.77.1",
"date": "Tue, 30 Aug 2022 17:26:42 GMT",
"comments": {
"none": [
{
"comment": "Fixed an issue where \"rush add\" was not updating common-versions.json when using \"--make-consistent\""
}
]
}
},
{
"version": "5.77.0",
"tag": "@microsoft/rush_v5.77.0",
"date": "Mon, 29 Aug 2022 21:09:31 GMT",
"comments": {
"none": [
{
"comment": "Add machine architecture information, dependency graph information, and individual build times and statuses to the telemetry file."
},
{
"comment": "Add schema validation for change files."
},
{
"comment": "Fix a minor issue with the \"--rush-example-repo\" template"
},
{
"comment": "Update CLI docs for \"rush add\""
},
{
"comment": "Improve some config file documentation"
},
{
"comment": "Make the project tag name syntax more strict to avoid error-prone names such as \"tag:$PATH\" or \"tag://\""
},
{
"comment": "Add validation to ensure package.json files are strict JSON and the \"version\" field is strict SemVer"
},
{
"comment": "Add a new setting \"watchOptions.debounceMs\" in command-line.json"
}
]
}
},
{
"version": "5.76.1",
"tag": "@microsoft/rush_v5.76.1",
"date": "Mon, 08 Aug 2022 07:32:36 GMT",
"comments": {
"none": [
{
"comment": "Fix a recent regression where \"rush install\" would sometimes fail with \"Unknown option: 'ignore-compatibility-db'\""
}
]
}
},
{
"version": "5.76.0",
"tag": "@microsoft/rush_v5.76.0",
"date": "Sat, 06 Aug 2022 05:35:19 GMT",
"comments": {
"none": [
{
"comment": "Validate that if shouldPublish is set, private is not set"
},
{
"comment": "\"rush install/update\" should always set \"ignore-compatibility-db=true\" and print warning if the rush.json pnpmVersion specifies a version affected by this problem. "
},
{
"comment": "Reorder some initialization logic so that Rush's change analysis is not counted as part of the build time for the first project"
},
{
"comment": "(BREAKING API CHANGE) Rename cyclicDependencyProjects to decoupledLocalDependencies"
}
]
}
},
{
"version": "5.75.0",
"tag": "@microsoft/rush_v5.75.0",
"date": "Tue, 28 Jun 2022 03:31:01 GMT",
"comments": {
"none": [
{
"comment": "Disable build cache for operations with no corresponding operationSettings entry in rush-project.json, and provide a clear message about why."
},
{
"comment": "When the `projectName:normalize` token is used in a cache ID, remove the `@` character from the scope."
},
{
"comment": "Reduce default maxInstallAttempts to 1"
},
{
"comment": "Improve logging of file locations when using the Heft build tool"
}
]
}
},
{
"version": "5.74.0",
"tag": "@microsoft/rush_v5.74.0",
"date": "Fri, 10 Jun 2022 22:17:51 GMT",
"comments": {}
},
{
"version": "5.73.0",
"tag": "@microsoft/rush_v5.73.0",
"date": "Fri, 10 Jun 2022 21:54:49 GMT",
"comments": {}
},
{
"version": "5.72.0",
"tag": "@microsoft/rush_v5.72.0",
"date": "Fri, 10 Jun 2022 20:01:47 GMT",
"comments": {
"none": [
{
"comment": "Introduce a \"rush-pnpm\" shell command for invoking native PNPM commands in a Rush workspace"
}
]
}
},
{
"version": "5.71.0",
"tag": "@microsoft/rush_v5.71.0",
"date": "Fri, 27 May 2022 00:50:06 GMT",
"comments": {
"none": [
{
"comment": "Write local telemetry for all phased commands, including partial runs when running in watch mode."
},
{
"comment": "Export the list of workspace packages to the pnpmfile shim."
}
]
}
},
{
"version": "5.70.0",
"tag": "@microsoft/rush_v5.70.0",
"date": "Wed, 11 May 2022 22:21:40 GMT",
"comments": {
"none": [
{
"comment": "Add a new `afterExecuteOperations` hook to phased command execution. This hook is used for the console timeline view and the standard result summary."
}
]
}
},
{
"version": "5.69.0",
"tag": "@microsoft/rush_v5.69.0",
"date": "Tue, 10 May 2022 01:20:58 GMT",
"comments": {
"none": [
{
"comment": "Fix handling of erroneous undefined values when printing `rush list --detailed`"
},
{
"comment": "Update watcher to only schedule operations impacted by the detected change. A behavior difference will only be observed for repositories that define a phase with no dependencies."
},
{
"comment": "Fix handing of the `strictPeerDependencies` option when using PNPM >= 7.0.0."
},
{
"comment": "Update the `postRushInstall` hook to always run, and move its execution to after telemetry is written."
},
{
"comment": "(BREAKING CHANGE) Remove the \"xstitchPreferredVersions\" property from common-versions.json and the CommonVersionsConfiguration API."
},
{
"comment": "Correct a warning that is printed during \"rush change\" to only be concerned with unstaged changes."
},
{
"comment": "Include tags in the `rush list` output."
}
]
}
},
{
"version": "5.68.2",
"tag": "@microsoft/rush_v5.68.2",
"date": "Fri, 06 May 2022 18:54:55 GMT",
"comments": {
"none": [
{
"comment": "Provide ability for phased script commands to internally invoke \"rush install\" prior to execution."
}
]
}
},
{
"version": "5.68.1",
"tag": "@microsoft/rush_v5.68.1",
"date": "Tue, 03 May 2022 21:52:56 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where \"rush list --json\" prints non-json output in a repo that uses rush plugins with autoinstallers."
}
]
}
},
{
"version": "5.68.0",
"tag": "@microsoft/rush_v5.68.0",
"date": "Fri, 29 Apr 2022 05:22:05 GMT",
"comments": {
"none": [
{
"comment": "Disable legacy skip logic when build cache is enabled."
},
{
"comment": "Report status of projects with an empty script as \"did not define any work,\" instead of as \"from cache.\""
},
{
"comment": "Add a -- parameter to git command invocations that accept user input to prevent arbitrary arguments from being passed."
},
{
"comment": "Remove the @deprecated label from `RushConfigurationProject.packageJson`."
}
]
}
},
{
"version": "5.67.0",
"tag": "@microsoft/rush_v5.67.0",
"date": "Sat, 23 Apr 2022 02:13:20 GMT",
"comments": {
"none": [
{
"comment": "Upgrade \"tar\" dependency to eliminate spurious security vulnerability for \"minimist\" package"
},
{
"comment": "Remove requirement that custom parameters associated with a phased command must also be associated with one or more phases. This allows for custom parameters that will only be interpreted by plugins."
}
]
}
},
{
"version": "5.66.2",
"tag": "@microsoft/rush_v5.66.2",
"date": "Tue, 12 Apr 2022 02:58:47 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where running the \"install-run-rush\" script with the \"--help\" parameter won't install Rush."
}
]
}
},
{
"version": "5.66.1",
"tag": "@microsoft/rush_v5.66.1",
"date": "Tue, 12 Apr 2022 01:52:38 GMT",
"comments": {
"none": [
{
"comment": "Fix watch-mode phased commands when rush.json is not in the repository root. Fix watch-mode change detection on Linux."
}
]
}
},
{
"version": "5.66.0",
"tag": "@microsoft/rush_v5.66.0",
"date": "Sat, 09 Apr 2022 02:24:40 GMT",
"comments": {
"none": [
{
"comment": "(BREAKING CHANGE) Update references to the default branch to reference \"main\" instead of \"master\"."
}
]
}
},
{
"version": "5.65.1",
"tag": "@microsoft/rush_v5.65.1",
"date": "Fri, 08 Apr 2022 23:10:18 GMT",