Websocket
[VSoRC/.git] / node_modules / wscat / node_modules / commander / CHANGELOG.md
1
2 2.15.0 / 2018-03-07
3 ==================
4
5   * Update downloads badge to point to graph of downloads over time instead of duplicating link to npm
6   * Arguments description
7
8 2.14.1 / 2018-02-07
9 ==================
10
11   * Fix typing of help function
12
13 2.14.0 / 2018-02-05
14 ==================
15
16   * only register the option:version event once
17   * Fixes issue #727: Passing empty string for option on command is set to undefined
18   * enable eqeqeq rule
19   * resolves #754 add linter configuration to project
20   * resolves #560 respect custom name for version option
21   * document how to override the version flag
22   * document using options per command
23
24 2.13.0 / 2018-01-09
25 ==================
26
27   * Do not print default for --no-
28   * remove trailing spaces in command help
29   * Update CI's Node.js to LTS and latest version
30   * typedefs: Command and Option types added to commander namespace
31
32 2.12.2 / 2017-11-28
33 ==================
34
35   * fix: typings are not shipped
36
37 2.12.1 / 2017-11-23
38 ==================
39
40   * Move @types/node to dev dependency
41
42 2.12.0 / 2017-11-22
43 ==================
44
45   * add attributeName() method to Option objects
46   * Documentation updated for options with --no prefix
47   * typings: `outputHelp` takes a string as the first parameter
48   * typings: use overloads
49   * feat(typings): update to match js api
50   * Print default value in option help
51   * Fix translation error
52   * Fail when using same command and alias (#491)
53   * feat(typings): add help callback
54   * fix bug when description is add after command with options (#662)
55   * Format js code
56   * Rename History.md to CHANGELOG.md (#668)
57   * feat(typings): add typings to support TypeScript (#646)
58   * use current node
59
60 2.11.0 / 2017-07-03
61 ==================
62
63   * Fix help section order and padding (#652)
64   * feature: support for signals to subcommands (#632)
65   * Fixed #37, --help should not display first (#447)
66   * Fix translation errors. (#570)
67   * Add package-lock.json
68   * Remove engines
69   * Upgrade package version
70   * Prefix events to prevent conflicts between commands and options (#494)
71   * Removing dependency on graceful-readlink
72   * Support setting name in #name function and make it chainable
73   * Add .vscode directory to .gitignore (Visual Studio Code metadata)
74   * Updated link to ruby commander in readme files
75
76 2.10.0 / 2017-06-19
77 ==================
78
79   * Update .travis.yml. drop support for older node.js versions.
80   * Fix require arguments in README.md
81   * On SemVer you do not start from 0.0.1
82   * Add missing semi colon in readme
83   * Add save param to npm install
84   * node v6 travis test
85   * Update Readme_zh-CN.md
86   * Allow literal '--' to be passed-through as an argument
87   * Test subcommand alias help
88   * link build badge to master branch
89   * Support the alias of Git style sub-command
90   * added keyword commander for better search result on npm
91   * Fix Sub-Subcommands
92   * test node.js stable
93   * Fixes TypeError when a command has an option called `--description`
94   * Update README.md to make it beginner friendly and elaborate on the difference between angled and square brackets.
95   * Add chinese Readme file
96
97 2.9.0 / 2015-10-13
98 ==================
99
100   * Add option `isDefault` to set default subcommand #415 @Qix-
101   * Add callback to allow filtering or post-processing of help text #434 @djulien
102   * Fix `undefined` text in help information close #414 #416 @zhiyelee
103
104 2.8.1 / 2015-04-22
105 ==================
106
107  * Back out `support multiline description` Close #396 #397
108
109 2.8.0 / 2015-04-07
110 ==================
111
112   * Add `process.execArg` support, execution args like `--harmony` will be passed to sub-commands #387 @DigitalIO @zhiyelee
113   * Fix bug in Git-style sub-commands #372 @zhiyelee
114   * Allow commands to be hidden from help #383 @tonylukasavage
115   * When git-style sub-commands are in use, yet none are called, display help #382 @claylo
116   * Add ability to specify arguments syntax for top-level command #258 @rrthomas
117   * Support multiline descriptions #208 @zxqfox
118
119 2.7.1 / 2015-03-11
120 ==================
121
122  * Revert #347 (fix collisions when option and first arg have same name) which causes a bug in #367.
123
124 2.7.0 / 2015-03-09
125 ==================
126
127  * Fix git-style bug when installed globally. Close #335 #349 @zhiyelee
128  * Fix collisions when option and first arg have same name. Close #346 #347 @tonylukasavage
129  * Add support for camelCase on `opts()`. Close #353  @nkzawa
130  * Add node.js 0.12 and io.js to travis.yml
131  * Allow RegEx options. #337 @palanik
132  * Fixes exit code when sub-command failing.  Close #260 #332 @pirelenito
133  * git-style `bin` files in $PATH make sense. Close #196 #327  @zhiyelee
134
135 2.6.0 / 2014-12-30
136 ==================
137
138   * added `Command#allowUnknownOption` method. Close #138 #318 @doozr @zhiyelee
139   * Add application description to the help msg. Close #112 @dalssoft
140
141 2.5.1 / 2014-12-15
142 ==================
143
144   * fixed two bugs incurred by variadic arguments. Close #291 @Quentin01 #302 @zhiyelee
145
146 2.5.0 / 2014-10-24
147 ==================
148
149  * add support for variadic arguments. Closes #277 @whitlockjc
150
151 2.4.0 / 2014-10-17
152 ==================
153
154  * fixed a bug on executing the coercion function of subcommands option. Closes #270
155  * added `Command.prototype.name` to retrieve command name. Closes #264 #266 @tonylukasavage
156  * added `Command.prototype.opts` to retrieve all the options as a simple object of key-value pairs. Closes #262 @tonylukasavage
157  * fixed a bug on subcommand name. Closes #248 @jonathandelgado
158  * fixed function normalize doesn’t honor option terminator. Closes #216 @abbr
159
160 2.3.0 / 2014-07-16
161 ==================
162
163  * add command alias'. Closes PR #210
164  * fix: Typos. Closes #99
165  * fix: Unused fs module. Closes #217
166
167 2.2.0 / 2014-03-29
168 ==================
169
170  * add passing of previous option value
171  * fix: support subcommands on windows. Closes #142
172  * Now the defaultValue passed as the second argument of the coercion function.
173
174 2.1.0 / 2013-11-21
175 ==================
176
177  * add: allow cflag style option params, unit test, fixes #174
178
179 2.0.0 / 2013-07-18
180 ==================
181
182  * remove input methods (.prompt, .confirm, etc)
183
184 1.3.2 / 2013-07-18
185 ==================
186
187  * add support for sub-commands to co-exist with the original command
188
189 1.3.1 / 2013-07-18
190 ==================
191
192  * add quick .runningCommand hack so you can opt-out of other logic when running a sub command
193
194 1.3.0 / 2013-07-09
195 ==================
196
197  * add EACCES error handling
198  * fix sub-command --help
199
200 1.2.0 / 2013-06-13
201 ==================
202
203  * allow "-" hyphen as an option argument
204  * support for RegExp coercion
205
206 1.1.1 / 2012-11-20
207 ==================
208
209   * add more sub-command padding
210   * fix .usage() when args are present. Closes #106
211
212 1.1.0 / 2012-11-16
213 ==================
214
215   * add git-style executable subcommand support. Closes #94
216
217 1.0.5 / 2012-10-09
218 ==================
219
220   * fix `--name` clobbering. Closes #92
221   * fix examples/help. Closes #89
222
223 1.0.4 / 2012-09-03
224 ==================
225
226   * add `outputHelp()` method.
227
228 1.0.3 / 2012-08-30
229 ==================
230
231   * remove invalid .version() defaulting
232
233 1.0.2 / 2012-08-24
234 ==================
235
236   * add `--foo=bar` support [arv]
237   * fix password on node 0.8.8. Make backward compatible with 0.6 [focusaurus]
238
239 1.0.1 / 2012-08-03
240 ==================
241
242   * fix issue #56
243   * fix tty.setRawMode(mode) was moved to tty.ReadStream#setRawMode() (i.e. process.stdin.setRawMode())
244
245 1.0.0 / 2012-07-05
246 ==================
247
248   * add support for optional option descriptions
249   * add defaulting of `.version()` to package.json's version
250
251 0.6.1 / 2012-06-01
252 ==================
253
254   * Added: append (yes or no) on confirmation
255   * Added: allow node.js v0.7.x
256
257 0.6.0 / 2012-04-10
258 ==================
259
260   * Added `.prompt(obj, callback)` support. Closes #49
261   * Added default support to .choose(). Closes #41
262   * Fixed the choice example
263
264 0.5.1 / 2011-12-20
265 ==================
266
267   * Fixed `password()` for recent nodes. Closes #36
268
269 0.5.0 / 2011-12-04
270 ==================
271
272   * Added sub-command option support [itay]
273
274 0.4.3 / 2011-12-04
275 ==================
276
277   * Fixed custom help ordering. Closes #32
278
279 0.4.2 / 2011-11-24
280 ==================
281
282   * Added travis support
283   * Fixed: line-buffered input automatically trimmed. Closes #31
284
285 0.4.1 / 2011-11-18
286 ==================
287
288   * Removed listening for "close" on --help
289
290 0.4.0 / 2011-11-15
291 ==================
292
293   * Added support for `--`. Closes #24
294
295 0.3.3 / 2011-11-14
296 ==================
297
298   * Fixed: wait for close event when writing help info [Jerry Hamlet]
299
300 0.3.2 / 2011-11-01
301 ==================
302
303   * Fixed long flag definitions with values [felixge]
304
305 0.3.1 / 2011-10-31
306 ==================
307
308   * Changed `--version` short flag to `-V` from `-v`
309   * Changed `.version()` so it's configurable [felixge]
310
311 0.3.0 / 2011-10-31
312 ==================
313
314   * Added support for long flags only. Closes #18
315
316 0.2.1 / 2011-10-24
317 ==================
318
319   * "node": ">= 0.4.x < 0.7.0". Closes #20
320
321 0.2.0 / 2011-09-26
322 ==================
323
324   * Allow for defaults that are not just boolean. Default peassignment only occurs for --no-*, optional, and required arguments. [Jim Isaacs]
325
326 0.1.0 / 2011-08-24
327 ==================
328
329   * Added support for custom `--help` output
330
331 0.0.5 / 2011-08-18
332 ==================
333
334   * Changed: when the user enters nothing prompt for password again
335   * Fixed issue with passwords beginning with numbers [NuckChorris]
336
337 0.0.4 / 2011-08-15
338 ==================
339
340   * Fixed `Commander#args`
341
342 0.0.3 / 2011-08-15
343 ==================
344
345   * Added default option value support
346
347 0.0.2 / 2011-08-15
348 ==================
349
350   * Added mask support to `Command#password(str[, mask], fn)`
351   * Added `Command#password(str, fn)`
352
353 0.0.1 / 2010-01-03
354 ==================
355
356   * Initial release