@microsoft/rush 5.59.0-rc.0 → 5.59.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,1928 +1,1941 @@
1
- # Change Log - @microsoft/rush
2
-
3
- This log was last generated on Thu, 30 Dec 2021 02:48:39 GMT and should not be manually modified.
4
-
5
- ## 5.59.0-rc.0
6
- Thu, 30 Dec 2021 02:48:39 GMT
7
-
8
- ### Updates
9
-
10
- - Fix an issue with installing Git hooks that occurs when the rush.json folder isn't at the repo's root.
11
- - (BREAKING CHANGE) Remove the experimental command "rush write-build-cache", since it is no longer needed and would be incompatible with phased builds. If you need this command for some reason, please create a GitHub issue.
12
- - Add support for phased commands behind the multiPhaseCommands experiment.
13
-
14
- ## 5.58.0
15
- Thu, 16 Dec 2021 05:39:21 GMT
16
-
17
- ### Updates
18
-
19
- - Fix an issue where Rush's Git hooks were broken if another tool such as Husky had tampered with the `core.hooksPath` (GitHub #3004)
20
- - Provide a more useful error message if the git version is too old.
21
- - Allow "rush list" to be invoked while other rush processes are running in the same repo.
22
- - For project selection parameters such as "rush build --to git:REF", improve the diff analysis to detect which individual projects are impacted by a modification of the PNPM lockfile (GitHub #3050)
23
- - Allow multiple remote URLs to be specified in the rush.json in the new repository.urls field.
24
- - (BREAKING CHANGE) Replace the RushConfiguration repositoryUrl field with repositoryUrls to support multiple remote URLs specified in rush.json.
25
-
26
- ## 5.57.1
27
- Thu, 09 Dec 2021 00:24:47 GMT
28
-
29
- _Version update only_
30
-
31
- ## 5.57.0
32
- Fri, 03 Dec 2021 02:16:10 GMT
33
-
34
- ### Updates
35
-
36
- - Add support for the "filterLog" hook in common/config/rush/.pnpmfile.cjs
37
- - (EXPERIMENTAL) Ability to load third-party plugin packages that customize the behavior of Rush
38
- - Fix an issue where parameter values containing spaces are incorrectly passed to global scripts.
39
- - Parameters such as "--to" and "--from" now accept selector expressions: "version-policy:NAME" indicates the set of projects belonging to a publishing version policy. "git:REF" detects the set of projects that have been modified since the specified Git revision; for example, this allows a Rush command to process only the projects modified by a PR branch. (GitHub #2968)
40
- - Improved the change detection logic to work correctly when a second rush.json appears in a subfolder.
41
- - (EXPERIMENTAL) Add a new NPM package "@rushstack/rush-sdk" for use by Rush plugins
42
- - Stop deleting the pnpm-store after failed workspace installs. Usually a multiple failure is due to a network error or a package that does not exist in the registry, not an issue with the pnpm-store.
43
-
44
- ## 5.56.0
45
- Thu, 28 Oct 2021 23:49:31 GMT
46
-
47
- ### Updates
48
-
49
- - Add CI skipping to default version & changelog commits
50
- - Update suggested version of NPM
51
- - Fix update-autoinstaller with NPM
52
- - Streamline rushx output and add quiet flag.
53
- - Include support for adding multiple packages with the "rush add" command.
54
- - Update the package.json repository field to include the directory property.
55
- - Fix the error message printed when `--interactive` is passed to `rush update-cloud-credentials` and the cloud cache provider is Amazon S3.
56
- - Mark Node 16 as the current latest LTS version.
57
- - support `--debug-package-manager` install options for yarn
58
-
59
- ## 5.55.1
60
- Tue, 12 Oct 2021 22:26:25 GMT
61
-
62
- ### Updates
63
-
64
- - Fix an issue where a version field isn't parsed correctly when using NPM version 7 and newer.
65
-
66
- ## 5.55.0
67
- Thu, 07 Oct 2021 23:44:52 GMT
68
-
69
- ### Updates
70
-
71
- - Fix typo when project dependencies do not match the current shrinkwrap
72
- - Use ITerminal in the rush-lib API instead of Terminal to allow for compatibility with other versions of @rushstack/node-core-library.
73
- - Add a new parameter "--detailed" for the "rush list" command
74
- - Print the full event hooks output if the --debug paramter is specified.
75
- - Upgrade the `@types/node` dependency to version to version 12.
76
-
77
- ## 5.54.0
78
- Wed, 22 Sep 2021 22:54:17 GMT
79
-
80
- ### Minor changes
81
-
82
- - Add ability to customize tag separator
83
-
84
- ### Patches
85
-
86
- - Lock node-fetch dependency to 2.6.2 due to an incompatibility with 2.6.3 in the Azure Cloud Cache Provider.
87
-
88
- ### Updates
89
-
90
- - Add a "--check-only" parameter to "rush install" to check the validity of the shrinkwrap without performing a full install.
91
- - Fix an issue where `rush update-autoinstaller` does not use the repo's .npmrc
92
-
93
- ## 5.53.0
94
- Fri, 10 Sep 2021 23:20:00 GMT
95
-
96
- ### Updates
97
-
98
- - Fix an issue where the incremental build should use caching or skipping, but not both (GitHub #2891)
99
- - Cache rush-project.json reads
100
- - Fix an issue where the build cache did not respect "allowWarningsInSuccessfulBuild" (GitHub #2803)
101
- - Add an experiment "buildCacheWithAllowWarningsInSuccessfulBuild" to allow caching for projects with warnings (GitHub #2803)
102
-
103
- ## 5.52.0
104
- Mon, 23 Aug 2021 21:34:46 GMT
105
-
106
- ### Updates
107
-
108
- - Add properties to the extraData section of the telemetry file for parameter usage in the install commands
109
- - Add .heft to .gitignore file generated by rush init
110
-
111
- ## 5.51.1
112
- Fri, 13 Aug 2021 22:45:36 GMT
113
-
114
- ### Updates
115
-
116
- - When build cache is enabled in `rush build`, allow projects downstream to be satisfied from the cache if applicable. Cache reads will still be disabled for `rush rebuild`.
117
-
118
- ## 5.51.0
119
- Wed, 11 Aug 2021 23:16:09 GMT
120
-
121
- ### Updates
122
-
123
- - The --debug flag now also shows additional diagnostic information.
124
- - Update JSZip dependency.
125
- - Adds support for the project subset selection parameters ("--to", "--from", etc., documented at https://rushjs.io/pages/developer/selecting_subsets/) to the "rush list" command.
126
- - Allow the tar binary path to be overridden via the RUSH_TAR_BINARY_PATH environment variable.
127
-
128
- ## 5.50.0
129
- Sat, 17 Jul 2021 01:16:04 GMT
130
-
131
- ### Minor changes
132
-
133
- - (Breaking change) Remove the experimental "--disable-build-cache" command line parameter.
134
-
135
- ### Patches
136
-
137
- - When the experimental build cache is enabled, "rush rebuild" now forces cached projects to be rebuilt (GitHub #2802)
138
-
139
- ## 5.49.2
140
- Thu, 15 Jul 2021 01:47:18 GMT
141
-
142
- ### Updates
143
-
144
- - Fix incremental build state calculation when using filtered installs
145
-
146
- ## 5.49.1
147
- Tue, 13 Jul 2021 23:03:01 GMT
148
-
149
- ### Updates
150
-
151
- - Fix an issue where the "--no-fetch" "rush change" parameter would cause a "git fetch" and absence of that parameter wouldn't fetch.
152
-
153
- ## 5.49.0
154
- Tue, 13 Jul 2021 06:22:09 GMT
155
-
156
- ### Updates
157
-
158
- - Expose APIs useful for determining which projects have changed on the current branch compared to another branch.
159
-
160
- ## 5.48.0
161
- Fri, 09 Jul 2021 01:44:18 GMT
162
-
163
- ### Updates
164
-
165
- - Add RUSH_ALLOW_WARNINGS_IN_SUCCESSFUL_BUILD environment variable
166
- - Prevent "rush change" from prompting for an email address, since this feature was rarely used. To restore the old behavior, enable the "includeEmailInChangeFile" setting in version-policies.json
167
- - The "rushx" command now reports a warning when invoked in a project folder that is not registered in rush.json
168
- - Fix the build-cache.json cacheEntryNamePattern description of the [normalize] token.
169
- - When selection CLI parameters are specified and applying them does not select any projects, log that the selection is empty and immediately exit.
170
- - Fix an issue where files restored by the build cache did not have a current modification time
171
- - Upgrade the "rush init" template to use PNPM version 6.7.1; this avoids an important regression in PNPM 6.3.0 where .pnpmfile.cjs did not work correctly: https://github.com/pnpm/pnpm/issues/3453
172
- - Fix a JSON schema issue that prevented "disableBuildCache" from being specified in command-line.json
173
- - Removed dependency on chokidar from BulkScriptAction in watch mode, since it adds unnecessary overhead.
174
-
175
- ## 5.47.0
176
- Sat, 15 May 2021 00:02:26 GMT
177
-
178
- ### Updates
179
-
180
- - For the experimental build cache feature, eliminate the RUSH_BUILD_CACHE_WRITE_CREDENTIAL environment variable; it is replaced by several new variables RUSH_BUILD_CACHE_CREDENTIAL, RUSH_BUILD_CACHE_WRITE_ALLOWED, and RUSH_BUILD_CACHE_ENABLED
181
- - Take pnpm-workspace.yaml file into consideration during install skip checks for PNPM
182
- - Fix a build cache warning that was sometimes displayed on Windows OS: "'tar' exited with code 1 while attempting to create the cache entry" (GitHub #2622)
183
- - Fix an issue where "rushx" CLI arguments were not escaped properly (GitHub #2695)
184
- - Allow rush-project.json to specify incrementalBuildIgnoredGlobs (GitHub issue #2618)
185
- - Remove support for PNPM < 5.0.0 and remove the "resolutionStrategy" option
186
- - Update "rush init" assets to use newer versions of Rush and PNPM. If you are looking to use PNPM < 6, you must rename the initialized ".pnpmfile.cjs" file to "pnpmfile.js". For more information, see: https://pnpm.io/5.x/pnpmfile
187
- - Transform package.json using pnpmfile before checking if a Rush project is up-to-date
188
- - Add support for the Yarn "resolutions" package.json feature.
189
-
190
- ## 5.46.1
191
- Tue, 04 May 2021 20:26:15 GMT
192
-
193
- ### Updates
194
-
195
- - Fix an issue where the buildCacheEnabled setting was not applied correctly
196
-
197
- ## 5.46.0
198
- Tue, 04 May 2021 02:45:20 GMT
199
-
200
- ### Updates
201
-
202
- - Remove "buildCache" setting from experiments.json; it is superseded by "buildCacheEnabled" in build-cache.json
203
- - Add a "rush init" template for build-cache.json
204
- - Temporarily downgrade the "@azure/identity" to eliminate the keytar native dependency (GitHub issue #2492)
205
-
206
- ## 5.45.6
207
- Fri, 30 Apr 2021 00:32:16 GMT
208
-
209
- ### Updates
210
-
211
- - Fix a regression in the S3 cloud build cache provider
212
-
213
- ## 5.45.5
214
- Wed, 28 Apr 2021 17:54:16 GMT
215
-
216
- ### Updates
217
-
218
- - Improve diagnostic messages printed by the rush build cache
219
- - Fix an issue where Rush fails to run on Windows when the repository absolute path contains a space
220
- - Use simpler and more accurate check before skipping installs
221
-
222
- ## 5.45.4
223
- Fri, 23 Apr 2021 22:48:23 GMT
224
-
225
- _Version update only_
226
-
227
- ## 5.45.3
228
- Fri, 23 Apr 2021 22:03:08 GMT
229
-
230
- ### Updates
231
-
232
- - Allow prerelease versions of PNPM to be used in workspaces mode
233
-
234
- ## 5.45.2
235
- Thu, 22 Apr 2021 23:07:51 GMT
236
-
237
- ### Updates
238
-
239
- - Fix bad installs with when using pnpmfile in PNPM 6
240
-
241
- ## 5.45.1
242
- Wed, 21 Apr 2021 23:38:22 GMT
243
-
244
- ### Updates
245
-
246
- - Ensure that pnpm-workspace.yaml is always fully regenerated during "rush install" or "rush update"
247
- - Fix support for pnpmfile in PNPM 6.
248
-
249
- ## 5.45.0
250
- Tue, 20 Apr 2021 19:04:04 GMT
251
-
252
- ### Updates
253
-
254
- - Print diagnostic information to a log file "<project-root>/.rush/build-cache-tar.log" when the native "tar" is invoked.
255
- - The Amazon S3 build cloud cache provider can now use buckets outside the default region
256
- - Add support for PNPM 6
257
-
258
- ## 5.44.0
259
- Sat, 17 Apr 2021 00:17:51 GMT
260
-
261
- ### Updates
262
-
263
- - Add --json and --all param to rush scan
264
- - Fix "rush deploy" having "includeDevDependencies" turned on to deploy "devDependencies" for rush projects only
265
-
266
- ## 5.43.0
267
- Thu, 08 Apr 2021 06:09:52 GMT
268
-
269
- ### Updates
270
-
271
- - Add "--ignore-git-hooks" flags to "publish" and "version" commands to prevent the execution of all git hooks
272
- - Fix parameter name typo.
273
- - Eliminate a spurious warning that was displayed on Azure DevOps build agents: A phantom "node_modules" folder was found.
274
- - Fix an issue where "rush change" reported "Unable to find a git remote matching the repository URL" when used with SSH auth
275
- - Fix an issue where "rush publish" reported 403 errors if the package version included a SemVer build metadata suffix
276
- - Partially deprecate RUSH_TEMP_FOLDER environment variable
277
- - Validate changefiles against a schema when running 'rush change --verify'
278
-
279
- ## 5.42.4
280
- Mon, 29 Mar 2021 05:57:18 GMT
281
-
282
- ### Updates
283
-
284
- - Don't validate the shrinkwrap when running 'rush update'
285
- - Gracefully handle a simultaneous upload to Azure Storage.
286
- - Update rush publish -p flag description
287
-
288
- ## 5.42.3
289
- Wed, 17 Mar 2021 05:07:02 GMT
290
-
291
- ### Updates
292
-
293
- - Fix installation-time behavior of "omitImportersFromPreventManualShrinkwrapChanges" experiment.
294
- - Don't upload build cache entries to Azure if the cache entry already exists.
295
- - Replace the AWS dependencies with use of the Amazon S3 REST API.
296
- - Add support for anonymous read from an Amazon S3-hosted cache.
297
-
298
- ## 5.42.2
299
- Tue, 16 Mar 2021 00:30:38 GMT
300
-
301
- ### Updates
302
-
303
- - Add experiment to exclude the "importers" section of "pnpm-lock.yaml" from the "preventManualShrinkwrapChanges" feature.
304
-
305
- ## 5.42.1
306
- Fri, 12 Mar 2021 02:11:24 GMT
307
-
308
- ### Updates
309
-
310
- - Temporarily disable the AWS S3 credential provider logic to mitigate a problematic peer dependency (GitHub #2547)
311
-
312
- ## 5.42.0
313
- Wed, 10 Mar 2021 06:25:44 GMT
314
-
315
- ### Updates
316
-
317
- - Add AWS S3 support to the experimental build cache feature
318
-
319
- ## 5.41.0
320
- Wed, 10 Mar 2021 05:12:41 GMT
321
-
322
- ### Updates
323
-
324
- - Fix an issue where "rush install" could stall indefinitely because a network request did not handle timeouts properly
325
- - Allow merge conflicts in repo-state.json to be automatically resolved.
326
- - Add a RUSH_INVOKED_FOLDER environment variable so that custom scripts can determine the folder path where Rush was invoked (GitHub #2497)
327
- - Add `preferFrozenLockfileForUpdate` option to minimize lockfile churn by passing --prefer-frozen-lockfile to pnpm during default `rush update`.
328
-
329
- ## 5.40.7
330
- Tue, 02 Mar 2021 23:27:41 GMT
331
-
332
- ### Updates
333
-
334
- - Fix a regression where certain Rush operations reported a TypeError (GitHub #2526)
335
-
336
- ## 5.40.6
337
- Tue, 02 Mar 2021 06:22:01 GMT
338
-
339
- ### Updates
340
-
341
- - Improve cache read/write perf by attempting to use the "tar" binary.
342
- - Fix default text in rush.json generated by "rush init."
343
- - Fix an issue where Rush would fail to restore from cache but report success when Git isn't present.
344
-
345
- ## 5.40.5
346
- Tue, 23 Feb 2021 03:26:25 GMT
347
-
348
- ### Updates
349
-
350
- - Account for indirect dependencies when ordering projects in "rush build" if the intermediary dependencies are excluded by selection parameters.
351
-
352
- ## 5.40.4
353
- Tue, 23 Feb 2021 00:01:20 GMT
354
-
355
- ### Updates
356
-
357
- - Make Rush per-project manifest generation more reliable and remove PNPM shrinkwrap validation
358
-
359
- ## 5.40.3
360
- Sun, 21 Feb 2021 01:05:53 GMT
361
-
362
- ### Updates
363
-
364
- - Fix an issue where "rush setup" did not work correctly with NPM 7.x due to an NPM regression
365
-
366
- ## 5.40.2
367
- Fri, 19 Feb 2021 06:28:28 GMT
368
-
369
- ### Updates
370
-
371
- - Allow usage of Node.js 8.x since we received feedback that some projects are still supporting it
372
-
373
- ## 5.40.1
374
- Fri, 19 Feb 2021 01:45:27 GMT
375
-
376
- ### Updates
377
-
378
- - Fix a minor issue with the "rush init" template
379
-
380
- ## 5.40.0
381
- Wed, 17 Feb 2021 01:35:11 GMT
382
-
383
- _Version update only_
384
-
385
- ## 5.39.2
386
- Wed, 17 Feb 2021 01:34:11 GMT
387
-
388
- ### Updates
389
-
390
- - (EXPERIMENTAL) Add a "--disable-cache" parameter for disabling the build cache.
391
- - (EXPERIMENTAL) Add a "disableBuildCache" setting in command-line.json for disabling the build cache.
392
- - (EXPERIMENTAL) Add options in rush-project.json for disabling the build cache for entire projects, or for individual commands for that project.
393
- - Normalize selection CLI parameters for "rush install"
394
- - Add experimental "rush setup" command
395
- - Add an experimental new config file common/config/artifactory.json for enabling Artifactory integration
396
-
397
- ## 5.39.1
398
- Sat, 13 Feb 2021 03:14:52 GMT
399
-
400
- ### Patches
401
-
402
- - Convert the experimental "--watch" parameter into a "watchForChanges: true" setting in command-line.json, based on user feedback
403
-
404
- ### Updates
405
-
406
- - Disable build cache after initial build when "--watch" is specified. This saves disk space, reduces CPU usage, and improves compatibility with downstream file watcher processes (e.g. "webpack --watch").
407
-
408
- ## 5.39.0
409
- Thu, 11 Feb 2021 04:06:02 GMT
410
-
411
- ### Minor changes
412
-
413
- - Add a new parameter "--watch" that watches for filesystem changes and rebuilds the affected Rush projects; this feature can also be used with custom bulk commands (GitHub #2458, #1122)
414
-
415
- ### Updates
416
-
417
- - Improve the wording of some log messages
418
-
419
- ## 5.38.0
420
- Mon, 01 Feb 2021 20:42:04 GMT
421
-
422
- ### Updates
423
-
424
- - Add new command-line parameters for bulk commands: "--to-except", "--from", "--only", "--impacted-by", "--impacted-by-except", and "--from-version-policy" (GitHub #2354)
425
- - Change the short name for "--changed-projects-only" to be "-c" (so that "-o" can be used for the new "--only" parameter)
426
- - Change the "--from" parameter so that it now includes all dependencies as people expected. To skip dependencies, use the new "--impacted-by" parameter. (GitHub issue #1447)
427
-
428
- ## 5.37.0
429
- Sat, 30 Jan 2021 01:50:27 GMT
430
-
431
- ### Updates
432
-
433
- - Improve performance of association of repo file states with projects to speed up build commands in large repos.
434
- - Add `publishFolder` property to the project configuration to allow publishing a sub-folder of the project
435
- - Add support for --from flag for filtered installs when using workspaces
436
- - Fix an issue where the Rush cache feature did not correctly detect files that were both tracked by git and were expected to be cached build output.
437
- - Improve logging for the "rush write-build-cache" command
438
- - Correct some spelling mistakes in rush.json
439
- - Fix an error "Cannot get dependency key" sometimes reported by "rush install" (GitHub #2460)
440
- - Updade the "rush init" template to specify PNPM 5.15.2, which fixes a performance regression introduced in PNPM 5.13.7
441
-
442
- ## 5.36.2
443
- Thu, 21 Jan 2021 04:51:19 GMT
444
-
445
- ### Updates
446
-
447
- - Update Node.js version checks to support the new LTS release
448
- - Update rush.json produced by rush init to use PNPM 5.14.3
449
- - Use forward slashes when creating deploy zip file for Unix compatibility
450
-
451
- ## 5.36.1
452
- Fri, 08 Jan 2021 06:12:37 GMT
453
-
454
- ### Updates
455
-
456
- - Fix an issue where projects with empty scripts would still have arguments appended.
457
-
458
- ## 5.36.0
459
- Fri, 08 Jan 2021 05:36:55 GMT
460
-
461
- ### Updates
462
-
463
- - Allow the git binary path to be overridden via the RUSH_GIT_BINARY_PATH environment variable.
464
- - Introduce an experimental build cache feature.
465
- - Add the ability to customize the commit message used when "rush version" is run.
466
- - Remove the "experimental" label from some Rush commands that are now stable.
467
-
468
- ## 5.35.2
469
- Tue, 03 Nov 2020 23:34:30 GMT
470
-
471
- ### Updates
472
-
473
- - Fix bug where version process is using a wrong `git.addChanges` signature
474
-
475
- ## 5.35.1
476
- Fri, 30 Oct 2020 05:17:42 GMT
477
-
478
- ### Updates
479
-
480
- - Fix a recent "rush scan" regression (which resulted from enabling "esModuleInterop")
481
-
482
- ## 5.35.0
483
- Wed, 28 Oct 2020 21:44:10 GMT
484
-
485
- ### Updates
486
-
487
- - Adds an --ignore-hooks flag to every rush action that skips event hooks during execution of the action.
488
- - Fix bug where version process was not adding version-policy configuration file changes into the version commit
489
-
490
- ## 5.34.4
491
- Sat, 17 Oct 2020 00:23:18 GMT
492
-
493
- ### Updates
494
-
495
- - When running `rush version --bump`, only include package.json updates in the generated commit
496
- - Fix Rush peer dependency validation when satisfied with a package alias
497
- - Prevent `rush unlink` from breaking installs for non-workspace projects
498
- - Add documentation for incremental option for buld custom commands
499
-
500
- ## 5.34.3
501
- Wed, 30 Sep 2020 21:04:15 GMT
502
-
503
- ### Updates
504
-
505
- - Update to build with @rushstack/heft-node-rig
506
- - Update README.md
507
- - Upgrade compiler; the API now requires TypeScript 3.9 or newer
508
-
509
- ## 5.34.2
510
- Mon, 21 Sep 2020 22:00:03 GMT
511
-
512
- ### Updates
513
-
514
- - Fix an issue where "rush build" output was lagged due to stream-collator not activating streams aggressively enough
515
- - Fix incorrect "successful" exit status code
516
-
517
- ## 5.34.1
518
- Thu, 17 Sep 2020 07:13:04 GMT
519
-
520
- ### Updates
521
-
522
- - Fix a regression that reported an error "The EnvironmentConfiguration must be initialized before values can be accessed"
523
-
524
- ## 5.34.0
525
- Thu, 17 Sep 2020 01:23:35 GMT
526
-
527
- ### Updates
528
-
529
- - Big redesign of "rush build" console reporting (fixes GitHub #2135)
530
- - Implement RUSH_GLOBAL_FOLDER environment variable (GitHub #2187)
531
- - Use underscores instead of asterisks for italic formatting in changelogs to match the way Prettier formats italics in markdown.
532
- - 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.
533
-
534
- ## 5.33.2
535
- Fri, 21 Aug 2020 22:45:58 GMT
536
-
537
- ### Updates
538
-
539
- - Fix an issue where PNPM would sometimes prompt for input during "rush publish" (GitHub #1940)
540
- - Fix an issue that prevented Rush from logging in verbose mode
541
-
542
- ## 5.33.1
543
- Thu, 20 Aug 2020 18:25:41 GMT
544
-
545
- ### Updates
546
-
547
- - Fix issues where installs could fail after running 'rush version' while the 'usePnpmFrozenLockfileForRushInstall' experiment is enabled. See PR #2116 for more details.
548
- - Fix an issue where "rush deploy" would sometimes report an "already exists" when using the "files" setting in package.json (GitHub #2121)
549
- - Allow multiple simultaneous invocations of "rush deploy" (GitHub #2125)
550
- - Load and validate local projects lazily to further improve Rush startup times.
551
-
552
- ## 5.33.0
553
- Wed, 19 Aug 2020 00:17:48 GMT
554
-
555
- ### Updates
556
-
557
- - Add support for shell tab completion. See PR for details: https://github.com/microsoft/rushstack/pull/2060
558
- - Use Import.lazy() to optimize the startup time for Rush
559
-
560
- ## 5.32.3
561
- Tue, 18 Aug 2020 03:48:56 GMT
562
-
563
- ### Updates
564
-
565
- - Fix an issue where install-run.js sometimes assigned the shell PATH incorrectly due to inconsistent character case
566
-
567
- ## 5.32.2
568
- Fri, 14 Aug 2020 21:03:48 GMT
569
-
570
- ### Updates
571
-
572
- - Resolve issue with version --bump where the wrong hash would get written to the pnpm-lock file
573
-
574
- ## 5.32.1
575
- Fri, 14 Aug 2020 04:06:30 GMT
576
-
577
- ### Updates
578
-
579
- - Change method used to calculate integrity of tarballs
580
-
581
- ## 5.32.0
582
- Thu, 13 Aug 2020 00:53:43 GMT
583
-
584
- ### Patches
585
-
586
- - Update temp project tarball integrities during rush bump
587
-
588
- ## 5.31.0
589
- Wed, 12 Aug 2020 19:33:44 GMT
590
-
591
- ### Updates
592
-
593
- - Updated project to build with Heft
594
- - Fix an issue where "rushx" did not pass additional command-line arguments to the package.json script (GitHub #1232)
595
-
596
- ## 5.30.3
597
- Fri, 07 Aug 2020 21:09:05 GMT
598
-
599
- ### Updates
600
-
601
- - Fix an issue where Mac OS sometimes reported "An unrecognized file .DS_Store was found in the Rush config folder"
602
-
603
- ## 5.30.2
604
- Wed, 05 Aug 2020 17:57:07 GMT
605
-
606
- ### Updates
607
-
608
- - Fix an issue where a package version bump would not bump downstream packages with a `workspace:*` dependency specifier.
609
-
610
- ## 5.30.1
611
- Thu, 23 Jul 2020 23:47:59 GMT
612
-
613
- ### Updates
614
-
615
- - 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)
616
- - Prevent incorrect conversion to "workspace:" notation for peer dependencies when running "rush update --full"
617
-
618
- ## 5.30.0
619
- Fri, 17 Jul 2020 05:32:38 GMT
620
-
621
- ### Minor changes
622
-
623
- - 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.
624
-
625
- ## 5.29.1
626
- Thu, 16 Jul 2020 02:18:39 GMT
627
-
628
- ### Patches
629
-
630
- - Consider package.json when determining if install can be skipped for PNPM workspaces
631
-
632
- ## 5.29.0
633
- Tue, 14 Jul 2020 05:20:56 GMT
634
-
635
- ### Updates
636
-
637
- - Give \"rush deploy\" the ability to select a subset of dependencies to copy over (#1978)
638
- - Fix an issue where package binaries where not created by "rush deploy" (#1982)
639
- - Add a new setting "folderToCopy" and new command-line parameter "--create-archive" for use with "rush deploy"
640
-
641
- ## 5.28.0
642
- Wed, 08 Jul 2020 06:56:47 GMT
643
-
644
- ### Minor changes
645
-
646
- - Add preliminary workspaces support for PNPM
647
-
648
- ### Updates
649
-
650
- - Add new commands "rush init-autoinstaller" and "rush update-autoinstaller"
651
- - Add support for filtered installs when using workspaces
652
-
653
- ## 5.27.3
654
- Fri, 03 Jul 2020 06:16:09 GMT
655
-
656
- ### Updates
657
-
658
- - Added support for new format used by pnpm for tarball URLs that now begin with an @ symbol
659
-
660
- ## 5.27.2
661
- Thu, 02 Jul 2020 01:52:18 GMT
662
-
663
- ### Updates
664
-
665
- - Improve "rush deploy" to copy PNPM workaround links (fixes GitHub #1942 and 1943)
666
-
667
- ## 5.27.1
668
- Mon, 29 Jun 2020 18:39:59 GMT
669
-
670
- ### Updates
671
-
672
- - Fix an issue where environment variable trimming for .npmrc was unnecessarily performed on comment lines
673
- - Add a "rush init" template for .npmrc-publish
674
- - Fix a regression affecting GitHub specifiers for package.json dependencies (issue #1749)
675
-
676
- ## 5.27.0
677
- Sun, 21 Jun 2020 04:48:53 GMT
678
-
679
- ### Updates
680
-
681
- - Improve "rush deploy" to apply pnpmfile.js when calculating dependencies
682
-
683
- ## 5.26.0
684
- Mon, 15 Jun 2020 01:26:24 GMT
685
-
686
- ### Updates
687
-
688
- - Breaking change for the experimental "rush deploy" feature: Simplify the config file design, based on the discussion from GitHub #1906
689
-
690
- ## 5.25.2
691
- Thu, 11 Jun 2020 05:34:31 GMT
692
-
693
- ### Updates
694
-
695
- - Fix an issue where Git hook scripts failed in some environments due to CRLF newlines
696
-
697
- ## 5.25.1
698
- Thu, 11 Jun 2020 05:05:30 GMT
699
-
700
- ### Updates
701
-
702
- - Fix some minor errors in the "rush init" template that occured when Prettier reformatted the template file macros
703
- - Add a sample Git hook file to the "rush init" template
704
- - Fix a minor issue where "rush link" failed if no projects were defined yet in rush.json
705
- - Add "--no-verify" for commits performed by "rush version", since Git hook scripts may fail on CI machines
706
-
707
- ## 5.25.0
708
- Wed, 10 Jun 2020 23:53:27 GMT
709
-
710
- ### Updates
711
-
712
- - Add new command-line.json setting "autoinstallerName"
713
-
714
- ## 5.24.4
715
- Mon, 08 Jun 2020 18:04:35 GMT
716
-
717
- ### Updates
718
-
719
- - Explicitly assigning the option value for --resolution-strategy. This fixes a crash with pnpm v5, which deprecated the option.
720
- - Fix an issue where install-run.js is not able to find its own .bin in PATH
721
- - Fix an issue where "rush install" sometimes skipped regenerating temporary packages, which is incompatible with PNPM's "--frozen-lockfile" feature
722
-
723
- ## 5.24.3
724
- Thu, 04 Jun 2020 22:50:56 GMT
725
-
726
- ### Updates
727
-
728
- - Fix an issue where "rush deploy" generated incorrect symlinks on Mac OS if the target folder was symlinked (GitHub #1910)
729
-
730
- ## 5.24.2
731
- Wed, 03 Jun 2020 05:35:19 GMT
732
-
733
- ### Updates
734
-
735
- - Expect error when trying to resolve optional dependency during deploy
736
-
737
- ## 5.24.1
738
- Tue, 02 Jun 2020 03:11:32 GMT
739
-
740
- ### Updates
741
-
742
- - Fix an issue where the "linkCreation" defaulted to "none" instead of "default"
743
-
744
- ## 5.24.0
745
- Mon, 01 Jun 2020 08:48:49 GMT
746
-
747
- ### Updates
748
-
749
- - Set next LTS node version to 14.
750
- - Add new "rush deploy" command that copies subsets of files/symlinks to a deployment folder
751
-
752
- ## 5.23.5
753
- Thu, 28 May 2020 22:49:57 GMT
754
-
755
- ### Updates
756
-
757
- - Fix an issue where Rush cannot reinstall itself on Windows
758
-
759
- ## 5.23.4
760
- Thu, 21 May 2020 15:41:59 GMT
761
-
762
- ### Updates
763
-
764
- - Add a new rush.json setting "allowMostlyStandardPackageNames"
765
- - Add RUSH_PARALLELISM environment variable for specifying the --parallelism default
766
-
767
- ## 5.23.3
768
- Fri, 15 May 2020 08:10:59 GMT
769
-
770
- ### Updates
771
-
772
- - Fix a few instances of missing spaces in --help documentation.
773
- - Provide an option to pass --frozen-lockfile to pnpm for rush install
774
-
775
- ## 5.23.2
776
- Wed, 22 Apr 2020 18:44:26 GMT
777
-
778
- ### Updates
779
-
780
- - Add common-versions.json to the set of files that, when changed, will trigger reinstallation of dependencies.
781
-
782
- ## 5.23.1
783
- Wed, 15 Apr 2020 03:33:55 GMT
784
-
785
- ### Updates
786
-
787
- - Fix a regression in Rush 5.19.0 where customizing "rush rebuild" would call the "build" script instead of the "rebuild" script.
788
- - Fix an issue where, on some minimal systems, Rush used a missing shell command to detect an application path.
789
- - Fix an issue where the common/temp/*.tgz files resulted in different shrinkwrap files on different operating systems
790
-
791
- ## 5.23.0
792
- Sat, 04 Apr 2020 00:38:29 GMT
793
-
794
- ### Updates
795
-
796
- - Add a new rush.json setting "preventManualShrinkwrapChanges" which prevents against accidental mistakes in pnpm-lock.yaml.
797
- - Upgrade node-tar
798
- - Remove some misleading log output for "rush build" (GitHub #1733)
799
-
800
- ## 5.22.0
801
- Wed, 18 Mar 2020 01:23:22 GMT
802
-
803
- ### Updates
804
-
805
- - Replace dependencies whose NPM scope was renamed from `@microsoft` to `@rushstack`
806
- - Support setting environment variables for package manager install processes in rush.json and expose --max-install-attempts as a parameter for rush install/update.
807
-
808
- ## 5.21.0
809
- Sat, 07 Mar 2020 05:36:08 GMT
810
-
811
- ### Updates
812
-
813
- - Make the event hook failure message print in yellow.
814
- - Improve phrasing of an error message.
815
- - Add a new command-line.json setting "required" for non-optional parameters
816
- - Implement `pnpmOptions.pnpmStore` and RUSH_PNPM_STORE_PATH, to allow the end-user to define where PNPM will place its store.
817
- - Add a --json flag for "rush check" to facilitate automation
818
-
819
- ## 5.20.0
820
- Wed, 12 Feb 2020 21:51:19 GMT
821
-
822
- ### Updates
823
-
824
- - Support "." as a value for the --to and --from parameters to build to the current project.
825
- - Improve security by allowing the "rush publish" authentication token to be specified via an environment variable.
826
-
827
- ## 5.19.4
828
- Tue, 28 Jan 2020 03:57:30 GMT
829
-
830
- ### Updates
831
-
832
- - Fix an issue where a missing "repository" property in rush.json would cause "rush change" to throw.
833
-
834
- ## 5.19.3
835
- Tue, 28 Jan 2020 01:35:53 GMT
836
-
837
- _Version update only_
838
-
839
- ## 5.19.2
840
- Tue, 28 Jan 2020 01:08:26 GMT
841
-
842
- ### Updates
843
-
844
- - Fix an issue where the rushx command will always report error.
845
- - Fixes "too many params" and "unable to find ref v<version>" issues in git tagging while publishing.
846
-
847
- ## 5.19.1
848
- Sat, 25 Jan 2020 05:15:10 GMT
849
-
850
- ### Updates
851
-
852
- - Fix an issue with install-run.js, where successful executions exit with a nonzero exit code.
853
-
854
- ## 5.19.0
855
- Sat, 25 Jan 2020 04:19:23 GMT
856
-
857
- ### Updates
858
-
859
- - Make the default branch and default remote configurable.
860
- - 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)
861
- - Update package.json files without reformatting or reordering properties and fields during "rush add", "rush version" and "rush publish".
862
- - Upgrade Node typings to Node 10
863
- - Update the "rush init" .gitignore file to ignore .rush/temp and .DS_Store folders
864
- - 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)
865
- - Add a --json flag for "rush list" to facilitate automation
866
-
867
- ## 5.18.0
868
- Sat, 11 Jan 2020 05:38:55 GMT
869
-
870
- ### Updates
871
-
872
- - Don't use the `build` verb when printing task failures
873
- - Add a --commit command-line argument to the publish command to allow the git commit to be explicitly provided for tagging.
874
- - Update GitHub project URL in some resource files
875
- - fix typo in version-policies.json
876
-
877
- ## 5.17.2
878
- Tue, 26 Nov 2019 00:53:52 GMT
879
-
880
- ### Updates
881
-
882
- - Resolve an issue where git tags were not being applied when using pack or publish with --include-all
883
-
884
- ## 5.17.1
885
- Thu, 21 Nov 2019 00:50:15 GMT
886
-
887
- ### Updates
888
-
889
- - Fix an issue with Rush add, where Rush was unable to add unpublished local projects as dependencies.
890
-
891
- ## 5.17.0
892
- Thu, 14 Nov 2019 22:52:48 GMT
893
-
894
- ### Updates
895
-
896
- - Add a new setting "implicitlyPreferredVersions" in common-versions.json that can be used to solve some installation failures involving peer dependencies
897
- - Improve the generation of shrinkwrap-deps.json to consider optional peer dependencies and implicitlyPreferredVersions=false
898
- - Fix an issue where certain operations did not use a stable sort when executed on older versions of NodeJS
899
-
900
- ## 5.16.1
901
- Fri, 25 Oct 2019 20:15:59 GMT
902
-
903
- ### Updates
904
-
905
- - Log to console instead of throwing when an unmet peer dependency is encountered during linking, and strictPeerDependencies is false
906
- - Refactor some code as part of migration from TSLint to ESLint
907
-
908
- ## 5.16.0
909
- Thu, 17 Oct 2019 00:41:01 GMT
910
-
911
- ### Updates
912
-
913
- - Support PNPM 4 on Rush
914
- - Add support for "rush add" for repos using the Yarn package manager.
915
-
916
- ## 5.15.1
917
- Thu, 10 Oct 2019 23:47:19 GMT
918
-
919
- ### Updates
920
-
921
- - Fix an issue where build commands can fail because git commands used to track changes can be too long.
922
- - Fix compatibility issue where PNPM 4 requires --no-prefer-frozen-lockfile instead of --no-prefer-frozen-shrinkwrap
923
-
924
- ## 5.15.0
925
- Tue, 08 Oct 2019 22:58:33 GMT
926
-
927
- ### Updates
928
-
929
- - Improve 'rush build' to avoid rebuilding unnecessarily when the package-lock.json file has changed (pnpm only).
930
-
931
- ## 5.14.0
932
- Wed, 02 Oct 2019 01:18:02 GMT
933
-
934
- ### Updates
935
-
936
- - Add an --all flag to "rush add" to add a dependency to all projects.
937
- - Add options to rush change to allow creating changefiles for all changed projects.
938
- - 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.
939
- - Include peerDependencies in the approved packages files.
940
- - Make detection of changefiles and changes in projects safer.
941
- - Update repository URL
942
-
943
- ## 5.13.1
944
- Fri, 27 Sep 2019 22:34:50 GMT
945
-
946
- ### Updates
947
-
948
- - 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"
949
-
950
- ## 5.13.0
951
- Wed, 11 Sep 2019 21:41:34 GMT
952
-
953
- ### Updates
954
-
955
- - 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/**`).
956
- - 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
957
- - Update documentation
958
- - 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.
959
-
960
- ## 5.12.1
961
- Tue, 10 Sep 2019 19:45:15 GMT
962
-
963
- ### Updates
964
-
965
- - 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.
966
-
967
- ## 5.12.0
968
- Wed, 04 Sep 2019 19:01:42 GMT
969
-
970
- ### Updates
971
-
972
- - Adding --apply-git-tags-on-pack flag to the publish command to apply git tags when using --pack
973
- - 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.
974
- - Add support for NPM package aliases (i.e. dependency versions such as "npm:example@^1.2.3")
975
- - Fix an issue with rush change that occurs when rush.json isn't in the repository root.
976
-
977
- ## 5.11.4
978
- Fri, 23 Aug 2019 03:31:52 GMT
979
-
980
- ### Updates
981
-
982
- - Some optimizations for --to, --from, and cyclic dependency detection for repos with large numbers of projects.
983
- - Ensure install-run-rushx script is updated during "rush update"
984
-
985
- ## 5.11.3
986
- Wed, 21 Aug 2019 22:13:26 GMT
987
-
988
- ### Updates
989
-
990
- - Add support for the RUSH_PREVIEW_VERSION environment variable to the install-run-rush script.
991
- - Add support for the RUSH_TEMP_FOLDER environment variable in the install-run-rush script.
992
- - Add install-run-rushx script to enable easy execution of the rushx command in CI
993
-
994
- ## 5.11.2
995
- Fri, 16 Aug 2019 05:15:17 GMT
996
-
997
- ### Updates
998
-
999
- - Refactor build action to allow generating build graph statically
1000
- - Security updates.
1001
- - Fix validation of hotfix changes in a hotfix-enabled branch
1002
- - Clarify that "rush update --full" should be run when changing certain settings
1003
-
1004
- ## 5.11.1
1005
- Fri, 26 Jul 2019 23:08:23 GMT
1006
-
1007
- ### Updates
1008
-
1009
- - Fix critical path computation for projects
1010
- - Normalize the casing of a temp folder specified with RUSH_TEMP_FOLDER.
1011
-
1012
- ## 5.11.0
1013
- Fri, 26 Jul 2019 08:34:03 GMT
1014
-
1015
- ### Updates
1016
-
1017
- - Generate skeleton BuildXL script modules for each package
1018
- - Allow building with newer versions of Node during development
1019
- - Add experimental rush-buildxl package
1020
- - Ensure the filesystem paths that Rush uses have the same character casing that exists on disk.
1021
- - Tweak NodeJS version warning messages and add suppressNodeLtsWarning option to rush.json to suppress non-LTS version warning.
1022
- - Do not terminate rush execution if a temp project lacks an entry in the PNPM shrinkwrap. Instead, allow the program to continue so that PNPM can update the outdated shrinkwrap. This fixes #1418 https://github.com/microsoft/web-build-tools/issues/1418.
1023
-
1024
- ## 5.10.3
1025
- Thu, 18 Jul 2019 00:07:46 GMT
1026
-
1027
- ### Updates
1028
-
1029
- - Make event hooks run from the folder that contains the rush.json file.
1030
- - Fix 1392 "rush install not working on pnpm 3.5" by getting the temporary project dependency key from the shrinkwrap file. See https://github.com/microsoft/web-build-tools/issues/1392.
1031
-
1032
- ## 5.10.2
1033
- Tue, 16 Jul 2019 19:36:08 GMT
1034
-
1035
- ### Updates
1036
-
1037
- - Prevent non-hotfix changes from being applied to hotfix branches
1038
- - Use the shrinkwrap from temp for "rush link" as the committed shrinkwrap may not always be up to date as a result of shrinkwrap churn optimization. See https://github.com/microsoft/web-build-tools/issues/1273#issuecomment-492779995 for more details about shrinkwrap churn optimization.
1039
-
1040
- ## 5.10.1
1041
- Thu, 11 Jul 2019 22:00:50 GMT
1042
-
1043
- ### Updates
1044
-
1045
- - Fix for issue https://github.com/microsoft/web-build-tools/issues/1349 rush install fails when there is a preferred version with a peer dependency. This was caused by file format changes in pnpm 3.x
1046
- - Fix an issue where "rush add" erroneously believes ensureConsistentVersions is unset.
1047
- - Fix an issue that arises when "rush add" is run and the package manager isn't installed.
1048
- - Fix an issue where rush add -m doesn't corretly update the common-versions.json file.
1049
- - Fix an issue where rush change will detect unrelated changes.
1050
- - When rush change detects no changes, clarify that no *relevant* changes were detected in the case that changes were in a package not versioned by rush'
1051
- - Fix https://github.com/microsoft/web-build-tools/issues/1347: rush link was failing on pnpm 3+ with the changes in shrinkwrap format with regard to peer dependencies. Rush now resolves the path to the local project accurately by referring to the shrinkwrap rather than figuring out the path on its own.
1052
-
1053
- ## 5.10.0
1054
- Sat, 29 Jun 2019 02:47:42 GMT
1055
-
1056
- ### Updates
1057
-
1058
- - New action added to list package name for all projects
1059
- - Add ability to opt out of changelog files for version policies.
1060
- - Workaround for pnpm issue 1890: https://github.com/pnpm/pnpm/issues/1890. Fixes the issue of "rush update --full" not working correctly if the internal copy of the pnpm shrinkwrap "common/temp/node_modules/.shrinkwrap.yaml" exists even though Rush deletes the formal copy in "common/temp/shrinkwrap.yaml".
1061
-
1062
- ## 5.9.1
1063
- Thu, 13 Jun 2019 04:46:18 GMT
1064
-
1065
- ### Updates
1066
-
1067
- - Fix an issue where custom command-line parameters weren't passed to projects' builds.
1068
-
1069
- ## 5.9.0
1070
- Tue, 11 Jun 2019 02:26:20 GMT
1071
-
1072
- ### Updates
1073
-
1074
- - (BEHAVIOR CHANGE) Fix an issue where CI jobs could succeed even if a task reported warnings to stderr; if your build fails due to warnings after upgrading, please see https://github.com/microsoft/web-build-tools/issues/1329
1075
-
1076
- ## 5.8.0
1077
- Tue, 11 Jun 2019 01:28:33 GMT
1078
-
1079
- ### Updates
1080
-
1081
- - Add a new setting "ignoreDependencyOrder" in command-line.json
1082
- - Clarify "rush change" messages.
1083
- - Improve 'rush version' to fetch before checkout, which avoids an error in cases where the branch wasn't fetched.
1084
- - Fix typo in command-line help for "rush add"
1085
- - Fix an issue where "rush build" ignored changes to a project with an empty build script (GitHub #1282)
1086
-
1087
- ## 5.7.3
1088
- Mon, 06 May 2019 21:03:32 GMT
1089
-
1090
- ### Updates
1091
-
1092
- - Allow colons in command line action names (add missing dependency from 5.7.2)
1093
-
1094
- ## 5.7.2
1095
- Mon, 06 May 2019 19:52:37 GMT
1096
-
1097
- ### Updates
1098
-
1099
- - Allow colons in command line action names
1100
-
1101
- ## 5.7.1
1102
- Wed, 24 Apr 2019 06:32:17 GMT
1103
-
1104
- ### Updates
1105
-
1106
- - Fix an issue where Rush sometimes failed to parse versions from PNPM 3.x's pnpm-lock.yaml
1107
- - Update the .gitattributes file written by "rush init" to use a better syntax highlighter for JSON files
1108
-
1109
- ## 5.7.0
1110
- Tue, 23 Apr 2019 07:55:34 GMT
1111
-
1112
- ### Updates
1113
-
1114
- - Add support for PNPM version 3 (which changed the shrinkwrap file name to "pnpm-lock.yaml")
1115
- - Add a new rush.json setting "pnpmOptions.resolutionStrategy"
1116
-
1117
- ## 5.6.4
1118
- Mon, 15 Apr 2019 06:40:00 GMT
1119
-
1120
- ### Updates
1121
-
1122
- - Add support for string parameter for custom commands.
1123
- - Remove the obsolete "--release-type" option which only worked if you used a specific version of gulp-core-build-typescript
1124
- - Adds --no-verify to git push during a rush publish
1125
-
1126
- ## 5.6.3
1127
- Mon, 25 Mar 2019 03:15:21 GMT
1128
-
1129
- ### Updates
1130
-
1131
- - Update the "rush init" template with a .gitattributes rule to allow comments in JSON files
1132
- - Add ability to publish partial prereleases
1133
-
1134
- ## 5.6.2
1135
- Thu, 21 Mar 2019 23:09:56 GMT
1136
-
1137
- ### Updates
1138
-
1139
- - Publish: pass auth token through to npm view when checking if package exists
1140
-
1141
- ## 5.6.1
1142
- Mon, 18 Mar 2019 04:48:37 GMT
1143
-
1144
- ### Updates
1145
-
1146
- - Remove the "rush check" step from the travis.yml template, since this is now handled by "ensureConsistentVersions" from rush.json
1147
- - Improve "rush change" to ignore the ".git" file extension when appended to the "repository.url" setting in rush.json
1148
-
1149
- ## 5.6.0
1150
- Fri, 15 Mar 2019 03:21:02 GMT
1151
-
1152
- ### Minor changes
1153
-
1154
- - Add "--set-access-level" parameter for "rush publish" to control whether NPM packages are published as "public" or "restricted"
1155
- - Add a "dependencies" configuration property to version-policies.json to customize the way dependency versions are published and stored in source control
1156
-
1157
- ### Updates
1158
-
1159
- - Add support for the Yarn --ignore-engines, exposed as yarnOptions.ignoreEngines in rush.json
1160
- - Add the ability to configure the version bump and publish git commit message, exposed as gitPolicy.versionBumpCommitMessage in rush.json
1161
- - Fix an issue with "rush publish --pack" when using yarn.
1162
- - Remove the "rush check" step from the travis.yml template, since this is now handled by "ensureConsistentVersions" from rush.json
1163
- - Fix an issue where "rush change" sometimes could not detect changes correctly when invoked on a forked GitHub repo
1164
- - Fix an issue where "rushx" and "rush build" did not search for commands in the current project's local node_modules/.bin folder (GitHub issue #706)
1165
- - The `--debug` parameter now automatically breaks in the debugger when an InternalError is thrown
1166
- - Support overriding 'build' and 'rebuild' commands in command-line.json
1167
- - Update README.md
1168
- - Change "rush build" to print stdout if stderr is empty and a task fails. This improves Webpack support
1169
-
1170
- ## 5.5.4
1171
- Thu, 13 Dec 2018 02:58:10 GMT
1172
-
1173
- ### Patches
1174
-
1175
- - Remove unused jju dependency
1176
-
1177
- ### Updates
1178
-
1179
- - Properly handle Git worktrees
1180
- - Updated to use the new InternalError class for reporting software defects
1181
-
1182
- ## 5.5.3
1183
- Wed, 05 Dec 2018 20:14:08 GMT
1184
-
1185
- ### Updates
1186
-
1187
- - Add user read permission to copied Git hooks
1188
-
1189
- ## 5.5.2
1190
- Fri, 09 Nov 2018 02:14:11 GMT
1191
-
1192
- ### Updates
1193
-
1194
- - Include an environment variable option to create symlinks with absolute paths.
1195
-
1196
- ## 5.5.1
1197
- Wed, 07 Nov 2018 21:04:35 GMT
1198
-
1199
- ### Updates
1200
-
1201
- - For NodeJS 10, require at least LTS (10.13.0)
1202
- - Install rush and package managers in a node version-specific folder under the user's home directory
1203
- - Added support for git hooks
1204
- - Remove all dependencies on the "rimraf" library
1205
- - Upgrade fs-extra to eliminate the annoying "ERROR: ENOTEMPTY: directory not empty, rmdir" error that occasionally occurred during "rush link"
1206
-
1207
- ## 5.4.0
1208
- Thu, 25 Oct 2018 23:20:40 GMT
1209
-
1210
- ### Updates
1211
-
1212
- - Remove use of a deprecated Buffer API.
1213
- - Fix an issue with "rush change" on NodeJS 10.
1214
- - Fix an issue where "rush install" sometimes would incorrectly ask for "rush update", when using the Yarn package manager
1215
- - Improve sorting of @rush-temp projects, which may reduce churn of hashes in the shrinkwrap file
1216
- - Expose safeForSimultaneousRushProcesses to custom commands
1217
- - Add 'variants' feature and command-line parameter
1218
-
1219
- ## 5.3.4
1220
- Wed, 17 Oct 2018 03:19:43 GMT
1221
-
1222
- ### Updates
1223
-
1224
- - Make rush purge also call rush unlink
1225
- - Fix an issue where "rush publish" invoked the wrong command when using Yarn
1226
- - Install optional dependencies, except w/ npm<5.0.0
1227
-
1228
- ## 5.3.3
1229
- Thu, 11 Oct 2018 23:58:16 GMT
1230
-
1231
- ### Updates
1232
-
1233
- - Remove warning for NodeJS 10 now that it is stable (LTS)
1234
-
1235
- ## 5.3.2
1236
- Mon, 08 Oct 2018 23:19:51 GMT
1237
-
1238
- ### Updates
1239
-
1240
- - Change "rush check" so that it considers "cyclicDependencyProjects" and ensures they are consistent or listed in "allowedAlternateVersions"
1241
- - Fix a recent regression where "rush link" was failing for NPM/Yarn because hard links don't support relative paths
1242
- - Make sure npm package does not exist before publishing
1243
-
1244
- ## 5.3.1
1245
- Wed, 03 Oct 2018 00:01:18 GMT
1246
-
1247
- ### Updates
1248
-
1249
- - Fix an issue where after running "rush add" (after successfully running "rush install"), the new package was not being installed or linked.
1250
- - Fix an incorrect default in the "rush init" template comments
1251
-
1252
- ## 5.3.0
1253
- Fri, 28 Sep 2018 20:36:48 GMT
1254
-
1255
- ### Updates
1256
-
1257
- - Add "ensureConsistentVersions" configuration which runs "rush check" before certain commands
1258
- - Add a new command "rush add" for managing package.json dependencies
1259
- - Rush now detects some package.json errors such as the same package name being listed in both "dependencies" and "optionalDependencies"
1260
- - Update "rush link" to use relative paths when creating symlinks, to facilitate building Docker images
1261
-
1262
- ## 5.2.1
1263
- Thu, 13 Sep 2018 21:57:21 GMT
1264
-
1265
- ### Updates
1266
-
1267
- - Fix an issue where "rush init" failed because its ".gitignore" template was excluded from the package
1268
-
1269
- ## 5.2.0
1270
- Thu, 13 Sep 2018 19:34:37 GMT
1271
-
1272
- ### Updates
1273
-
1274
- - Add a "rush init" command for scaffolding new monorepo folders
1275
- - Allow "rush scan" to be used without a rush.json configuration
1276
-
1277
- ## 5.1.0
1278
- Sat, 08 Sep 2018 20:57:32 GMT
1279
-
1280
- ### Updates
1281
-
1282
- - Update "repository" field in package.json
1283
- - Add support for PNPM's --strict-peer-dependencies feature
1284
- - Add support for the Yarn package manager (this is a "beta" feature; please report any issues you encounter!)
1285
-
1286
- ## 5.0.6
1287
- Fri, 31 Aug 2018 23:10:31 GMT
1288
-
1289
- ### Updates
1290
-
1291
- - Add "--prefer-frozen-shrinkwrap false" to the "pnpm install" command line as a workaround for https://github.com/pnpm/pnpm/issues/1342
1292
- - Skip validation of the Git email address if Git is not installed, or if rush.json isn't in a Git working directory, or if no policy was defined
1293
-
1294
- ## 5.0.5
1295
- Wed, 29 Aug 2018 07:05:22 GMT
1296
-
1297
- ### Updates
1298
-
1299
- - Fix an issue where rush install will fail if git isn't installed.
1300
- - Fix an issue where "rush -h" didn't print help for the "build" and "rebuild" commands, unless invoked under a Rush folder
1301
- - Improve command-line help for "rush build"
1302
- - Fix regression causing "ERROR: EEXIST: file already exists"
1303
-
1304
- ## 5.0.4
1305
- Thu, 23 Aug 2018 00:08:41 GMT
1306
-
1307
- ### Updates
1308
-
1309
- - Fix capitalization of new "filePath" API property
1310
-
1311
- ## 5.0.3
1312
- Wed, 22 Aug 2018 20:58:58 GMT
1313
-
1314
- ### Updates
1315
-
1316
- - git st
1317
- - When saving config files, Rush should include the "$schema" directive
1318
- - Fix a regression where "rush version" sometimes failed with "The value for entries[0].comments.dependency[0].author is undefined"
1319
- - When updating common-versions.json and version-policies.json, preserve the existing comments and whitespace
1320
-
1321
- ## 5.0.2
1322
- Sat, 18 Aug 2018 01:27:39 GMT
1323
-
1324
- _Version update only_
1325
-
1326
- ## 5.0.1
1327
- Sat, 18 Aug 2018 01:21:59 GMT
1328
-
1329
- ### Updates
1330
-
1331
- - Fix typo in rush error message
1332
- - Add a flag to "rush install" which runs the package manager in a verbose logging mode.
1333
- - Remove package.json from rush-lib constants. Add public API for creating changefiles.
1334
- - Fix an issue where "rush version" would fail with a useless error message if the Git user email is not specified.
1335
- - Update lodash.
1336
- - Add a "--network-concurrency" command-line option to help troubleshoot the ECONNRESET error that people occasionally have reported ( https://github.com/pnpm/pnpm/issues/1230 )
1337
-
1338
- ## 5.0.0
1339
- Sat, 30 Jun 2018 00:57:22 GMT
1340
-
1341
- ### Updates
1342
-
1343
- - Update peerDependencies when bumping package versions (issue #668)
1344
- - Add allowedAlternativeVersions setting to common-versions.json config file
1345
- - Fix an issue where PNPM shrinkwrap file parser did not handle relative/absolute version paths correctly
1346
- - Print each project's build time during the summary
1347
- - Fix an issue where the common/temp/.npmrc file could contain missing environment variable tokens
1348
- - Rush now creates common/scripts/install-run.js and install-run-rush.js scripts to formalize how CI jobs bootstrap tooling dependencies
1349
- - Enable the "rush rebuild" and "rush build" commands to work without a Git repository
1350
- - Add support for RUSH_TEMP_FOLDER environment variable to customize the location of Rush's commonTempFolder
1351
- - Fix an issue where if package-deps.json fails to parse, the build fails
1352
- - Improve "rush link" to create node_modules/.bin launchers for local project dependencies (not just installed external dependencies)
1353
- - Update rush.json schema to allow requested versions (e.g. Rush or the package manager) to be a prerelease SemVer pattern
1354
- - Fix annoyance where "rush update" (formerly "rush generate") would always change the integrity hash for tarball entries in shrinkwrap.yaml
1355
- - Fix an issue where Rush's .npmrc configuration was not honored when spawned via an NPM lifecycle script; in general the process environment is now more isolated
1356
- - Rush now warns when phantom node_modules folders are found
1357
- - Relax the rush.json version check for rush-lib; future versions are now accepted as long as the major/minor parts match
1358
- - Fix a regression where builds would sometimes fail with a zero exit code due to NodeJS's handling of uncaught Promise rejections
1359
- - Improve "rush check" to ignore peer dependencies, since they don't need to be consistent with everything else (and generally won't be)
1360
- - (Breaking change) Replace pinned-versions.json with a more general common-versions.json that can track other cross-project dependency versions
1361
- - (Breaking change) In common-versions.json, rename the "pinned versions" concept to "preferred versions", and separate the XStitch versions into their own field
1362
- - Report an error if the package manager version is too old
1363
- - (Breaking change) Redesign command-line.json config file to support other command types
1364
- - (Breaking change) Rename custom-commands.json to be command-line.json
1365
- - Add support for "global" commands in custom-commands.json
1366
- - When using PNPM, remove some NPM bug workarounds that probably caused problems for "pnpm install"
1367
- - Add a lock file to avoid race conditions when the Rush version selector is installing rush-lib
1368
- - Fix a problem where the "rush-recycler" folder was not getting cleaned on macOS
1369
- - (Breaking change) Remove unused RushConfiguration.homeFolder API
1370
- - Add RUSH_PREVIEW_VERSION environment variable for piloting new versions of Rush
1371
- - Add new command "rush purge" for cleaning up temporary files
1372
- - Fix an issue where rush-recycler wasn't emptied if a folder exceeded the Windows MAX_PATH
1373
- - Minor improvements for logging
1374
- - When installing tools, always copy the repo's .npmrc file to the target folder
1375
- - (Breaking change) Replace the "rush generate" command with a new command "rush update"
1376
- - (Breaking change) Replace "rush install --clean" and "--full-clean" with "rush install --purge"
1377
- - Improve lifecycle script execution to support Unix slashes in the command name when running on Windows
1378
- - Add "rushx" binary for single-project commands
1379
- - (Breaking change) Eliminate extra letters from shortened command line options (renamed "-cpo" to "-o", and removed "-vp" and "-pn")
1380
- - Add check for unpublished releases
1381
- - Add a "--to-version-policy" option for "rush rebuild" to allow building only a particular version policy
1382
- - Add --release-type parameter to "rush publish" to be able to create different tarballs based on release type
1383
- - Add "--ensure-version-policy" option for "rush version" to support updating the versions directly
1384
-
1385
- ## 4.3.3
1386
- Thu, 31 May 2018 21:57:13 GMT
1387
-
1388
- ### Updates
1389
-
1390
- - Remove the old undocumented "rush purge" command, since it conflicts with Rush 5
1391
-
1392
- ## 4.3.2
1393
- Mon, 26 Mar 2018 19:12:42 GMT
1394
-
1395
- ### Updates
1396
-
1397
- - Change *.d.ts file path for rush-lib
1398
- - Add "ignoreMissingScript" flag to custom command and fix other minor issues
1399
- - Add --pack option to "rush publish" to support packing packages into tarballs instead of publishing to NPM registry
1400
- - Upgrade colors to version ~1.2.1
1401
-
1402
- ## 4.3.1
1403
- Tue, 20 Mar 2018 20:02:56 GMT
1404
-
1405
- ### Updates
1406
-
1407
- - Add support for overriding the default windows parallelism with 'max'.
1408
- - Remove IPackageJson API. Consumers should now use the equivalent definition from @microsoft/node-core-library instead.
1409
- - Move the environment checks from rush-lib to rush
1410
- - Fix an annoyance where common/temp/shrinkwrap.yaml was formatted in a way that made diffs less readable
1411
-
1412
- ## 4.3.0
1413
- Fri, 02 Mar 2018 02:45:37 GMT
1414
-
1415
- ### Updates
1416
-
1417
- - Fix an issue where we always deleted the pnpm store. This is not necessary since the store is transactional. We should only delete the store if it is a --clean install.
1418
- - Fix an issue where the package manager installation could get corrupted if the Rush tool was accidentally invoked multiple times concurrently.
1419
- - Fix issue with pnpm where store was not removed after an unsuccessful installation
1420
- - When Rush links PNPM packages to their dependencies, it should link to the realpath, rather than linking to the symlink. This will improve performance of builds by reducing the number of file system reads that are needed.
1421
- - Update Rush to consider the shrinkwrap file during incremental builds.
1422
- - Add a --changed-projects-only flag to 'rush build', which will skip rebuilding of downstream packages. It will only rebuild projects that change, but not their dependents.
1423
- - Add a locking mechanism around certain rush commands so only one process can be working in a Rush repository at a single point in time. This is useful for commands that may corrupt each other, like generate, install, link, and rebuild.
1424
- - When using pnpm, Rush will check and see if other projects are using a dependency and will re-use it if possible. This way, a user will not have to run "rush generate" if they are adding a dependency that is already being used elsewhere in the monorepo.
1425
- - Add a notice for unsupported versions of NodeJS runtime
1426
- - Add a new command-line flag "--conservative" which causes "rush generate" to perform a minimal upgrade
1427
- - Improved "rush generate" so that if interrupted, it does not leave you with a deleted shrinkwrap.yaml; the new integrity checks eliminate the need for this, and it was annoying
1428
- - Fix Rush version increase logic to handle cyclic dependencies properly
1429
-
1430
- ## 4.2.5
1431
- Fri, 26 Jan 2018 00:36:51 GMT
1432
-
1433
- ### Updates
1434
-
1435
- - Fix an issue when parsing scoped peer dependencies in the pnpm shrinkwrap file
1436
-
1437
- ## 4.2.4
1438
- Sun, 21 Jan 2018 06:33:59 GMT
1439
-
1440
- ### Updates
1441
-
1442
- - Improve the error message when loading rush.json from a newer release
1443
-
1444
- ## 4.2.3
1445
- Thu, 18 Jan 2018 19:02:07 GMT
1446
-
1447
- ### Updates
1448
-
1449
- - Avoid git errors when there are only empty change files
1450
-
1451
- ## 4.2.2
1452
- Wed, 17 Jan 2018 10:49:31 GMT
1453
-
1454
- _Version update only_
1455
-
1456
- ## 4.2.1
1457
- Fri, 12 Jan 2018 23:35:48 GMT
1458
-
1459
- ### Patches
1460
-
1461
- - Fix a bug in "rush change" to allow skipping changes when empty change file exists.
1462
- - Change the way Rush prints output, to make it more readable and easy to tell how far into a build you are.
1463
-
1464
- ## 4.2.0
1465
- Mon, 11 Jan 2018 22:14:30 GMT
1466
-
1467
- ### Minor changes
1468
-
1469
- - Introduce a new project-specific setting "skipRushCheck" to exempt certain projects from the "rush check" validation
1470
- - Introduce a new setting "mainProject" for lockstep version policies. This enables a scenario where a group of packages share a common change log, which is associated with the main project.
1471
-
1472
- ## 4.1.1
1473
- Mon, 08 Jan 2018 20:34:30 GMT
1474
-
1475
- ### Patches
1476
-
1477
- - Fix an issue with checking the pnpm shrinkwrap file when there are peer dependency version specifiers
1478
-
1479
- ## 4.1.0
1480
- Thu, 30 Nov 2017 20:34:30 GMT
1481
-
1482
- ### Minor changes
1483
-
1484
- - Adding support for using PNPM with Rush
1485
-
1486
- ### Patches
1487
-
1488
- - Fix issue where 'rush publish' was failing when the only changefiles were 'none' type
1489
- - Add support for hotfix changes
1490
- - Fix an issue with file locks causing exceptions during 'rush install'
1491
- - Fix issue where 'rush install' did not invalidate node_modules after bumping package manager version
1492
-
1493
- ## 4.0.1
1494
- Mon, 13 Nov 2017 18:34:30 GMT
1495
-
1496
- ### Patches
1497
-
1498
- - Fix the regression where "rush -h" didn't work outside a repo folder
1499
- - Reduce the default parallelism on Windows platform
1500
- - Force change log name to be the same as package name to handle the error case when package is renamed but change log is not
1501
-
1502
- ## 4.0.0
1503
- Sat, 4 Nov 2017 03:22:28 GMT
1504
-
1505
- ### Breaking changes
1506
-
1507
- - Complete release notes are here: https://github.com/microsoft/web-build-tools/wiki#november-3-2017---rush-4-released
1508
- - Adding custom commands and options.
1509
- - Adding rush version selector.
1510
- - Updating the semantics of rush change.
1511
-
1512
- ## 3.0.20
1513
- Thu, 19 Oct 2017 23:01:49 GMT
1514
-
1515
- ### Patches
1516
-
1517
- - Fix a stack overflow error that occurs when "rush rebuild" encounters a cyclic dependency
1518
- - Fix a bug that "rush rebuild" fails if "from" parameter is provided
1519
- - Validate versions before "rush version" commits version updates
1520
-
1521
- ## 3.0.19
1522
- Fri, 06 Oct 2017 22:44:31 GMT
1523
-
1524
- ### Patches
1525
-
1526
- - Enable strickNullChecks
1527
- - Fix a bug in "rush version" that devdependency does not get bumped if there is no dependency.
1528
- - Fix a bug in "rush change" so it handles rename properly.
1529
- - Add npm tag support in "rush publish".
1530
-
1531
- ## 3.0.18
1532
- Tue, 26 Sep 2017 13:51:05 GMT
1533
-
1534
- ### Patches
1535
-
1536
- - Update various dependencies
1537
-
1538
- ## 3.0.17
1539
- Thu, 14 Sep 2017 18:51:05 GMT
1540
-
1541
- ### Patches
1542
-
1543
- - Fix some issues in rush telemetry collection
1544
-
1545
- ## 3.0.16
1546
- Wed, 6 Sep 2017 18:24:39 GMT
1547
-
1548
- ### Patches
1549
-
1550
- - Fix an issue running 'rush install' after adding a new project
1551
-
1552
- ## 3.0.15
1553
- Wed, 30 Aug 2017 18:24:39 GMT
1554
-
1555
- ### Patches
1556
-
1557
- - Replace the temp_modules/*/package.json files with TGZ files
1558
- - Add repositoryUrl to RushConfiguration to track remote repository
1559
- - Use the new Json API from node-core-library
1560
- - Add two new methods to ChangeFile class
1561
- - Introduce an experimental "rush version" action to manage project versions based on version policy
1562
- - Make "rush generate" not throw if there is a problem reading the shrinkwrap file
1563
-
1564
- ## 3.0.12
1565
- Fri, Jul 21, 2017 22:30:12 PM
1566
-
1567
- ### Patches
1568
-
1569
- - Temporarily revert Rush incremental build checking files outside of the project's directory
1570
- - Fix error message during build
1571
- - Add a ChangeFile class to rush-lib
1572
- - Fix an issue where rush would crash if it could not find the rush.json
1573
- - If "rush generate" detects that all dependencies are present, it will do nothing. This is overridable with the "--force" flag.
1574
- - Promote Changelog interfaces to an @alpha API in rush-lib
1575
-
1576
- ## 3.0.11
1577
- Mon, Jul 3, 2017 10:53:12 PM
1578
-
1579
- ### Patches
1580
-
1581
- - Add support for non-SemVer dependency specifiers in package.json; for example, "github:gulpjs/gulp#4.0" or "git://github.com/user/project.git#commit-ish"
1582
-
1583
- ## 3.0.10
1584
- Tue, 27 Jun 2017 21:44:50 GMT
1585
-
1586
- ### Patches
1587
-
1588
- - Fix an issue with 'rush rebuild' where it fails on non-windows platforms
1589
- - Fix an issue with 'rush -help' where it throws if rush.json is not available.
1590
-
1591
- ## 3.0.9
1592
- Thu, June 8, 2017 03:30:27 GMT
1593
-
1594
- ### Patches
1595
-
1596
- - Fix issue with 'rush check' where it sometimes threw exceptions.
1597
-
1598
- ## 3.0.8
1599
- Thu, June 8, 2017 03:00:27 GMT
1600
-
1601
- ### Patches
1602
-
1603
- - Fix issue with 'rush check' so it no longer considers cyclic dependencies as a mismatch.
1604
-
1605
- ## 3.0.7
1606
- Tue, May 23, 2017 00:55:27 GMT
1607
-
1608
- ### Patches
1609
-
1610
- - Fix a regression for packages with an empty script (no-op)
1611
-
1612
- ## 3.0.6
1613
- Sat, May 20, 2017 00:55:27 GMT
1614
-
1615
- ### Patches
1616
-
1617
- - Revert major break with rush build
1618
-
1619
- ## 3.0.5
1620
- Fri, May 19, 2017 10:55:27 GMT
1621
-
1622
- ### Patches
1623
-
1624
- - Fix the Rush build error due to 'SyntaxError: Unexpected token u in JSON at position 0'
1625
- - Fix a minor bug where Rush complained about extra directories.
1626
-
1627
- ## 3.0.4
1628
- Tue, May 17, 2017 01:48:27 GMT
1629
-
1630
- ### Patches
1631
-
1632
- - Improved the "rush build" change detection: if any file outside a project folder has changed, rebuild all projects.
1633
- - The "rush build" command now stores the command-line options used during a build, and forces a full rebuild if the options have changed.
1634
- - Fix for a "rush publish" bug involving command line option quoting.
1635
-
1636
- ## 3.0.3
1637
- Tue, May 16, 2017 00:43:27 GMT
1638
-
1639
- ### Patches
1640
-
1641
- - Fix a regression where "rush install" sometimes failed to install the NPM tool
1642
-
1643
- ## 3.0.2
1644
- Sun, May 14, 2017 19:22:16 GMT
1645
-
1646
- ### Patches
1647
-
1648
- - Fix some minor documentation issues
1649
-
1650
- ## 3.0.1
1651
- Sun, May 14, 2017 18:30:35 GMT
1652
-
1653
- ### Breaking changes
1654
-
1655
- - THIS IS A BREAKING CHANGE - see the web-build-tools news page for migration instructions
1656
- - The "rush install" now automatically detects when you need to run "rush generate", and the algorithm has been redesigned so that many package.json updates can skip "rush generate" entirely - hurray!
1657
- - Major restructing of common folder; the "temp_modules" folder is no longer tracked by Git
1658
- - Greatly simplified .gitignore; all of Rush's temporary files are now under common/temp
1659
- - The rush.json file format has been simplified, and auxiliary config files are now consolidated in common/config/rush
1660
- - The "packageReviewFile" feature has been overhauled - see wiki documentation on GitHub
1661
- - The "rush check" command was renamed to "rush scan", and "rush check-versions" was shortened to "rush check"
1662
-
1663
- ### Minor changes
1664
-
1665
- - The change log file format was expanded to support subset publishing (coming soon!)
1666
- - More operations now use the AsyncRecycleBin feature
1667
- - The "rush link" command now skips if nothing has changed
1668
-
1669
- ### Patches
1670
-
1671
- - Numerous small fixes and enhancments
1672
-
1673
- ## 2.5.0
1674
- Tue, 11 Apr 2017 21:20:58 GMT
1675
-
1676
- ### Minor changes
1677
-
1678
- - Deprecate the pinnedVersions field of rush.json in favor of a standalone pinnedVer sions.json
1679
-
1680
- ### Patches
1681
-
1682
- - Bump stream-collator to 2.0.0
1683
- - Publish: Improve detection of already published package versions
1684
- - Publish: Fix a bug where not all project versions get updated for prerelease
1685
-
1686
- ## 2.4.0
1687
- Thu, 30 Mar 2017 18:25:38 GMT
1688
-
1689
- ### Minor changes
1690
-
1691
- - The 'link' action will be automatically ran after 'install' or 'generate'.
1692
- - Support adding a suffix during rush generate
1693
-
1694
- ### Patches
1695
-
1696
- - Fixing an issue where install was not detecting changes to the shrinkwrap
1697
- - Registry should not be hardcoded when auth token is provided
1698
-
1699
- ## 2.3.0
1700
- Fri, 24 Feb 2017 22:54:16 GMT
1701
-
1702
- ### Minor changes
1703
-
1704
- - Minor version
1705
-
1706
- ## 2.2.1
1707
- Fri, 24 Feb 2017 22:53:18 GMT
1708
-
1709
- _Version update only_
1710
-
1711
- ## 2.2.0
1712
- Fri, 24 Feb 2017 22:44:31 GMT
1713
-
1714
- ### Minor changes
1715
-
1716
- - Add a "pinnedVersions" option to rush.json, which will add dependencies to the common package.json. Since these dependencies are installed first, this mechanism can be used to control versions of unconstrained second-level dependencies.
1717
- - Make --quiet builds the default. Deprecate the --quiet parameter. Add a --verbose parameter which displays the build logs.
1718
-
1719
- ### Patches
1720
-
1721
- - Rush install checks to ensure that generate has been run.
1722
-
1723
- ## 1.8.2
1724
- Wed, 15 Feb 2017 08:54:44 GMT
1725
-
1726
- ### Patches
1727
-
1728
- - Temporarily reverting the new temp_modules validation feature, because it is incompatible with some usage scenarios
1729
-
1730
- ## 1.8.1
1731
- Tue, 14 Feb 2017 23:40:44 GMT
1732
-
1733
- ### Patches
1734
-
1735
- - Fixing a bug with install where it preemptively returned before installing.
1736
-
1737
- ## 1.8.0
1738
- Tue, 14 Feb 2017 22:53:30 GMT
1739
-
1740
- ### Minor changes
1741
-
1742
- - Install will error if the temp_modules have drifted out of sync with the package's package.json files
1743
-
1744
- ## 1.7.0
1745
- Tue, 14 Feb 2017 02:31:40 GMT
1746
-
1747
- ### Minor changes
1748
-
1749
- - Adds an extra command (rush check-versions), which can find inconsistencies in package.json dependency versions across a repository.
1750
-
1751
- ## 1.6.0
1752
- Sun, 05 Feb 2017 01:21:30 GMT
1753
-
1754
- ### Minor changes
1755
-
1756
- - Add support for pre-release build
1757
-
1758
- ### Patches
1759
-
1760
- - When the git policy fails, rush should return a non-zero error code.
1761
- - Lock version numbers for @types packages
1762
- - Ensure world readiness
1763
- - Update .npmignore
1764
- - Cyclic dependency should not have version bumped when changes are applied.
1765
-
1766
- ## 1.5.1
1767
- Tue, 24 Jan 2017 03:26:05 GMT
1768
-
1769
- ### Patches
1770
-
1771
- - The 'link' command should display elapsed time when finished executing.
1772
- - Minor fix so "allowedEmailRegExps" works on Mac/Linux
1773
- - Fixed a small bug where "rush publish -a" was not deleting changelog files
1774
-
1775
- ## 1.5.0
1776
- Sun, 22 Jan 2017 02:04:57 GMT
1777
-
1778
- ### Minor changes
1779
-
1780
- - Implemented a new rush.json option "gitPolicy" to avoid incorrect commit e-mails
1781
-
1782
- ### Patches
1783
-
1784
- - Update temp_modules when versions are bumped.
1785
-
1786
- ## 1.4.1
1787
- Tue, 03 Jan 2017 21:52:49 GMT
1788
-
1789
- ### Patches
1790
-
1791
- - Fixing `rush publish` changelog code to reference projects correctly.
1792
- - `rush publish` now only updates changelogs for projects that are marked as shouldPublish=true.
1793
-
1794
- ## 1.4.0
1795
- Tue, 06 Dec 2016 20:44:26 GMT
1796
-
1797
- ### Minor changes
1798
-
1799
- - Changes for RC0 release.
1800
-
1801
- ## 1.3.0
1802
- Sat, 03 Dec 2016 07:47:39 GMT
1803
-
1804
- ### Minor changes
1805
-
1806
- - Adding support for changelog generation to rush publish.
1807
- - Refactoring "config" into "configuration."
1808
-
1809
- ### Patches
1810
-
1811
- - Converting node and webpack-env typings to use @types, and cleaning them up.
1812
- - The cache should be cleaned unless we are using the global cache
1813
- - Fixed a regression where "rush install" would sometimes corrupt the node_modules folder. Also, common/package.json is now sorted deterministically.
1814
-
1815
- ## 1.2.4
1816
-
1817
- ### Patches
1818
-
1819
- - If the `test`, `clean`, or `build` commands are defined in the package.json, but are empty strings, then do a no-op during the build.
1820
-
1821
- ## 1.2.3
1822
-
1823
- ### Patches
1824
-
1825
- - Make deletion of node_modules folder more cautious to improve failure rate on automated builds.
1826
- - Updating Rush generate to more efficiently delete folders.
1827
-
1828
- ## 1.2.2
1829
-
1830
- ### Patches
1831
-
1832
- - Updating the deps hash dependency, which includes a fix which resolves a bug where changes were not being recalculated when multiple files were changed.
1833
-
1834
- ## 1.2.1
1835
-
1836
- ### Patches
1837
-
1838
- - Updating the rush `change` with better verification logic.
1839
-
1840
- ## 1.2.0
1841
-
1842
- ### Minor changes
1843
-
1844
- - Adding the 'build' action, which support incremental build.
1845
-
1846
- ## 1.1.3
1847
-
1848
- ### Patches
1849
-
1850
- - Partially reverting changes for treating success with warnings differently.
1851
- - Making Rush install transactional.
1852
-
1853
- ## 1.1.2
1854
-
1855
- ### Patches
1856
-
1857
- - Fix a bug in rush `change`
1858
-
1859
- ## 1.1.1
1860
-
1861
- ### Patches
1862
-
1863
- - correcting casing of files and imports
1864
-
1865
- ## 1.1.0
1866
-
1867
- ### Minor changes
1868
-
1869
- - The "packageReviewFile" feature now supports a setting "ignoredNpmScopes" that can be used e.g. to ignore the "@types" scope
1870
-
1871
- ### Patches
1872
-
1873
- - Fixing Rush to run on UNIX and Linux.
1874
-
1875
- ## 1.0.10
1876
-
1877
- ### Breaking changes
1878
-
1879
- - Rename `shouldTrackChanges` to `shouldPublish` which indicates whether a package should be included for the `publish` workflow.
1880
-
1881
- ### Minor changes
1882
-
1883
- - Updating `rush install` to be transactional.
1884
-
1885
- ### Patches
1886
-
1887
- - Updating the `publish` workflow.
1888
-
1889
- ## 1.0.9
1890
-
1891
- ### Patches
1892
-
1893
- - Updating the `publish` workflow.
1894
-
1895
- ## 1.0.7
1896
-
1897
- ### Patches
1898
-
1899
- - Renaming the `local-npm` directory to `npm-local`.
1900
- - Include NPM --cache and NPM --tmp options in the rush.json file.
1901
- - Limit Rush Rebuild parallelism to 'number-of-cores' simultaneous builds, optionally overridable on command line
1902
-
1903
- ## 1.0.5
1904
-
1905
- ### Patches
1906
-
1907
- - Fixed a bug in Rush Generate which showed: `ERROR: Input file not found: undefined` when packageReviewFile is omitted
1908
-
1909
- ## 1.0.4
1910
-
1911
- ### Minor changes
1912
-
1913
- - Added optional support for a "packageReviewFile" that helps detect when new NPM package dependencies are introduced
1914
-
1915
- ### Patches
1916
-
1917
- - Replaced JSON.parse() with jju for improved error handling.
1918
-
1919
- ## 1.0.3
1920
-
1921
- ### Patches
1922
-
1923
- - Fix Mac OS X compatibility issue
1924
-
1925
- ## 1.0.0
1926
-
1927
- _Initial release_
1928
-
1
+ # Change Log - @microsoft/rush
2
+
3
+ This log was last generated on Fri, 07 Jan 2022 01:21:44 GMT and should not be manually modified.
4
+
5
+ ## 5.59.1
6
+ Fri, 07 Jan 2022 01:21:44 GMT
7
+
8
+ ### Patches
9
+
10
+ - Fixes a regression in bulk command execution when using "unsafe" selector parameters, e.g. "--only". Ensures that only the projects selected by the parameters get included in the build, rather that forcibly including all dependencies.
11
+
12
+ ## 5.59.0
13
+ Thu, 06 Jan 2022 22:18:13 GMT
14
+
15
+ ### Minor changes
16
+
17
+ - Update the "rush init" template to enable pnpm workspaces and to merge the pnpm-lock.yaml file as text.
18
+
19
+ ### Updates
20
+
21
+ - Fix an issue that occurs when running a command with a selection argument with a Git ref (like `--from git:main`) in a repo with a pnpm lockfile larger than 1MB.
22
+ - Fix an issue with installing Git hooks that occurs when the rush.json folder isn't at the repo's root.
23
+ - (BREAKING CHANGE) Remove the experimental command "rush write-build-cache", since it is no longer needed and would be incompatible with phased builds. If you need this command for some reason, please create a GitHub issue.
24
+ - Add support for phased commands behind the multiPhaseCommands experiment.
25
+ - Update "rush init" to write files with OS-default line endings (CRLF on Windows, LF otherwise) instead of always writing CRLF line endings.
26
+
27
+ ## 5.58.0
28
+ Thu, 16 Dec 2021 05:39:21 GMT
29
+
30
+ ### Updates
31
+
32
+ - Fix an issue where Rush's Git hooks were broken if another tool such as Husky had tampered with the `core.hooksPath` (GitHub #3004)
33
+ - Provide a more useful error message if the git version is too old.
34
+ - Allow "rush list" to be invoked while other rush processes are running in the same repo.
35
+ - For project selection parameters such as "rush build --to git:REF", improve the diff analysis to detect which individual projects are impacted by a modification of the PNPM lockfile (GitHub #3050)
36
+ - Allow multiple remote URLs to be specified in the rush.json in the new repository.urls field.
37
+ - (BREAKING CHANGE) Replace the RushConfiguration repositoryUrl field with repositoryUrls to support multiple remote URLs specified in rush.json.
38
+
39
+ ## 5.57.1
40
+ Thu, 09 Dec 2021 00:24:47 GMT
41
+
42
+ _Version update only_
43
+
44
+ ## 5.57.0
45
+ Fri, 03 Dec 2021 02:16:10 GMT
46
+
47
+ ### Updates
48
+
49
+ - Add support for the "filterLog" hook in common/config/rush/.pnpmfile.cjs
50
+ - (EXPERIMENTAL) Ability to load third-party plugin packages that customize the behavior of Rush
51
+ - Fix an issue where parameter values containing spaces are incorrectly passed to global scripts.
52
+ - Parameters such as "--to" and "--from" now accept selector expressions: "version-policy:NAME" indicates the set of projects belonging to a publishing version policy. "git:REF" detects the set of projects that have been modified since the specified Git revision; for example, this allows a Rush command to process only the projects modified by a PR branch. (GitHub #2968)
53
+ - Improved the change detection logic to work correctly when a second rush.json appears in a subfolder.
54
+ - (EXPERIMENTAL) Add a new NPM package "@rushstack/rush-sdk" for use by Rush plugins
55
+ - Stop deleting the pnpm-store after failed workspace installs. Usually a multiple failure is due to a network error or a package that does not exist in the registry, not an issue with the pnpm-store.
56
+
57
+ ## 5.56.0
58
+ Thu, 28 Oct 2021 23:49:31 GMT
59
+
60
+ ### Updates
61
+
62
+ - Add CI skipping to default version & changelog commits
63
+ - Update suggested version of NPM
64
+ - Fix update-autoinstaller with NPM
65
+ - Streamline rushx output and add quiet flag.
66
+ - Include support for adding multiple packages with the "rush add" command.
67
+ - Update the package.json repository field to include the directory property.
68
+ - Fix the error message printed when `--interactive` is passed to `rush update-cloud-credentials` and the cloud cache provider is Amazon S3.
69
+ - Mark Node 16 as the current latest LTS version.
70
+ - support `--debug-package-manager` install options for yarn
71
+
72
+ ## 5.55.1
73
+ Tue, 12 Oct 2021 22:26:25 GMT
74
+
75
+ ### Updates
76
+
77
+ - Fix an issue where a version field isn't parsed correctly when using NPM version 7 and newer.
78
+
79
+ ## 5.55.0
80
+ Thu, 07 Oct 2021 23:44:52 GMT
81
+
82
+ ### Updates
83
+
84
+ - Fix typo when project dependencies do not match the current shrinkwrap
85
+ - Use ITerminal in the rush-lib API instead of Terminal to allow for compatibility with other versions of @rushstack/node-core-library.
86
+ - Add a new parameter "--detailed" for the "rush list" command
87
+ - Print the full event hooks output if the --debug paramter is specified.
88
+ - Upgrade the `@types/node` dependency to version to version 12.
89
+
90
+ ## 5.54.0
91
+ Wed, 22 Sep 2021 22:54:17 GMT
92
+
93
+ ### Minor changes
94
+
95
+ - Add ability to customize tag separator
96
+
97
+ ### Patches
98
+
99
+ - Lock node-fetch dependency to 2.6.2 due to an incompatibility with 2.6.3 in the Azure Cloud Cache Provider.
100
+
101
+ ### Updates
102
+
103
+ - Add a "--check-only" parameter to "rush install" to check the validity of the shrinkwrap without performing a full install.
104
+ - Fix an issue where `rush update-autoinstaller` does not use the repo's .npmrc
105
+
106
+ ## 5.53.0
107
+ Fri, 10 Sep 2021 23:20:00 GMT
108
+
109
+ ### Updates
110
+
111
+ - Fix an issue where the incremental build should use caching or skipping, but not both (GitHub #2891)
112
+ - Cache rush-project.json reads
113
+ - Fix an issue where the build cache did not respect "allowWarningsInSuccessfulBuild" (GitHub #2803)
114
+ - Add an experiment "buildCacheWithAllowWarningsInSuccessfulBuild" to allow caching for projects with warnings (GitHub #2803)
115
+
116
+ ## 5.52.0
117
+ Mon, 23 Aug 2021 21:34:46 GMT
118
+
119
+ ### Updates
120
+
121
+ - Add properties to the extraData section of the telemetry file for parameter usage in the install commands
122
+ - Add .heft to .gitignore file generated by rush init
123
+
124
+ ## 5.51.1
125
+ Fri, 13 Aug 2021 22:45:36 GMT
126
+
127
+ ### Updates
128
+
129
+ - When build cache is enabled in `rush build`, allow projects downstream to be satisfied from the cache if applicable. Cache reads will still be disabled for `rush rebuild`.
130
+
131
+ ## 5.51.0
132
+ Wed, 11 Aug 2021 23:16:09 GMT
133
+
134
+ ### Updates
135
+
136
+ - The --debug flag now also shows additional diagnostic information.
137
+ - Update JSZip dependency.
138
+ - Adds support for the project subset selection parameters ("--to", "--from", etc., documented at https://rushjs.io/pages/developer/selecting_subsets/) to the "rush list" command.
139
+ - Allow the tar binary path to be overridden via the RUSH_TAR_BINARY_PATH environment variable.
140
+
141
+ ## 5.50.0
142
+ Sat, 17 Jul 2021 01:16:04 GMT
143
+
144
+ ### Minor changes
145
+
146
+ - (Breaking change) Remove the experimental "--disable-build-cache" command line parameter.
147
+
148
+ ### Patches
149
+
150
+ - When the experimental build cache is enabled, "rush rebuild" now forces cached projects to be rebuilt (GitHub #2802)
151
+
152
+ ## 5.49.2
153
+ Thu, 15 Jul 2021 01:47:18 GMT
154
+
155
+ ### Updates
156
+
157
+ - Fix incremental build state calculation when using filtered installs
158
+
159
+ ## 5.49.1
160
+ Tue, 13 Jul 2021 23:03:01 GMT
161
+
162
+ ### Updates
163
+
164
+ - Fix an issue where the "--no-fetch" "rush change" parameter would cause a "git fetch" and absence of that parameter wouldn't fetch.
165
+
166
+ ## 5.49.0
167
+ Tue, 13 Jul 2021 06:22:09 GMT
168
+
169
+ ### Updates
170
+
171
+ - Expose APIs useful for determining which projects have changed on the current branch compared to another branch.
172
+
173
+ ## 5.48.0
174
+ Fri, 09 Jul 2021 01:44:18 GMT
175
+
176
+ ### Updates
177
+
178
+ - Add RUSH_ALLOW_WARNINGS_IN_SUCCESSFUL_BUILD environment variable
179
+ - Prevent "rush change" from prompting for an email address, since this feature was rarely used. To restore the old behavior, enable the "includeEmailInChangeFile" setting in version-policies.json
180
+ - The "rushx" command now reports a warning when invoked in a project folder that is not registered in rush.json
181
+ - Fix the build-cache.json cacheEntryNamePattern description of the [normalize] token.
182
+ - When selection CLI parameters are specified and applying them does not select any projects, log that the selection is empty and immediately exit.
183
+ - Fix an issue where files restored by the build cache did not have a current modification time
184
+ - Upgrade the "rush init" template to use PNPM version 6.7.1; this avoids an important regression in PNPM 6.3.0 where .pnpmfile.cjs did not work correctly: https://github.com/pnpm/pnpm/issues/3453
185
+ - Fix a JSON schema issue that prevented "disableBuildCache" from being specified in command-line.json
186
+ - Removed dependency on chokidar from BulkScriptAction in watch mode, since it adds unnecessary overhead.
187
+
188
+ ## 5.47.0
189
+ Sat, 15 May 2021 00:02:26 GMT
190
+
191
+ ### Updates
192
+
193
+ - For the experimental build cache feature, eliminate the RUSH_BUILD_CACHE_WRITE_CREDENTIAL environment variable; it is replaced by several new variables RUSH_BUILD_CACHE_CREDENTIAL, RUSH_BUILD_CACHE_WRITE_ALLOWED, and RUSH_BUILD_CACHE_ENABLED
194
+ - Take pnpm-workspace.yaml file into consideration during install skip checks for PNPM
195
+ - Fix a build cache warning that was sometimes displayed on Windows OS: "'tar' exited with code 1 while attempting to create the cache entry" (GitHub #2622)
196
+ - Fix an issue where "rushx" CLI arguments were not escaped properly (GitHub #2695)
197
+ - Allow rush-project.json to specify incrementalBuildIgnoredGlobs (GitHub issue #2618)
198
+ - Remove support for PNPM < 5.0.0 and remove the "resolutionStrategy" option
199
+ - Update "rush init" assets to use newer versions of Rush and PNPM. If you are looking to use PNPM < 6, you must rename the initialized ".pnpmfile.cjs" file to "pnpmfile.js". For more information, see: https://pnpm.io/5.x/pnpmfile
200
+ - Transform package.json using pnpmfile before checking if a Rush project is up-to-date
201
+ - Add support for the Yarn "resolutions" package.json feature.
202
+
203
+ ## 5.46.1
204
+ Tue, 04 May 2021 20:26:15 GMT
205
+
206
+ ### Updates
207
+
208
+ - Fix an issue where the buildCacheEnabled setting was not applied correctly
209
+
210
+ ## 5.46.0
211
+ Tue, 04 May 2021 02:45:20 GMT
212
+
213
+ ### Updates
214
+
215
+ - Remove "buildCache" setting from experiments.json; it is superseded by "buildCacheEnabled" in build-cache.json
216
+ - Add a "rush init" template for build-cache.json
217
+ - Temporarily downgrade the "@azure/identity" to eliminate the keytar native dependency (GitHub issue #2492)
218
+
219
+ ## 5.45.6
220
+ Fri, 30 Apr 2021 00:32:16 GMT
221
+
222
+ ### Updates
223
+
224
+ - Fix a regression in the S3 cloud build cache provider
225
+
226
+ ## 5.45.5
227
+ Wed, 28 Apr 2021 17:54:16 GMT
228
+
229
+ ### Updates
230
+
231
+ - Improve diagnostic messages printed by the rush build cache
232
+ - Fix an issue where Rush fails to run on Windows when the repository absolute path contains a space
233
+ - Use simpler and more accurate check before skipping installs
234
+
235
+ ## 5.45.4
236
+ Fri, 23 Apr 2021 22:48:23 GMT
237
+
238
+ _Version update only_
239
+
240
+ ## 5.45.3
241
+ Fri, 23 Apr 2021 22:03:08 GMT
242
+
243
+ ### Updates
244
+
245
+ - Allow prerelease versions of PNPM to be used in workspaces mode
246
+
247
+ ## 5.45.2
248
+ Thu, 22 Apr 2021 23:07:51 GMT
249
+
250
+ ### Updates
251
+
252
+ - Fix bad installs with when using pnpmfile in PNPM 6
253
+
254
+ ## 5.45.1
255
+ Wed, 21 Apr 2021 23:38:22 GMT
256
+
257
+ ### Updates
258
+
259
+ - Ensure that pnpm-workspace.yaml is always fully regenerated during "rush install" or "rush update"
260
+ - Fix support for pnpmfile in PNPM 6.
261
+
262
+ ## 5.45.0
263
+ Tue, 20 Apr 2021 19:04:04 GMT
264
+
265
+ ### Updates
266
+
267
+ - Print diagnostic information to a log file "<project-root>/.rush/build-cache-tar.log" when the native "tar" is invoked.
268
+ - The Amazon S3 build cloud cache provider can now use buckets outside the default region
269
+ - Add support for PNPM 6
270
+
271
+ ## 5.44.0
272
+ Sat, 17 Apr 2021 00:17:51 GMT
273
+
274
+ ### Updates
275
+
276
+ - Add --json and --all param to rush scan
277
+ - Fix "rush deploy" having "includeDevDependencies" turned on to deploy "devDependencies" for rush projects only
278
+
279
+ ## 5.43.0
280
+ Thu, 08 Apr 2021 06:09:52 GMT
281
+
282
+ ### Updates
283
+
284
+ - Add "--ignore-git-hooks" flags to "publish" and "version" commands to prevent the execution of all git hooks
285
+ - Fix parameter name typo.
286
+ - Eliminate a spurious warning that was displayed on Azure DevOps build agents: A phantom "node_modules" folder was found.
287
+ - Fix an issue where "rush change" reported "Unable to find a git remote matching the repository URL" when used with SSH auth
288
+ - Fix an issue where "rush publish" reported 403 errors if the package version included a SemVer build metadata suffix
289
+ - Partially deprecate RUSH_TEMP_FOLDER environment variable
290
+ - Validate changefiles against a schema when running 'rush change --verify'
291
+
292
+ ## 5.42.4
293
+ Mon, 29 Mar 2021 05:57:18 GMT
294
+
295
+ ### Updates
296
+
297
+ - Don't validate the shrinkwrap when running 'rush update'
298
+ - Gracefully handle a simultaneous upload to Azure Storage.
299
+ - Update rush publish -p flag description
300
+
301
+ ## 5.42.3
302
+ Wed, 17 Mar 2021 05:07:02 GMT
303
+
304
+ ### Updates
305
+
306
+ - Fix installation-time behavior of "omitImportersFromPreventManualShrinkwrapChanges" experiment.
307
+ - Don't upload build cache entries to Azure if the cache entry already exists.
308
+ - Replace the AWS dependencies with use of the Amazon S3 REST API.
309
+ - Add support for anonymous read from an Amazon S3-hosted cache.
310
+
311
+ ## 5.42.2
312
+ Tue, 16 Mar 2021 00:30:38 GMT
313
+
314
+ ### Updates
315
+
316
+ - Add experiment to exclude the "importers" section of "pnpm-lock.yaml" from the "preventManualShrinkwrapChanges" feature.
317
+
318
+ ## 5.42.1
319
+ Fri, 12 Mar 2021 02:11:24 GMT
320
+
321
+ ### Updates
322
+
323
+ - Temporarily disable the AWS S3 credential provider logic to mitigate a problematic peer dependency (GitHub #2547)
324
+
325
+ ## 5.42.0
326
+ Wed, 10 Mar 2021 06:25:44 GMT
327
+
328
+ ### Updates
329
+
330
+ - Add AWS S3 support to the experimental build cache feature
331
+
332
+ ## 5.41.0
333
+ Wed, 10 Mar 2021 05:12:41 GMT
334
+
335
+ ### Updates
336
+
337
+ - Fix an issue where "rush install" could stall indefinitely because a network request did not handle timeouts properly
338
+ - Allow merge conflicts in repo-state.json to be automatically resolved.
339
+ - Add a RUSH_INVOKED_FOLDER environment variable so that custom scripts can determine the folder path where Rush was invoked (GitHub #2497)
340
+ - Add `preferFrozenLockfileForUpdate` option to minimize lockfile churn by passing --prefer-frozen-lockfile to pnpm during default `rush update`.
341
+
342
+ ## 5.40.7
343
+ Tue, 02 Mar 2021 23:27:41 GMT
344
+
345
+ ### Updates
346
+
347
+ - Fix a regression where certain Rush operations reported a TypeError (GitHub #2526)
348
+
349
+ ## 5.40.6
350
+ Tue, 02 Mar 2021 06:22:01 GMT
351
+
352
+ ### Updates
353
+
354
+ - Improve cache read/write perf by attempting to use the "tar" binary.
355
+ - Fix default text in rush.json generated by "rush init."
356
+ - Fix an issue where Rush would fail to restore from cache but report success when Git isn't present.
357
+
358
+ ## 5.40.5
359
+ Tue, 23 Feb 2021 03:26:25 GMT
360
+
361
+ ### Updates
362
+
363
+ - Account for indirect dependencies when ordering projects in "rush build" if the intermediary dependencies are excluded by selection parameters.
364
+
365
+ ## 5.40.4
366
+ Tue, 23 Feb 2021 00:01:20 GMT
367
+
368
+ ### Updates
369
+
370
+ - Make Rush per-project manifest generation more reliable and remove PNPM shrinkwrap validation
371
+
372
+ ## 5.40.3
373
+ Sun, 21 Feb 2021 01:05:53 GMT
374
+
375
+ ### Updates
376
+
377
+ - Fix an issue where "rush setup" did not work correctly with NPM 7.x due to an NPM regression
378
+
379
+ ## 5.40.2
380
+ Fri, 19 Feb 2021 06:28:28 GMT
381
+
382
+ ### Updates
383
+
384
+ - Allow usage of Node.js 8.x since we received feedback that some projects are still supporting it
385
+
386
+ ## 5.40.1
387
+ Fri, 19 Feb 2021 01:45:27 GMT
388
+
389
+ ### Updates
390
+
391
+ - Fix a minor issue with the "rush init" template
392
+
393
+ ## 5.40.0
394
+ Wed, 17 Feb 2021 01:35:11 GMT
395
+
396
+ _Version update only_
397
+
398
+ ## 5.39.2
399
+ Wed, 17 Feb 2021 01:34:11 GMT
400
+
401
+ ### Updates
402
+
403
+ - (EXPERIMENTAL) Add a "--disable-cache" parameter for disabling the build cache.
404
+ - (EXPERIMENTAL) Add a "disableBuildCache" setting in command-line.json for disabling the build cache.
405
+ - (EXPERIMENTAL) Add options in rush-project.json for disabling the build cache for entire projects, or for individual commands for that project.
406
+ - Normalize selection CLI parameters for "rush install"
407
+ - Add experimental "rush setup" command
408
+ - Add an experimental new config file common/config/artifactory.json for enabling Artifactory integration
409
+
410
+ ## 5.39.1
411
+ Sat, 13 Feb 2021 03:14:52 GMT
412
+
413
+ ### Patches
414
+
415
+ - Convert the experimental "--watch" parameter into a "watchForChanges: true" setting in command-line.json, based on user feedback
416
+
417
+ ### Updates
418
+
419
+ - Disable build cache after initial build when "--watch" is specified. This saves disk space, reduces CPU usage, and improves compatibility with downstream file watcher processes (e.g. "webpack --watch").
420
+
421
+ ## 5.39.0
422
+ Thu, 11 Feb 2021 04:06:02 GMT
423
+
424
+ ### Minor changes
425
+
426
+ - Add a new parameter "--watch" that watches for filesystem changes and rebuilds the affected Rush projects; this feature can also be used with custom bulk commands (GitHub #2458, #1122)
427
+
428
+ ### Updates
429
+
430
+ - Improve the wording of some log messages
431
+
432
+ ## 5.38.0
433
+ Mon, 01 Feb 2021 20:42:04 GMT
434
+
435
+ ### Updates
436
+
437
+ - Add new command-line parameters for bulk commands: "--to-except", "--from", "--only", "--impacted-by", "--impacted-by-except", and "--from-version-policy" (GitHub #2354)
438
+ - Change the short name for "--changed-projects-only" to be "-c" (so that "-o" can be used for the new "--only" parameter)
439
+ - Change the "--from" parameter so that it now includes all dependencies as people expected. To skip dependencies, use the new "--impacted-by" parameter. (GitHub issue #1447)
440
+
441
+ ## 5.37.0
442
+ Sat, 30 Jan 2021 01:50:27 GMT
443
+
444
+ ### Updates
445
+
446
+ - Improve performance of association of repo file states with projects to speed up build commands in large repos.
447
+ - Add `publishFolder` property to the project configuration to allow publishing a sub-folder of the project
448
+ - Add support for --from flag for filtered installs when using workspaces
449
+ - Fix an issue where the Rush cache feature did not correctly detect files that were both tracked by git and were expected to be cached build output.
450
+ - Improve logging for the "rush write-build-cache" command
451
+ - Correct some spelling mistakes in rush.json
452
+ - Fix an error "Cannot get dependency key" sometimes reported by "rush install" (GitHub #2460)
453
+ - Updade the "rush init" template to specify PNPM 5.15.2, which fixes a performance regression introduced in PNPM 5.13.7
454
+
455
+ ## 5.36.2
456
+ Thu, 21 Jan 2021 04:51:19 GMT
457
+
458
+ ### Updates
459
+
460
+ - Update Node.js version checks to support the new LTS release
461
+ - Update rush.json produced by rush init to use PNPM 5.14.3
462
+ - Use forward slashes when creating deploy zip file for Unix compatibility
463
+
464
+ ## 5.36.1
465
+ Fri, 08 Jan 2021 06:12:37 GMT
466
+
467
+ ### Updates
468
+
469
+ - Fix an issue where projects with empty scripts would still have arguments appended.
470
+
471
+ ## 5.36.0
472
+ Fri, 08 Jan 2021 05:36:55 GMT
473
+
474
+ ### Updates
475
+
476
+ - Allow the git binary path to be overridden via the RUSH_GIT_BINARY_PATH environment variable.
477
+ - Introduce an experimental build cache feature.
478
+ - Add the ability to customize the commit message used when "rush version" is run.
479
+ - Remove the "experimental" label from some Rush commands that are now stable.
480
+
481
+ ## 5.35.2
482
+ Tue, 03 Nov 2020 23:34:30 GMT
483
+
484
+ ### Updates
485
+
486
+ - Fix bug where version process is using a wrong `git.addChanges` signature
487
+
488
+ ## 5.35.1
489
+ Fri, 30 Oct 2020 05:17:42 GMT
490
+
491
+ ### Updates
492
+
493
+ - Fix a recent "rush scan" regression (which resulted from enabling "esModuleInterop")
494
+
495
+ ## 5.35.0
496
+ Wed, 28 Oct 2020 21:44:10 GMT
497
+
498
+ ### Updates
499
+
500
+ - Adds an --ignore-hooks flag to every rush action that skips event hooks during execution of the action.
501
+ - Fix bug where version process was not adding version-policy configuration file changes into the version commit
502
+
503
+ ## 5.34.4
504
+ Sat, 17 Oct 2020 00:23:18 GMT
505
+
506
+ ### Updates
507
+
508
+ - When running `rush version --bump`, only include package.json updates in the generated commit
509
+ - Fix Rush peer dependency validation when satisfied with a package alias
510
+ - Prevent `rush unlink` from breaking installs for non-workspace projects
511
+ - Add documentation for incremental option for buld custom commands
512
+
513
+ ## 5.34.3
514
+ Wed, 30 Sep 2020 21:04:15 GMT
515
+
516
+ ### Updates
517
+
518
+ - Update to build with @rushstack/heft-node-rig
519
+ - Update README.md
520
+ - Upgrade compiler; the API now requires TypeScript 3.9 or newer
521
+
522
+ ## 5.34.2
523
+ Mon, 21 Sep 2020 22:00:03 GMT
524
+
525
+ ### Updates
526
+
527
+ - Fix an issue where "rush build" output was lagged due to stream-collator not activating streams aggressively enough
528
+ - Fix incorrect "successful" exit status code
529
+
530
+ ## 5.34.1
531
+ Thu, 17 Sep 2020 07:13:04 GMT
532
+
533
+ ### Updates
534
+
535
+ - Fix a regression that reported an error "The EnvironmentConfiguration must be initialized before values can be accessed"
536
+
537
+ ## 5.34.0
538
+ Thu, 17 Sep 2020 01:23:35 GMT
539
+
540
+ ### Updates
541
+
542
+ - Big redesign of "rush build" console reporting (fixes GitHub #2135)
543
+ - Implement RUSH_GLOBAL_FOLDER environment variable (GitHub #2187)
544
+ - Use underscores instead of asterisks for italic formatting in changelogs to match the way Prettier formats italics in markdown.
545
+ - 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.
546
+
547
+ ## 5.33.2
548
+ Fri, 21 Aug 2020 22:45:58 GMT
549
+
550
+ ### Updates
551
+
552
+ - Fix an issue where PNPM would sometimes prompt for input during "rush publish" (GitHub #1940)
553
+ - Fix an issue that prevented Rush from logging in verbose mode
554
+
555
+ ## 5.33.1
556
+ Thu, 20 Aug 2020 18:25:41 GMT
557
+
558
+ ### Updates
559
+
560
+ - Fix issues where installs could fail after running 'rush version' while the 'usePnpmFrozenLockfileForRushInstall' experiment is enabled. See PR #2116 for more details.
561
+ - Fix an issue where "rush deploy" would sometimes report an "already exists" when using the "files" setting in package.json (GitHub #2121)
562
+ - Allow multiple simultaneous invocations of "rush deploy" (GitHub #2125)
563
+ - Load and validate local projects lazily to further improve Rush startup times.
564
+
565
+ ## 5.33.0
566
+ Wed, 19 Aug 2020 00:17:48 GMT
567
+
568
+ ### Updates
569
+
570
+ - Add support for shell tab completion. See PR for details: https://github.com/microsoft/rushstack/pull/2060
571
+ - Use Import.lazy() to optimize the startup time for Rush
572
+
573
+ ## 5.32.3
574
+ Tue, 18 Aug 2020 03:48:56 GMT
575
+
576
+ ### Updates
577
+
578
+ - Fix an issue where install-run.js sometimes assigned the shell PATH incorrectly due to inconsistent character case
579
+
580
+ ## 5.32.2
581
+ Fri, 14 Aug 2020 21:03:48 GMT
582
+
583
+ ### Updates
584
+
585
+ - Resolve issue with version --bump where the wrong hash would get written to the pnpm-lock file
586
+
587
+ ## 5.32.1
588
+ Fri, 14 Aug 2020 04:06:30 GMT
589
+
590
+ ### Updates
591
+
592
+ - Change method used to calculate integrity of tarballs
593
+
594
+ ## 5.32.0
595
+ Thu, 13 Aug 2020 00:53:43 GMT
596
+
597
+ ### Patches
598
+
599
+ - Update temp project tarball integrities during rush bump
600
+
601
+ ## 5.31.0
602
+ Wed, 12 Aug 2020 19:33:44 GMT
603
+
604
+ ### Updates
605
+
606
+ - Updated project to build with Heft
607
+ - Fix an issue where "rushx" did not pass additional command-line arguments to the package.json script (GitHub #1232)
608
+
609
+ ## 5.30.3
610
+ Fri, 07 Aug 2020 21:09:05 GMT
611
+
612
+ ### Updates
613
+
614
+ - Fix an issue where Mac OS sometimes reported "An unrecognized file .DS_Store was found in the Rush config folder"
615
+
616
+ ## 5.30.2
617
+ Wed, 05 Aug 2020 17:57:07 GMT
618
+
619
+ ### Updates
620
+
621
+ - Fix an issue where a package version bump would not bump downstream packages with a `workspace:*` dependency specifier.
622
+
623
+ ## 5.30.1
624
+ Thu, 23 Jul 2020 23:47:59 GMT
625
+
626
+ ### Updates
627
+
628
+ - 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)
629
+ - Prevent incorrect conversion to "workspace:" notation for peer dependencies when running "rush update --full"
630
+
631
+ ## 5.30.0
632
+ Fri, 17 Jul 2020 05:32:38 GMT
633
+
634
+ ### Minor changes
635
+
636
+ - 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.
637
+
638
+ ## 5.29.1
639
+ Thu, 16 Jul 2020 02:18:39 GMT
640
+
641
+ ### Patches
642
+
643
+ - Consider package.json when determining if install can be skipped for PNPM workspaces
644
+
645
+ ## 5.29.0
646
+ Tue, 14 Jul 2020 05:20:56 GMT
647
+
648
+ ### Updates
649
+
650
+ - Give \"rush deploy\" the ability to select a subset of dependencies to copy over (#1978)
651
+ - Fix an issue where package binaries where not created by "rush deploy" (#1982)
652
+ - Add a new setting "folderToCopy" and new command-line parameter "--create-archive" for use with "rush deploy"
653
+
654
+ ## 5.28.0
655
+ Wed, 08 Jul 2020 06:56:47 GMT
656
+
657
+ ### Minor changes
658
+
659
+ - Add preliminary workspaces support for PNPM
660
+
661
+ ### Updates
662
+
663
+ - Add new commands "rush init-autoinstaller" and "rush update-autoinstaller"
664
+ - Add support for filtered installs when using workspaces
665
+
666
+ ## 5.27.3
667
+ Fri, 03 Jul 2020 06:16:09 GMT
668
+
669
+ ### Updates
670
+
671
+ - Added support for new format used by pnpm for tarball URLs that now begin with an @ symbol
672
+
673
+ ## 5.27.2
674
+ Thu, 02 Jul 2020 01:52:18 GMT
675
+
676
+ ### Updates
677
+
678
+ - Improve "rush deploy" to copy PNPM workaround links (fixes GitHub #1942 and 1943)
679
+
680
+ ## 5.27.1
681
+ Mon, 29 Jun 2020 18:39:59 GMT
682
+
683
+ ### Updates
684
+
685
+ - Fix an issue where environment variable trimming for .npmrc was unnecessarily performed on comment lines
686
+ - Add a "rush init" template for .npmrc-publish
687
+ - Fix a regression affecting GitHub specifiers for package.json dependencies (issue #1749)
688
+
689
+ ## 5.27.0
690
+ Sun, 21 Jun 2020 04:48:53 GMT
691
+
692
+ ### Updates
693
+
694
+ - Improve "rush deploy" to apply pnpmfile.js when calculating dependencies
695
+
696
+ ## 5.26.0
697
+ Mon, 15 Jun 2020 01:26:24 GMT
698
+
699
+ ### Updates
700
+
701
+ - Breaking change for the experimental "rush deploy" feature: Simplify the config file design, based on the discussion from GitHub #1906
702
+
703
+ ## 5.25.2
704
+ Thu, 11 Jun 2020 05:34:31 GMT
705
+
706
+ ### Updates
707
+
708
+ - Fix an issue where Git hook scripts failed in some environments due to CRLF newlines
709
+
710
+ ## 5.25.1
711
+ Thu, 11 Jun 2020 05:05:30 GMT
712
+
713
+ ### Updates
714
+
715
+ - Fix some minor errors in the "rush init" template that occured when Prettier reformatted the template file macros
716
+ - Add a sample Git hook file to the "rush init" template
717
+ - Fix a minor issue where "rush link" failed if no projects were defined yet in rush.json
718
+ - Add "--no-verify" for commits performed by "rush version", since Git hook scripts may fail on CI machines
719
+
720
+ ## 5.25.0
721
+ Wed, 10 Jun 2020 23:53:27 GMT
722
+
723
+ ### Updates
724
+
725
+ - Add new command-line.json setting "autoinstallerName"
726
+
727
+ ## 5.24.4
728
+ Mon, 08 Jun 2020 18:04:35 GMT
729
+
730
+ ### Updates
731
+
732
+ - Explicitly assigning the option value for --resolution-strategy. This fixes a crash with pnpm v5, which deprecated the option.
733
+ - Fix an issue where install-run.js is not able to find its own .bin in PATH
734
+ - Fix an issue where "rush install" sometimes skipped regenerating temporary packages, which is incompatible with PNPM's "--frozen-lockfile" feature
735
+
736
+ ## 5.24.3
737
+ Thu, 04 Jun 2020 22:50:56 GMT
738
+
739
+ ### Updates
740
+
741
+ - Fix an issue where "rush deploy" generated incorrect symlinks on Mac OS if the target folder was symlinked (GitHub #1910)
742
+
743
+ ## 5.24.2
744
+ Wed, 03 Jun 2020 05:35:19 GMT
745
+
746
+ ### Updates
747
+
748
+ - Expect error when trying to resolve optional dependency during deploy
749
+
750
+ ## 5.24.1
751
+ Tue, 02 Jun 2020 03:11:32 GMT
752
+
753
+ ### Updates
754
+
755
+ - Fix an issue where the "linkCreation" defaulted to "none" instead of "default"
756
+
757
+ ## 5.24.0
758
+ Mon, 01 Jun 2020 08:48:49 GMT
759
+
760
+ ### Updates
761
+
762
+ - Set next LTS node version to 14.
763
+ - Add new "rush deploy" command that copies subsets of files/symlinks to a deployment folder
764
+
765
+ ## 5.23.5
766
+ Thu, 28 May 2020 22:49:57 GMT
767
+
768
+ ### Updates
769
+
770
+ - Fix an issue where Rush cannot reinstall itself on Windows
771
+
772
+ ## 5.23.4
773
+ Thu, 21 May 2020 15:41:59 GMT
774
+
775
+ ### Updates
776
+
777
+ - Add a new rush.json setting "allowMostlyStandardPackageNames"
778
+ - Add RUSH_PARALLELISM environment variable for specifying the --parallelism default
779
+
780
+ ## 5.23.3
781
+ Fri, 15 May 2020 08:10:59 GMT
782
+
783
+ ### Updates
784
+
785
+ - Fix a few instances of missing spaces in --help documentation.
786
+ - Provide an option to pass --frozen-lockfile to pnpm for rush install
787
+
788
+ ## 5.23.2
789
+ Wed, 22 Apr 2020 18:44:26 GMT
790
+
791
+ ### Updates
792
+
793
+ - Add common-versions.json to the set of files that, when changed, will trigger reinstallation of dependencies.
794
+
795
+ ## 5.23.1
796
+ Wed, 15 Apr 2020 03:33:55 GMT
797
+
798
+ ### Updates
799
+
800
+ - Fix a regression in Rush 5.19.0 where customizing "rush rebuild" would call the "build" script instead of the "rebuild" script.
801
+ - Fix an issue where, on some minimal systems, Rush used a missing shell command to detect an application path.
802
+ - Fix an issue where the common/temp/*.tgz files resulted in different shrinkwrap files on different operating systems
803
+
804
+ ## 5.23.0
805
+ Sat, 04 Apr 2020 00:38:29 GMT
806
+
807
+ ### Updates
808
+
809
+ - Add a new rush.json setting "preventManualShrinkwrapChanges" which prevents against accidental mistakes in pnpm-lock.yaml.
810
+ - Upgrade node-tar
811
+ - Remove some misleading log output for "rush build" (GitHub #1733)
812
+
813
+ ## 5.22.0
814
+ Wed, 18 Mar 2020 01:23:22 GMT
815
+
816
+ ### Updates
817
+
818
+ - Replace dependencies whose NPM scope was renamed from `@microsoft` to `@rushstack`
819
+ - Support setting environment variables for package manager install processes in rush.json and expose --max-install-attempts as a parameter for rush install/update.
820
+
821
+ ## 5.21.0
822
+ Sat, 07 Mar 2020 05:36:08 GMT
823
+
824
+ ### Updates
825
+
826
+ - Make the event hook failure message print in yellow.
827
+ - Improve phrasing of an error message.
828
+ - Add a new command-line.json setting "required" for non-optional parameters
829
+ - Implement `pnpmOptions.pnpmStore` and RUSH_PNPM_STORE_PATH, to allow the end-user to define where PNPM will place its store.
830
+ - Add a --json flag for "rush check" to facilitate automation
831
+
832
+ ## 5.20.0
833
+ Wed, 12 Feb 2020 21:51:19 GMT
834
+
835
+ ### Updates
836
+
837
+ - Support "." as a value for the --to and --from parameters to build to the current project.
838
+ - Improve security by allowing the "rush publish" authentication token to be specified via an environment variable.
839
+
840
+ ## 5.19.4
841
+ Tue, 28 Jan 2020 03:57:30 GMT
842
+
843
+ ### Updates
844
+
845
+ - Fix an issue where a missing "repository" property in rush.json would cause "rush change" to throw.
846
+
847
+ ## 5.19.3
848
+ Tue, 28 Jan 2020 01:35:53 GMT
849
+
850
+ _Version update only_
851
+
852
+ ## 5.19.2
853
+ Tue, 28 Jan 2020 01:08:26 GMT
854
+
855
+ ### Updates
856
+
857
+ - Fix an issue where the rushx command will always report error.
858
+ - Fixes "too many params" and "unable to find ref v<version>" issues in git tagging while publishing.
859
+
860
+ ## 5.19.1
861
+ Sat, 25 Jan 2020 05:15:10 GMT
862
+
863
+ ### Updates
864
+
865
+ - Fix an issue with install-run.js, where successful executions exit with a nonzero exit code.
866
+
867
+ ## 5.19.0
868
+ Sat, 25 Jan 2020 04:19:23 GMT
869
+
870
+ ### Updates
871
+
872
+ - Make the default branch and default remote configurable.
873
+ - 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)
874
+ - Update package.json files without reformatting or reordering properties and fields during "rush add", "rush version" and "rush publish".
875
+ - Upgrade Node typings to Node 10
876
+ - Update the "rush init" .gitignore file to ignore .rush/temp and .DS_Store folders
877
+ - 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)
878
+ - Add a --json flag for "rush list" to facilitate automation
879
+
880
+ ## 5.18.0
881
+ Sat, 11 Jan 2020 05:38:55 GMT
882
+
883
+ ### Updates
884
+
885
+ - Don't use the `build` verb when printing task failures
886
+ - Add a --commit command-line argument to the publish command to allow the git commit to be explicitly provided for tagging.
887
+ - Update GitHub project URL in some resource files
888
+ - fix typo in version-policies.json
889
+
890
+ ## 5.17.2
891
+ Tue, 26 Nov 2019 00:53:52 GMT
892
+
893
+ ### Updates
894
+
895
+ - Resolve an issue where git tags were not being applied when using pack or publish with --include-all
896
+
897
+ ## 5.17.1
898
+ Thu, 21 Nov 2019 00:50:15 GMT
899
+
900
+ ### Updates
901
+
902
+ - Fix an issue with Rush add, where Rush was unable to add unpublished local projects as dependencies.
903
+
904
+ ## 5.17.0
905
+ Thu, 14 Nov 2019 22:52:48 GMT
906
+
907
+ ### Updates
908
+
909
+ - Add a new setting "implicitlyPreferredVersions" in common-versions.json that can be used to solve some installation failures involving peer dependencies
910
+ - Improve the generation of shrinkwrap-deps.json to consider optional peer dependencies and implicitlyPreferredVersions=false
911
+ - Fix an issue where certain operations did not use a stable sort when executed on older versions of NodeJS
912
+
913
+ ## 5.16.1
914
+ Fri, 25 Oct 2019 20:15:59 GMT
915
+
916
+ ### Updates
917
+
918
+ - Log to console instead of throwing when an unmet peer dependency is encountered during linking, and strictPeerDependencies is false
919
+ - Refactor some code as part of migration from TSLint to ESLint
920
+
921
+ ## 5.16.0
922
+ Thu, 17 Oct 2019 00:41:01 GMT
923
+
924
+ ### Updates
925
+
926
+ - Support PNPM 4 on Rush
927
+ - Add support for "rush add" for repos using the Yarn package manager.
928
+
929
+ ## 5.15.1
930
+ Thu, 10 Oct 2019 23:47:19 GMT
931
+
932
+ ### Updates
933
+
934
+ - Fix an issue where build commands can fail because git commands used to track changes can be too long.
935
+ - Fix compatibility issue where PNPM 4 requires --no-prefer-frozen-lockfile instead of --no-prefer-frozen-shrinkwrap
936
+
937
+ ## 5.15.0
938
+ Tue, 08 Oct 2019 22:58:33 GMT
939
+
940
+ ### Updates
941
+
942
+ - Improve 'rush build' to avoid rebuilding unnecessarily when the package-lock.json file has changed (pnpm only).
943
+
944
+ ## 5.14.0
945
+ Wed, 02 Oct 2019 01:18:02 GMT
946
+
947
+ ### Updates
948
+
949
+ - Add an --all flag to "rush add" to add a dependency to all projects.
950
+ - Add options to rush change to allow creating changefiles for all changed projects.
951
+ - 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.
952
+ - Include peerDependencies in the approved packages files.
953
+ - Make detection of changefiles and changes in projects safer.
954
+ - Update repository URL
955
+
956
+ ## 5.13.1
957
+ Fri, 27 Sep 2019 22:34:50 GMT
958
+
959
+ ### Updates
960
+
961
+ - 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"
962
+
963
+ ## 5.13.0
964
+ Wed, 11 Sep 2019 21:41:34 GMT
965
+
966
+ ### Updates
967
+
968
+ - 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/**`).
969
+ - 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
970
+ - Update documentation
971
+ - 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.
972
+
973
+ ## 5.12.1
974
+ Tue, 10 Sep 2019 19:45:15 GMT
975
+
976
+ ### Updates
977
+
978
+ - 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.
979
+
980
+ ## 5.12.0
981
+ Wed, 04 Sep 2019 19:01:42 GMT
982
+
983
+ ### Updates
984
+
985
+ - Adding --apply-git-tags-on-pack flag to the publish command to apply git tags when using --pack
986
+ - 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.
987
+ - Add support for NPM package aliases (i.e. dependency versions such as "npm:example@^1.2.3")
988
+ - Fix an issue with rush change that occurs when rush.json isn't in the repository root.
989
+
990
+ ## 5.11.4
991
+ Fri, 23 Aug 2019 03:31:52 GMT
992
+
993
+ ### Updates
994
+
995
+ - Some optimizations for --to, --from, and cyclic dependency detection for repos with large numbers of projects.
996
+ - Ensure install-run-rushx script is updated during "rush update"
997
+
998
+ ## 5.11.3
999
+ Wed, 21 Aug 2019 22:13:26 GMT
1000
+
1001
+ ### Updates
1002
+
1003
+ - Add support for the RUSH_PREVIEW_VERSION environment variable to the install-run-rush script.
1004
+ - Add support for the RUSH_TEMP_FOLDER environment variable in the install-run-rush script.
1005
+ - Add install-run-rushx script to enable easy execution of the rushx command in CI
1006
+
1007
+ ## 5.11.2
1008
+ Fri, 16 Aug 2019 05:15:17 GMT
1009
+
1010
+ ### Updates
1011
+
1012
+ - Refactor build action to allow generating build graph statically
1013
+ - Security updates.
1014
+ - Fix validation of hotfix changes in a hotfix-enabled branch
1015
+ - Clarify that "rush update --full" should be run when changing certain settings
1016
+
1017
+ ## 5.11.1
1018
+ Fri, 26 Jul 2019 23:08:23 GMT
1019
+
1020
+ ### Updates
1021
+
1022
+ - Fix critical path computation for projects
1023
+ - Normalize the casing of a temp folder specified with RUSH_TEMP_FOLDER.
1024
+
1025
+ ## 5.11.0
1026
+ Fri, 26 Jul 2019 08:34:03 GMT
1027
+
1028
+ ### Updates
1029
+
1030
+ - Generate skeleton BuildXL script modules for each package
1031
+ - Allow building with newer versions of Node during development
1032
+ - Add experimental rush-buildxl package
1033
+ - Ensure the filesystem paths that Rush uses have the same character casing that exists on disk.
1034
+ - Tweak NodeJS version warning messages and add suppressNodeLtsWarning option to rush.json to suppress non-LTS version warning.
1035
+ - Do not terminate rush execution if a temp project lacks an entry in the PNPM shrinkwrap. Instead, allow the program to continue so that PNPM can update the outdated shrinkwrap. This fixes #1418 https://github.com/microsoft/web-build-tools/issues/1418.
1036
+
1037
+ ## 5.10.3
1038
+ Thu, 18 Jul 2019 00:07:46 GMT
1039
+
1040
+ ### Updates
1041
+
1042
+ - Make event hooks run from the folder that contains the rush.json file.
1043
+ - Fix 1392 "rush install not working on pnpm 3.5" by getting the temporary project dependency key from the shrinkwrap file. See https://github.com/microsoft/web-build-tools/issues/1392.
1044
+
1045
+ ## 5.10.2
1046
+ Tue, 16 Jul 2019 19:36:08 GMT
1047
+
1048
+ ### Updates
1049
+
1050
+ - Prevent non-hotfix changes from being applied to hotfix branches
1051
+ - Use the shrinkwrap from temp for "rush link" as the committed shrinkwrap may not always be up to date as a result of shrinkwrap churn optimization. See https://github.com/microsoft/web-build-tools/issues/1273#issuecomment-492779995 for more details about shrinkwrap churn optimization.
1052
+
1053
+ ## 5.10.1
1054
+ Thu, 11 Jul 2019 22:00:50 GMT
1055
+
1056
+ ### Updates
1057
+
1058
+ - Fix for issue https://github.com/microsoft/web-build-tools/issues/1349 rush install fails when there is a preferred version with a peer dependency. This was caused by file format changes in pnpm 3.x
1059
+ - Fix an issue where "rush add" erroneously believes ensureConsistentVersions is unset.
1060
+ - Fix an issue that arises when "rush add" is run and the package manager isn't installed.
1061
+ - Fix an issue where rush add -m doesn't corretly update the common-versions.json file.
1062
+ - Fix an issue where rush change will detect unrelated changes.
1063
+ - When rush change detects no changes, clarify that no *relevant* changes were detected in the case that changes were in a package not versioned by rush'
1064
+ - Fix https://github.com/microsoft/web-build-tools/issues/1347: rush link was failing on pnpm 3+ with the changes in shrinkwrap format with regard to peer dependencies. Rush now resolves the path to the local project accurately by referring to the shrinkwrap rather than figuring out the path on its own.
1065
+
1066
+ ## 5.10.0
1067
+ Sat, 29 Jun 2019 02:47:42 GMT
1068
+
1069
+ ### Updates
1070
+
1071
+ - New action added to list package name for all projects
1072
+ - Add ability to opt out of changelog files for version policies.
1073
+ - Workaround for pnpm issue 1890: https://github.com/pnpm/pnpm/issues/1890. Fixes the issue of "rush update --full" not working correctly if the internal copy of the pnpm shrinkwrap "common/temp/node_modules/.shrinkwrap.yaml" exists even though Rush deletes the formal copy in "common/temp/shrinkwrap.yaml".
1074
+
1075
+ ## 5.9.1
1076
+ Thu, 13 Jun 2019 04:46:18 GMT
1077
+
1078
+ ### Updates
1079
+
1080
+ - Fix an issue where custom command-line parameters weren't passed to projects' builds.
1081
+
1082
+ ## 5.9.0
1083
+ Tue, 11 Jun 2019 02:26:20 GMT
1084
+
1085
+ ### Updates
1086
+
1087
+ - (BEHAVIOR CHANGE) Fix an issue where CI jobs could succeed even if a task reported warnings to stderr; if your build fails due to warnings after upgrading, please see https://github.com/microsoft/web-build-tools/issues/1329
1088
+
1089
+ ## 5.8.0
1090
+ Tue, 11 Jun 2019 01:28:33 GMT
1091
+
1092
+ ### Updates
1093
+
1094
+ - Add a new setting "ignoreDependencyOrder" in command-line.json
1095
+ - Clarify "rush change" messages.
1096
+ - Improve 'rush version' to fetch before checkout, which avoids an error in cases where the branch wasn't fetched.
1097
+ - Fix typo in command-line help for "rush add"
1098
+ - Fix an issue where "rush build" ignored changes to a project with an empty build script (GitHub #1282)
1099
+
1100
+ ## 5.7.3
1101
+ Mon, 06 May 2019 21:03:32 GMT
1102
+
1103
+ ### Updates
1104
+
1105
+ - Allow colons in command line action names (add missing dependency from 5.7.2)
1106
+
1107
+ ## 5.7.2
1108
+ Mon, 06 May 2019 19:52:37 GMT
1109
+
1110
+ ### Updates
1111
+
1112
+ - Allow colons in command line action names
1113
+
1114
+ ## 5.7.1
1115
+ Wed, 24 Apr 2019 06:32:17 GMT
1116
+
1117
+ ### Updates
1118
+
1119
+ - Fix an issue where Rush sometimes failed to parse versions from PNPM 3.x's pnpm-lock.yaml
1120
+ - Update the .gitattributes file written by "rush init" to use a better syntax highlighter for JSON files
1121
+
1122
+ ## 5.7.0
1123
+ Tue, 23 Apr 2019 07:55:34 GMT
1124
+
1125
+ ### Updates
1126
+
1127
+ - Add support for PNPM version 3 (which changed the shrinkwrap file name to "pnpm-lock.yaml")
1128
+ - Add a new rush.json setting "pnpmOptions.resolutionStrategy"
1129
+
1130
+ ## 5.6.4
1131
+ Mon, 15 Apr 2019 06:40:00 GMT
1132
+
1133
+ ### Updates
1134
+
1135
+ - Add support for string parameter for custom commands.
1136
+ - Remove the obsolete "--release-type" option which only worked if you used a specific version of gulp-core-build-typescript
1137
+ - Adds --no-verify to git push during a rush publish
1138
+
1139
+ ## 5.6.3
1140
+ Mon, 25 Mar 2019 03:15:21 GMT
1141
+
1142
+ ### Updates
1143
+
1144
+ - Update the "rush init" template with a .gitattributes rule to allow comments in JSON files
1145
+ - Add ability to publish partial prereleases
1146
+
1147
+ ## 5.6.2
1148
+ Thu, 21 Mar 2019 23:09:56 GMT
1149
+
1150
+ ### Updates
1151
+
1152
+ - Publish: pass auth token through to npm view when checking if package exists
1153
+
1154
+ ## 5.6.1
1155
+ Mon, 18 Mar 2019 04:48:37 GMT
1156
+
1157
+ ### Updates
1158
+
1159
+ - Remove the "rush check" step from the travis.yml template, since this is now handled by "ensureConsistentVersions" from rush.json
1160
+ - Improve "rush change" to ignore the ".git" file extension when appended to the "repository.url" setting in rush.json
1161
+
1162
+ ## 5.6.0
1163
+ Fri, 15 Mar 2019 03:21:02 GMT
1164
+
1165
+ ### Minor changes
1166
+
1167
+ - Add "--set-access-level" parameter for "rush publish" to control whether NPM packages are published as "public" or "restricted"
1168
+ - Add a "dependencies" configuration property to version-policies.json to customize the way dependency versions are published and stored in source control
1169
+
1170
+ ### Updates
1171
+
1172
+ - Add support for the Yarn --ignore-engines, exposed as yarnOptions.ignoreEngines in rush.json
1173
+ - Add the ability to configure the version bump and publish git commit message, exposed as gitPolicy.versionBumpCommitMessage in rush.json
1174
+ - Fix an issue with "rush publish --pack" when using yarn.
1175
+ - Remove the "rush check" step from the travis.yml template, since this is now handled by "ensureConsistentVersions" from rush.json
1176
+ - Fix an issue where "rush change" sometimes could not detect changes correctly when invoked on a forked GitHub repo
1177
+ - Fix an issue where "rushx" and "rush build" did not search for commands in the current project's local node_modules/.bin folder (GitHub issue #706)
1178
+ - The `--debug` parameter now automatically breaks in the debugger when an InternalError is thrown
1179
+ - Support overriding 'build' and 'rebuild' commands in command-line.json
1180
+ - Update README.md
1181
+ - Change "rush build" to print stdout if stderr is empty and a task fails. This improves Webpack support
1182
+
1183
+ ## 5.5.4
1184
+ Thu, 13 Dec 2018 02:58:10 GMT
1185
+
1186
+ ### Patches
1187
+
1188
+ - Remove unused jju dependency
1189
+
1190
+ ### Updates
1191
+
1192
+ - Properly handle Git worktrees
1193
+ - Updated to use the new InternalError class for reporting software defects
1194
+
1195
+ ## 5.5.3
1196
+ Wed, 05 Dec 2018 20:14:08 GMT
1197
+
1198
+ ### Updates
1199
+
1200
+ - Add user read permission to copied Git hooks
1201
+
1202
+ ## 5.5.2
1203
+ Fri, 09 Nov 2018 02:14:11 GMT
1204
+
1205
+ ### Updates
1206
+
1207
+ - Include an environment variable option to create symlinks with absolute paths.
1208
+
1209
+ ## 5.5.1
1210
+ Wed, 07 Nov 2018 21:04:35 GMT
1211
+
1212
+ ### Updates
1213
+
1214
+ - For NodeJS 10, require at least LTS (10.13.0)
1215
+ - Install rush and package managers in a node version-specific folder under the user's home directory
1216
+ - Added support for git hooks
1217
+ - Remove all dependencies on the "rimraf" library
1218
+ - Upgrade fs-extra to eliminate the annoying "ERROR: ENOTEMPTY: directory not empty, rmdir" error that occasionally occurred during "rush link"
1219
+
1220
+ ## 5.4.0
1221
+ Thu, 25 Oct 2018 23:20:40 GMT
1222
+
1223
+ ### Updates
1224
+
1225
+ - Remove use of a deprecated Buffer API.
1226
+ - Fix an issue with "rush change" on NodeJS 10.
1227
+ - Fix an issue where "rush install" sometimes would incorrectly ask for "rush update", when using the Yarn package manager
1228
+ - Improve sorting of @rush-temp projects, which may reduce churn of hashes in the shrinkwrap file
1229
+ - Expose safeForSimultaneousRushProcesses to custom commands
1230
+ - Add 'variants' feature and command-line parameter
1231
+
1232
+ ## 5.3.4
1233
+ Wed, 17 Oct 2018 03:19:43 GMT
1234
+
1235
+ ### Updates
1236
+
1237
+ - Make rush purge also call rush unlink
1238
+ - Fix an issue where "rush publish" invoked the wrong command when using Yarn
1239
+ - Install optional dependencies, except w/ npm<5.0.0
1240
+
1241
+ ## 5.3.3
1242
+ Thu, 11 Oct 2018 23:58:16 GMT
1243
+
1244
+ ### Updates
1245
+
1246
+ - Remove warning for NodeJS 10 now that it is stable (LTS)
1247
+
1248
+ ## 5.3.2
1249
+ Mon, 08 Oct 2018 23:19:51 GMT
1250
+
1251
+ ### Updates
1252
+
1253
+ - Change "rush check" so that it considers "cyclicDependencyProjects" and ensures they are consistent or listed in "allowedAlternateVersions"
1254
+ - Fix a recent regression where "rush link" was failing for NPM/Yarn because hard links don't support relative paths
1255
+ - Make sure npm package does not exist before publishing
1256
+
1257
+ ## 5.3.1
1258
+ Wed, 03 Oct 2018 00:01:18 GMT
1259
+
1260
+ ### Updates
1261
+
1262
+ - Fix an issue where after running "rush add" (after successfully running "rush install"), the new package was not being installed or linked.
1263
+ - Fix an incorrect default in the "rush init" template comments
1264
+
1265
+ ## 5.3.0
1266
+ Fri, 28 Sep 2018 20:36:48 GMT
1267
+
1268
+ ### Updates
1269
+
1270
+ - Add "ensureConsistentVersions" configuration which runs "rush check" before certain commands
1271
+ - Add a new command "rush add" for managing package.json dependencies
1272
+ - Rush now detects some package.json errors such as the same package name being listed in both "dependencies" and "optionalDependencies"
1273
+ - Update "rush link" to use relative paths when creating symlinks, to facilitate building Docker images
1274
+
1275
+ ## 5.2.1
1276
+ Thu, 13 Sep 2018 21:57:21 GMT
1277
+
1278
+ ### Updates
1279
+
1280
+ - Fix an issue where "rush init" failed because its ".gitignore" template was excluded from the package
1281
+
1282
+ ## 5.2.0
1283
+ Thu, 13 Sep 2018 19:34:37 GMT
1284
+
1285
+ ### Updates
1286
+
1287
+ - Add a "rush init" command for scaffolding new monorepo folders
1288
+ - Allow "rush scan" to be used without a rush.json configuration
1289
+
1290
+ ## 5.1.0
1291
+ Sat, 08 Sep 2018 20:57:32 GMT
1292
+
1293
+ ### Updates
1294
+
1295
+ - Update "repository" field in package.json
1296
+ - Add support for PNPM's --strict-peer-dependencies feature
1297
+ - Add support for the Yarn package manager (this is a "beta" feature; please report any issues you encounter!)
1298
+
1299
+ ## 5.0.6
1300
+ Fri, 31 Aug 2018 23:10:31 GMT
1301
+
1302
+ ### Updates
1303
+
1304
+ - Add "--prefer-frozen-shrinkwrap false" to the "pnpm install" command line as a workaround for https://github.com/pnpm/pnpm/issues/1342
1305
+ - Skip validation of the Git email address if Git is not installed, or if rush.json isn't in a Git working directory, or if no policy was defined
1306
+
1307
+ ## 5.0.5
1308
+ Wed, 29 Aug 2018 07:05:22 GMT
1309
+
1310
+ ### Updates
1311
+
1312
+ - Fix an issue where rush install will fail if git isn't installed.
1313
+ - Fix an issue where "rush -h" didn't print help for the "build" and "rebuild" commands, unless invoked under a Rush folder
1314
+ - Improve command-line help for "rush build"
1315
+ - Fix regression causing "ERROR: EEXIST: file already exists"
1316
+
1317
+ ## 5.0.4
1318
+ Thu, 23 Aug 2018 00:08:41 GMT
1319
+
1320
+ ### Updates
1321
+
1322
+ - Fix capitalization of new "filePath" API property
1323
+
1324
+ ## 5.0.3
1325
+ Wed, 22 Aug 2018 20:58:58 GMT
1326
+
1327
+ ### Updates
1328
+
1329
+ - git st
1330
+ - When saving config files, Rush should include the "$schema" directive
1331
+ - Fix a regression where "rush version" sometimes failed with "The value for entries[0].comments.dependency[0].author is undefined"
1332
+ - When updating common-versions.json and version-policies.json, preserve the existing comments and whitespace
1333
+
1334
+ ## 5.0.2
1335
+ Sat, 18 Aug 2018 01:27:39 GMT
1336
+
1337
+ _Version update only_
1338
+
1339
+ ## 5.0.1
1340
+ Sat, 18 Aug 2018 01:21:59 GMT
1341
+
1342
+ ### Updates
1343
+
1344
+ - Fix typo in rush error message
1345
+ - Add a flag to "rush install" which runs the package manager in a verbose logging mode.
1346
+ - Remove package.json from rush-lib constants. Add public API for creating changefiles.
1347
+ - Fix an issue where "rush version" would fail with a useless error message if the Git user email is not specified.
1348
+ - Update lodash.
1349
+ - Add a "--network-concurrency" command-line option to help troubleshoot the ECONNRESET error that people occasionally have reported ( https://github.com/pnpm/pnpm/issues/1230 )
1350
+
1351
+ ## 5.0.0
1352
+ Sat, 30 Jun 2018 00:57:22 GMT
1353
+
1354
+ ### Updates
1355
+
1356
+ - Update peerDependencies when bumping package versions (issue #668)
1357
+ - Add allowedAlternativeVersions setting to common-versions.json config file
1358
+ - Fix an issue where PNPM shrinkwrap file parser did not handle relative/absolute version paths correctly
1359
+ - Print each project's build time during the summary
1360
+ - Fix an issue where the common/temp/.npmrc file could contain missing environment variable tokens
1361
+ - Rush now creates common/scripts/install-run.js and install-run-rush.js scripts to formalize how CI jobs bootstrap tooling dependencies
1362
+ - Enable the "rush rebuild" and "rush build" commands to work without a Git repository
1363
+ - Add support for RUSH_TEMP_FOLDER environment variable to customize the location of Rush's commonTempFolder
1364
+ - Fix an issue where if package-deps.json fails to parse, the build fails
1365
+ - Improve "rush link" to create node_modules/.bin launchers for local project dependencies (not just installed external dependencies)
1366
+ - Update rush.json schema to allow requested versions (e.g. Rush or the package manager) to be a prerelease SemVer pattern
1367
+ - Fix annoyance where "rush update" (formerly "rush generate") would always change the integrity hash for tarball entries in shrinkwrap.yaml
1368
+ - Fix an issue where Rush's .npmrc configuration was not honored when spawned via an NPM lifecycle script; in general the process environment is now more isolated
1369
+ - Rush now warns when phantom node_modules folders are found
1370
+ - Relax the rush.json version check for rush-lib; future versions are now accepted as long as the major/minor parts match
1371
+ - Fix a regression where builds would sometimes fail with a zero exit code due to NodeJS's handling of uncaught Promise rejections
1372
+ - Improve "rush check" to ignore peer dependencies, since they don't need to be consistent with everything else (and generally won't be)
1373
+ - (Breaking change) Replace pinned-versions.json with a more general common-versions.json that can track other cross-project dependency versions
1374
+ - (Breaking change) In common-versions.json, rename the "pinned versions" concept to "preferred versions", and separate the XStitch versions into their own field
1375
+ - Report an error if the package manager version is too old
1376
+ - (Breaking change) Redesign command-line.json config file to support other command types
1377
+ - (Breaking change) Rename custom-commands.json to be command-line.json
1378
+ - Add support for "global" commands in custom-commands.json
1379
+ - When using PNPM, remove some NPM bug workarounds that probably caused problems for "pnpm install"
1380
+ - Add a lock file to avoid race conditions when the Rush version selector is installing rush-lib
1381
+ - Fix a problem where the "rush-recycler" folder was not getting cleaned on macOS
1382
+ - (Breaking change) Remove unused RushConfiguration.homeFolder API
1383
+ - Add RUSH_PREVIEW_VERSION environment variable for piloting new versions of Rush
1384
+ - Add new command "rush purge" for cleaning up temporary files
1385
+ - Fix an issue where rush-recycler wasn't emptied if a folder exceeded the Windows MAX_PATH
1386
+ - Minor improvements for logging
1387
+ - When installing tools, always copy the repo's .npmrc file to the target folder
1388
+ - (Breaking change) Replace the "rush generate" command with a new command "rush update"
1389
+ - (Breaking change) Replace "rush install --clean" and "--full-clean" with "rush install --purge"
1390
+ - Improve lifecycle script execution to support Unix slashes in the command name when running on Windows
1391
+ - Add "rushx" binary for single-project commands
1392
+ - (Breaking change) Eliminate extra letters from shortened command line options (renamed "-cpo" to "-o", and removed "-vp" and "-pn")
1393
+ - Add check for unpublished releases
1394
+ - Add a "--to-version-policy" option for "rush rebuild" to allow building only a particular version policy
1395
+ - Add --release-type parameter to "rush publish" to be able to create different tarballs based on release type
1396
+ - Add "--ensure-version-policy" option for "rush version" to support updating the versions directly
1397
+
1398
+ ## 4.3.3
1399
+ Thu, 31 May 2018 21:57:13 GMT
1400
+
1401
+ ### Updates
1402
+
1403
+ - Remove the old undocumented "rush purge" command, since it conflicts with Rush 5
1404
+
1405
+ ## 4.3.2
1406
+ Mon, 26 Mar 2018 19:12:42 GMT
1407
+
1408
+ ### Updates
1409
+
1410
+ - Change *.d.ts file path for rush-lib
1411
+ - Add "ignoreMissingScript" flag to custom command and fix other minor issues
1412
+ - Add --pack option to "rush publish" to support packing packages into tarballs instead of publishing to NPM registry
1413
+ - Upgrade colors to version ~1.2.1
1414
+
1415
+ ## 4.3.1
1416
+ Tue, 20 Mar 2018 20:02:56 GMT
1417
+
1418
+ ### Updates
1419
+
1420
+ - Add support for overriding the default windows parallelism with 'max'.
1421
+ - Remove IPackageJson API. Consumers should now use the equivalent definition from @microsoft/node-core-library instead.
1422
+ - Move the environment checks from rush-lib to rush
1423
+ - Fix an annoyance where common/temp/shrinkwrap.yaml was formatted in a way that made diffs less readable
1424
+
1425
+ ## 4.3.0
1426
+ Fri, 02 Mar 2018 02:45:37 GMT
1427
+
1428
+ ### Updates
1429
+
1430
+ - Fix an issue where we always deleted the pnpm store. This is not necessary since the store is transactional. We should only delete the store if it is a --clean install.
1431
+ - Fix an issue where the package manager installation could get corrupted if the Rush tool was accidentally invoked multiple times concurrently.
1432
+ - Fix issue with pnpm where store was not removed after an unsuccessful installation
1433
+ - When Rush links PNPM packages to their dependencies, it should link to the realpath, rather than linking to the symlink. This will improve performance of builds by reducing the number of file system reads that are needed.
1434
+ - Update Rush to consider the shrinkwrap file during incremental builds.
1435
+ - Add a --changed-projects-only flag to 'rush build', which will skip rebuilding of downstream packages. It will only rebuild projects that change, but not their dependents.
1436
+ - Add a locking mechanism around certain rush commands so only one process can be working in a Rush repository at a single point in time. This is useful for commands that may corrupt each other, like generate, install, link, and rebuild.
1437
+ - When using pnpm, Rush will check and see if other projects are using a dependency and will re-use it if possible. This way, a user will not have to run "rush generate" if they are adding a dependency that is already being used elsewhere in the monorepo.
1438
+ - Add a notice for unsupported versions of NodeJS runtime
1439
+ - Add a new command-line flag "--conservative" which causes "rush generate" to perform a minimal upgrade
1440
+ - Improved "rush generate" so that if interrupted, it does not leave you with a deleted shrinkwrap.yaml; the new integrity checks eliminate the need for this, and it was annoying
1441
+ - Fix Rush version increase logic to handle cyclic dependencies properly
1442
+
1443
+ ## 4.2.5
1444
+ Fri, 26 Jan 2018 00:36:51 GMT
1445
+
1446
+ ### Updates
1447
+
1448
+ - Fix an issue when parsing scoped peer dependencies in the pnpm shrinkwrap file
1449
+
1450
+ ## 4.2.4
1451
+ Sun, 21 Jan 2018 06:33:59 GMT
1452
+
1453
+ ### Updates
1454
+
1455
+ - Improve the error message when loading rush.json from a newer release
1456
+
1457
+ ## 4.2.3
1458
+ Thu, 18 Jan 2018 19:02:07 GMT
1459
+
1460
+ ### Updates
1461
+
1462
+ - Avoid git errors when there are only empty change files
1463
+
1464
+ ## 4.2.2
1465
+ Wed, 17 Jan 2018 10:49:31 GMT
1466
+
1467
+ _Version update only_
1468
+
1469
+ ## 4.2.1
1470
+ Fri, 12 Jan 2018 23:35:48 GMT
1471
+
1472
+ ### Patches
1473
+
1474
+ - Fix a bug in "rush change" to allow skipping changes when empty change file exists.
1475
+ - Change the way Rush prints output, to make it more readable and easy to tell how far into a build you are.
1476
+
1477
+ ## 4.2.0
1478
+ Mon, 11 Jan 2018 22:14:30 GMT
1479
+
1480
+ ### Minor changes
1481
+
1482
+ - Introduce a new project-specific setting "skipRushCheck" to exempt certain projects from the "rush check" validation
1483
+ - Introduce a new setting "mainProject" for lockstep version policies. This enables a scenario where a group of packages share a common change log, which is associated with the main project.
1484
+
1485
+ ## 4.1.1
1486
+ Mon, 08 Jan 2018 20:34:30 GMT
1487
+
1488
+ ### Patches
1489
+
1490
+ - Fix an issue with checking the pnpm shrinkwrap file when there are peer dependency version specifiers
1491
+
1492
+ ## 4.1.0
1493
+ Thu, 30 Nov 2017 20:34:30 GMT
1494
+
1495
+ ### Minor changes
1496
+
1497
+ - Adding support for using PNPM with Rush
1498
+
1499
+ ### Patches
1500
+
1501
+ - Fix issue where 'rush publish' was failing when the only changefiles were 'none' type
1502
+ - Add support for hotfix changes
1503
+ - Fix an issue with file locks causing exceptions during 'rush install'
1504
+ - Fix issue where 'rush install' did not invalidate node_modules after bumping package manager version
1505
+
1506
+ ## 4.0.1
1507
+ Mon, 13 Nov 2017 18:34:30 GMT
1508
+
1509
+ ### Patches
1510
+
1511
+ - Fix the regression where "rush -h" didn't work outside a repo folder
1512
+ - Reduce the default parallelism on Windows platform
1513
+ - Force change log name to be the same as package name to handle the error case when package is renamed but change log is not
1514
+
1515
+ ## 4.0.0
1516
+ Sat, 4 Nov 2017 03:22:28 GMT
1517
+
1518
+ ### Breaking changes
1519
+
1520
+ - Complete release notes are here: https://github.com/microsoft/web-build-tools/wiki#november-3-2017---rush-4-released
1521
+ - Adding custom commands and options.
1522
+ - Adding rush version selector.
1523
+ - Updating the semantics of rush change.
1524
+
1525
+ ## 3.0.20
1526
+ Thu, 19 Oct 2017 23:01:49 GMT
1527
+
1528
+ ### Patches
1529
+
1530
+ - Fix a stack overflow error that occurs when "rush rebuild" encounters a cyclic dependency
1531
+ - Fix a bug that "rush rebuild" fails if "from" parameter is provided
1532
+ - Validate versions before "rush version" commits version updates
1533
+
1534
+ ## 3.0.19
1535
+ Fri, 06 Oct 2017 22:44:31 GMT
1536
+
1537
+ ### Patches
1538
+
1539
+ - Enable strickNullChecks
1540
+ - Fix a bug in "rush version" that devdependency does not get bumped if there is no dependency.
1541
+ - Fix a bug in "rush change" so it handles rename properly.
1542
+ - Add npm tag support in "rush publish".
1543
+
1544
+ ## 3.0.18
1545
+ Tue, 26 Sep 2017 13:51:05 GMT
1546
+
1547
+ ### Patches
1548
+
1549
+ - Update various dependencies
1550
+
1551
+ ## 3.0.17
1552
+ Thu, 14 Sep 2017 18:51:05 GMT
1553
+
1554
+ ### Patches
1555
+
1556
+ - Fix some issues in rush telemetry collection
1557
+
1558
+ ## 3.0.16
1559
+ Wed, 6 Sep 2017 18:24:39 GMT
1560
+
1561
+ ### Patches
1562
+
1563
+ - Fix an issue running 'rush install' after adding a new project
1564
+
1565
+ ## 3.0.15
1566
+ Wed, 30 Aug 2017 18:24:39 GMT
1567
+
1568
+ ### Patches
1569
+
1570
+ - Replace the temp_modules/*/package.json files with TGZ files
1571
+ - Add repositoryUrl to RushConfiguration to track remote repository
1572
+ - Use the new Json API from node-core-library
1573
+ - Add two new methods to ChangeFile class
1574
+ - Introduce an experimental "rush version" action to manage project versions based on version policy
1575
+ - Make "rush generate" not throw if there is a problem reading the shrinkwrap file
1576
+
1577
+ ## 3.0.12
1578
+ Fri, Jul 21, 2017 22:30:12 PM
1579
+
1580
+ ### Patches
1581
+
1582
+ - Temporarily revert Rush incremental build checking files outside of the project's directory
1583
+ - Fix error message during build
1584
+ - Add a ChangeFile class to rush-lib
1585
+ - Fix an issue where rush would crash if it could not find the rush.json
1586
+ - If "rush generate" detects that all dependencies are present, it will do nothing. This is overridable with the "--force" flag.
1587
+ - Promote Changelog interfaces to an @alpha API in rush-lib
1588
+
1589
+ ## 3.0.11
1590
+ Mon, Jul 3, 2017 10:53:12 PM
1591
+
1592
+ ### Patches
1593
+
1594
+ - Add support for non-SemVer dependency specifiers in package.json; for example, "github:gulpjs/gulp#4.0" or "git://github.com/user/project.git#commit-ish"
1595
+
1596
+ ## 3.0.10
1597
+ Tue, 27 Jun 2017 21:44:50 GMT
1598
+
1599
+ ### Patches
1600
+
1601
+ - Fix an issue with 'rush rebuild' where it fails on non-windows platforms
1602
+ - Fix an issue with 'rush -help' where it throws if rush.json is not available.
1603
+
1604
+ ## 3.0.9
1605
+ Thu, June 8, 2017 03:30:27 GMT
1606
+
1607
+ ### Patches
1608
+
1609
+ - Fix issue with 'rush check' where it sometimes threw exceptions.
1610
+
1611
+ ## 3.0.8
1612
+ Thu, June 8, 2017 03:00:27 GMT
1613
+
1614
+ ### Patches
1615
+
1616
+ - Fix issue with 'rush check' so it no longer considers cyclic dependencies as a mismatch.
1617
+
1618
+ ## 3.0.7
1619
+ Tue, May 23, 2017 00:55:27 GMT
1620
+
1621
+ ### Patches
1622
+
1623
+ - Fix a regression for packages with an empty script (no-op)
1624
+
1625
+ ## 3.0.6
1626
+ Sat, May 20, 2017 00:55:27 GMT
1627
+
1628
+ ### Patches
1629
+
1630
+ - Revert major break with rush build
1631
+
1632
+ ## 3.0.5
1633
+ Fri, May 19, 2017 10:55:27 GMT
1634
+
1635
+ ### Patches
1636
+
1637
+ - Fix the Rush build error due to 'SyntaxError: Unexpected token u in JSON at position 0'
1638
+ - Fix a minor bug where Rush complained about extra directories.
1639
+
1640
+ ## 3.0.4
1641
+ Tue, May 17, 2017 01:48:27 GMT
1642
+
1643
+ ### Patches
1644
+
1645
+ - Improved the "rush build" change detection: if any file outside a project folder has changed, rebuild all projects.
1646
+ - The "rush build" command now stores the command-line options used during a build, and forces a full rebuild if the options have changed.
1647
+ - Fix for a "rush publish" bug involving command line option quoting.
1648
+
1649
+ ## 3.0.3
1650
+ Tue, May 16, 2017 00:43:27 GMT
1651
+
1652
+ ### Patches
1653
+
1654
+ - Fix a regression where "rush install" sometimes failed to install the NPM tool
1655
+
1656
+ ## 3.0.2
1657
+ Sun, May 14, 2017 19:22:16 GMT
1658
+
1659
+ ### Patches
1660
+
1661
+ - Fix some minor documentation issues
1662
+
1663
+ ## 3.0.1
1664
+ Sun, May 14, 2017 18:30:35 GMT
1665
+
1666
+ ### Breaking changes
1667
+
1668
+ - THIS IS A BREAKING CHANGE - see the web-build-tools news page for migration instructions
1669
+ - The "rush install" now automatically detects when you need to run "rush generate", and the algorithm has been redesigned so that many package.json updates can skip "rush generate" entirely - hurray!
1670
+ - Major restructing of common folder; the "temp_modules" folder is no longer tracked by Git
1671
+ - Greatly simplified .gitignore; all of Rush's temporary files are now under common/temp
1672
+ - The rush.json file format has been simplified, and auxiliary config files are now consolidated in common/config/rush
1673
+ - The "packageReviewFile" feature has been overhauled - see wiki documentation on GitHub
1674
+ - The "rush check" command was renamed to "rush scan", and "rush check-versions" was shortened to "rush check"
1675
+
1676
+ ### Minor changes
1677
+
1678
+ - The change log file format was expanded to support subset publishing (coming soon!)
1679
+ - More operations now use the AsyncRecycleBin feature
1680
+ - The "rush link" command now skips if nothing has changed
1681
+
1682
+ ### Patches
1683
+
1684
+ - Numerous small fixes and enhancments
1685
+
1686
+ ## 2.5.0
1687
+ Tue, 11 Apr 2017 21:20:58 GMT
1688
+
1689
+ ### Minor changes
1690
+
1691
+ - Deprecate the pinnedVersions field of rush.json in favor of a standalone pinnedVer sions.json
1692
+
1693
+ ### Patches
1694
+
1695
+ - Bump stream-collator to 2.0.0
1696
+ - Publish: Improve detection of already published package versions
1697
+ - Publish: Fix a bug where not all project versions get updated for prerelease
1698
+
1699
+ ## 2.4.0
1700
+ Thu, 30 Mar 2017 18:25:38 GMT
1701
+
1702
+ ### Minor changes
1703
+
1704
+ - The 'link' action will be automatically ran after 'install' or 'generate'.
1705
+ - Support adding a suffix during rush generate
1706
+
1707
+ ### Patches
1708
+
1709
+ - Fixing an issue where install was not detecting changes to the shrinkwrap
1710
+ - Registry should not be hardcoded when auth token is provided
1711
+
1712
+ ## 2.3.0
1713
+ Fri, 24 Feb 2017 22:54:16 GMT
1714
+
1715
+ ### Minor changes
1716
+
1717
+ - Minor version
1718
+
1719
+ ## 2.2.1
1720
+ Fri, 24 Feb 2017 22:53:18 GMT
1721
+
1722
+ _Version update only_
1723
+
1724
+ ## 2.2.0
1725
+ Fri, 24 Feb 2017 22:44:31 GMT
1726
+
1727
+ ### Minor changes
1728
+
1729
+ - Add a "pinnedVersions" option to rush.json, which will add dependencies to the common package.json. Since these dependencies are installed first, this mechanism can be used to control versions of unconstrained second-level dependencies.
1730
+ - Make --quiet builds the default. Deprecate the --quiet parameter. Add a --verbose parameter which displays the build logs.
1731
+
1732
+ ### Patches
1733
+
1734
+ - Rush install checks to ensure that generate has been run.
1735
+
1736
+ ## 1.8.2
1737
+ Wed, 15 Feb 2017 08:54:44 GMT
1738
+
1739
+ ### Patches
1740
+
1741
+ - Temporarily reverting the new temp_modules validation feature, because it is incompatible with some usage scenarios
1742
+
1743
+ ## 1.8.1
1744
+ Tue, 14 Feb 2017 23:40:44 GMT
1745
+
1746
+ ### Patches
1747
+
1748
+ - Fixing a bug with install where it preemptively returned before installing.
1749
+
1750
+ ## 1.8.0
1751
+ Tue, 14 Feb 2017 22:53:30 GMT
1752
+
1753
+ ### Minor changes
1754
+
1755
+ - Install will error if the temp_modules have drifted out of sync with the package's package.json files
1756
+
1757
+ ## 1.7.0
1758
+ Tue, 14 Feb 2017 02:31:40 GMT
1759
+
1760
+ ### Minor changes
1761
+
1762
+ - Adds an extra command (rush check-versions), which can find inconsistencies in package.json dependency versions across a repository.
1763
+
1764
+ ## 1.6.0
1765
+ Sun, 05 Feb 2017 01:21:30 GMT
1766
+
1767
+ ### Minor changes
1768
+
1769
+ - Add support for pre-release build
1770
+
1771
+ ### Patches
1772
+
1773
+ - When the git policy fails, rush should return a non-zero error code.
1774
+ - Lock version numbers for @types packages
1775
+ - Ensure world readiness
1776
+ - Update .npmignore
1777
+ - Cyclic dependency should not have version bumped when changes are applied.
1778
+
1779
+ ## 1.5.1
1780
+ Tue, 24 Jan 2017 03:26:05 GMT
1781
+
1782
+ ### Patches
1783
+
1784
+ - The 'link' command should display elapsed time when finished executing.
1785
+ - Minor fix so "allowedEmailRegExps" works on Mac/Linux
1786
+ - Fixed a small bug where "rush publish -a" was not deleting changelog files
1787
+
1788
+ ## 1.5.0
1789
+ Sun, 22 Jan 2017 02:04:57 GMT
1790
+
1791
+ ### Minor changes
1792
+
1793
+ - Implemented a new rush.json option "gitPolicy" to avoid incorrect commit e-mails
1794
+
1795
+ ### Patches
1796
+
1797
+ - Update temp_modules when versions are bumped.
1798
+
1799
+ ## 1.4.1
1800
+ Tue, 03 Jan 2017 21:52:49 GMT
1801
+
1802
+ ### Patches
1803
+
1804
+ - Fixing `rush publish` changelog code to reference projects correctly.
1805
+ - `rush publish` now only updates changelogs for projects that are marked as shouldPublish=true.
1806
+
1807
+ ## 1.4.0
1808
+ Tue, 06 Dec 2016 20:44:26 GMT
1809
+
1810
+ ### Minor changes
1811
+
1812
+ - Changes for RC0 release.
1813
+
1814
+ ## 1.3.0
1815
+ Sat, 03 Dec 2016 07:47:39 GMT
1816
+
1817
+ ### Minor changes
1818
+
1819
+ - Adding support for changelog generation to rush publish.
1820
+ - Refactoring "config" into "configuration."
1821
+
1822
+ ### Patches
1823
+
1824
+ - Converting node and webpack-env typings to use @types, and cleaning them up.
1825
+ - The cache should be cleaned unless we are using the global cache
1826
+ - Fixed a regression where "rush install" would sometimes corrupt the node_modules folder. Also, common/package.json is now sorted deterministically.
1827
+
1828
+ ## 1.2.4
1829
+
1830
+ ### Patches
1831
+
1832
+ - If the `test`, `clean`, or `build` commands are defined in the package.json, but are empty strings, then do a no-op during the build.
1833
+
1834
+ ## 1.2.3
1835
+
1836
+ ### Patches
1837
+
1838
+ - Make deletion of node_modules folder more cautious to improve failure rate on automated builds.
1839
+ - Updating Rush generate to more efficiently delete folders.
1840
+
1841
+ ## 1.2.2
1842
+
1843
+ ### Patches
1844
+
1845
+ - Updating the deps hash dependency, which includes a fix which resolves a bug where changes were not being recalculated when multiple files were changed.
1846
+
1847
+ ## 1.2.1
1848
+
1849
+ ### Patches
1850
+
1851
+ - Updating the rush `change` with better verification logic.
1852
+
1853
+ ## 1.2.0
1854
+
1855
+ ### Minor changes
1856
+
1857
+ - Adding the 'build' action, which support incremental build.
1858
+
1859
+ ## 1.1.3
1860
+
1861
+ ### Patches
1862
+
1863
+ - Partially reverting changes for treating success with warnings differently.
1864
+ - Making Rush install transactional.
1865
+
1866
+ ## 1.1.2
1867
+
1868
+ ### Patches
1869
+
1870
+ - Fix a bug in rush `change`
1871
+
1872
+ ## 1.1.1
1873
+
1874
+ ### Patches
1875
+
1876
+ - correcting casing of files and imports
1877
+
1878
+ ## 1.1.0
1879
+
1880
+ ### Minor changes
1881
+
1882
+ - The "packageReviewFile" feature now supports a setting "ignoredNpmScopes" that can be used e.g. to ignore the "@types" scope
1883
+
1884
+ ### Patches
1885
+
1886
+ - Fixing Rush to run on UNIX and Linux.
1887
+
1888
+ ## 1.0.10
1889
+
1890
+ ### Breaking changes
1891
+
1892
+ - Rename `shouldTrackChanges` to `shouldPublish` which indicates whether a package should be included for the `publish` workflow.
1893
+
1894
+ ### Minor changes
1895
+
1896
+ - Updating `rush install` to be transactional.
1897
+
1898
+ ### Patches
1899
+
1900
+ - Updating the `publish` workflow.
1901
+
1902
+ ## 1.0.9
1903
+
1904
+ ### Patches
1905
+
1906
+ - Updating the `publish` workflow.
1907
+
1908
+ ## 1.0.7
1909
+
1910
+ ### Patches
1911
+
1912
+ - Renaming the `local-npm` directory to `npm-local`.
1913
+ - Include NPM --cache and NPM --tmp options in the rush.json file.
1914
+ - Limit Rush Rebuild parallelism to 'number-of-cores' simultaneous builds, optionally overridable on command line
1915
+
1916
+ ## 1.0.5
1917
+
1918
+ ### Patches
1919
+
1920
+ - Fixed a bug in Rush Generate which showed: `ERROR: Input file not found: undefined` when packageReviewFile is omitted
1921
+
1922
+ ## 1.0.4
1923
+
1924
+ ### Minor changes
1925
+
1926
+ - Added optional support for a "packageReviewFile" that helps detect when new NPM package dependencies are introduced
1927
+
1928
+ ### Patches
1929
+
1930
+ - Replaced JSON.parse() with jju for improved error handling.
1931
+
1932
+ ## 1.0.3
1933
+
1934
+ ### Patches
1935
+
1936
+ - Fix Mac OS X compatibility issue
1937
+
1938
+ ## 1.0.0
1939
+
1940
+ _Initial release_
1941
+