@nordicsemiconductor/pc-nrfconnect-shared 128.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 +22 -6
- package/coverage/cobertura-coverage.xml +660 -379
- 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/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/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,22 @@ 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
|
+
|
|
10
26
|
## 128 - 2023-11-08
|
|
11
27
|
|
|
12
28
|
### Fixed
|
|
@@ -71,7 +87,7 @@ every new version is a new major version.
|
|
|
71
87
|
|
|
72
88
|
### Steps to upgrade when using this package
|
|
73
89
|
|
|
74
|
-
- In `package.json` bump `engines.nrfconnect` to at least `>=4.
|
|
90
|
+
- In `package.json` bump `engines.nrfconnect` to at least `>=4.3.0`.
|
|
75
91
|
- Remove `reportUsageData` property if it is set in project. If this was set
|
|
76
92
|
to true add `usageData.enableTelemetry()` as shown below. For projects like
|
|
77
93
|
launcher add `usageData.enableTelemetry()` to main and renderer window.
|
|
@@ -114,16 +130,16 @@ render(<App panes={[]} />);
|
|
|
114
130
|
- `deviceInfo` is populate automatically when a device is selected and can be
|
|
115
131
|
retrieve using the redux selector `selectedDeviceInfo`.
|
|
116
132
|
|
|
117
|
-
### Steps to upgrade when using this package
|
|
118
|
-
|
|
119
|
-
- Change `nrfConnectForDesktop.nrfutil.device` to 2.0.0.
|
|
120
|
-
- Update all device properties to match the changes above.
|
|
121
|
-
|
|
122
133
|
### Fixed
|
|
123
134
|
|
|
124
135
|
- Check installed JLink version against expected version given by nrfutil
|
|
125
136
|
(previously this was the version bundled by the launcher).
|
|
126
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
|
+
|
|
127
143
|
## 121 - 2023-10-24
|
|
128
144
|
|
|
129
145
|
### Added
|