@nordicsemiconductor/pc-nrfconnect-shared 103.0.0 → 104.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.
Files changed (44) hide show
  1. package/Changelog.md +12 -0
  2. package/coverage/cobertura-coverage.xml +192 -268
  3. package/nrfutil/device/batch.ts +147 -53
  4. package/nrfutil/device/batchTypes.ts +2 -2
  5. package/nrfutil/device/list.ts +1 -2
  6. package/nrfutil/device/program.ts +1 -1
  7. package/nrfutil/sandbox.ts +20 -0
  8. package/nrfutil/sandboxTypes.ts +6 -4
  9. package/package.json +1 -1
  10. package/typings/generated/nrfutil/device/batch.d.ts +5 -7
  11. package/typings/generated/nrfutil/device/batch.d.ts.map +1 -1
  12. package/typings/generated/nrfutil/device/batchTypes.d.ts +2 -2
  13. package/typings/generated/nrfutil/device/batchTypes.d.ts.map +1 -1
  14. package/typings/generated/nrfutil/device/list.d.ts.map +1 -1
  15. package/typings/generated/nrfutil/device/program.d.ts +1 -0
  16. package/typings/generated/nrfutil/device/program.d.ts.map +1 -1
  17. package/typings/generated/nrfutil/sandbox.d.ts +1 -0
  18. package/typings/generated/nrfutil/sandbox.d.ts.map +1 -1
  19. package/typings/generated/nrfutil/sandboxTypes.d.ts +5 -4
  20. package/typings/generated/nrfutil/sandboxTypes.d.ts.map +1 -1
  21. package/nrfutil/device/eraseBatch.ts +0 -28
  22. package/nrfutil/device/firmwareReadBatch.ts +0 -42
  23. package/nrfutil/device/getCoreInfoBatch.ts +0 -29
  24. package/nrfutil/device/getFwInfoBatch.ts +0 -29
  25. package/nrfutil/device/getProtectionStatusBatch.ts +0 -32
  26. package/nrfutil/device/programBatch.ts +0 -69
  27. package/nrfutil/device/recoverBatch.ts +0 -28
  28. package/nrfutil/device/resetBatch.ts +0 -30
  29. package/typings/generated/nrfutil/device/eraseBatch.d.ts +0 -7
  30. package/typings/generated/nrfutil/device/eraseBatch.d.ts.map +0 -1
  31. package/typings/generated/nrfutil/device/firmwareReadBatch.d.ts +0 -9
  32. package/typings/generated/nrfutil/device/firmwareReadBatch.d.ts.map +0 -1
  33. package/typings/generated/nrfutil/device/getCoreInfoBatch.d.ts +0 -8
  34. package/typings/generated/nrfutil/device/getCoreInfoBatch.d.ts.map +0 -1
  35. package/typings/generated/nrfutil/device/getFwInfoBatch.d.ts +0 -8
  36. package/typings/generated/nrfutil/device/getFwInfoBatch.d.ts.map +0 -1
  37. package/typings/generated/nrfutil/device/getProtectionStatusBatch.d.ts +0 -8
  38. package/typings/generated/nrfutil/device/getProtectionStatusBatch.d.ts.map +0 -1
  39. package/typings/generated/nrfutil/device/programBatch.d.ts +0 -9
  40. package/typings/generated/nrfutil/device/programBatch.d.ts.map +0 -1
  41. package/typings/generated/nrfutil/device/recoverBatch.d.ts +0 -7
  42. package/typings/generated/nrfutil/device/recoverBatch.d.ts.map +0 -1
  43. package/typings/generated/nrfutil/device/resetBatch.d.ts +0 -8
  44. package/typings/generated/nrfutil/device/resetBatch.d.ts.map +0 -1
package/Changelog.md CHANGED
@@ -7,6 +7,18 @@ 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
+ ## 104 - 2023-09-08
11
+
12
+ ### Changed
13
+
14
+ - `Nrfutil Device` batch now generate batch JSON using the CLI. Requires
15
+ nrfutil device 1.4.2
16
+
17
+ ### Fixed
18
+
19
+ - Batch programming will now cleanup temporary files
20
+ - Device list will use the passed devices traits
21
+
10
22
  ## 103 - 2023-09-06
11
23
 
12
24
  ### Added