@nordicsemiconductor/pc-nrfconnect-shared 127.0.0 → 129.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 +29 -6
- package/coverage/cobertura-coverage.xml +675 -394
- package/nrfutil/device/batch.ts +9 -4
- package/nrfutil/device/common.ts +2 -0
- package/nrfutil/device/list.ts +1 -1
- package/{src/utils → nrfutil/device}/logLibVersions.ts +20 -6
- package/nrfutil/sandbox.ts +248 -48
- package/nrfutil/sandboxTypes.ts +4 -7
- package/package.json +2 -1
- package/src/InlineInput/InlineInput.tsx +3 -3
- package/src/InlineInput/NumberInputWithDropdown.tsx +4 -0
- package/src/logging/sendInitialLogMessages.ts +0 -24
- package/src/utils/systemReport.ts +24 -11
- package/typings/generated/nrfutil/device/batch.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/common.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/logLibVersions.d.ts +4 -0
- package/typings/generated/nrfutil/device/logLibVersions.d.ts.map +1 -0
- package/typings/generated/nrfutil/sandbox.d.ts +14 -5
- package/typings/generated/nrfutil/sandbox.d.ts.map +1 -1
- package/typings/generated/nrfutil/sandboxTypes.d.ts +4 -7
- package/typings/generated/nrfutil/sandboxTypes.d.ts.map +1 -1
- package/typings/generated/src/InlineInput/InlineInput.d.ts +1 -0
- package/typings/generated/src/InlineInput/InlineInput.d.ts.map +1 -1
- package/typings/generated/src/InlineInput/NumberInputWithDropdown.d.ts.map +1 -1
- package/typings/generated/src/logging/sendInitialLogMessages.d.ts.map +1 -1
- package/typings/generated/src/utils/systemReport.d.ts.map +1 -1
- package/typings/generated/src/utils/logLibVersions.d.ts +0 -3
- package/typings/generated/src/utils/logLibVersions.d.ts.map +0 -1
package/Changelog.md
CHANGED
|
@@ -7,6 +7,29 @@ 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
|
+
## 129 - 2023-11-13
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- `nrfutil` sandbox now allows caller to pass optional lambda to manipulate
|
|
15
|
+
the env values
|
|
16
|
+
- `nrfutil` provides an alternative to spawn and just exec
|
|
17
|
+
- `nrfutil device` auto logs version information when it is initialed for the
|
|
18
|
+
first time.
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- `ErrorBoundary` only collect device lib info if these app adds nrfutil
|
|
23
|
+
device as a dependency in `package.json`
|
|
24
|
+
- `App` no longer logs nrfutil device version.
|
|
25
|
+
|
|
26
|
+
## 128 - 2023-11-08
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
|
|
30
|
+
- `NumberInputSliderWithUnit` component did not disable all sub-components
|
|
31
|
+
- `NumberInputSliderWithUnit` did not update when external value changed
|
|
32
|
+
|
|
10
33
|
## 127 - 2023-11-08
|
|
11
34
|
|
|
12
35
|
### Fixed
|
|
@@ -64,7 +87,7 @@ every new version is a new major version.
|
|
|
64
87
|
|
|
65
88
|
### Steps to upgrade when using this package
|
|
66
89
|
|
|
67
|
-
- In `package.json` bump `engines.nrfconnect` to at least `>=4.
|
|
90
|
+
- In `package.json` bump `engines.nrfconnect` to at least `>=4.3.0`.
|
|
68
91
|
- Remove `reportUsageData` property if it is set in project. If this was set
|
|
69
92
|
to true add `usageData.enableTelemetry()` as shown below. For projects like
|
|
70
93
|
launcher add `usageData.enableTelemetry()` to main and renderer window.
|
|
@@ -107,16 +130,16 @@ render(<App panes={[]} />);
|
|
|
107
130
|
- `deviceInfo` is populate automatically when a device is selected and can be
|
|
108
131
|
retrieve using the redux selector `selectedDeviceInfo`.
|
|
109
132
|
|
|
110
|
-
### Steps to upgrade when using this package
|
|
111
|
-
|
|
112
|
-
- Change `nrfConnectForDesktop.nrfutil.device` to 2.0.0.
|
|
113
|
-
- Update all device properties to match the changes above.
|
|
114
|
-
|
|
115
133
|
### Fixed
|
|
116
134
|
|
|
117
135
|
- Check installed JLink version against expected version given by nrfutil
|
|
118
136
|
(previously this was the version bundled by the launcher).
|
|
119
137
|
|
|
138
|
+
### Steps to upgrade when using this package
|
|
139
|
+
|
|
140
|
+
- Change `nrfConnectForDesktop.nrfutil.device` to 2.0.0.
|
|
141
|
+
- Update all device properties to match the changes above.
|
|
142
|
+
|
|
120
143
|
## 121 - 2023-10-24
|
|
121
144
|
|
|
122
145
|
### Added
|