@openclaw/diagnostics-otel 2026.7.1-beta.2 → 2026.7.1-beta.5

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 (91) hide show
  1. package/dist/index.js +1 -2404
  2. package/dist/runtime-api-BUlvn2ET.js +2589 -0
  3. package/dist/runtime-api.js +2 -0
  4. package/node_modules/@types/node/README.md +1 -1
  5. package/node_modules/@types/node/assert/strict.d.ts +10 -1
  6. package/node_modules/@types/node/assert.d.ts +144 -17
  7. package/node_modules/@types/node/async_hooks.d.ts +9 -9
  8. package/node_modules/@types/node/buffer.d.ts +64 -30
  9. package/node_modules/@types/node/child_process.d.ts +17 -21
  10. package/node_modules/@types/node/cluster.d.ts +13 -13
  11. package/node_modules/@types/node/console.d.ts +1 -1
  12. package/node_modules/@types/node/crypto.d.ts +471 -575
  13. package/node_modules/@types/node/diagnostics_channel.d.ts +274 -32
  14. package/node_modules/@types/node/dns.d.ts +15 -15
  15. package/node_modules/@types/node/events.d.ts +3 -3
  16. package/node_modules/@types/node/ffi.d.ts +486 -0
  17. package/node_modules/@types/node/fs/promises.d.ts +7 -4
  18. package/node_modules/@types/node/fs.d.ts +24 -18
  19. package/node_modules/@types/node/globals.d.ts +4 -4
  20. package/node_modules/@types/node/http.d.ts +30 -5
  21. package/node_modules/@types/node/http2.d.ts +5 -1
  22. package/node_modules/@types/node/index.d.ts +1 -3
  23. package/node_modules/@types/node/inspector.d.ts +1 -1
  24. package/node_modules/@types/node/module.d.ts +16 -45
  25. package/node_modules/@types/node/net.d.ts +1 -1
  26. package/node_modules/@types/node/os.d.ts +2 -2
  27. package/node_modules/@types/node/package.json +4 -4
  28. package/node_modules/@types/node/perf_hooks.d.ts +1 -9
  29. package/node_modules/@types/node/process.d.ts +25 -12
  30. package/node_modules/@types/node/quic.d.ts +92 -11
  31. package/node_modules/@types/node/readline.d.ts +12 -11
  32. package/node_modules/@types/node/repl.d.ts +10 -10
  33. package/node_modules/@types/node/sqlite.d.ts +56 -1
  34. package/node_modules/@types/node/stream/iter.d.ts +150 -0
  35. package/node_modules/@types/node/stream/promises.d.ts +2 -2
  36. package/node_modules/@types/node/stream/web.d.ts +1 -1
  37. package/node_modules/@types/node/stream.d.ts +37 -5
  38. package/node_modules/@types/node/test/reporters.d.ts +1 -1
  39. package/node_modules/@types/node/test.d.ts +120 -10
  40. package/node_modules/@types/node/tls.d.ts +1 -1
  41. package/node_modules/@types/node/ts5.6/index.d.ts +2 -4
  42. package/node_modules/@types/node/ts5.7/index.d.ts +1 -3
  43. package/node_modules/@types/node/url.d.ts +3 -3
  44. package/node_modules/@types/node/util/types.d.ts +1 -1
  45. package/node_modules/@types/node/util.d.ts +22 -22
  46. package/node_modules/@types/node/v8.d.ts +85 -3
  47. package/node_modules/@types/node/vm.d.ts +9 -9
  48. package/node_modules/@types/node/web-globals/domexception.d.ts +15 -0
  49. package/node_modules/@types/node/worker_threads.d.ts +10 -12
  50. package/node_modules/@types/node/zlib.d.ts +3 -3
  51. package/node_modules/acorn/CHANGELOG.md +14 -0
  52. package/node_modules/acorn/README.md +3 -0
  53. package/node_modules/acorn/dist/acorn.d.mts +6 -0
  54. package/node_modules/acorn/dist/acorn.d.ts +6 -0
  55. package/node_modules/acorn/dist/acorn.js +87 -49
  56. package/node_modules/acorn/dist/acorn.mjs +87 -49
  57. package/node_modules/acorn/package.json +2 -2
  58. package/node_modules/import-in-the-middle/CHANGELOG.md +21 -0
  59. package/node_modules/import-in-the-middle/README.md +60 -0
  60. package/node_modules/import-in-the-middle/create-hook.mjs +375 -146
  61. package/node_modules/import-in-the-middle/lib/get-exports.mjs +88 -52
  62. package/node_modules/import-in-the-middle/lib/io.mjs +78 -0
  63. package/node_modules/import-in-the-middle/package.json +1 -1
  64. package/node_modules/import-in-the-middle/register-hooks.d.ts +35 -0
  65. package/node_modules/import-in-the-middle/register-hooks.mjs +63 -0
  66. package/node_modules/undici-types/agent.d.ts +0 -2
  67. package/node_modules/undici-types/client.d.ts +25 -19
  68. package/node_modules/undici-types/dispatcher.d.ts +7 -33
  69. package/node_modules/undici-types/dispatcher1-wrapper.d.ts +7 -0
  70. package/node_modules/undici-types/fetch.d.ts +24 -4
  71. package/node_modules/undici-types/h2c-client.d.ts +6 -6
  72. package/node_modules/undici-types/handlers.d.ts +1 -2
  73. package/node_modules/undici-types/header.d.ts +5 -0
  74. package/node_modules/undici-types/index.d.ts +3 -1
  75. package/node_modules/undici-types/interceptors.d.ts +1 -1
  76. package/node_modules/undici-types/package.json +1 -1
  77. package/node_modules/undici-types/pool.d.ts +0 -2
  78. package/node_modules/undici-types/proxy-agent.d.ts +2 -2
  79. package/node_modules/undici-types/round-robin-pool.d.ts +0 -2
  80. package/node_modules/undici-types/snapshot-agent.d.ts +4 -0
  81. package/node_modules/undici-types/socks5-proxy-agent.d.ts +2 -2
  82. package/node_modules/undici-types/webidl.d.ts +0 -1
  83. package/node_modules/yargs/CHANGELOG.md +330 -0
  84. package/node_modules/yargs/build/index.cjs +1 -1
  85. package/node_modules/yargs/package.json +6 -4
  86. package/node_modules/yargs/yargs +5 -9
  87. package/node_modules/yargs/yargs.cjs +15 -0
  88. package/npm-shrinkwrap.json +18 -18
  89. package/package.json +4 -4
  90. package/node_modules/@types/node/compatibility/iterators.d.ts +0 -21
  91. package/node_modules/yargs/browser.d.ts +0 -5
@@ -60,12 +60,32 @@ export interface SpecIterator<T, TReturn = any, TNext = undefined> {
60
60
  next(...args: [] | [TNext]): IteratorResult<T, TReturn>;
61
61
  }
62
62
 
63
- export interface SpecIterableIterator<T> extends SpecIterator<T> {
63
+ export interface SpecIteratorObject<T, TReturn = undefined, TNext = unknown> extends SpecIterator<T, TReturn, TNext> {
64
+ [Symbol.iterator](): SpecIteratorObject<T, TReturn, TNext>;
65
+ map<U>(callbackfn: (value: T, index: number) => U): SpecIteratorObject<U>;
66
+ filter<S extends T>(predicate: (value: T, index: number) => value is S): SpecIteratorObject<S>;
67
+ filter(predicate: (value: T, index: number) => unknown): SpecIteratorObject<T>;
68
+ take(limit: number): SpecIteratorObject<T>;
69
+ drop(count: number): SpecIteratorObject<T>;
70
+ flatMap<U>(callbackfn: (value: T, index: number) => Iterator<U> | Iterable<U>): SpecIteratorObject<U>;
71
+ reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number) => T): T;
72
+ reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number) => T, initialValue: T): T;
73
+ reduce<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number) => U, initialValue: U): U;
74
+ toArray(): T[];
75
+ forEach(callbackfn: (value: T, index: number) => void): void;
76
+ some(predicate: (value: T, index: number) => unknown): boolean;
77
+ every(predicate: (value: T, index: number) => unknown): boolean;
78
+ find<S extends T>(predicate: (value: T, index: number) => value is S): S | undefined;
79
+ find(predicate: (value: T, index: number) => unknown): T | undefined;
80
+ readonly [Symbol.toStringTag]: string;
81
+ }
82
+
83
+ export interface SpecIterableIterator<T> extends SpecIteratorObject<T> {
64
84
  [Symbol.iterator](): SpecIterableIterator<T>;
65
85
  }
66
86
 
67
87
  export interface SpecIterable<T> {
68
- [Symbol.iterator](): SpecIterator<T>;
88
+ [Symbol.iterator](): SpecIterableIterator<T>;
69
89
  }
70
90
 
71
91
  export type HeadersInit = [string, string][] | HeaderRecord | Headers
@@ -173,7 +193,7 @@ export declare class Request extends BodyMixin {
173
193
  readonly signal: AbortSignal
174
194
  readonly duplex: RequestDuplex
175
195
 
176
- readonly clone: () => Request
196
+ public clone (): Request
177
197
  }
178
198
 
179
199
  export interface ResponseInit {
@@ -203,7 +223,7 @@ export declare class Response extends BodyMixin {
203
223
  readonly url: string
204
224
  readonly redirected: boolean
205
225
 
206
- readonly clone: () => Response
226
+ public clone (): Response
207
227
 
208
228
  static error (): Response
209
229
  static json (data: any, init?: ResponseInit): Response
@@ -32,7 +32,7 @@ export declare namespace H2CClient {
32
32
  maxHeaderSize?: number;
33
33
  /** The amount of time, in milliseconds, the parser will wait to receive the complete HTTP headers (Node 14 and above only). Default: `300e3` milliseconds (300s). */
34
34
  headersTimeout?: number;
35
- /** TODO */
35
+ /** The timeout for establishing a socket connection, in milliseconds. Use `0` to disable it entirely. Default: `10e3` milliseconds (10s). */
36
36
  connectTimeout?: number;
37
37
  /** The timeout after which a request will time out, in milliseconds. Monitors time between receiving body data. Use `0` to disable it entirely. Default: `300e3` milliseconds (300s). */
38
38
  bodyTimeout?: number;
@@ -42,19 +42,19 @@ export declare namespace H2CClient {
42
42
  keepAliveMaxTimeout?: number;
43
43
  /** A number of milliseconds subtracted from server *keep-alive* hints when overriding `idleTimeout` to account for timing inaccuracies caused by e.g. transport latency. Default: `1e3` milliseconds (1s). */
44
44
  keepAliveTimeoutThreshold?: number;
45
- /** TODO */
45
+ /** An IPC endpoint, either a Unix domain socket or Windows named pipe. Default: `null`. */
46
46
  socketPath?: string;
47
47
  /** The amount of concurrent requests to be sent over the single TCP/TLS connection according to [RFC7230](https://tools.ietf.org/html/rfc7230#section-6.3.2). Default: `1`. */
48
48
  pipelining?: number;
49
49
  /** If `true`, an error is thrown when the request content-length header doesn't match the length of the request body. Default: `true`. */
50
50
  strictContentLength?: boolean;
51
- /** TODO */
51
+ /** Maximum number of TLS cached sessions used by the built-in connector. Use `0` to disable TLS session caching. Default: `100`. */
52
52
  maxCachedSessions?: number;
53
- /** TODO */
53
+ /** Connector options passed to `buildConnector`, or a custom connector function. Default: `null`. */
54
54
  connect?: Omit<Partial<buildConnector.BuildOptions>, 'allowH2'> | buildConnector.connector;
55
- /** TODO */
55
+ /** The maximum number of requests to send over a single connection before it is reset. Use `0` to disable this limit. Default: `null`. */
56
56
  maxRequestsPerClient?: number;
57
- /** TODO */
57
+ /** Local IP address the socket should connect from. */
58
58
  localAddress?: string;
59
59
  /** Max response body size in bytes, -1 is disabled */
60
60
  maxResponseSize?: number;
@@ -5,8 +5,7 @@ export declare class RedirectHandler implements Dispatcher.DispatchHandler {
5
5
  dispatch: Dispatcher.Dispatch,
6
6
  maxRedirections: number,
7
7
  opts: Dispatcher.DispatchOptions,
8
- handler: Dispatcher.DispatchHandler,
9
- redirectionLimitReached: boolean
8
+ handler: Dispatcher.DispatchHandler
10
9
  )
11
10
  }
12
11
 
@@ -5,6 +5,11 @@ import { Autocomplete } from './utility'
5
5
  */
6
6
  export type IncomingHttpHeaders = Record<string, string | string[] | undefined>
7
7
 
8
+ /**
9
+ * The header type declaration of `undici` for outgoing requests.
10
+ */
11
+ export type OutgoingHttpHeaders = Record<string, number | string | string[] | undefined>
12
+
8
13
  type HeaderNames = Autocomplete<
9
14
  | 'Accept'
10
15
  | 'Accept-CH'
@@ -11,6 +11,7 @@ import H2CClient from './h2c-client'
11
11
  import buildConnector from './connector'
12
12
  import errors from './errors'
13
13
  import Agent from './agent'
14
+ import Dispatcher1Wrapper from './dispatcher1-wrapper'
14
15
  import MockClient from './mock-client'
15
16
  import MockPool from './mock-pool'
16
17
  import MockAgent from './mock-agent'
@@ -44,7 +45,7 @@ export { Interceptable } from './mock-interceptor'
44
45
 
45
46
  declare function globalThisInstall (): void
46
47
 
47
- export { Dispatcher, BalancedPool, RoundRobinPool, Pool, Client, buildConnector, errors, Agent, request, stream, pipeline, connect, upgrade, setGlobalDispatcher, getGlobalDispatcher, setGlobalOrigin, getGlobalOrigin, interceptors, cacheStores, MockClient, MockPool, MockAgent, SnapshotAgent, MockCallHistory, MockCallHistoryLog, mockErrors, ProxyAgent, Socks5ProxyAgent, EnvHttpProxyAgent, RedirectHandler, DecoratorHandler, RetryHandler, RetryAgent, H2CClient, globalThisInstall as install }
48
+ export { Dispatcher, BalancedPool, RoundRobinPool, Pool, Client, buildConnector, errors, Agent, Dispatcher1Wrapper, request, stream, pipeline, connect, upgrade, setGlobalDispatcher, getGlobalDispatcher, setGlobalOrigin, getGlobalOrigin, interceptors, cacheStores, MockClient, MockPool, MockAgent, SnapshotAgent, MockCallHistory, MockCallHistoryLog, mockErrors, ProxyAgent, Socks5ProxyAgent, EnvHttpProxyAgent, RedirectHandler, DecoratorHandler, RetryHandler, RetryAgent, H2CClient, globalThisInstall as install }
48
49
  export default Undici
49
50
 
50
51
  declare namespace Undici {
@@ -60,6 +61,7 @@ declare namespace Undici {
60
61
  const buildConnector: typeof import('./connector').default
61
62
  const errors: typeof import('./errors').default
62
63
  const Agent: typeof import('./agent').default
64
+ const Dispatcher1Wrapper: typeof import('./dispatcher1-wrapper').default
63
65
  const setGlobalDispatcher: typeof import('./global-dispatcher').setGlobalDispatcher
64
66
  const getGlobalDispatcher: typeof import('./global-dispatcher').getGlobalDispatcher
65
67
  const request: typeof import('./api').request
@@ -8,7 +8,7 @@ export default Interceptors
8
8
  declare namespace Interceptors {
9
9
  export type DumpInterceptorOpts = { maxSize?: number }
10
10
  export type RetryInterceptorOpts = RetryHandler.RetryOptions
11
- export type RedirectInterceptorOpts = { maxRedirections?: number }
11
+ export type RedirectInterceptorOpts = { maxRedirections?: number, throwOnMaxRedirect?: boolean }
12
12
  export type DecompressInterceptorOpts = {
13
13
  skipErrorResponses?: boolean
14
14
  skipStatusCodes?: number[]
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "undici-types",
3
- "version": "7.24.6",
3
+ "version": "8.3.0",
4
4
  "description": "A stand-alone types package for Undici",
5
5
  "homepage": "https://undici.nodejs.org",
6
6
  "bugs": {
@@ -35,7 +35,5 @@ declare namespace Pool {
35
35
  connections?: number | null;
36
36
  /** The amount of time before a client is removed from the pool and closed. `null` if no time limit. Default `null` */
37
37
  clientTtl?: number | null;
38
-
39
- interceptors?: { Pool?: readonly Dispatcher.DispatchInterceptor[] } & Client.Options['interceptors']
40
38
  }
41
39
  }
@@ -1,7 +1,7 @@
1
1
  import Agent from './agent'
2
2
  import buildConnector from './connector'
3
3
  import Dispatcher from './dispatcher'
4
- import { IncomingHttpHeaders } from './header'
4
+ import { OutgoingHttpHeaders } from './header'
5
5
 
6
6
  export default ProxyAgent
7
7
 
@@ -20,7 +20,7 @@ declare namespace ProxyAgent {
20
20
  */
21
21
  auth?: string;
22
22
  token?: string;
23
- headers?: IncomingHttpHeaders;
23
+ headers?: OutgoingHttpHeaders;
24
24
  requestTls?: buildConnector.BuildOptions;
25
25
  proxyTls?: buildConnector.BuildOptions;
26
26
  clientFactory?(origin: URL, opts: object): Dispatcher;
@@ -35,7 +35,5 @@ declare namespace RoundRobinPool {
35
35
  connections?: number | null;
36
36
  /** The amount of time before a client is removed from the pool and closed. `null` if no time limit. Default `null` */
37
37
  clientTtl?: number | null;
38
-
39
- interceptors?: { RoundRobinPool?: readonly Dispatcher.DispatchInterceptor[] } & Client.Options['interceptors']
40
38
  }
41
39
  }
@@ -30,7 +30,9 @@ declare namespace SnapshotRecorder {
30
30
  ignoreHeaders?: string[]
31
31
  excludeHeaders?: string[]
32
32
  matchBody?: boolean
33
+ normalizeBody?: (body: string | Buffer | null | undefined) => string
33
34
  matchQuery?: boolean
35
+ normalizeQuery?: (query: URLSearchParams) => string
34
36
  caseSensitive?: boolean
35
37
  shouldRecord?: (requestOpts: any) => boolean
36
38
  shouldPlayback?: (requestOpts: any) => boolean
@@ -98,7 +100,9 @@ declare namespace SnapshotAgent {
98
100
  ignoreHeaders?: string[]
99
101
  excludeHeaders?: string[]
100
102
  matchBody?: boolean
103
+ normalizeBody?: (body: string | Buffer | null | undefined) => string
101
104
  matchQuery?: boolean
105
+ normalizeQuery?: (query: URLSearchParams) => string
102
106
  caseSensitive?: boolean
103
107
  shouldRecord?: (requestOpts: any) => boolean
104
108
  shouldPlayback?: (requestOpts: any) => boolean
@@ -1,6 +1,6 @@
1
1
  import Dispatcher from './dispatcher'
2
2
  import buildConnector from './connector'
3
- import { IncomingHttpHeaders } from './header'
3
+ import { OutgoingHttpHeaders } from './header'
4
4
  import Pool from './pool'
5
5
 
6
6
  export default Socks5ProxyAgent
@@ -12,7 +12,7 @@ declare class Socks5ProxyAgent extends Dispatcher {
12
12
  declare namespace Socks5ProxyAgent {
13
13
  export interface Options extends Pool.Options {
14
14
  /** Additional headers to send with the proxy connection */
15
- headers?: IncomingHttpHeaders;
15
+ headers?: OutgoingHttpHeaders;
16
16
  /** SOCKS5 proxy username for authentication */
17
17
  username?: string;
18
18
  /** SOCKS5 proxy password for authentication */
@@ -87,7 +87,6 @@ interface WebidlUtil {
87
87
 
88
88
  /**
89
89
  * Mark a value as uncloneable for Node.js.
90
- * This is only effective in some newer Node.js versions.
91
90
  */
92
91
  markAsUncloneable (V: any): void
93
92
 
@@ -0,0 +1,330 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
+
5
+ ## [17.7.2](https://github.com/yargs/yargs/compare/v17.7.1...v17.7.2) (2023-04-27)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * do not crash completion when having negated options ([#2322](https://github.com/yargs/yargs/issues/2322)) ([7f42848](https://github.com/yargs/yargs/commit/7f428485e75e9b1b0db1320216d1c31469770563))
11
+
12
+ ## [17.7.1](https://github.com/yargs/yargs/compare/v17.7.0...v17.7.1) (2023-02-21)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * address display bug with default sub-commands ([#2303](https://github.com/yargs/yargs/issues/2303)) ([9aa2490](https://github.com/yargs/yargs/commit/9aa24908ae4e857161d5084613a402f9dc4895a7))
18
+
19
+ ## [17.7.0](https://github.com/yargs/yargs/compare/v17.6.2...v17.7.0) (2023-02-13)
20
+
21
+
22
+ ### Features
23
+
24
+ * add method to hide option extras ([#2156](https://github.com/yargs/yargs/issues/2156)) ([2c144c4](https://github.com/yargs/yargs/commit/2c144c4ea534646df26d6177f73ce917105c6c09))
25
+ * convert line break to whitespace for the description of the option ([#2271](https://github.com/yargs/yargs/issues/2271)) ([4cb41dc](https://github.com/yargs/yargs/commit/4cb41dc80aaa730a2abd15bd3118ecd9f4ebe876))
26
+
27
+
28
+ ### Bug Fixes
29
+
30
+ * copy the description of the option to its alias in completion ([#2269](https://github.com/yargs/yargs/issues/2269)) ([f37ee6f](https://github.com/yargs/yargs/commit/f37ee6f7da386a1244bf0a0c21b9572f2bb3131b))
31
+
32
+ ## [17.6.2](https://github.com/yargs/yargs/compare/v17.6.1...v17.6.2) (2022-11-03)
33
+
34
+
35
+ ### Bug Fixes
36
+
37
+ * **deps:** update dependency yargs-parser to v21.1.1 ([#2231](https://github.com/yargs/yargs/issues/2231)) ([75b4d52](https://github.com/yargs/yargs/commit/75b4d5222f8f0152790b9ca0718fa5314c9a1c6b))
38
+ * **lang:** typo in Finnish unknown argument singular form ([#2222](https://github.com/yargs/yargs/issues/2222)) ([a6dfd0a](https://github.com/yargs/yargs/commit/a6dfd0a8f7f2c58a2e8b7dde0142cc1a12c4e027))
39
+
40
+ ## [17.6.1](https://github.com/yargs/yargs/compare/v17.6.0...v17.6.1) (2022-11-02)
41
+
42
+
43
+ ### Bug Fixes
44
+
45
+ * **lang:** fix "Not enough non-option arguments" message for the Czech language ([#2242](https://github.com/yargs/yargs/issues/2242)) ([3987b13](https://github.com/yargs/yargs/commit/3987b13e31f669d79836cc6ed84105e9be0f9482))
46
+
47
+ ## [17.6.0](https://github.com/yargs/yargs/compare/v17.5.1...v17.6.0) (2022-10-01)
48
+
49
+
50
+ ### Features
51
+
52
+ * **lang:** Czech locale ([#2220](https://github.com/yargs/yargs/issues/2220)) ([5895cf1](https://github.com/yargs/yargs/commit/5895cf1ba1dcd5158d284d0c589f5f0caff8b739))
53
+ * **usage:** add YARGS_DISABLE_WRAP env variable to disable wrap ([#2210](https://github.com/yargs/yargs/issues/2210)) ([b680ace](https://github.com/yargs/yargs/commit/b680ace2994dcf14d1a1a928aefd3fe8006b2198))
54
+
55
+
56
+ ### Bug Fixes
57
+
58
+ * **deno:** use 'globalThis' instead of 'window' ([#2186](https://github.com/yargs/yargs/issues/2186)) ([#2215](https://github.com/yargs/yargs/issues/2215)) ([561fc7a](https://github.com/yargs/yargs/commit/561fc7a787228b226e0ba76ab674456cbd30cd37))
59
+ * **deps:** cliui with forced strip-ansi update ([#2241](https://github.com/yargs/yargs/issues/2241)) ([38e8df1](https://github.com/yargs/yargs/commit/38e8df10f0f020ae794329610354521f8458fc41))
60
+ * dont clobber description for multiple option calls ([#2171](https://github.com/yargs/yargs/issues/2171)) ([f91d9b3](https://github.com/yargs/yargs/commit/f91d9b334ad9cfce79a89c08ff210c622b7c528f))
61
+ * **typescript:** address warning with objectKeys ([394f5f8](https://github.com/yargs/yargs/commit/394f5f86d15a9bb319276518d36cb560d7cb6322))
62
+
63
+ ### [17.5.1](https://github.com/yargs/yargs/compare/v17.5.0...v17.5.1) (2022-05-16)
64
+
65
+
66
+ ### Bug Fixes
67
+
68
+ * add missing entries to published files ([#2185](https://github.com/yargs/yargs/issues/2185)) ([5685382](https://github.com/yargs/yargs/commit/5685382d18dc05f2ec66098d90ab16f31b622753))
69
+ * address bug when strict and async middleware used together ([#2164](https://github.com/yargs/yargs/issues/2164)) ([cbc2eb7](https://github.com/yargs/yargs/commit/cbc2eb726efc1d688ad484e8cbe4d233b212a046))
70
+ * **completion:** correct zsh installation instructions ([22e9af2](https://github.com/yargs/yargs/commit/22e9af28bb7a7101aeeac80b5bfd0c18f7e6226f))
71
+ * handle multiple node_modules folders determining mainFilename for ESM ([#2123](https://github.com/yargs/yargs/issues/2123)) ([e0823dd](https://github.com/yargs/yargs/commit/e0823dd7e6ced7eaf1d7d1e67f77374f4ef5cbce))
72
+ * **lang:** add missing terms to Russian translation ([#2181](https://github.com/yargs/yargs/issues/2181)) ([1c331f2](https://github.com/yargs/yargs/commit/1c331f22c71496e3d50cf103a1b21f4a05d97aac))
73
+ * prevent infinite loop with empty locale ([#2179](https://github.com/yargs/yargs/issues/2179)) ([b672e70](https://github.com/yargs/yargs/commit/b672e709e4fc45f50d77f54e42025a5fa7c66a42))
74
+ * veriadic arguments override array provided in config (the same as multiple dash arguments). ([4dac5b8](https://github.com/yargs/yargs/commit/4dac5b8c2f03488c31d40f075075d2ac43134412))
75
+
76
+ ## [17.5.0](https://github.com/yargs/yargs/compare/v17.4.1...v17.5.0) (2022-05-11)
77
+
78
+
79
+ ### Features
80
+
81
+ * add browser.d.ts and check for existence of Error.captureStackTrace() ([#2144](https://github.com/yargs/yargs/issues/2144)) ([6192990](https://github.com/yargs/yargs/commit/6192990509cf793c4b10b88884d626893dee89df))
82
+
83
+
84
+ ### Bug Fixes
85
+
86
+ * **completion:** support for default flags ([db35423](https://github.com/yargs/yargs/commit/db354232705623bbcd8fad362f6a4d6d59650be5))
87
+ * import yargs/yargs in esm projects ([#2151](https://github.com/yargs/yargs/issues/2151)) ([95aed1c](https://github.com/yargs/yargs/commit/95aed1c175ec82e585003883bda1b6b75d5493ce))
88
+
89
+ ### [17.4.1](https://github.com/yargs/yargs/compare/v17.4.0...v17.4.1) (2022-04-09)
90
+
91
+
92
+ ### Bug Fixes
93
+
94
+ * coerce pollutes argv ([#2161](https://github.com/yargs/yargs/issues/2161)) ([2d1136d](https://github.com/yargs/yargs/commit/2d1136d303ea805685a973ded62f52efd49b78b9))
95
+ * **completion:** don't show positional args choices with option choices ([#2148](https://github.com/yargs/yargs/issues/2148)) ([b58b5bc](https://github.com/yargs/yargs/commit/b58b5bc2cda7fc15acf559ae4a6a0eda0be06044))
96
+ * hide hidden options from completion ([#2143](https://github.com/yargs/yargs/issues/2143)) ([e086dfa](https://github.com/yargs/yargs/commit/e086dfad7ff11956b1e8779c00cf2351a4cc3b03)), closes [#2142](https://github.com/yargs/yargs/issues/2142)
97
+ * show message when showHelpOnFail is chained globally ([#2154](https://github.com/yargs/yargs/issues/2154)) ([ad9fcac](https://github.com/yargs/yargs/commit/ad9fcacb001a7eb842924408f3a06865a7c7a3b6))
98
+
99
+ ## [17.4.0](https://github.com/yargs/yargs/compare/v17.3.1...v17.4.0) (2022-03-19)
100
+
101
+
102
+ ### Features
103
+
104
+ * **completion:** choices will now work for all possible aliases of an option and not just the default long option ([30edd50](https://github.com/yargs/yargs/commit/30edd5067111b2b59387dcc47f4e7af93b9054f3))
105
+ * **completion:** positional arguments completion ([#2090](https://github.com/yargs/yargs/issues/2090)) ([00e4ebb](https://github.com/yargs/yargs/commit/00e4ebbe3acd438e73fdb101e75b4f879eb6d345))
106
+
107
+
108
+ ### Bug Fixes
109
+
110
+ * **completion:** changed the check for option arguments to match options that begin with '-', instead of '--', to include short options ([30edd50](https://github.com/yargs/yargs/commit/30edd5067111b2b59387dcc47f4e7af93b9054f3))
111
+ * **completion:** fix for completions that contain non-leading hyphens ([30edd50](https://github.com/yargs/yargs/commit/30edd5067111b2b59387dcc47f4e7af93b9054f3))
112
+ * failed command usage string is missing arg descriptions and optional args ([#2105](https://github.com/yargs/yargs/issues/2105)) ([d6e342d](https://github.com/yargs/yargs/commit/d6e342d8ef2c488f438c32770ba2209cf8223342))
113
+ * wrap unknown args in quotes ([#2092](https://github.com/yargs/yargs/issues/2092)) ([6a29778](https://github.com/yargs/yargs/commit/6a2977867bd58dbd8bb550f7b0b4c4c298835597))
114
+
115
+ ### [17.3.1](https://github.com/yargs/yargs/compare/v17.3.0...v17.3.1) (2021-12-23)
116
+
117
+
118
+ ### Bug Fixes
119
+
120
+ * **translations:** correct Korean translation ([#2095](https://github.com/yargs/yargs/issues/2095)) ([c7c2b9e](https://github.com/yargs/yargs/commit/c7c2b9eb340754ddac7bdd1687c7951332c5ebba))
121
+
122
+ ## [17.3.0](https://github.com/yargs/yargs/compare/v17.2.1...v17.3.0) (2021-11-30)
123
+
124
+
125
+ ### Features
126
+
127
+ * fallback to default bash completion ([74c0ba5](https://github.com/yargs/yargs/commit/74c0ba5cfcc59afa5538de821fad70e1a76a354e))
128
+
129
+
130
+ ### Bug Fixes
131
+
132
+ * avoid legacy accessors ([#2013](https://github.com/yargs/yargs/issues/2013)) ([adb0d11](https://github.com/yargs/yargs/commit/adb0d11e02c613af3d9427b3028cc192703a3869))
133
+ * **deps:** update dependency yargs-parser to v21 ([#2063](https://github.com/yargs/yargs/issues/2063)) ([76c1951](https://github.com/yargs/yargs/commit/76c19518d74ca94c0edcd450e5c0ef9efeee369d))
134
+ * don't fail if "fileURLToPath(import.meta.url)" throws ([3a44796](https://github.com/yargs/yargs/commit/3a44796c84e3cb60769841d5883448a396227ade))
135
+ * re-add options to check callback ([#2079](https://github.com/yargs/yargs/issues/2079)) ([e75319d](https://github.com/yargs/yargs/commit/e75319d99142a048b0abe9856499730fd4bc004c))
136
+
137
+ ### [17.2.1](https://www.github.com/yargs/yargs/compare/v17.2.0...v17.2.1) (2021-09-25)
138
+
139
+
140
+ ### Bug Fixes
141
+
142
+ * **docs:** stop advertising .argv property ([#2036](https://www.github.com/yargs/yargs/issues/2036)) ([4f5ecc1](https://www.github.com/yargs/yargs/commit/4f5ecc1427ed6c83f23ea90ee6da75ce0c332f7a)), closes [#2035](https://www.github.com/yargs/yargs/issues/2035)
143
+
144
+ ## [17.2.0](https://www.github.com/yargs/yargs/compare/v17.1.1...v17.2.0) (2021-09-23)
145
+
146
+
147
+ ### Features
148
+
149
+ * autocomplete choices for options ([#2018](https://www.github.com/yargs/yargs/issues/2018)) ([01b2c6a](https://www.github.com/yargs/yargs/commit/01b2c6a99167d826d3d1e6f6b94f18382a17d47e))
150
+ * **locales:** Added Uzbek translation ([#2024](https://www.github.com/yargs/yargs/issues/2024)) ([ee047b9](https://www.github.com/yargs/yargs/commit/ee047b9cd6260ce90d845e7e687228e617c8a30d))
151
+
152
+
153
+ ### Bug Fixes
154
+
155
+ * boolean option should work with strict ([#1996](https://www.github.com/yargs/yargs/issues/1996)) ([e9379e2](https://www.github.com/yargs/yargs/commit/e9379e27d49820f4db842f22cda6410bbe2bff10))
156
+ * cast error types as TypeScript 4.4 infers them as unknown instead of any ([#2016](https://www.github.com/yargs/yargs/issues/2016)) ([01b2c6a](https://www.github.com/yargs/yargs/commit/01b2c6a99167d826d3d1e6f6b94f18382a17d47e))
157
+ * conflicts and strip-dashed ([#1998](https://www.github.com/yargs/yargs/issues/1998)) ([59a86fb](https://www.github.com/yargs/yargs/commit/59a86fb83cfeb8533c6dd446c73cf4166cc455f2))
158
+ * emit warning on version name collision ([#1986](https://www.github.com/yargs/yargs/issues/1986)) ([d0e8292](https://www.github.com/yargs/yargs/commit/d0e829239580bd44873bbde65de2ed7671aa2ab0))
159
+ * help command spacing when scriptName is empty ([#1994](https://www.github.com/yargs/yargs/issues/1994)) ([d33e997](https://www.github.com/yargs/yargs/commit/d33e9972291406490cd8fdad0b3589be234e0f12))
160
+
161
+ ### [17.1.1](https://www.github.com/yargs/yargs/compare/v17.1.0...v17.1.1) (2021-08-13)
162
+
163
+
164
+ ### Bug Fixes
165
+
166
+ * positional array defaults should not be combined with provided values ([#2006](https://www.github.com/yargs/yargs/issues/2006)) ([832222d](https://www.github.com/yargs/yargs/commit/832222d7777da49e5c9da6c5801c2dd90d7fa6a2))
167
+
168
+ ## [17.1.0](https://www.github.com/yargs/yargs/compare/v17.0.1...v17.1.0) (2021-08-04)
169
+
170
+
171
+ ### Features
172
+
173
+ * update Levenshtein to Damerau-Levenshtein ([#1973](https://www.github.com/yargs/yargs/issues/1973)) ([d2c121b](https://www.github.com/yargs/yargs/commit/d2c121b00f2e1eb2ea8cc3a23a5039b3a4425bea))
174
+
175
+
176
+ ### Bug Fixes
177
+
178
+ * coerce middleware should be applied once ([#1978](https://www.github.com/yargs/yargs/issues/1978)) ([14bd6be](https://www.github.com/yargs/yargs/commit/14bd6bebc3027ae929106b20dd198b9dccdeec31))
179
+ * implies should not fail when implied key's value is 0, false or empty string ([#1985](https://www.github.com/yargs/yargs/issues/1985)) ([8010472](https://www.github.com/yargs/yargs/commit/80104727d5f2ec4c5b491c1bdec4c94b2db95d9c))
180
+ * positionals should not overwrite options ([#1992](https://www.github.com/yargs/yargs/issues/1992)) ([9d84309](https://www.github.com/yargs/yargs/commit/9d84309e53ce1d30b1c61035ed5c78827a89df86))
181
+ * strict should fail unknown arguments ([#1977](https://www.github.com/yargs/yargs/issues/1977)) ([c804f0d](https://www.github.com/yargs/yargs/commit/c804f0db78e56b44341cc7a91878c27b1b68b9f2))
182
+ * wrap(null) no longer causes strange indentation behavior ([#1988](https://www.github.com/yargs/yargs/issues/1988)) ([e1871aa](https://www.github.com/yargs/yargs/commit/e1871aa792de219b221179417d410931af70d405))
183
+
184
+ ### [17.0.1](https://www.github.com/yargs/yargs/compare/v17.0.0...v17.0.1) (2021-05-03)
185
+
186
+
187
+ ### Bug Fixes
188
+
189
+ * **build:** Node 12 is now minimum version ([#1936](https://www.github.com/yargs/yargs/issues/1936)) ([0924566](https://www.github.com/yargs/yargs/commit/09245666e57facb140e0b45a9e45ca704883e5dd))
190
+
191
+ ## [17.0.0](https://www.github.com/yargs/yargs/compare/v16.2.0...v17.0.0) (2021-05-02)
192
+
193
+
194
+ ### ⚠ BREAKING CHANGES
195
+
196
+ * **node:** drop Node 10 (#1919)
197
+ * implicitly private methods are now actually private
198
+ * deprecated reset() method is now private (call yargs() instead).
199
+ * **yargs-factory:** refactor yargs-factory to use class (#1895)
200
+ * .positional() now allowed at root level of yargs.
201
+ * **coerce:** coerce is now applied before validation.
202
+ * **async:** yargs now returns a promise if async or check are asynchronous.
203
+ * **middleware:** global middleware now applied when no command is configured.
204
+ * #1823 contains the following breaking API changes:
205
+ * now returns a promise if handler is async.
206
+ * onFinishCommand removed, in favor of being able to await promise.
207
+ * getCompletion now invokes callback with err and `completions, returns promise of completions.
208
+
209
+ ### Features
210
+
211
+ * add commands alias (similar to options function) ([#1850](https://www.github.com/yargs/yargs/issues/1850)) ([00b74ad](https://www.github.com/yargs/yargs/commit/00b74adcb30ab89b4450ef7105ef1ad32d820ebf))
212
+ * add parseSync/parseAsync method ([#1898](https://www.github.com/yargs/yargs/issues/1898)) ([6130ad8](https://www.github.com/yargs/yargs/commit/6130ad89b85dc49e34190e596e14a2fd3e668781))
213
+ * add support for `showVersion`, similar to `showHelp` ([#1831](https://www.github.com/yargs/yargs/issues/1831)) ([1a1e2d5](https://www.github.com/yargs/yargs/commit/1a1e2d554dca3566bc174584394419be0120d207))
214
+ * adds support for async builder ([#1888](https://www.github.com/yargs/yargs/issues/1888)) ([ade29b8](https://www.github.com/yargs/yargs/commit/ade29b864abecaa8c4f8dcc3493f5eb24fb73d84)), closes [#1042](https://www.github.com/yargs/yargs/issues/1042)
215
+ * allow calling standard completion function from custom one ([#1855](https://www.github.com/yargs/yargs/issues/1855)) ([31765cb](https://www.github.com/yargs/yargs/commit/31765cbdce812ee5c16aaae70ab523a2c7e0fcec))
216
+ * allow default completion to be referenced and modified, in custom completion ([#1878](https://www.github.com/yargs/yargs/issues/1878)) ([01619f6](https://www.github.com/yargs/yargs/commit/01619f6191a3ab16bf6b77456d4e9dfa80533907))
217
+ * **async:** add support for async check and coerce ([#1872](https://www.github.com/yargs/yargs/issues/1872)) ([8b95f57](https://www.github.com/yargs/yargs/commit/8b95f57bb2a49b098c6bf23cea88c6f900a34f89))
218
+ * improve support for async/await ([#1823](https://www.github.com/yargs/yargs/issues/1823)) ([169b815](https://www.github.com/yargs/yargs/commit/169b815df7ae190965f04030f28adc3ab92bb4b5))
219
+ * **locale:** add Ukrainian locale ([#1893](https://www.github.com/yargs/yargs/issues/1893)) ([c872dfc](https://www.github.com/yargs/yargs/commit/c872dfc1d87ebaa7fcc79801f649318a16195495))
220
+ * **middleware:** async middleware can now be used before validation. ([e0f9363](https://www.github.com/yargs/yargs/commit/e0f93636e04fa7e02a2c3b1fe465b6a14aa1f06d))
221
+ * **middleware:** global middleware now applied when no command is configured. ([e0f9363](https://www.github.com/yargs/yargs/commit/e0f93636e04fa7e02a2c3b1fe465b6a14aa1f06d))
222
+ * **node:** drop Node 10 ([#1919](https://www.github.com/yargs/yargs/issues/1919)) ([5edeb9e](https://www.github.com/yargs/yargs/commit/5edeb9ea17b1f0190a3590508f2e7911b5f70659))
223
+
224
+
225
+ ### Bug Fixes
226
+
227
+ * always cache help message when running commands ([#1865](https://www.github.com/yargs/yargs/issues/1865)) ([d57ca77](https://www.github.com/yargs/yargs/commit/d57ca7751d533d7e0f216cd9fbf7c2b0ec98f791)), closes [#1853](https://www.github.com/yargs/yargs/issues/1853)
228
+ * **async:** don't call parse callback until async ops complete ([#1896](https://www.github.com/yargs/yargs/issues/1896)) ([a93f5ff](https://www.github.com/yargs/yargs/commit/a93f5ff35d7c09b01e0ca93d7d855d2b26593165)), closes [#1888](https://www.github.com/yargs/yargs/issues/1888)
229
+ * **builder:** apply default builder for showHelp/getHelp ([#1913](https://www.github.com/yargs/yargs/issues/1913)) ([395bb67](https://www.github.com/yargs/yargs/commit/395bb67749787d269cabe80ffc3133c2f6958aeb)), closes [#1912](https://www.github.com/yargs/yargs/issues/1912)
230
+ * **builder:** nested builder is now awaited ([#1925](https://www.github.com/yargs/yargs/issues/1925)) ([b5accd6](https://www.github.com/yargs/yargs/commit/b5accd64ccbd3ffb800517fb40d0f59382515fbb))
231
+ * **coerce:** options using coerce now displayed in help ([#1911](https://www.github.com/yargs/yargs/issues/1911)) ([d2128cc](https://www.github.com/yargs/yargs/commit/d2128cc4ffd411eed7111e6a3c561948330e4f6f)), closes [#1909](https://www.github.com/yargs/yargs/issues/1909)
232
+ * completion script name clashing on bash ([#1903](https://www.github.com/yargs/yargs/issues/1903)) ([8f62d9a](https://www.github.com/yargs/yargs/commit/8f62d9a9e8bebf86f988c100ad3c417dc32b2471))
233
+ * **deno:** use actual names for keys instead of inferring ([#1891](https://www.github.com/yargs/yargs/issues/1891)) ([b96ef01](https://www.github.com/yargs/yargs/commit/b96ef01b16bc5377b79d7914dd5495068037fe7b))
234
+ * exclude positionals from default completion ([#1881](https://www.github.com/yargs/yargs/issues/1881)) ([0175677](https://www.github.com/yargs/yargs/commit/0175677b79ffe50a9c5477631288ae10120b8a32))
235
+ * https://github.com/yargs/yargs/issues/1841#issuecomment-804770453 ([b96ef01](https://www.github.com/yargs/yargs/commit/b96ef01b16bc5377b79d7914dd5495068037fe7b))
236
+ * showHelp() and .getHelp() now return same output for commands as --help ([#1826](https://www.github.com/yargs/yargs/issues/1826)) ([36abf26](https://www.github.com/yargs/yargs/commit/36abf26919b5a19f3adec08598539851c34b7086))
237
+ * zsh completion is now autoloadable ([#1856](https://www.github.com/yargs/yargs/issues/1856)) ([d731f9f](https://www.github.com/yargs/yargs/commit/d731f9f9adbc11f918e918443c5bff4149fc6681))
238
+
239
+
240
+ ### Code Refactoring
241
+
242
+ * **coerce:** coerce is now applied before validation. ([8b95f57](https://www.github.com/yargs/yargs/commit/8b95f57bb2a49b098c6bf23cea88c6f900a34f89))
243
+ * deprecated reset() method is now private (call yargs() instead). ([376f892](https://www.github.com/yargs/yargs/commit/376f89242733dcd4ecb8040685c40ae1d622931d))
244
+ * implicitly private methods are now actually private ([376f892](https://www.github.com/yargs/yargs/commit/376f89242733dcd4ecb8040685c40ae1d622931d))
245
+ * **yargs-factory:** refactor yargs-factory to use class ([#1895](https://www.github.com/yargs/yargs/issues/1895)) ([376f892](https://www.github.com/yargs/yargs/commit/376f89242733dcd4ecb8040685c40ae1d622931d))
246
+
247
+ ## [16.2.0](https://www.github.com/yargs/yargs/compare/v16.1.1...v16.2.0) (2020-12-05)
248
+
249
+
250
+ ### Features
251
+
252
+ * command() now accepts an array of modules ([f415388](https://www.github.com/yargs/yargs/commit/f415388cc454d02786c65c50dd6c7a0cf9d8b842))
253
+
254
+
255
+ ### Bug Fixes
256
+
257
+ * add package.json to module exports ([#1818](https://www.github.com/yargs/yargs/issues/1818)) ([d783a49](https://www.github.com/yargs/yargs/commit/d783a49a7f21c9bbd4eec2990268f3244c4d5662)), closes [#1817](https://www.github.com/yargs/yargs/issues/1817)
258
+
259
+ ### [16.1.1](https://www.github.com/yargs/yargs/compare/v16.1.0...v16.1.1) (2020-11-15)
260
+
261
+
262
+ ### Bug Fixes
263
+
264
+ * expose helpers for legacy versions of Node.js ([#1801](https://www.github.com/yargs/yargs/issues/1801)) ([107deaa](https://www.github.com/yargs/yargs/commit/107deaa4f68b7bc3f2386041e1f4fe0272b29c0a))
265
+ * **deno:** get yargs working on deno@1.5.x ([#1799](https://www.github.com/yargs/yargs/issues/1799)) ([cb01c98](https://www.github.com/yargs/yargs/commit/cb01c98c44e30f55c2dc9434caef524ae433d9a4))
266
+
267
+ ## [16.1.0](https://www.github.com/yargs/yargs/compare/v16.0.3...v16.1.0) (2020-10-15)
268
+
269
+
270
+ ### Features
271
+
272
+ * expose hideBin helper for CJS ([#1768](https://www.github.com/yargs/yargs/issues/1768)) ([63e1173](https://www.github.com/yargs/yargs/commit/63e1173bb47dc651c151973a16ef659082a9ae66))
273
+
274
+
275
+ ### Bug Fixes
276
+
277
+ * **deno:** update types for deno ^1.4.0 ([#1772](https://www.github.com/yargs/yargs/issues/1772)) ([0801752](https://www.github.com/yargs/yargs/commit/080175207d281be63edf90adfe4f0568700b0bf5))
278
+ * **exports:** node 13.0-13.6 require a string fallback ([#1776](https://www.github.com/yargs/yargs/issues/1776)) ([b45c43a](https://www.github.com/yargs/yargs/commit/b45c43a5f64b565c3794f9792150eaeec4e00b69))
279
+ * **modules:** module path was incorrect ([#1759](https://www.github.com/yargs/yargs/issues/1759)) ([95a4a0a](https://www.github.com/yargs/yargs/commit/95a4a0ac573cfe158e6e4bc8c8682ebd1644a198))
280
+ * **positional:** positional strings no longer drop decimals ([#1761](https://www.github.com/yargs/yargs/issues/1761)) ([e1a300f](https://www.github.com/yargs/yargs/commit/e1a300f1293ad821c900284616337f080b207980))
281
+ * make positionals in -- count towards validation ([#1752](https://www.github.com/yargs/yargs/issues/1752)) ([eb2b29d](https://www.github.com/yargs/yargs/commit/eb2b29d34f1a41e0fd6c4e841960e5bfc329dc3c))
282
+
283
+ ### [16.0.3](https://www.github.com/yargs/yargs/compare/v16.0.2...v16.0.3) (2020-09-10)
284
+
285
+
286
+ ### Bug Fixes
287
+
288
+ * move yargs.cjs to yargs to fix Node 10 imports ([#1747](https://www.github.com/yargs/yargs/issues/1747)) ([5bfb85b](https://www.github.com/yargs/yargs/commit/5bfb85b33b85db8a44b5f7a700a8e4dbaf022df0))
289
+
290
+ ### [16.0.2](https://www.github.com/yargs/yargs/compare/v16.0.1...v16.0.2) (2020-09-09)
291
+
292
+
293
+ ### Bug Fixes
294
+
295
+ * **typescript:** yargs-parser was breaking @types/yargs ([#1745](https://www.github.com/yargs/yargs/issues/1745)) ([2253284](https://www.github.com/yargs/yargs/commit/2253284b233cceabd8db677b81c5bf1755eef230))
296
+
297
+ ### [16.0.1](https://www.github.com/yargs/yargs/compare/v16.0.0...v16.0.1) (2020-09-09)
298
+
299
+
300
+ ### Bug Fixes
301
+
302
+ * code was not passed to process.exit ([#1742](https://www.github.com/yargs/yargs/issues/1742)) ([d1a9930](https://www.github.com/yargs/yargs/commit/d1a993035a2f76c138460052cf19425f9684b637))
303
+
304
+ ## [16.0.0](https://www.github.com/yargs/yargs/compare/v15.4.2...v16.0.0) (2020-09-09)
305
+
306
+
307
+ ### ⚠ BREAKING CHANGES
308
+
309
+ * tweaks to ESM/Deno API surface: now exports yargs function by default; getProcessArgvWithoutBin becomes hideBin; types now exported for Deno.
310
+ * find-up replaced with escalade; export map added (limits importable files in Node >= 12); yarser-parser@19.x.x (new decamelize/camelcase implementation).
311
+ * **usage:** single character aliases are now shown first in help output
312
+ * rebase helper is no longer provided on yargs instance.
313
+ * drop support for EOL Node 8 (#1686)
314
+
315
+ ### Features
316
+
317
+ * adds strictOptions() ([#1738](https://www.github.com/yargs/yargs/issues/1738)) ([b215fba](https://www.github.com/yargs/yargs/commit/b215fba0ed6e124e5aad6cf22c8d5875661c63a3))
318
+ * **helpers:** rebase, Parser, applyExtends now blessed helpers ([#1733](https://www.github.com/yargs/yargs/issues/1733)) ([c7debe8](https://www.github.com/yargs/yargs/commit/c7debe8eb1e5bc6ea20b5ed68026c56e5ebec9e1))
319
+ * adds support for ESM and Deno ([#1708](https://www.github.com/yargs/yargs/issues/1708)) ([ac6d5d1](https://www.github.com/yargs/yargs/commit/ac6d5d105a75711fe703f6a39dad5181b383d6c6))
320
+ * drop support for EOL Node 8 ([#1686](https://www.github.com/yargs/yargs/issues/1686)) ([863937f](https://www.github.com/yargs/yargs/commit/863937f23c3102f804cdea78ee3097e28c7c289f))
321
+ * i18n for ESM and Deno ([#1735](https://www.github.com/yargs/yargs/issues/1735)) ([c71783a](https://www.github.com/yargs/yargs/commit/c71783a5a898a0c0e92ac501c939a3ec411ac0c1))
322
+ * tweaks to API surface based on user feedback ([#1726](https://www.github.com/yargs/yargs/issues/1726)) ([4151fee](https://www.github.com/yargs/yargs/commit/4151fee4c33a97d26bc40de7e623e5b0eb87e9bb))
323
+ * **usage:** single char aliases first in help ([#1574](https://www.github.com/yargs/yargs/issues/1574)) ([a552990](https://www.github.com/yargs/yargs/commit/a552990c120646c2d85a5c9b628e1ce92a68e797))
324
+
325
+
326
+ ### Bug Fixes
327
+
328
+ * **yargs:** add missing command(module) signature ([#1707](https://www.github.com/yargs/yargs/issues/1707)) ([0f81024](https://www.github.com/yargs/yargs/commit/0f810245494ccf13a35b7786d021b30fc95ecad5)), closes [#1704](https://www.github.com/yargs/yargs/issues/1704)
329
+
330
+ [Older CHANGELOG Entries](https://github.com/yargs/yargs/blob/main/docs/CHANGELOG-historical.md)