@microsoft/rush 5.58.0 → 5.59.0

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