@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.
- package/Changelog.md +12 -0
- package/coverage/cobertura-coverage.xml +192 -268
- package/nrfutil/device/batch.ts +147 -53
- package/nrfutil/device/batchTypes.ts +2 -2
- package/nrfutil/device/list.ts +1 -2
- package/nrfutil/device/program.ts +1 -1
- package/nrfutil/sandbox.ts +20 -0
- package/nrfutil/sandboxTypes.ts +6 -4
- package/package.json +1 -1
- package/typings/generated/nrfutil/device/batch.d.ts +5 -7
- package/typings/generated/nrfutil/device/batch.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/batchTypes.d.ts +2 -2
- package/typings/generated/nrfutil/device/batchTypes.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/list.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/program.d.ts +1 -0
- package/typings/generated/nrfutil/device/program.d.ts.map +1 -1
- package/typings/generated/nrfutil/sandbox.d.ts +1 -0
- package/typings/generated/nrfutil/sandbox.d.ts.map +1 -1
- package/typings/generated/nrfutil/sandboxTypes.d.ts +5 -4
- package/typings/generated/nrfutil/sandboxTypes.d.ts.map +1 -1
- package/nrfutil/device/eraseBatch.ts +0 -28
- package/nrfutil/device/firmwareReadBatch.ts +0 -42
- package/nrfutil/device/getCoreInfoBatch.ts +0 -29
- package/nrfutil/device/getFwInfoBatch.ts +0 -29
- package/nrfutil/device/getProtectionStatusBatch.ts +0 -32
- package/nrfutil/device/programBatch.ts +0 -69
- package/nrfutil/device/recoverBatch.ts +0 -28
- package/nrfutil/device/resetBatch.ts +0 -30
- package/typings/generated/nrfutil/device/eraseBatch.d.ts +0 -7
- package/typings/generated/nrfutil/device/eraseBatch.d.ts.map +0 -1
- package/typings/generated/nrfutil/device/firmwareReadBatch.d.ts +0 -9
- package/typings/generated/nrfutil/device/firmwareReadBatch.d.ts.map +0 -1
- package/typings/generated/nrfutil/device/getCoreInfoBatch.d.ts +0 -8
- package/typings/generated/nrfutil/device/getCoreInfoBatch.d.ts.map +0 -1
- package/typings/generated/nrfutil/device/getFwInfoBatch.d.ts +0 -8
- package/typings/generated/nrfutil/device/getFwInfoBatch.d.ts.map +0 -1
- package/typings/generated/nrfutil/device/getProtectionStatusBatch.d.ts +0 -8
- package/typings/generated/nrfutil/device/getProtectionStatusBatch.d.ts.map +0 -1
- package/typings/generated/nrfutil/device/programBatch.d.ts +0 -9
- package/typings/generated/nrfutil/device/programBatch.d.ts.map +0 -1
- package/typings/generated/nrfutil/device/recoverBatch.d.ts +0 -7
- package/typings/generated/nrfutil/device/recoverBatch.d.ts.map +0 -1
- package/typings/generated/nrfutil/device/resetBatch.d.ts +0 -8
- 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
|