@rushstack/ts-command-line 4.22.2 → 4.22.3

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/CHANGELOG.json +2036 -0
  2. package/CHANGELOG.md +1029 -0
  3. package/package.json +2 -2
package/CHANGELOG.md ADDED
@@ -0,0 +1,1029 @@
1
+ # Change Log - @rushstack/ts-command-line
2
+
3
+ This log was last generated on Sat, 27 Jul 2024 00:10:27 GMT and should not be manually modified.
4
+
5
+ ## 4.22.3
6
+ Sat, 27 Jul 2024 00:10:27 GMT
7
+
8
+ ### Patches
9
+
10
+ - Include CHANGELOG.md in published releases again
11
+
12
+ ## 4.22.2
13
+ Wed, 17 Jul 2024 06:55:10 GMT
14
+
15
+ _Version update only_
16
+
17
+ ## 4.22.1
18
+ Tue, 16 Jul 2024 00:36:21 GMT
19
+
20
+ _Version update only_
21
+
22
+ ## 4.22.0
23
+ Thu, 30 May 2024 00:13:05 GMT
24
+
25
+ ### Minor changes
26
+
27
+ - Eliminate a const enum from the public API.
28
+
29
+ ## 4.21.5
30
+ Wed, 29 May 2024 02:03:51 GMT
31
+
32
+ _Version update only_
33
+
34
+ ## 4.21.4
35
+ Tue, 28 May 2024 15:10:09 GMT
36
+
37
+ _Version update only_
38
+
39
+ ## 4.21.3
40
+ Tue, 28 May 2024 00:09:47 GMT
41
+
42
+ _Version update only_
43
+
44
+ ## 4.21.2
45
+ Sat, 25 May 2024 04:54:08 GMT
46
+
47
+ _Version update only_
48
+
49
+ ## 4.21.1
50
+ Thu, 23 May 2024 02:26:56 GMT
51
+
52
+ _Version update only_
53
+
54
+ ## 4.21.0
55
+ Thu, 16 May 2024 15:10:22 GMT
56
+
57
+ ### Minor changes
58
+
59
+ - Mark `onDefineParameters` and `onDefineUnscopedParameters` as deprecated and update README accordingly because defining parameters causes issues when the compiler targets >=es2022.
60
+
61
+ ## 4.20.1
62
+ Wed, 15 May 2024 23:42:58 GMT
63
+
64
+ _Version update only_
65
+
66
+ ## 4.20.0
67
+ Wed, 15 May 2024 06:04:17 GMT
68
+
69
+ ### Minor changes
70
+
71
+ - Rename `CommandLineParser.execute` to `CommandLineParser.executeAsync` and `CommandLineParser.executeWithoutErrorHandling` to `CommandLineParser.executeWithoutErrorHandlingAsync`. The old functions are marked as `@deprecated`.
72
+
73
+ ## 4.19.5
74
+ Fri, 10 May 2024 05:33:34 GMT
75
+
76
+ _Version update only_
77
+
78
+ ## 4.19.4
79
+ Wed, 08 May 2024 22:23:50 GMT
80
+
81
+ ### Patches
82
+
83
+ - Fix an issue where tab completions did not suggest parameter values.
84
+
85
+ ## 4.19.3
86
+ Mon, 06 May 2024 15:11:05 GMT
87
+
88
+ _Version update only_
89
+
90
+ ## 4.19.2
91
+ Wed, 10 Apr 2024 15:10:09 GMT
92
+
93
+ _Version update only_
94
+
95
+ ## 4.19.1
96
+ Sun, 03 Mar 2024 20:58:12 GMT
97
+
98
+ ### Patches
99
+
100
+ - Fix an issue where the `allowNonStandardEnvironmentVariableNames` parameter option had no effect.
101
+
102
+ ## 4.19.0
103
+ Sat, 02 Mar 2024 02:22:23 GMT
104
+
105
+ ### Minor changes
106
+
107
+ - Use more specific types for command line parameters' `kind` properties.
108
+ - Allow parameters that may be backed by an environment variable to be marked as `required`.
109
+ - Update the return type of `defineChoiceParameter`, `defineIntegerParameter`, and `defineStringParameter` respectively when the `defaultValue` option is provided to return `IRequiredCommandLineChoiceParameter`, `IRequiredCommandLineIntegerParameter`, and `IRequiredCommandLineStringParameter` respectively, as the value will definitely be defined in these cases.
110
+
111
+ ### Patches
112
+
113
+ - Include a missing `readonly` modifier on the `value` properties of `IRequiredCommandLineChoiceParameter`, `IRequiredCommandLineIntegerParameter`, and `IRequiredCommandLineStringParameter`.
114
+
115
+ ## 4.18.1
116
+ Fri, 01 Mar 2024 01:10:08 GMT
117
+
118
+ ### Patches
119
+
120
+ - Add an "allowNonStandardEnvironmentVariableNames" option to remove naming restrictions on parameter environment variables
121
+
122
+ ## 4.18.0
123
+ Wed, 28 Feb 2024 16:09:27 GMT
124
+
125
+ ### Minor changes
126
+
127
+ - Allow choice parameters alternatives to be typed.
128
+ - Update the return type of `defineChoiceParameter`, `defineIntegerParameter`, and `defineStringParameter` respectively when the `{ required: true }` option is set to a new type (`IRequiredCommandLineChoiceParameter`, `IRequiredCommandLineIntegerParameter`, and `IRequiredCommandLineStringParameter` respectively) with a required `value` property.
129
+
130
+ ## 4.17.4
131
+ Sat, 24 Feb 2024 23:02:51 GMT
132
+
133
+ _Version update only_
134
+
135
+ ## 4.17.3
136
+ Wed, 21 Feb 2024 21:45:28 GMT
137
+
138
+ ### Patches
139
+
140
+ - Replace the dependency on the `colors` package with `Colorize` from `@rushstack/terminal`.
141
+
142
+ ## 4.17.2
143
+ Sat, 17 Feb 2024 06:24:35 GMT
144
+
145
+ ### Patches
146
+
147
+ - Fix broken link to API documentation
148
+
149
+ ## 4.17.1
150
+ Wed, 01 Nov 2023 23:11:35 GMT
151
+
152
+ ### Patches
153
+
154
+ - Fix line endings in published package.
155
+
156
+ ## 4.17.0
157
+ Mon, 30 Oct 2023 23:36:37 GMT
158
+
159
+ ### Minor changes
160
+
161
+ - Consider parent tool and action parameters when determining ambiguous abbreviations. For example, if a CLI tool `mytool` has a parameter `--myparam` and an action `myaction`, then `myaction` would not accept a parameter named `--myparam` (i.e. - `mytool --myparam myaction` is valid, `mytool myaction --myparam` is not). Additionally, any parameter that can be abbreviated to `--myparam` must be uniquely provided (i.e. - `--myparam-2` can only be abbreviated to `--myparam-`, since any shorter abbreviation would be ambiguous with the original `--myparam` on the tool).
162
+
163
+ ## 4.16.1
164
+ Tue, 26 Sep 2023 09:30:33 GMT
165
+
166
+ ### Patches
167
+
168
+ - Update type-only imports to include the type modifier.
169
+
170
+ ## 4.16.0
171
+ Fri, 15 Sep 2023 00:36:58 GMT
172
+
173
+ ### Minor changes
174
+
175
+ - Update @types/node from 14 to 18
176
+
177
+ ## 4.15.2
178
+ Tue, 08 Aug 2023 07:10:40 GMT
179
+
180
+ _Version update only_
181
+
182
+ ## 4.15.1
183
+ Thu, 15 Jun 2023 00:21:01 GMT
184
+
185
+ _Version update only_
186
+
187
+ ## 4.15.0
188
+ Tue, 13 Jun 2023 01:49:01 GMT
189
+
190
+ ### Minor changes
191
+
192
+ - Add support for handling ambiguous parameters when conflicting parameters are provided but they provide a non-conflicting alternative (e.g. parameters with the same short-name but different long-names, scoped parameters with the same long-name but different scopes). When using an ambiguous parameter on the CLI, an error message describing the ambiguous parameter usage will appear.
193
+
194
+ ## 4.14.0
195
+ Wed, 07 Jun 2023 22:45:16 GMT
196
+
197
+ ### Minor changes
198
+
199
+ - Add AliasCommandLineAction, a CommandLineAction that can be used to redirect commands with optional default arguments to existing commands.
200
+
201
+ ## 4.13.3
202
+ Mon, 22 May 2023 06:34:33 GMT
203
+
204
+ _Version update only_
205
+
206
+ ## 4.13.2
207
+ Fri, 10 Feb 2023 01:18:50 GMT
208
+
209
+ _Version update only_
210
+
211
+ ## 4.13.1
212
+ Tue, 08 Nov 2022 01:20:55 GMT
213
+
214
+ ### Patches
215
+
216
+ - Make ScopedCommandLineAction.onDefineUnscopedParameters optional to match CommandLineAciton.onDefineParameters
217
+
218
+ ## 4.13.0
219
+ Mon, 17 Oct 2022 22:14:21 GMT
220
+
221
+ ### Minor changes
222
+
223
+ - Make the onDefineParameters function optional for `CommandLineAction`s and `CommandLineParser`s that either don't have parameters or that define their parameters in their constructor.
224
+
225
+ ## 4.12.5
226
+ Mon, 10 Oct 2022 15:23:44 GMT
227
+
228
+ _Version update only_
229
+
230
+ ## 4.12.4
231
+ Thu, 29 Sep 2022 07:13:06 GMT
232
+
233
+ _Version update only_
234
+
235
+ ## 4.12.3
236
+ Thu, 15 Sep 2022 00:18:51 GMT
237
+
238
+ _Version update only_
239
+
240
+ ## 4.12.2
241
+ Wed, 03 Aug 2022 18:40:35 GMT
242
+
243
+ _Version update only_
244
+
245
+ ## 4.12.1
246
+ Tue, 28 Jun 2022 00:23:32 GMT
247
+
248
+ _Version update only_
249
+
250
+ ## 4.12.0
251
+ Thu, 23 Jun 2022 22:14:24 GMT
252
+
253
+ ### Minor changes
254
+
255
+ - Add parameter scopes. Parameter scopes allow for behind-the-scenes conflict resolution between parameters with the same long name. For example, when provided scope "my-scope", a parameter can be referenced on the CLI as "--my-parameter" or as "--my-scope:my-parameter". In the case that multiple parameters are registered with the same long name but different scopes, the parameters can only be referenced by their scoped long names, eg. "--my-scope:my-parameter" and "--my-other-scope:my-parameter".
256
+
257
+ ## 4.11.1
258
+ Fri, 17 Jun 2022 00:16:18 GMT
259
+
260
+ _Version update only_
261
+
262
+ ## 4.11.0
263
+ Tue, 10 May 2022 01:20:43 GMT
264
+
265
+ ### Minor changes
266
+
267
+ - Add ScopedCommandLineAction class, which allows for the definition of actions that have dynamic arguments whose definition depends on a provided scope. See https://github.com/microsoft/rushstack/pull/3364
268
+
269
+ ## 4.10.10
270
+ Sat, 23 Apr 2022 02:13:07 GMT
271
+
272
+ _Version update only_
273
+
274
+ ## 4.10.9
275
+ Fri, 15 Apr 2022 00:12:36 GMT
276
+
277
+ _Version update only_
278
+
279
+ ## 4.10.8
280
+ Sat, 09 Apr 2022 02:24:27 GMT
281
+
282
+ ### Patches
283
+
284
+ - Rename the "master" branch to "main".
285
+
286
+ ## 4.10.7
287
+ Tue, 15 Mar 2022 19:15:53 GMT
288
+
289
+ _Version update only_
290
+
291
+ ## 4.10.6
292
+ Mon, 27 Dec 2021 16:10:40 GMT
293
+
294
+ _Version update only_
295
+
296
+ ## 4.10.5
297
+ Mon, 06 Dec 2021 16:08:32 GMT
298
+
299
+ _Version update only_
300
+
301
+ ## 4.10.4
302
+ Fri, 05 Nov 2021 15:09:18 GMT
303
+
304
+ _Version update only_
305
+
306
+ ## 4.10.3
307
+ Wed, 27 Oct 2021 00:08:15 GMT
308
+
309
+ ### Patches
310
+
311
+ - Update the package.json repository field to include the directory property.
312
+
313
+ ## 4.10.2
314
+ Wed, 13 Oct 2021 15:09:54 GMT
315
+
316
+ _Version update only_
317
+
318
+ ## 4.10.1
319
+ Thu, 07 Oct 2021 07:13:35 GMT
320
+
321
+ _Version update only_
322
+
323
+ ## 4.10.0
324
+ Mon, 04 Oct 2021 15:10:18 GMT
325
+
326
+ ### Minor changes
327
+
328
+ - Add safety check parametersProcessed to CommandLineParameterProvider
329
+
330
+ ## 4.9.1
331
+ Thu, 23 Sep 2021 00:10:41 GMT
332
+
333
+ ### Patches
334
+
335
+ - Upgrade the `@types/node` dependency to version to version 12.
336
+
337
+ ## 4.9.0
338
+ Fri, 20 Aug 2021 15:08:10 GMT
339
+
340
+ ### Minor changes
341
+
342
+ - Add getParameterStringMap to CommandLineParameterProvider, to easily query parameter usage for telemetry
343
+
344
+ ## 4.8.1
345
+ Mon, 12 Jul 2021 23:08:26 GMT
346
+
347
+ _Version update only_
348
+
349
+ ## 4.8.0
350
+ Thu, 01 Jul 2021 15:08:27 GMT
351
+
352
+ ### Minor changes
353
+
354
+ - Add ChoiceList and IntegerList parameter types
355
+
356
+ ## 4.7.10
357
+ Mon, 12 Apr 2021 15:10:28 GMT
358
+
359
+ _Version update only_
360
+
361
+ ## 4.7.9
362
+ Tue, 06 Apr 2021 15:14:22 GMT
363
+
364
+ _Version update only_
365
+
366
+ ## 4.7.8
367
+ Thu, 10 Dec 2020 23:25:49 GMT
368
+
369
+ _Version update only_
370
+
371
+ ## 4.7.7
372
+ Wed, 11 Nov 2020 01:08:59 GMT
373
+
374
+ _Version update only_
375
+
376
+ ## 4.7.6
377
+ Fri, 30 Oct 2020 06:38:39 GMT
378
+
379
+ _Version update only_
380
+
381
+ ## 4.7.5
382
+ Fri, 30 Oct 2020 00:10:14 GMT
383
+
384
+ _Version update only_
385
+
386
+ ## 4.7.4
387
+ Wed, 28 Oct 2020 01:18:03 GMT
388
+
389
+ _Version update only_
390
+
391
+ ## 4.7.3
392
+ Tue, 06 Oct 2020 00:24:06 GMT
393
+
394
+ _Version update only_
395
+
396
+ ## 4.7.2
397
+ Mon, 05 Oct 2020 22:36:57 GMT
398
+
399
+ _Version update only_
400
+
401
+ ## 4.7.1
402
+ Wed, 30 Sep 2020 18:39:17 GMT
403
+
404
+ ### Patches
405
+
406
+ - Update to build with @rushstack/heft-node-rig
407
+
408
+ ## 4.7.0
409
+ Wed, 30 Sep 2020 06:53:53 GMT
410
+
411
+ ### Minor changes
412
+
413
+ - Upgrade compiler; the API now requires TypeScript 3.9 or newer
414
+
415
+ ### Patches
416
+
417
+ - Update README.md
418
+
419
+ ## 4.6.10
420
+ Tue, 22 Sep 2020 05:45:57 GMT
421
+
422
+ _Version update only_
423
+
424
+ ## 4.6.9
425
+ Tue, 22 Sep 2020 01:45:31 GMT
426
+
427
+ _Version update only_
428
+
429
+ ## 4.6.8
430
+ Tue, 22 Sep 2020 00:08:53 GMT
431
+
432
+ _Version update only_
433
+
434
+ ## 4.6.7
435
+ Sat, 19 Sep 2020 04:37:27 GMT
436
+
437
+ _Version update only_
438
+
439
+ ## 4.6.6
440
+ Sat, 19 Sep 2020 03:33:07 GMT
441
+
442
+ _Version update only_
443
+
444
+ ## 4.6.5
445
+ Fri, 18 Sep 2020 22:57:24 GMT
446
+
447
+ _Version update only_
448
+
449
+ ## 4.6.4
450
+ Thu, 27 Aug 2020 11:27:06 GMT
451
+
452
+ _Version update only_
453
+
454
+ ## 4.6.3
455
+ Mon, 24 Aug 2020 07:35:20 GMT
456
+
457
+ _Version update only_
458
+
459
+ ## 4.6.2
460
+ Sat, 22 Aug 2020 05:55:43 GMT
461
+
462
+ _Version update only_
463
+
464
+ ## 4.6.1
465
+ Fri, 21 Aug 2020 01:21:17 GMT
466
+
467
+ ### Patches
468
+
469
+ - Fix an issue where usage of a parameter specified undocumentedSynonyms yielded invalid data.
470
+
471
+ ## 4.6.0
472
+ Thu, 20 Aug 2020 15:13:52 GMT
473
+
474
+ ### Minor changes
475
+
476
+ - Add a feature for specifying "undocumented synonyms" for parameters.
477
+
478
+ ## 4.5.0
479
+ Tue, 18 Aug 2020 23:59:42 GMT
480
+
481
+ ### Minor changes
482
+
483
+ - Add support for shell tab completion.
484
+
485
+ ## 4.4.8
486
+ Mon, 17 Aug 2020 04:53:23 GMT
487
+
488
+ _Version update only_
489
+
490
+ ## 4.4.7
491
+ Wed, 12 Aug 2020 00:10:05 GMT
492
+
493
+ ### Patches
494
+
495
+ - Updated project to build with Heft
496
+
497
+ ## 4.4.6
498
+ Fri, 03 Jul 2020 05:46:41 GMT
499
+
500
+ ### Patches
501
+
502
+ - Improve formatting of errors reported by CommandLineParser.execute()
503
+
504
+ ## 4.4.5
505
+ Thu, 25 Jun 2020 06:43:35 GMT
506
+
507
+ _Version update only_
508
+
509
+ ## 4.4.4
510
+ Wed, 24 Jun 2020 09:50:48 GMT
511
+
512
+ _Version update only_
513
+
514
+ ## 4.4.3
515
+ Wed, 24 Jun 2020 09:04:28 GMT
516
+
517
+ _Version update only_
518
+
519
+ ## 4.4.2
520
+ Mon, 01 Jun 2020 08:34:17 GMT
521
+
522
+ ### Patches
523
+
524
+ - Fix a typo in the supplementary notes for parameters with environment variable mappings
525
+
526
+ ## 4.4.1
527
+ Wed, 27 May 2020 05:15:10 GMT
528
+
529
+ _Version update only_
530
+
531
+ ## 4.4.0
532
+ Fri, 15 May 2020 08:10:59 GMT
533
+
534
+ ### Minor changes
535
+
536
+ - Add a new feature defineCommandLineRemainder() which allows additional unvalidated CLI arguments, e.g. to pass along to another tool
537
+ - Add the ability for an environment variable to specify multiple values for CommandLineStringListParameter, encoded as a JSON array
538
+ - Fix some bugs that prevented a CommandLineParser from being defined without any actions
539
+
540
+ ### Patches
541
+
542
+ - Fix a bug with environmentVariable mapping for CommandLineFlagParameter
543
+ - Use API Extractor to trim internal APIs from the .d.ts rollup
544
+ - Improve the README.md and API documentation
545
+
546
+ ## 4.3.14
547
+ Wed, 08 Apr 2020 04:07:33 GMT
548
+
549
+ _Version update only_
550
+
551
+ ## 4.3.13
552
+ Sat, 28 Mar 2020 00:37:16 GMT
553
+
554
+ _Version update only_
555
+
556
+ ## 4.3.12
557
+ Wed, 18 Mar 2020 15:07:47 GMT
558
+
559
+ ### Patches
560
+
561
+ - Upgrade cyclic dependencies
562
+
563
+ ## 4.3.11
564
+ Tue, 17 Mar 2020 23:55:58 GMT
565
+
566
+ ### Patches
567
+
568
+ - PACKAGE NAME CHANGE: The NPM scope was changed from `@microsoft/ts-command-line` to `@rushstack/ts-command-line`
569
+
570
+ ## 4.3.10
571
+ Tue, 21 Jan 2020 21:56:14 GMT
572
+
573
+ _Version update only_
574
+
575
+ ## 4.3.9
576
+ Sun, 19 Jan 2020 02:26:52 GMT
577
+
578
+ ### Patches
579
+
580
+ - Upgrade Node typings to Node 10
581
+
582
+ ## 4.3.8
583
+ Fri, 17 Jan 2020 01:08:23 GMT
584
+
585
+ _Version update only_
586
+
587
+ ## 4.3.7
588
+ Thu, 09 Jan 2020 06:44:13 GMT
589
+
590
+ _Version update only_
591
+
592
+ ## 4.3.6
593
+ Wed, 08 Jan 2020 00:11:31 GMT
594
+
595
+ _Version update only_
596
+
597
+ ## 4.3.5
598
+ Mon, 11 Nov 2019 16:07:56 GMT
599
+
600
+ _Version update only_
601
+
602
+ ## 4.3.4
603
+ Tue, 22 Oct 2019 06:24:44 GMT
604
+
605
+ _Version update only_
606
+
607
+ ## 4.3.3
608
+ Fri, 18 Oct 2019 15:15:00 GMT
609
+
610
+ ### Patches
611
+
612
+ - Fix Choice parameter error when only one alternative value is provided
613
+
614
+ ## 4.3.2
615
+ Sun, 29 Sep 2019 23:56:29 GMT
616
+
617
+ ### Patches
618
+
619
+ - Update repository URL
620
+
621
+ ## 4.3.1
622
+ Tue, 24 Sep 2019 02:58:49 GMT
623
+
624
+ ### Patches
625
+
626
+ - Add back a missing dependency.
627
+
628
+ ## 4.3.0
629
+ Mon, 23 Sep 2019 15:14:55 GMT
630
+
631
+ ### Minor changes
632
+
633
+ - Remove unnecessary dependencies on @types/argparse and @types/node
634
+
635
+ ## 4.2.8
636
+ Tue, 10 Sep 2019 22:32:23 GMT
637
+
638
+ ### Patches
639
+
640
+ - Update documentation
641
+
642
+ ## 4.2.7
643
+ Mon, 12 Aug 2019 15:15:14 GMT
644
+
645
+ ### Patches
646
+
647
+ - fix for #1443 allow rush command to use numbers
648
+
649
+ ## 4.2.6
650
+ Wed, 12 Jun 2019 19:12:33 GMT
651
+
652
+ ### Patches
653
+
654
+ - Update Readme.
655
+
656
+ ## 4.2.5
657
+ Mon, 27 May 2019 04:13:44 GMT
658
+
659
+ ### Patches
660
+
661
+ - Fix a broken link in the README.md (GitHub issue #1285)
662
+
663
+ ## 4.2.4
664
+ Mon, 06 May 2019 20:46:21 GMT
665
+
666
+ ### Patches
667
+
668
+ - Allow colons in command line action names
669
+
670
+ ## 4.2.3
671
+ Fri, 07 Dec 2018 17:04:56 GMT
672
+
673
+ ### Patches
674
+
675
+ - Updated to use the new InternalError class for reporting software defects
676
+
677
+ ## 4.2.2
678
+ Thu, 06 Sep 2018 01:25:26 GMT
679
+
680
+ ### Patches
681
+
682
+ - Update "repository" field in package.json
683
+
684
+ ## 4.2.1
685
+ Thu, 23 Aug 2018 18:18:53 GMT
686
+
687
+ ### Patches
688
+
689
+ - Republish all packages in web-build-tools to resolve GitHub issue #782
690
+
691
+ ## 4.2.0
692
+ Fri, 08 Jun 2018 08:43:52 GMT
693
+
694
+ ### Minor changes
695
+
696
+ - Add CommandLineChoiceParameter.appendToArgList() and CommandLineParser.tryGetAction()
697
+
698
+ ## 4.1.0
699
+ Fri, 27 Apr 2018 03:04:32 GMT
700
+
701
+ ### Minor changes
702
+
703
+ - Add "defaultValue", "environmentVariable", and "required" features for command-line parameters
704
+
705
+ ## 4.0.0
706
+ Thu, 19 Apr 2018 21:25:56 GMT
707
+
708
+ ### Breaking changes
709
+
710
+ - Rename "CommandLineOptionParameter" to "CommandLineChoiceParameter" (API change)
711
+ - Rename "ICommandLineChoiceDefinition.options" to "alternatives" (API change)
712
+ - Add DynamicCommandLineAction, DynamicCommandLineParser, and other APIs to support defining and reading command-line parameters at runtime
713
+ - Rename "actionVerb" to "actionName" (API change)
714
+ - Replace "CommandLineAction.options" with more concise top-level properties (API change)
715
+
716
+ ## 3.1.1
717
+ Fri, 23 Mar 2018 00:34:53 GMT
718
+
719
+ ### Patches
720
+
721
+ - Upgrade colors to version ~1.2.1
722
+
723
+ ## 3.1.0
724
+ Thu, 15 Mar 2018 20:00:50 GMT
725
+
726
+ ### Minor changes
727
+
728
+ - Add default error handler so the caller to CommandLineParser.execute() is not expected to handle promise rejections
729
+ - Add a new API "CommandLineParser.executeWithoutErrorHandling()"
730
+
731
+ ## 3.0.7
732
+ Mon, 12 Mar 2018 20:36:19 GMT
733
+
734
+ ### Patches
735
+
736
+ - Locked down some "@types/" dependency versions to avoid upgrade conflicts
737
+
738
+ ## 3.0.6
739
+ Fri, 02 Mar 2018 01:13:59 GMT
740
+
741
+ _Version update only_
742
+
743
+ ## 3.0.5
744
+ Tue, 27 Feb 2018 22:05:57 GMT
745
+
746
+ _Version update only_
747
+
748
+ ## 3.0.4
749
+ Wed, 21 Feb 2018 22:04:19 GMT
750
+
751
+ _Version update only_
752
+
753
+ ## 3.0.3
754
+ Wed, 21 Feb 2018 03:13:28 GMT
755
+
756
+ _Version update only_
757
+
758
+ ## 3.0.2
759
+ Sat, 17 Feb 2018 02:53:49 GMT
760
+
761
+ _Version update only_
762
+
763
+ ## 3.0.1
764
+ Fri, 16 Feb 2018 22:05:23 GMT
765
+
766
+ _Version update only_
767
+
768
+ ## 3.0.0
769
+ Fri, 16 Feb 2018 17:05:11 GMT
770
+
771
+ ### Breaking changes
772
+
773
+ - Change all CommandLineActions to have an asychronous API that returns a promise.
774
+
775
+ ## 2.3.10
776
+ Wed, 07 Feb 2018 17:05:11 GMT
777
+
778
+ _Version update only_
779
+
780
+ ## 2.3.9
781
+ Fri, 26 Jan 2018 22:05:30 GMT
782
+
783
+ _Version update only_
784
+
785
+ ## 2.3.8
786
+ Fri, 26 Jan 2018 17:53:38 GMT
787
+
788
+ ### Patches
789
+
790
+ - Force a patch bump in case the previous version was an empty package
791
+
792
+ ## 2.3.7
793
+ Fri, 26 Jan 2018 00:36:51 GMT
794
+
795
+ _Version update only_
796
+
797
+ ## 2.3.6
798
+ Tue, 23 Jan 2018 17:05:28 GMT
799
+
800
+ _Version update only_
801
+
802
+ ## 2.3.5
803
+ Thu, 18 Jan 2018 03:23:46 GMT
804
+
805
+ ### Patches
806
+
807
+ - Enable package typings generated by api-extractor
808
+
809
+ ## 2.3.4
810
+ Thu, 18 Jan 2018 00:48:06 GMT
811
+
812
+ _Version update only_
813
+
814
+ ## 2.3.3
815
+ Wed, 17 Jan 2018 10:49:31 GMT
816
+
817
+ _Version update only_
818
+
819
+ ## 2.3.2
820
+ Fri, 12 Jan 2018 03:35:22 GMT
821
+
822
+ _Version update only_
823
+
824
+ ## 2.3.1
825
+ Thu, 11 Jan 2018 22:31:51 GMT
826
+
827
+ _Version update only_
828
+
829
+ ## 2.3.0
830
+ Wed, 10 Jan 2018 20:40:01 GMT
831
+
832
+ ### Minor changes
833
+
834
+ - Upgrade to Node 8
835
+
836
+ ## 2.2.14
837
+ Tue, 09 Jan 2018 17:05:51 GMT
838
+
839
+ ### Patches
840
+
841
+ - Get web-build-tools building with pnpm
842
+
843
+ ## 2.2.13
844
+ Sun, 07 Jan 2018 05:12:08 GMT
845
+
846
+ _Version update only_
847
+
848
+ ## 2.2.12
849
+ Fri, 05 Jan 2018 20:26:45 GMT
850
+
851
+ _Version update only_
852
+
853
+ ## 2.2.11
854
+ Fri, 05 Jan 2018 00:48:42 GMT
855
+
856
+ _Version update only_
857
+
858
+ ## 2.2.10
859
+ Fri, 22 Dec 2017 17:04:46 GMT
860
+
861
+ _Version update only_
862
+
863
+ ## 2.2.9
864
+ Tue, 12 Dec 2017 03:33:27 GMT
865
+
866
+ _Version update only_
867
+
868
+ ## 2.2.8
869
+ Thu, 30 Nov 2017 23:59:09 GMT
870
+
871
+ _Version update only_
872
+
873
+ ## 2.2.7
874
+ Thu, 30 Nov 2017 23:12:21 GMT
875
+
876
+ _Version update only_
877
+
878
+ ## 2.2.6
879
+ Wed, 29 Nov 2017 17:05:37 GMT
880
+
881
+ _Version update only_
882
+
883
+ ## 2.2.5
884
+ Tue, 28 Nov 2017 23:43:55 GMT
885
+
886
+ _Version update only_
887
+
888
+ ## 2.2.4
889
+ Mon, 13 Nov 2017 17:04:50 GMT
890
+
891
+ _Version update only_
892
+
893
+ ## 2.2.3
894
+ Mon, 06 Nov 2017 17:04:18 GMT
895
+
896
+ _Version update only_
897
+
898
+ ## 2.2.2
899
+ Thu, 02 Nov 2017 16:05:24 GMT
900
+
901
+ ### Patches
902
+
903
+ - lock the reference version between web build tools projects
904
+
905
+ ## 2.2.1
906
+ Wed, 01 Nov 2017 21:06:08 GMT
907
+
908
+ ### Patches
909
+
910
+ - Upgrade cyclic dependencies
911
+
912
+ ## 2.2.0
913
+ Tue, 31 Oct 2017 21:04:04 GMT
914
+
915
+ ### Minor changes
916
+
917
+ - Add ability to specify default value for enum options.
918
+
919
+ ## 2.1.4
920
+ Tue, 31 Oct 2017 16:04:55 GMT
921
+
922
+ _Version update only_
923
+
924
+ ## 2.1.3
925
+ Wed, 25 Oct 2017 20:03:59 GMT
926
+
927
+ _Version update only_
928
+
929
+ ## 2.1.2
930
+ Tue, 24 Oct 2017 18:17:12 GMT
931
+
932
+ _Version update only_
933
+
934
+ ## 2.1.1
935
+ Mon, 23 Oct 2017 21:53:12 GMT
936
+
937
+ ### Patches
938
+
939
+ - Updated cyclic dependencies
940
+
941
+ ## 2.1.0
942
+ Fri, 22 Sep 2017 01:04:02 GMT
943
+
944
+ ### Minor changes
945
+
946
+ - Upgrade to es6
947
+
948
+ ## 2.0.7
949
+ Fri, 08 Sep 2017 01:28:04 GMT
950
+
951
+ ### Patches
952
+
953
+ - Deprecate @types/es6-coll ections in favor of built-in typescript typings 'es2015.collection' a nd 'es2015.iterable'
954
+
955
+ ## 2.0.6
956
+ Thu, 31 Aug 2017 18:41:18 GMT
957
+
958
+ _Version update only_
959
+
960
+ ## 2.0.5
961
+ Wed, 30 Aug 2017 01:04:34 GMT
962
+
963
+ _Version update only_
964
+
965
+ ## 2.0.4
966
+ Tue, 22 Aug 2017 13:04:22 GMT
967
+
968
+ _Version update only_
969
+
970
+ ## 2.0.3
971
+ Tue, 25 Jul 2017 20:03:31 GMT
972
+
973
+ ### Patches
974
+
975
+ - Upgrade to TypeScript 2.4
976
+
977
+ ## 2.0.2
978
+ Fri, 23 Jun 2017 20:05:07 GMT
979
+
980
+ ### Patches
981
+
982
+ - Initial open source release of this library
983
+
984
+ ## 2.0.1
985
+ Thu, 25 May 2017 21:09:42 GMT
986
+
987
+ ### Patches
988
+
989
+ - Dependency version change
990
+
991
+ ## 2.0.0
992
+ Fri, 17 Feb 2017 23:09:23 GMT
993
+
994
+ ### Breaking changes
995
+
996
+ - General availability
997
+
998
+ ### Minor changes
999
+
1000
+ - Added a "option" parameter, which can limit the input to a list of possible strings.
1001
+ - Added the ability to give custom names to keys in the help menu.
1002
+
1003
+ ### Patches
1004
+
1005
+ - Locked version numbers for @types packages
1006
+ - Updated .npmignore
1007
+
1008
+ ## 1.1.1
1009
+ Tue, 06 Dec 2016 20:44:26 GMT
1010
+
1011
+ ### Patches
1012
+
1013
+ - Changes for RC0 release.
1014
+
1015
+ ## 1.2.0
1016
+
1017
+ _Version update only_
1018
+
1019
+ ## 1.1.0
1020
+
1021
+ ### Minor changes
1022
+
1023
+ - Introduces a new command line argument type for a list of strings
1024
+ - Introduces a new command line argument type for integers
1025
+
1026
+ ## 1.0.1
1027
+
1028
+ _Initial release_
1029
+