@nordicsemiconductor/pc-nrfconnect-shared 197.0.0 → 198.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 +20 -0
- package/package.json +1 -1
- package/scripts/nordic-publish.js +17 -17
- package/scripts/nordic-publish.ts +291 -129
- package/scripts/prepare-shared-release.ts +2 -2
- package/src/About/DeviceCard.tsx +4 -8
- package/src/Device/deviceInfo/deviceInfo.ts +79 -60
- package/src/utils/systemReport.ts +2 -5
- package/typings/generated/src/About/DeviceCard.d.ts.map +1 -1
- package/typings/generated/src/Device/deviceInfo/deviceInfo.d.ts +2 -4
- package/typings/generated/src/Device/deviceInfo/deviceInfo.d.ts.map +1 -1
- package/typings/generated/src/utils/systemReport.d.ts.map +1 -1
package/Changelog.md
CHANGED
|
@@ -7,6 +7,26 @@ 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
|
+
## 198.0.0 - 2025-02-12
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Support for publishing apps to Artifactory.
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- Product links for nRF54L15 DK, nRF54H20 DK, nRF9131 EK, nRF9151 DK, nRF9161
|
|
19
|
+
DK, and Nordic Thingy:91 X.
|
|
20
|
+
|
|
21
|
+
### Steps to upgrade when using this package
|
|
22
|
+
|
|
23
|
+
- When publishing the app via FTP (usually in the azure release pipeline), add
|
|
24
|
+
the parameter `--destination ftp` when calling the nordic-publish script.
|
|
25
|
+
- Copy the files `build.yml`, `release.yml`, and `release-latest.yml` from
|
|
26
|
+
https://github.com/NordicSemiconductor/pc-nrfconnect-boilerplate/tree/main/.github/workflows
|
|
27
|
+
to `.github/workflows`. If appropriate for an app, customise the list of
|
|
28
|
+
sources to deploy to in `release.yml`.
|
|
29
|
+
|
|
10
30
|
## 197.0.0 - 2025-02-05
|
|
11
31
|
|
|
12
32
|
### Added
|