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