@nordicsemiconductor/pc-nrfconnect-shared 249.0.0 → 250.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
CHANGED
|
@@ -7,12 +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
|
+
## 250.0.0 - 2026-06-05
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- nRF92 family will always have modem trait.
|
|
15
|
+
|
|
10
16
|
## 249.0.0 - 2026-06-03
|
|
11
17
|
|
|
12
18
|
### Changed
|
|
13
19
|
|
|
14
20
|
- Adjusted app release workflow for unified docs.
|
|
15
|
-
- Updated list of
|
|
21
|
+
- Updated the list of supported devices.
|
|
16
22
|
|
|
17
23
|
### Steps to upgrade when using this package
|
|
18
24
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deviceLister.d.ts","sourceRoot":"","sources":["../../../../src/Device/deviceLister.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,sBAAsB,CAAC;AACvD,OAAO,EACH,KAAK,YAAY,EAEpB,MAAM,6BAA6B,CAAC;AAGrC,OAAO,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAmBpD,OAAO,EAEH,KAAK,MAAM,EAId,MAAM,eAAe,CAAC;AAsDvB,eAAO,MAAM,QAAQ,GAAI,QAAQ,MAAM,EAAE,aAAa,UAAU,
|
|
1
|
+
{"version":3,"file":"deviceLister.d.ts","sourceRoot":"","sources":["../../../../src/Device/deviceLister.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,sBAAsB,CAAC;AACvD,OAAO,EACH,KAAK,YAAY,EAEpB,MAAM,6BAA6B,CAAC;AAGrC,OAAO,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAmBpD,OAAO,EAEH,KAAK,MAAM,EAId,MAAM,eAAe,CAAC;AAsDvB,eAAO,MAAM,QAAQ,GAAI,QAAQ,MAAM,EAAE,aAAa,UAAU,YAK3D,CAAC;AA8BN,eAAO,MAAM,oBAAoB,GAC7B,cAAc,YAAY,EAC1B,gBAAgB,YAAY,YAS3B,CAAC;AAgEN,eAAO,MAAM,oBAAoB,GAEzB,eAAe,YAAY,EAC3B,mBAAmB,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,EAC3C,sBAAsB,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,EAC9C,oBAAoB,MAAM,IAAI,EAC9B,gBAAgB,CAAC,MAAM,EAAE,MAAM,EAAE,cAAc,EAAE,OAAO,KAAK,IAAI,KAClE,QAAQ,CAAC,SAAS,EAAE,IAAI,CA4Q1B,CAAC;AAqDN,eAAO,MAAM,mBAAmB,GAAI,WAAW,MAAM,IAAI,SAGxD,CAAC"}
|
package/package.json
CHANGED
package/release_notes.md
CHANGED
|
@@ -1,18 +1,3 @@
|
|
|
1
1
|
### Changed
|
|
2
2
|
|
|
3
|
-
-
|
|
4
|
-
- Updated list of the supported devices.
|
|
5
|
-
|
|
6
|
-
### Steps to upgrade when using this package
|
|
7
|
-
|
|
8
|
-
- Update the workflows as demonstrated in
|
|
9
|
-
https://github.com/nordicsemi/pc-nrfconnect-boilerplate/pull/168:
|
|
10
|
-
- Delete the outdated `.github/workflows/docs-bundle.yml`,
|
|
11
|
-
`.github/workflows/docs-publish-dev.yml`, and
|
|
12
|
-
`.github/workflows/docs-publish-prod.yml`.
|
|
13
|
-
- If the project has documentation, then adjust the workflow
|
|
14
|
-
`.github/workflows/release.yml`: Replace the `doc_bundle_name` property
|
|
15
|
-
with a property called `unified_doc_project_name` which contains the right
|
|
16
|
-
project name from
|
|
17
|
-
https://github.com/nordicsemi/swtools-app-docs/blob/main/projects.json
|
|
18
|
-
(currently always the name of the project's repository).
|
|
3
|
+
- nRF92 family will always have modem trait.
|
|
@@ -93,7 +93,8 @@ const shouldAutoReselect = (
|
|
|
93
93
|
export const hasModem = (device: Device, deviceInfo?: DeviceInfo) =>
|
|
94
94
|
!!(
|
|
95
95
|
device.traits.modem ||
|
|
96
|
-
deviceInfo?.jlink?.deviceFamily?.toUpperCase() === 'NRF91_FAMILY'
|
|
96
|
+
deviceInfo?.jlink?.deviceFamily?.toUpperCase() === 'NRF91_FAMILY' ||
|
|
97
|
+
deviceInfo?.jlink?.deviceFamily?.toUpperCase() === 'NRF92_FAMILY'
|
|
97
98
|
);
|
|
98
99
|
|
|
99
100
|
const initAutoReconnectTimeout =
|