@nordicsemiconductor/pc-nrfconnect-shared 102.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 +27 -0
- package/coverage/cobertura-coverage.xml +334 -395
- package/nrfutil/device/batch.ts +147 -53
- package/nrfutil/device/batchTypes.ts +2 -2
- package/nrfutil/device/common.ts +5 -10
- package/nrfutil/device/device.ts +3 -4
- 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/src/App/App.tsx +1 -1
- package/src/Button/Button.tsx +30 -31
- package/src/Dialog/Dialog.tsx +3 -1
- package/src/Dialog/dialog.scss +0 -8
- package/src/{Panes → Feedback}/FeedbackPane.tsx +5 -36
- package/src/Feedback/sendFeedback.ts +42 -0
- package/src/index.ts +2 -0
- 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/common.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/device.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/typings/generated/src/App/App.d.ts +1 -1
- package/typings/generated/src/App/App.d.ts.map +1 -1
- package/typings/generated/src/Button/Button.d.ts.map +1 -1
- package/typings/generated/src/Dialog/Dialog.d.ts.map +1 -1
- package/typings/generated/src/Feedback/FeedbackPane.d.ts.map +1 -0
- package/typings/generated/src/Feedback/sendFeedback.d.ts +3 -0
- package/typings/generated/src/Feedback/sendFeedback.d.ts.map +1 -0
- package/typings/generated/src/index.d.ts +1 -0
- package/typings/generated/src/index.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/typings/generated/src/Panes/FeedbackPane.d.ts.map +0 -1
- /package/typings/generated/src/{Panes → Feedback}/FeedbackPane.d.ts +0 -0
package/Changelog.md
CHANGED
|
@@ -7,6 +7,33 @@ 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
|
+
|
|
22
|
+
## 103 - 2023-09-06
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
|
|
26
|
+
- Explicit export of `sendFeedback` which was a part of the `FeedbackPane`.
|
|
27
|
+
|
|
28
|
+
### Changed
|
|
29
|
+
|
|
30
|
+
- `Button` no longer has a div wrapper
|
|
31
|
+
- `Dialog.Footer` now now uses `tw-preflight`
|
|
32
|
+
|
|
33
|
+
### Steps to upgrade
|
|
34
|
+
|
|
35
|
+
- Update `nrfConnectForDesktop.nrfutil` to version 1.4.2 in `package.json`
|
|
36
|
+
|
|
10
37
|
## 102 - 2023-09-05
|
|
11
38
|
|
|
12
39
|
### Fixed
|