@nordicsemiconductor/pc-nrfconnect-shared 98.0.0 → 100.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 (32) hide show
  1. package/Changelog.md +29 -0
  2. package/coverage/cobertura-coverage.xml +419 -416
  3. package/nrfutil/device/batch.ts +1 -1
  4. package/nrfutil/device/common.ts +6 -0
  5. package/nrfutil/device/device.ts +5 -5
  6. package/nrfutil/device/list.ts +5 -1
  7. package/nrfutil/moduleVersion.ts +1 -1
  8. package/nrfutil/sandbox.ts +2 -2
  9. package/package.json +1 -1
  10. package/src/Device/DeviceSelector/DeviceSelector.tsx +2 -5
  11. package/src/Device/deviceAutoSelectSlice.ts +8 -1
  12. package/src/Device/deviceLister.ts +1 -7
  13. package/src/Device/sdfuOperations.ts +5 -4
  14. package/src/index.ts +1 -1
  15. package/src/utils/logLibVersions.ts +0 -4
  16. package/src/utils/systemReport.ts +0 -3
  17. package/typings/generated/nrfutil/device/common.d.ts.map +1 -1
  18. package/typings/generated/nrfutil/device/device.d.ts +1 -1
  19. package/typings/generated/nrfutil/device/list.d.ts +1 -1
  20. package/typings/generated/nrfutil/device/list.d.ts.map +1 -1
  21. package/typings/generated/nrfutil/moduleVersion.d.ts +1 -1
  22. package/typings/generated/nrfutil/moduleVersion.d.ts.map +1 -1
  23. package/typings/generated/src/Device/DeviceSelector/DeviceSelector.d.ts.map +1 -1
  24. package/typings/generated/src/Device/deviceAutoSelectSlice.d.ts +2 -1
  25. package/typings/generated/src/Device/deviceAutoSelectSlice.d.ts.map +1 -1
  26. package/typings/generated/src/Device/deviceLister.d.ts +0 -1
  27. package/typings/generated/src/Device/deviceLister.d.ts.map +1 -1
  28. package/typings/generated/src/Device/sdfuOperations.d.ts.map +1 -1
  29. package/typings/generated/src/index.d.ts +1 -2
  30. package/typings/generated/src/index.d.ts.map +1 -1
  31. package/typings/generated/src/utils/logLibVersions.d.ts.map +1 -1
  32. package/typings/generated/src/utils/systemReport.d.ts.map +1 -1
package/Changelog.md CHANGED
@@ -7,6 +7,35 @@ 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
+ ## 100 - 2023-09-05
11
+
12
+ ### Fixed
13
+
14
+ - Unable to use nrfutil device in production due to issue with nrfutil device
15
+ logging when set to off.
16
+
17
+ ## 99 - 2023-09-04
18
+
19
+ ### Added
20
+
21
+ - nrfutil device list now supports optional timeout parameter
22
+
23
+ ### Changed
24
+
25
+ - Nrfutil device list now default to 3000ms timeout when enumerating (was
26
+ 1000ms)
27
+ - Nrfutil device now support nrfutil device 1.4.x only
28
+ - Nrfutil device will not log in production unless verbose logging is on
29
+
30
+ ### Fixed
31
+
32
+ - Nrfutil device std error message string
33
+ - When SDFU MCU State change fails, wait for device is now canceled
34
+
35
+ ### Removed
36
+
37
+ - Logging for nrf-probe-lib version
38
+
10
39
  ## 98 - 2023-08-30
11
40
 
12
41
  ### Added