@microsoft/rush 5.59.0-rc.1 → 5.59.2

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