@@ -131,9 +131,6 @@ exec('"my script.cmd" a b', (err, stdout, stderr) => {
131131<!-- YAML
132132added: v0.1.90
133133changes:
134- - version: v11.0.0
135- pr-url: https://github.com/nodejs/node/pull/21316
136- description: The `windowsHide` option now defaults to `true`.
137134 - version: v8.8.0
138135 pr-url: https://github.com/nodejs/node/pull/15380
139136 description: The `windowsHide` option is supported now.
@@ -156,7 +153,7 @@ changes:
156153 * ` uid ` {number} Sets the user identity of the process (see setuid(2)).
157154 * ` gid ` {number} Sets the group identity of the process (see setgid(2)).
158155 * ` windowsHide ` {boolean} Hide the subprocess console window that would
159- normally be created on Windows systems. ** Default:** ` true ` .
156+ normally be created on Windows systems. ** Default:** ` false ` .
160157* ` callback ` {Function} called with the output when process terminates.
161158 * ` error ` {Error}
162159 * ` stdout ` {string|Buffer}
@@ -235,9 +232,6 @@ lsExample();
235232<!-- YAML
236233added: v0.1.91
237234changes:
238- - version: v11.0.0
239- pr-url: https://github.com/nodejs/node/pull/21316
240- description: The `windowsHide` option now defaults to `true`.
241235 - version: v8.8.0
242236 pr-url: https://github.com/nodejs/node/pull/15380
243237 description: The `windowsHide` option is supported now.
@@ -257,7 +251,7 @@ changes:
257251 * ` uid ` {number} Sets the user identity of the process (see setuid(2)).
258252 * ` gid ` {number} Sets the group identity of the process (see setgid(2)).
259253 * ` windowsHide ` {boolean} Hide the subprocess console window that would
260- normally be created on Windows systems. ** Default:** ` true ` .
254+ normally be created on Windows systems. ** Default:** ` false ` .
261255 * ` windowsVerbatimArguments ` {boolean} No quoting or escaping of arguments is
262256 done on Windows. Ignored on Unix. ** Default:** ` false ` .
263257 * ` shell ` {boolean|string} If ` true ` , runs ` command ` inside of a shell. Uses
@@ -381,9 +375,6 @@ The `shell` option available in [`child_process.spawn()`][] is not supported by
381375<!-- YAML
382376added: v0.1.90
383377changes:
384- - version: v11.0.0
385- pr-url: https://github.com/nodejs/node/pull/21316
386- description: The `windowsHide` option now defaults to `true`.
387378 - version: v8.8.0
388379 pr-url: https://github.com/nodejs/node/pull/15380
389380 description: The `windowsHide` option is supported now.
@@ -417,7 +408,7 @@ changes:
417408 done on Windows. Ignored on Unix. This is set to ` true ` automatically
418409 when ` shell ` is specified and is CMD. ** Default:** ` false ` .
419410 * ` windowsHide ` {boolean} Hide the subprocess console window that would
420- normally be created on Windows systems. ** Default:** ` true ` .
411+ normally be created on Windows systems. ** Default:** ` false ` .
421412* Returns: {ChildProcess}
422413
423414The ` child_process.spawn() ` method spawns a new process using the given
@@ -690,9 +681,6 @@ changes:
690681 pr-url: https://github.com/nodejs/node/pull/22409
691682 description: The `input` option can now be any `TypedArray` or a
692683 `DataView`.
693- - version: v11.0.0
694- pr-url: https://github.com/nodejs/node/pull/21316
695- description: The `windowsHide` option now defaults to `true`.
696684 - version: v8.8.0
697685 pr-url: https://github.com/nodejs/node/pull/15380
698686 description: The `windowsHide` option is supported now.
@@ -727,7 +715,7 @@ changes:
727715 * ` encoding ` {string} The encoding used for all stdio inputs and outputs.
728716 ** Default:** ` 'buffer' ` .
729717 * ` windowsHide ` {boolean} Hide the subprocess console window that would
730- normally be created on Windows systems. ** Default:** ` true ` .
718+ normally be created on Windows systems. ** Default:** ` false ` .
731719 * ` shell ` {boolean|string} If ` true ` , runs ` command ` inside of a shell. Uses
732720 ` '/bin/sh' ` on UNIX, and ` process.env.ComSpec ` on Windows. A different
733721 shell can be specified as a string. See [ Shell Requirements] [ ] and
@@ -760,9 +748,6 @@ changes:
760748 pr-url: https://github.com/nodejs/node/pull/22409
761749 description: The `input` option can now be any `TypedArray` or a
762750 `DataView`.
763- - version: v11.0.0
764- pr-url: https://github.com/nodejs/node/pull/21316
765- description: The `windowsHide` option now defaults to `true`.
766751 - version: v8.8.0
767752 pr-url: https://github.com/nodejs/node/pull/15380
768753 description: The `windowsHide` option is supported now.
@@ -796,7 +781,7 @@ changes:
796781 * ` encoding ` {string} The encoding used for all stdio inputs and outputs.
797782 ** Default:** ` 'buffer' ` .
798783 * ` windowsHide ` {boolean} Hide the subprocess console window that would
799- normally be created on Windows systems. ** Default:** ` true ` .
784+ normally be created on Windows systems. ** Default:** ` false ` .
800785* Returns: {Buffer|string} The stdout from the command.
801786
802787The ` child_process.execSync() ` method is generally identical to
@@ -822,9 +807,6 @@ changes:
822807 pr-url: https://github.com/nodejs/node/pull/22409
823808 description: The `input` option can now be any `TypedArray` or a
824809 `DataView`.
825- - version: v11.0.0
826- pr-url: https://github.com/nodejs/node/pull/21316
827- description: The `windowsHide` option now defaults to `true`.
828810 - version: v8.8.0
829811 pr-url: https://github.com/nodejs/node/pull/15380
830812 description: The `windowsHide` option is supported now.
@@ -869,7 +851,7 @@ changes:
869851 done on Windows. Ignored on Unix. This is set to ` true ` automatically
870852 when ` shell ` is specified and is CMD. ** Default:** ` false ` .
871853 * ` windowsHide ` {boolean} Hide the subprocess console window that would
872- normally be created on Windows systems. ** Default:** ` true ` .
854+ normally be created on Windows systems. ** Default:** ` false ` .
873855* Returns: {Object}
874856 * ` pid ` {number} Pid of the child process.
875857 * ` output ` {Array} Array of results from stdio output.
0 commit comments