-
Notifications
You must be signed in to change notification settings - Fork 604
/
CHANGELOG.json
7262 lines (7262 loc) · 241 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.147.0",
"tag": "@microsoft/rush_v5.147.0",
"date": "Thu, 12 Dec 2024 01:37:25 GMT",
"comments": {
"none": [
{
"comment": "Add a new experiment flag `enableSubpathScan` that, when invoking phased script commands with project selection parameters, such as `--to` or `--from`, only hashes files that are needed to compute the cache ids for the selected projects."
}
]
}
},
{
"version": "5.146.0",
"tag": "@microsoft/rush_v5.146.0",
"date": "Tue, 10 Dec 2024 21:23:18 GMT",
"comments": {
"none": [
{
"comment": "Support fallback syntax in `.npmrc` files if the package manager is PNPM. See https://pnpm.io/npmrc"
},
{
"comment": "Add an `.isPnpm` property to `RushConfiguration` that is set to true if the package manager for the Rush repo is PNPM."
},
{
"comment": "Support pnpm lockfile v9, which is used by default starting in pnpm v9."
}
]
}
},
{
"version": "5.145.0",
"tag": "@microsoft/rush_v5.145.0",
"date": "Tue, 10 Dec 2024 05:14:11 GMT",
"comments": {
"none": [
{
"comment": "Upgrade `@azure/identity` and `@azure/storage-blob`."
},
{
"comment": "Add support for Node 22."
},
{
"comment": "Remove the dependency on node-fetch."
}
]
}
},
{
"version": "5.144.1",
"tag": "@microsoft/rush_v5.144.1",
"date": "Mon, 09 Dec 2024 20:32:01 GMT",
"comments": {
"none": [
{
"comment": "Bump `jsonpath-plus` to `~10.2.0`."
}
]
}
},
{
"version": "5.144.0",
"tag": "@microsoft/rush_v5.144.0",
"date": "Wed, 04 Dec 2024 19:32:23 GMT",
"comments": {
"none": [
{
"comment": "Remove the `node-fetch` dependency from `@rushstack/rush-http-build-cache-plugin`."
}
]
}
},
{
"version": "5.143.0",
"tag": "@microsoft/rush_v5.143.0",
"date": "Wed, 04 Dec 2024 03:07:08 GMT",
"comments": {
"none": [
{
"comment": "Remove the `node-fetch` dependency from @rushstack/rush-amazon-s3-build-cache-plugin."
},
{
"comment": "(BREAKING API CHANGE) Remove the exported `WebClient` API from @rushstack/rush-amazon-s3-build-cache-plugin."
}
]
}
},
{
"version": "5.142.0",
"tag": "@microsoft/rush_v5.142.0",
"date": "Tue, 03 Dec 2024 23:42:22 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where the ability to skip `rush install` may be incorrectly calculated when using the variants feature."
},
{
"comment": "Add support for an `\"extends\"` property in the `common/config/rush/pnpm-config.json` and `common/config/subspace/*/pnpm-config.json` files."
},
{
"comment": "Add warning when the `globalIgnoredOptionalDependencies` property is specified in `common/config/rush/pnpm-config.json` and the repo is configured to use pnpm <9.0.0."
}
]
}
},
{
"version": "5.141.4",
"tag": "@microsoft/rush_v5.141.4",
"date": "Mon, 02 Dec 2024 20:40:41 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where Rush sometimes incorrectly reported \"fatal: could not open 'packages/xxx/.rush/temp/shrinkwrap-deps.json' for reading: No such file or directory\" when using subspaces"
}
]
}
},
{
"version": "5.141.3",
"tag": "@microsoft/rush_v5.141.3",
"date": "Wed, 27 Nov 2024 07:16:50 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where Rush sometimes incorrectly reported \"The overrides settings doesn't match the current shrinkwrap\" when using subspaces"
},
{
"comment": "Fix an issue where Rush sometimes incorrectly reported \"The package extension hash doesn't match the current shrinkwrap.\" when using subspaces"
}
]
}
},
{
"version": "5.141.2",
"tag": "@microsoft/rush_v5.141.2",
"date": "Wed, 27 Nov 2024 03:27:26 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where filtered installs neglected to install dependencies from other subspaces"
}
]
}
},
{
"version": "5.141.1",
"tag": "@microsoft/rush_v5.141.1",
"date": "Wed, 20 Nov 2024 00:24:34 GMT",
"comments": {
"none": [
{
"comment": "Update schema for build-cache.json to include recent updates to the @rushstack/rush-azure-storage-build-cache-plugin."
}
]
}
},
{
"version": "5.141.0",
"tag": "@microsoft/rush_v5.141.0",
"date": "Tue, 19 Nov 2024 06:38:33 GMT",
"comments": {
"none": [
{
"comment": "Adds two new properties to the configuration for `rush-azure-storage-build-cache-plugin`: `loginFlow` selects the flow to use for interactive authentication to Entra ID, and `readRequiresAuthentication` specifies that a SAS token is required for read and therefore expired authentication is always fatal."
},
{
"comment": "Adds a new `wasExecutedOnThisMachine` property to operation telemetry events, to simplify reporting about cobuilt operations."
},
{
"comment": "Fix an issue where empty error logs were created for operations that did not write to standard error."
},
{
"comment": "Fix an issue where incremental building (with LegacySkipPlugin) would not work when no-op operations were present in the process"
},
{
"comment": "Fix lack of \"local-only\" option for cacheProvider in build-cache.schema.json"
},
{
"comment": "Fix an issue where if an Operation wrote all logs to stdout, then exited with a non-zero exit code, only the non-zero exit code would show up in the summary."
}
]
}
},
{
"version": "5.140.1",
"tag": "@microsoft/rush_v5.140.1",
"date": "Wed, 30 Oct 2024 21:50:51 GMT",
"comments": {
"none": [
{
"comment": "Update the `jsonpath-plus` indirect dependency to mitigate CVE-2024-21534."
}
]
}
},
{
"version": "5.140.0",
"tag": "@microsoft/rush_v5.140.0",
"date": "Tue, 22 Oct 2024 23:59:54 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue when using `rush deploy` where the `node_modules/.bin` folder symlinks were not created for deployed packages when using the \"default\" link creation mode"
},
{
"comment": "Add support for the `globalIgnoredOptionalDependencies` field in the `common/config/rush/pnpm-config.json` file to allow specifying optional dependencies that should be ignored by PNPM"
}
]
}
},
{
"version": "5.139.0",
"tag": "@microsoft/rush_v5.139.0",
"date": "Thu, 17 Oct 2024 20:37:39 GMT",
"comments": {
"none": [
{
"comment": "Allow rush plugins to extend build cache entries by writing additional files to the metadata folder. Expose the metadata folder path to plugins."
},
{
"comment": "[CACHE BREAK] Alter the computation of build cache IDs to depend on the graph of operations in the build and therefore account for multiple phases, rather than only the declared dependencies. Ensure that `dependsOnEnvVars` and command line parameters that affect upstream phases impact the cache IDs of downstream operations."
},
{
"comment": "(BREAKING CHANGE) Replace use of `ProjectChangeAnalyzer` in phased command hooks with a new `InputsSnapshot` data structure that is completely synchronous and does not perform any disk operations. Perform all disk operations and state computation prior to executing the build graph."
},
{
"comment": "Add a new property `enabled` to `Operation` that when set to false, will cause the execution engine to immediately return `OperationStatus.Skipped` instead of invoking the runner. Use this property to disable operations that are not intended to be executed in the current pass, e.g. those that did not contain changes in the most recent watch iteration, or those excluded by `--only`."
},
{
"comment": "Add an optional property `cacheHashSalt` to `build-cache.json` to allow repository maintainers to globally force a hash change in build cache entries."
}
]
}
},
{
"version": "5.138.0",
"tag": "@microsoft/rush_v5.138.0",
"date": "Thu, 03 Oct 2024 22:31:07 GMT",
"comments": {
"none": [
{
"comment": "Changes the behavior of phased commands in watch mode to, when running a phase `_phase:<name>` in all iterations after the first, prefer a script entry named `_phase:<name>:incremental` if such a script exists. The build cache will expect the outputs from the corresponding `_phase:<name>` script (with otherwise the same inputs) to be equivalent when looking for a cache hit."
}
]
}
},
{
"version": "5.137.0",
"tag": "@microsoft/rush_v5.137.0",
"date": "Thu, 03 Oct 2024 19:46:40 GMT",
"comments": {
"patch": [
{
"comment": "Expose `getChangesByProject` to allow classes that extend ProjectChangeAnalyzer to override file change analysis"
}
]
}
},
{
"version": "5.136.1",
"tag": "@microsoft/rush_v5.136.1",
"date": "Thu, 26 Sep 2024 22:59:11 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where the `--variant` parameter was missing from a phased command when the command's `alwaysInstall` property was set to `true`."
}
]
}
},
{
"version": "5.136.0",
"tag": "@microsoft/rush_v5.136.0",
"date": "Thu, 26 Sep 2024 21:48:00 GMT",
"comments": {
"none": [
{
"comment": "Bring back the Variants feature that was removed in https://github.com/microsoft/rushstack/pull/4538."
},
{
"comment": "Bump express dependency to 4.20.0"
}
]
}
},
{
"version": "5.135.0",
"tag": "@microsoft/rush_v5.135.0",
"date": "Fri, 20 Sep 2024 20:23:40 GMT",
"comments": {
"none": [
{
"comment": "Fix a bug that caused rush-resolver-cache-plugin to crash on Windows."
},
{
"comment": "Make individual Rush log files available via the rush-serve-plugin server at the relative URL specified by \"logServePath\" option. Annotate operations sent over the WebSocket with the URLs of their log files."
},
{
"comment": "Adds a new experiment 'allowCobuildWithoutCache' for cobuilds to allow uncacheable operations to benefit from cobuild orchestration without using the build cache."
},
{
"comment": "Deprecate the `sharding.shardOperationSettings` property in the project `config/rush-project.json` in favor of an `operationSettings` entry for an operation with a suffix of `:shard`."
}
]
}
},
{
"version": "5.134.0",
"tag": "@microsoft/rush_v5.134.0",
"date": "Fri, 13 Sep 2024 01:02:46 GMT",
"comments": {
"none": [
{
"comment": "Always update shrinkwrap when `globalPackageExtensions` in `common/config/rush/pnpm-config.json` has been changed."
},
{
"comment": "Pass the initialized credentials cache to `AzureAuthenticationBase._getCredentialFromTokenAsync` in `@rushstack/rush-azure-storage-build-cache-plugin`."
},
{
"comment": "Support the `rush-pnpm patch-remove` command."
}
]
}
},
{
"version": "5.133.4",
"tag": "@microsoft/rush_v5.133.4",
"date": "Sat, 07 Sep 2024 00:18:08 GMT",
"comments": {
"none": [
{
"comment": "Mark `AzureAuthenticationBase._credentialCacheId` as protected in `@rushstack/rush-azure-storage-build-cache-plugin`."
}
]
}
},
{
"version": "5.133.3",
"tag": "@microsoft/rush_v5.133.3",
"date": "Thu, 29 Aug 2024 22:49:36 GMT",
"comments": {
"none": [
{
"comment": "Fix Windows compatibility for `@rushstack/rush-resolver-cache-plugin`."
}
]
}
},
{
"version": "5.133.2",
"tag": "@microsoft/rush_v5.133.2",
"date": "Wed, 28 Aug 2024 20:46:32 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where running `rush install --resolution-only` followed by `rush install` would not actually install modules."
}
]
}
},
{
"version": "5.133.1",
"tag": "@microsoft/rush_v5.133.1",
"date": "Wed, 28 Aug 2024 18:19:55 GMT",
"comments": {
"none": [
{
"comment": "In rush-resolver-cache-plugin, include the base path in the resolver cache file."
},
{
"comment": "Support `bundledDependencies` in rush-resolver-cache-plugin."
}
]
}
},
{
"version": "5.133.0",
"tag": "@microsoft/rush_v5.133.0",
"date": "Fri, 23 Aug 2024 00:40:08 GMT",
"comments": {
"none": [
{
"comment": "Always update shrinkwrap when globalOverrides has been changed"
},
{
"comment": "Add `afterInstall` plugin hook, which runs after any install finishes."
},
{
"comment": "Add rush.json option \"suppressRushIsPublicVersionCheck\" to allow suppressing hardcoded calls to the npmjs.org registry."
}
]
}
},
{
"version": "5.132.0",
"tag": "@microsoft/rush_v5.132.0",
"date": "Wed, 21 Aug 2024 16:25:07 GMT",
"comments": {
"none": [
{
"comment": "Add a new `rush install-autoinstaller` command that ensures that the specified autoinstaller is installed."
},
{
"comment": "Emit an error if a `workspace:` specifier is used in a dependency that is listed in `decoupledLocalDependencies`."
},
{
"comment": "Add support for `--resolution-only` to `rush install` to enforce strict peer dependency resolution."
}
]
}
},
{
"version": "5.131.5",
"tag": "@microsoft/rush_v5.131.5",
"date": "Mon, 19 Aug 2024 20:03:03 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where PreferredVersions are ignored when a project contains an overlapping dependency entry (https://github.com/microsoft/rushstack/issues/3205)"
}
]
}
},
{
"version": "5.131.4",
"tag": "@microsoft/rush_v5.131.4",
"date": "Sun, 11 Aug 2024 05:02:05 GMT",
"comments": {
"none": [
{
"comment": "Revert a breaking change in Rush 5.131.3 where pnpm patches were moved from `common/pnpm-patches` to `common/config/rush/pnpm-patches`."
}
]
}
},
{
"version": "5.131.3",
"tag": "@microsoft/rush_v5.131.3",
"date": "Sat, 10 Aug 2024 02:27:14 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where `rush-pnpm patch-commit` would not correctly resolve patch files when the subspaces feature is enabled."
}
]
}
},
{
"version": "5.131.2",
"tag": "@microsoft/rush_v5.131.2",
"date": "Thu, 08 Aug 2024 23:38:18 GMT",
"comments": {
"none": [
{
"comment": "Include a missing dependency in `@rushstack/rush-sdk`."
}
]
}
},
{
"version": "5.131.1",
"tag": "@microsoft/rush_v5.131.1",
"date": "Thu, 08 Aug 2024 22:08:41 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where rush-sdk can't be bundled by a consuming package."
},
{
"comment": "Extract LookupByPath to @rushstack/lookup-by-path and load it from there."
}
]
}
},
{
"version": "5.131.0",
"tag": "@microsoft/rush_v5.131.0",
"date": "Fri, 02 Aug 2024 17:26:59 GMT",
"comments": {
"none": [
{
"comment": "Improve Rush alerts with a new \"rush alert\" command and snooze feature"
}
]
}
},
{
"version": "5.130.3",
"tag": "@microsoft/rush_v5.130.3",
"date": "Wed, 31 Jul 2024 23:30:13 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where Rush does not detect an outdated lockfile if the `dependenciesMeta` `package.json` field is edited."
},
{
"comment": "Include CHANGELOG.md in published releases again"
},
{
"comment": "Fix a bug that caused the build cache to close its terminal writer before execution on error."
}
]
}
},
{
"version": "5.130.2",
"tag": "@microsoft/rush_v5.130.2",
"date": "Fri, 19 Jul 2024 03:41:44 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where `rush-pnpm patch-commit` did not work correctly when subspaces are enabled."
}
]
}
},
{
"version": "5.130.1",
"tag": "@microsoft/rush_v5.130.1",
"date": "Wed, 17 Jul 2024 07:37:13 GMT",
"comments": {
"none": [
{
"comment": "Fix a recent regression for `rush init`"
}
]
}
},
{
"version": "5.130.0",
"tag": "@microsoft/rush_v5.130.0",
"date": "Wed, 17 Jul 2024 06:55:27 GMT",
"comments": {
"none": [
{
"comment": "(EXPERIMENTAL) Initial implementation of Rush alerts feature"
},
{
"comment": "Adjusts how cobuilt operations are added and requeued to the operation graph. Removes the 'RemoteExecuting' status."
}
]
}
},
{
"version": "5.129.7",
"tag": "@microsoft/rush_v5.129.7",
"date": "Tue, 16 Jul 2024 04:16:56 GMT",
"comments": {
"none": [
{
"comment": "Upgrade pnpm-sync-lib to fix an edge case when handling node_modules folder"
},
{
"comment": "Don't interrupt the installation process if the user hasn't enabled the inject dependencies feature."
},
{
"comment": "Improve `@rushtack/rush-sdk` and make it reuse `@microsoft/rush-lib` from rush global folder"
},
{
"comment": "Remove the trailing slash in the `.DS_Store/` line in the `.gitignore` file generated by `rush init`. `.DS_Store` is a file, not a folder."
},
{
"comment": "Support deep references to internal Apis"
},
{
"comment": "Fix an issue where `rush add` would ignore the `ensureConsistentVersions` option if that option was set in `rush.json` instead of in `common/config/rush/common-versions.json`."
},
{
"comment": "Fix an issue where running `rush add` in a project can generate a `package.json` file that uses JSON5 syntax. Package managers expect strict JSON."
},
{
"comment": "fix spelling of \"committing\" in rush.json init template and schema"
}
]
}
},
{
"version": "5.129.6",
"tag": "@microsoft/rush_v5.129.6",
"date": "Thu, 27 Jun 2024 00:44:32 GMT",
"comments": {
"none": [
{
"comment": "Fix an edge case for workspace peer dependencies when calculating packageJsonInjectedDependenciesHash to improve its accuracy "
},
{
"comment": "Update a URL in the `.pnpmfile.cjs` generated by `rush init`."
}
]
}
},
{
"version": "5.129.5",
"tag": "@microsoft/rush_v5.129.5",
"date": "Tue, 25 Jun 2024 20:13:29 GMT",
"comments": {
"none": [
{
"comment": "Don't include package.json version field when calculating packageJsonInjectedDependenciesHash"
}
]
}
},
{
"version": "5.129.4",
"tag": "@microsoft/rush_v5.129.4",
"date": "Mon, 24 Jun 2024 23:49:10 GMT",
"comments": {
"none": [
{
"comment": "Normalize the file permissions (644) for Rush plugin files that are committed to Git"
}
]
}
},
{
"version": "5.129.3",
"tag": "@microsoft/rush_v5.129.3",
"date": "Fri, 21 Jun 2024 00:15:54 GMT",
"comments": {
"none": [
{
"comment": "Fixed an issue where DependencyAnalyzer caches the same analysis for all subspaces"
}
]
}
},
{
"version": "5.129.2",
"tag": "@microsoft/rush_v5.129.2",
"date": "Wed, 19 Jun 2024 23:59:09 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where the `rush pnpm ...` command always terminates with an exit code of 1."
}
]
}
},
{
"version": "5.129.1",
"tag": "@microsoft/rush_v5.129.1",
"date": "Wed, 19 Jun 2024 04:20:03 GMT",
"comments": {
"none": [
{
"comment": "Add logic to remove outdated .pnpm-sync.json files during rush install or update"
}
]
}
},
{
"version": "5.129.0",
"tag": "@microsoft/rush_v5.129.0",
"date": "Wed, 19 Jun 2024 03:31:48 GMT",
"comments": {
"none": [
{
"comment": "Add a new `init-subspace` command to initialize a new subspace."
},
{
"comment": "Move the `ensureConsistentVersions` setting from `rush.json` to `common/config/rush/common-versions.json`, or to `common/config/rush/<subspace>/common-versions.json` if subspaces are enabled."
}
]
}
},
{
"version": "5.128.5",
"tag": "@microsoft/rush_v5.128.5",
"date": "Tue, 18 Jun 2024 04:02:54 GMT",
"comments": {
"none": [
{
"comment": "Fix a key collision for cobuild clustering for operations that share the same phase name."
}
]
}
},
{
"version": "5.128.4",
"tag": "@microsoft/rush_v5.128.4",
"date": "Mon, 17 Jun 2024 23:22:49 GMT",
"comments": {
"none": [
{
"comment": "Bump the `@azure/identity` package to `~4.2.1` to mitigate GHSA-m5vv-6r4h-3vj9."
}
]
}
},
{
"version": "5.128.3",
"tag": "@microsoft/rush_v5.128.3",
"date": "Mon, 17 Jun 2024 20:46:21 GMT",
"comments": {
"none": [
{
"comment": "Fixed an issue where the --make-consistent flag would affect projects outside the current subspace."
}
]
}
},
{
"version": "5.128.2",
"tag": "@microsoft/rush_v5.128.2",
"date": "Mon, 17 Jun 2024 17:08:00 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where rush-pnpm patch is not working for the subspace scenario"
},
{
"comment": "Fix an issue where rush update can not detect package.json changes in other subspaces for the injected installation case"
}
]
}
},
{
"version": "5.128.1",
"tag": "@microsoft/rush_v5.128.1",
"date": "Wed, 12 Jun 2024 20:07:44 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where running `rush install` in a subspace with only a `--from` selector is treated as selecting all projects."
},
{
"comment": "Fix an issue where not published packages are not correctly identified as not published when querying a package feed under certain versions of NPM."
},
{
"comment": "Fix an issue where selection syntax (like `--to` or `--from`) misses project dependencies declared using workspace alias syntax (i.e. - `workspace:[email protected]`)."
},
{
"comment": "Fix an issue where an error is thrown if a Git email address isn't configured and email validation isn't configured in `rush.json` via `allowedEmailRegExps`."
},
{
"comment": "Display the name of the subspace when an error is emitted because a dependency hash uses the SHA1 algorithm and the \"disallowInsecureSha1\" option is enabled."
}
]
}
},
{
"version": "5.128.0",
"tag": "@microsoft/rush_v5.128.0",
"date": "Fri, 07 Jun 2024 22:59:12 GMT",
"comments": {
"none": [
{
"comment": "Graduate the `phasedCommands` experiment to a standard feature."
},
{
"comment": "Improve `rush init` template for `.gitignore`"
},
{
"comment": "Remove an unnecessary condition in the logic for skipping operations when build cache is disabled."
}
]
}
},
{
"version": "5.127.1",
"tag": "@microsoft/rush_v5.127.1",
"date": "Thu, 06 Jun 2024 03:05:21 GMT",
"comments": {
"none": [
{
"comment": "Remove the second instance of the project name from the project operation filenames in `<projectFolder>/rush-logs`. This restores the log filenames to their format before Rush 5.125.0."
}
]
}
},
{
"version": "5.127.0",
"tag": "@microsoft/rush_v5.127.0",
"date": "Tue, 04 Jun 2024 00:44:18 GMT",
"comments": {
"none": [
{
"comment": "Fixes build cache no-op and sharded operation clustering."
},
{
"comment": "Updated common-veresions.json schema with ensureConsistentVersions property"
}
]
}
},
{
"version": "5.126.0",
"tag": "@microsoft/rush_v5.126.0",
"date": "Mon, 03 Jun 2024 02:49:05 GMT",
"comments": {
"none": [
{
"comment": "Fixes a string schema validation warning message when running `rush deploy`."
},
{
"comment": "Update the functionality that runs external lifecycle processes to be async."
},
{
"comment": "Move logs into the project `rush-logs` folder regardless of whether or not the `\"phasedCommands\"` experiment is enabled."
},
{
"comment": "Update the `nodeSupportedVersionRange` in the `rush init` template to the LTS and current Node versions."
},
{
"comment": "Update the `pnpmVersion` in the `rush init` template to the latest version of pnpm 8."
},
{
"comment": "Update the `.gitignore` in the `rush init` template to include some common toolchain output files and folders."
},
{
"comment": "Include missing `type` modifiers on type-only exports."
}
]
}
},
{
"version": "5.125.1",
"tag": "@microsoft/rush_v5.125.1",
"date": "Wed, 29 May 2024 05:39:54 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where if `missingScriptBehavior` is set to `\"error\"` and a script is present and empty, an error would be thrown."
}
]
}
},
{
"version": "5.125.0",
"tag": "@microsoft/rush_v5.125.0",
"date": "Sat, 25 May 2024 05:12:20 GMT",
"comments": {
"none": [
{
"comment": "Fixes a bug where no-op operations were treated as having build cache disabled."
},
{
"comment": "Adds support for sharding operations during task execution."
},
{
"comment": "Fix an issue where warnings and errors were not shown in the build summary for all cobuild agents."
},
{
"comment": "Add a `rush check --subspace` parameter to specify which subspace to analyze"
},
{
"comment": "Rename the subspace level lockfile from `.pnpmfile-subspace.cjs` to `.pnpmfile.cjs`. This is a breaking change for the experimental feature."
}
]
}
},
{
"version": "5.124.7",
"tag": "@microsoft/rush_v5.124.7",
"date": "Thu, 23 May 2024 02:27:13 GMT",
"comments": {
"none": [
{
"comment": "Improve the `usePnpmSyncForInjectedDependencies` experiment to also include any dependency whose lockfile entry has the `file:` protocol, unless it is a tarball reference"
},
{
"comment": "Fix an issue where the build cache analysis was incorrect in rare situations due to a race condition (GitHub #4711)"
}
]
}
},
{
"version": "5.124.6",
"tag": "@microsoft/rush_v5.124.6",
"date": "Thu, 16 May 2024 01:12:22 GMT",
"comments": {
"none": [
{
"comment": "Fix an edge case for pnpm-sync when the .pnpm folder is absent but still a valid installation."
}
]
}
},
{
"version": "5.124.5",
"tag": "@microsoft/rush_v5.124.5",
"date": "Wed, 15 May 2024 23:43:15 GMT",
"comments": {
"none": [
{
"comment": "Fix count of completed operations when silent operations are blocked. Add explicit message for child processes terminated by signals. Ensure that errors show up in summarized view."
},
{
"comment": "Ensure that errors thrown in afterExecuteOperation show up in the summary at the end of the build."
}
]
}
},
{
"version": "5.124.4",
"tag": "@microsoft/rush_v5.124.4",
"date": "Wed, 15 May 2024 03:05:57 GMT",
"comments": {
"none": [
{
"comment": "Improve the detection of PNPM lockfile versions."
},
{
"comment": "Fix an issue where the `--subspace` CLI parameter would install for all subspaces in a monorepo when passed to the install or update action"
}
]
}
},
{
"version": "5.124.3",
"tag": "@microsoft/rush_v5.124.3",
"date": "Wed, 15 May 2024 01:18:25 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where `rush install` and `rush update` will fail with an `ENAMETOOLONG` error on Windows in repos with a large number of projects."
},
{
"comment": "Fix an issue where installing multiple subspaces consecutively can cause unexpected cross-contamination between pnpmfiles."
}
],
"patch": [
{
"comment": "Ensure async telemetry tasks are flushed by error reporter"
}
]
}
},
{
"version": "5.124.2",
"tag": "@microsoft/rush_v5.124.2",
"date": "Fri, 10 May 2024 06:35:26 GMT",
"comments": {
"none": [
{
"comment": "Fix a recent regression where `rush deploy` did not correctly apply the `additionalProjectsToInclude` setting (GitHub #4683)"
}
]
}
},
{
"version": "5.124.1",
"tag": "@microsoft/rush_v5.124.1",
"date": "Fri, 10 May 2024 05:33:51 GMT",
"comments": {
"none": [
{
"comment": "Fix an issue where the `disallowInsecureSha1` policy failed to parse certain lockfile entries"
},
{
"comment": "Fix some minor issues with the \"rush init\" template files"
},
{
"comment": "Report an error if subspacesFeatureEnabled=true without useWorkspaces=true"
},
{
"comment": "Fix an issue where operation weights were not respected."
}
]
}
},
{
"version": "5.124.0",
"tag": "@microsoft/rush_v5.124.0",
"date": "Wed, 08 May 2024 22:24:08 GMT",
"comments": {
"none": [
{
"comment": "Add a new setting `alwaysInjectDependenciesFromOtherSubspaces` in pnpm-config.json"
},
{
"comment": "Fix a issue where rush install/update can not detect pnpm-sync.json is out of date"
},
{
"comment": "Improve the error message when the pnpm-sync version is outdated"
},
{
"comment": "Fixes a bug where cobuilds would cause a GC error when waiting for long periods of time."
},
{
"comment": "Fix an issue where tab competions did not suggest parameter values."
}
]
}
},
{
"version": "5.123.1",
"tag": "@microsoft/rush_v5.123.1",
"date": "Tue, 07 May 2024 22:38:00 GMT",
"comments": {
"none": [
{
"comment": "Fix a recent regression where \"rush install\" would sometimes incorrectly determine whether to skip the install"
}
]
}