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