@kin-tio/cli 0.7.1 → 0.7.2
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.
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ This file records important user-visible changes after the first public release.
|
|
|
4
4
|
|
|
5
5
|
## Unreleased
|
|
6
6
|
|
|
7
|
+
## 0.7.2
|
|
8
|
+
|
|
9
|
+
- Prevented the background Agent process on Windows from opening a persistent
|
|
10
|
+
empty `cmd.exe` window while preserving its stdio transport and lifecycle
|
|
11
|
+
ownership ([#70](https://github.com/Gkxie/kintio/issues/70)).
|
|
12
|
+
|
|
7
13
|
## 0.7.1
|
|
8
14
|
|
|
9
15
|
- Made `kintio ilink start` use the managed background daemon by default while
|
|
@@ -127,6 +127,7 @@ export class CodexAppServer {
|
|
|
127
127
|
const argumentsList = ['app-server', '--stdio', ...configArguments];
|
|
128
128
|
const child = this.#options.spawnProcess(command, argumentsList, {
|
|
129
129
|
stdio: ['pipe', 'pipe', 'pipe'],
|
|
130
|
+
windowsHide: true,
|
|
130
131
|
});
|
|
131
132
|
this.#process = child;
|
|
132
133
|
child.once('error', (error) => {
|
package/dist/src/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const KINTIO_VERSION = '0.7.
|
|
1
|
+
export const KINTIO_VERSION = '0.7.2';
|