frida 17.2.8 → 17.2.9

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.
@@ -484,6 +484,10 @@ export const LogLevel = binding.LogLevel;
484
484
  if (cwd !== undefined) {
485
485
  options.cwd = cwd;
486
486
  }
487
+ const stdio = opts.stdio;
488
+ if (stdio !== undefined) {
489
+ options.stdio = stdio;
490
+ }
487
491
  options.aux = Object.fromEntries(Object.entries(opts).filter(([k, v]) => !STANDARD_SPAWN_OPTION_NAMES.has(k)));
488
492
  }
489
493
  const result = await this._spawn(program, options, cancellable);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frida",
3
- "version": "17.2.8",
3
+ "version": "17.2.9",
4
4
  "authors": [
5
5
  "Frida Developers"
6
6
  ],
@@ -388,6 +388,11 @@ if (opts !== undefined) {
388
388
  options.cwd = cwd;
389
389
  }
390
390
 
391
+ const stdio = opts.stdio;
392
+ if (stdio !== undefined) {
393
+ options.stdio = stdio;
394
+ }
395
+
391
396
  options.aux = Object.fromEntries(Object.entries(opts).filter(([k, v]) => !STANDARD_SPAWN_OPTION_NAMES.has(k)));
392
397
  }
393
398
  """,
@@ -1,6 +1,6 @@
1
1
  [wrap-git]
2
2
  url = https://github.com/frida/frida-core.git
3
- revision = 17.2.8
3
+ revision = 17.2.9
4
4
  depth = 1
5
5
 
6
6
  [provide]