@nordicsemiconductor/pc-nrfconnect-shared 104.0.0 → 106.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 +17 -0
- package/coverage/cobertura-coverage.xml +618 -123
- package/nrfutil/device/list.ts +23 -8
- package/package.json +3 -2
- package/src/App/app.scss +3 -2
- package/src/Device/deviceLister.ts +3 -1
- package/src/Parsers/shellParser.test.ts +1033 -0
- package/src/Parsers/shellParser.ts +534 -0
- package/src/StartStopButton/StartStopButton.tsx +3 -0
- package/src/index.ts +6 -0
- package/typings/generated/nrfutil/device/list.d.ts.map +1 -1
- package/typings/generated/src/Device/deviceLister.d.ts.map +1 -1
- package/typings/generated/src/Parsers/shellParser.d.ts +40 -0
- package/typings/generated/src/Parsers/shellParser.d.ts.map +1 -0
- package/typings/generated/src/Parsers/shellParser.test.d.ts +2 -0
- package/typings/generated/src/Parsers/shellParser.test.d.ts.map +1 -0
- package/typings/generated/src/StartStopButton/StartStopButton.d.ts +1 -0
- package/typings/generated/src/StartStopButton/StartStopButton.d.ts.map +1 -1
- package/typings/generated/src/index.d.ts +1 -0
- package/typings/generated/src/index.d.ts.map +1 -1
package/Changelog.md
CHANGED
|
@@ -7,6 +7,23 @@ 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
|
+
## 106 - 2023-09-13
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- `shellParser` utility
|
|
15
|
+
- `StartStopButton` now also takes in optional `title` property
|
|
16
|
+
|
|
17
|
+
## 105 - 2023-09-11
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
|
|
21
|
+
- Log warning for any nrfutil device that was not enumerated
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- Log device list errors.
|
|
26
|
+
|
|
10
27
|
## 104 - 2023-09-08
|
|
11
28
|
|
|
12
29
|
### Changed
|