@microsoft/rush 5.62.3 → 5.63.1

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