Skip to content

Commit f6dd14a

Browse files
shadowspawnabetomo
authored andcommitted
Update CHANGELOG for 9.5.0
Including some lint
1 parent 2326c53 commit f6dd14a

File tree

1 file changed

+19
-8
lines changed

1 file changed

+19
-8
lines changed

CHANGELOG.md

+19-8
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
88
<!-- markdownlint-disable MD024 -->
99
<!-- markdownlint-disable MD004 -->
1010

11+
## [9.5.0] (2022-01-07)
12+
13+
### Added
14+
15+
- `.getOptionValueSourceWithGlobals()` ([#1832])
16+
- `showGlobalOptions` for `.configureHelp{}` and `Help` ([#1828])
17+
1118
## [9.4.1] (2022-09-30)
1219

1320
### Fixed
@@ -93,8 +100,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
93100
- use command name as prefix for subcommand stand-alone executable name (with fallback to script name for backwards compatibility) ([#1571])
94101
- allow absolute path with `executableFile` ([#1571])
95102
- removed restriction that nested subcommands must specify `executableFile` ([#1571])
96-
- TypeScript: allow passing readonly string array to `.choices()` [(#1667)]
97-
- TypeScript: allow passing readonly string array to `.parse()`, `.parseAsync()`, `.aliases()` [(#1669)]
103+
- TypeScript: allow passing readonly string array to `.choices()` ([#1667])
104+
- TypeScript: allow passing readonly string array to `.parse()`, `.parseAsync()`, `.aliases()` ([#1669])
98105

99106
### Fixed
100107

@@ -104,7 +111,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
104111

105112
- *Breaking:* removed internal fallback to `require.main.filename` when script not known from arguments passed to `.parse()` (can supply details using `.name()`, and `.executableDir()` or `executableFile`) ([#1571])
106113

107-
108114
## [9.0.0-1] (2022-01-15)
109115

110116
(Released in 9.0.0)
@@ -286,8 +292,8 @@ program.showHelpAfterError();
286292
### Changed
287293

288294
- *Breaking:* options are stored safely by default, not as properties on the command ([#1409])
289-
- this especially affects accessing options on program, use `program.opts()`
290-
- revert behaviour with `.storeOptionsAsProperties()`
295+
- this especially affects accessing options on program, use `program.opts()`
296+
- revert behaviour with `.storeOptionsAsProperties()`
291297
- *Breaking:* action handlers are passed options and command separately ([#1409])
292298
- deprecated callback parameter to `.help()` and `.outputHelp()` (removed from README) ([#1296])
293299
- *Breaking:* errors now displayed using `process.stderr.write()` instead of `console.error()`
@@ -306,9 +312,9 @@ program.showHelpAfterError();
306312
### Deleted
307313

308314
- *Breaking:* `.passCommandToAction()` ([#1409])
309-
- no longer needed as action handler is passed options and command
315+
- no longer needed as action handler is passed options and command
310316
- *Breaking:* "extra arguments" parameter to action handler ([#1409])
311-
- if being used to detect excess arguments, there is now an error available by setting `.allowExcessArguments(false)`
317+
- if being used to detect excess arguments, there is now an error available by setting `.allowExcessArguments(false)`
312318

313319
### Migration Tips
314320

@@ -393,7 +399,7 @@ program
393399

394400
### Fixed
395401

396-
- some tests failed if directory path included a space ([1390])
402+
- some tests failed if directory path included a space ([#1390])
397403

398404
## [6.2.0] (2020-10-25)
399405

@@ -1065,6 +1071,7 @@ program
10651071
[#1490]: https://github.com/tj/commander.js/pull/1490
10661072
[#1497]: https://github.com/tj/commander.js/pull/1497
10671073
[#1500]: https://github.com/tj/commander.js/pull/1500
1074+
[#1502]: https://github.com/tj/commander.js/pull/1502
10681075
[#1508]: https://github.com/tj/commander.js/pull/1508
10691076
[#1513]: https://github.com/tj/commander.js/pull/1513
10701077
[#1514]: https://github.com/tj/commander.js/pull/1514
@@ -1109,6 +1116,8 @@ program
11091116
[#1767]: https://github.com/tj/commander.js/pull/1767
11101117
[#1794]: https://github.com/tj/commander.js/pull/1794
11111118
[#1795]: https://github.com/tj/commander.js/pull/1795
1119+
[#1832]: https://github.com/tj/commander.js/pull/1832
1120+
[#1828]: https://github.com/tj/commander.js/pull/1828
11121121

11131122
<!-- Referenced in 5.x -->
11141123
[#1]: https://github.com/tj/commander.js/issues/1
@@ -1149,6 +1158,7 @@ program
11491158
[#1248]: https://github.com/tj/commander.js/pull/1248
11501159

11511160
<!-- Referenced in 4.x -->
1161+
[#933]: https://github.com/tj/commander.js/pull/933
11521162
[#1027]: https://github.com/tj/commander.js/pull/1027
11531163
[#1035]: https://github.com/tj/commander.js/pull/1035
11541164
[#1040]: https://github.com/tj/commander.js/pull/1040
@@ -1187,6 +1197,7 @@ program
11871197
[#1028]: https://github.com/tj/commander.js/pull/1028
11881198

11891199
[Unreleased]: https://github.com/tj/commander.js/compare/master...develop
1200+
[9.5.0]: https://github.com/tj/commander.js/compare/v9.4.1...v9.5.0
11901201
[9.4.1]: https://github.com/tj/commander.js/compare/v9.4.0...v9.4.1
11911202
[9.4.0]: https://github.com/tj/commander.js/compare/v9.3.0...v9.4.0
11921203
[9.3.0]: https://github.com/tj/commander.js/compare/v9.2.0...v9.3.0

0 commit comments

Comments
 (0)