@nordicsemiconductor/pc-nrfconnect-shared 96.0.0 → 98.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 +41 -0
- package/coverage/cobertura-coverage.xml +201 -161
- package/ipc/safeStorage.ts +36 -0
- package/main/index.ts +4 -0
- package/nrfutil/moduleVersion.ts +1 -1
- package/package.json +1 -1
- package/scripts/release-shared.ts +1 -0
- package/src/Button/Button.tsx +7 -7
- package/src/Device/deviceInfo/deviceInfo.ts +32 -1
- package/src/Device/deviceInfo/nPM-Family-Series-logo.svg +1 -0
- package/src/Dialog/Dialog.tsx +1 -1
- package/src/ErrorBoundary/ErrorBoundary.tsx +2 -2
- package/src/FactoryReset/FactoryResetButton.tsx +1 -1
- package/src/Link/ExternalLink.tsx +22 -0
- package/src/Link/FileLink.tsx +28 -0
- package/src/MasonryLayout/MasonryLayout.tsx +4 -12
- package/src/Panes/FeedbackPane.tsx +2 -2
- package/src/StartStopButton/StartStopButton.tsx +1 -1
- package/src/index.ts +5 -0
- package/src/utils/logLibVersions.ts +4 -0
- package/src/utils/persistentStore.ts +26 -0
- package/src/utils/systemReport.ts +3 -0
- package/typings/generated/ipc/safeStorage.d.ts +12 -0
- package/typings/generated/ipc/safeStorage.d.ts.map +1 -0
- package/typings/generated/main/index.d.ts +7 -0
- package/typings/generated/main/index.d.ts.map +1 -1
- package/typings/generated/nrfutil/moduleVersion.d.ts +1 -1
- package/typings/generated/nrfutil/moduleVersion.d.ts.map +1 -1
- package/typings/generated/src/Button/Button.d.ts +2 -1
- package/typings/generated/src/Button/Button.d.ts.map +1 -1
- package/typings/generated/src/Device/deviceInfo/deviceInfo.d.ts.map +1 -1
- package/typings/generated/src/Link/ExternalLink.d.ts +7 -0
- package/typings/generated/src/Link/ExternalLink.d.ts.map +1 -0
- package/typings/generated/src/Link/FileLink.d.ts +7 -0
- package/typings/generated/src/Link/FileLink.d.ts.map +1 -0
- package/typings/generated/src/MasonryLayout/MasonryLayout.d.ts.map +1 -1
- package/typings/generated/src/index.d.ts +4 -1
- package/typings/generated/src/index.d.ts.map +1 -1
- package/typings/generated/src/utils/logLibVersions.d.ts.map +1 -1
- package/typings/generated/src/utils/persistentStore.d.ts +2 -0
- package/typings/generated/src/utils/persistentStore.d.ts.map +1 -1
- package/typings/generated/src/utils/systemReport.d.ts.map +1 -1
package/Changelog.md
CHANGED
|
@@ -7,6 +7,47 @@ 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
|
+
## 98 - 2023-08-30
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Logging for nrf-probe-lib
|
|
15
|
+
- Persisted api keys securely using `getPersistedApiKey` and `persistApiKey`
|
|
16
|
+
- `xl` size for `Button` component with bigger font.
|
|
17
|
+
- `ExternalLink` component.
|
|
18
|
+
- `FileLink` component.
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
- `MasonryLayout` ResizeObserver loop limit exceeded error
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
|
|
26
|
+
- `Button` component now uses a `size` property instead of a boolean `large`.
|
|
27
|
+
|
|
28
|
+
### Removed
|
|
29
|
+
|
|
30
|
+
- `link` variant of `Button` component.
|
|
31
|
+
|
|
32
|
+
### Steps to upgrade
|
|
33
|
+
|
|
34
|
+
- Replace `large` properties of the `Button` component with `size="lg"`
|
|
35
|
+
- Replace any occurrence of `link` variant `Button`s with `ExternalLink` or
|
|
36
|
+
`FileLink`.
|
|
37
|
+
|
|
38
|
+
## 97 - 2023-08-29
|
|
39
|
+
|
|
40
|
+
### Added
|
|
41
|
+
|
|
42
|
+
- Functions to invoke functionality in the main process via IPC:
|
|
43
|
+
- `safeStorage.encryptionAvailable()`
|
|
44
|
+
- `safeStorage.encryptString(plainText)`
|
|
45
|
+
- `safeStorage.decryptString(encrypted)`
|
|
46
|
+
- Icons and links for:
|
|
47
|
+
- `PCA10152`
|
|
48
|
+
- `PCA10153`
|
|
49
|
+
- `PCA20049`
|
|
50
|
+
|
|
10
51
|
## 96 - 2023-08-25
|
|
11
52
|
|
|
12
53
|
### Added
|