@nordicsemiconductor/pc-nrfconnect-shared 91.0.0 → 93.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 +25 -0
- package/coverage/cobertura-coverage.xml +288 -264
- package/nrfutil/sandbox.ts +26 -3
- package/nrfutil/sandboxTypes.ts +18 -4
- package/package.json +1 -1
- package/src/Device/jprogOperations.ts +1 -1
- package/src/Device/sdfuOperations.ts +5 -2
- package/src/utils/usageData.ts +13 -4
- package/typings/generated/nrfutil/sandbox.d.ts.map +1 -1
- package/typings/generated/nrfutil/sandboxTypes.d.ts +17 -4
- package/typings/generated/nrfutil/sandboxTypes.d.ts.map +1 -1
- package/typings/generated/src/Device/sdfuOperations.d.ts.map +1 -1
- package/typings/generated/src/utils/usageData.d.ts +2 -0
- package/typings/generated/src/utils/usageData.d.ts.map +1 -1
package/Changelog.md
CHANGED
|
@@ -7,6 +7,31 @@ 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
|
+
## 93 - 2023-08-25
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Nrfutil progress now has a new property `totalProgressPercentage` that
|
|
15
|
+
computes the progress across all steps
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Nrfutil progress properties `step` and `amountOfSteps` are now always
|
|
20
|
+
present
|
|
21
|
+
- Nrfutil progress properties `progressPercentage` has been renamed to
|
|
22
|
+
`stepProgressPercentage`
|
|
23
|
+
|
|
24
|
+
### Steps to upgrade
|
|
25
|
+
|
|
26
|
+
- Any usage of Nrfutil property `progressPercentage` need to be renamed to
|
|
27
|
+
`stepProgressPercentage`
|
|
28
|
+
|
|
29
|
+
## 92 - 2023-08-24
|
|
30
|
+
|
|
31
|
+
### Added
|
|
32
|
+
|
|
33
|
+
- Add functionality to send metrics and traces to telemetry.
|
|
34
|
+
|
|
10
35
|
## 91 - 2023-08-23
|
|
11
36
|
|
|
12
37
|
### Changed
|