@nordicsemiconductor/pc-nrfconnect-shared 137.0.0 → 138.0.0

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
@@ -7,6 +7,13 @@ This project does _not_ adhere to
7
7
  [Semantic Versioning](https://semver.org/spec/v2.0.0.html) but contrary to it
8
8
  every new version is a new major version.
9
9
 
10
+ ## 138.0.0 - 2023-12-04
11
+
12
+ ### Fixed
13
+
14
+ - `nrfutil sandbox` `execCommand` did not escape executable path leading to
15
+ failure when path has whitespace
16
+
10
17
  ## 137.0.0 - 2023-12-04
11
18
 
12
19
  ### Added
@@ -517,7 +517,7 @@ export class NrfutilSandbox {
517
517
  exec: command,
518
518
  });
519
519
 
520
- const nrfutil = exec(`${command} ${args.join(' ')}`, {
520
+ const nrfutil = exec(`"${command}" ${args.join(' ')}`, {
521
521
  env: editEnv(this.env),
522
522
  });
523
523
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nordicsemiconductor/pc-nrfconnect-shared",
3
- "version": "137.0.0",
3
+ "version": "138.0.0",
4
4
  "description": "Shared commodities for developing pc-nrfconnect-* packages",
5
5
  "repository": {
6
6
  "type": "git",