@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.
Files changed (42) hide show
  1. package/Changelog.md +41 -0
  2. package/coverage/cobertura-coverage.xml +201 -161
  3. package/ipc/safeStorage.ts +36 -0
  4. package/main/index.ts +4 -0
  5. package/nrfutil/moduleVersion.ts +1 -1
  6. package/package.json +1 -1
  7. package/scripts/release-shared.ts +1 -0
  8. package/src/Button/Button.tsx +7 -7
  9. package/src/Device/deviceInfo/deviceInfo.ts +32 -1
  10. package/src/Device/deviceInfo/nPM-Family-Series-logo.svg +1 -0
  11. package/src/Dialog/Dialog.tsx +1 -1
  12. package/src/ErrorBoundary/ErrorBoundary.tsx +2 -2
  13. package/src/FactoryReset/FactoryResetButton.tsx +1 -1
  14. package/src/Link/ExternalLink.tsx +22 -0
  15. package/src/Link/FileLink.tsx +28 -0
  16. package/src/MasonryLayout/MasonryLayout.tsx +4 -12
  17. package/src/Panes/FeedbackPane.tsx +2 -2
  18. package/src/StartStopButton/StartStopButton.tsx +1 -1
  19. package/src/index.ts +5 -0
  20. package/src/utils/logLibVersions.ts +4 -0
  21. package/src/utils/persistentStore.ts +26 -0
  22. package/src/utils/systemReport.ts +3 -0
  23. package/typings/generated/ipc/safeStorage.d.ts +12 -0
  24. package/typings/generated/ipc/safeStorage.d.ts.map +1 -0
  25. package/typings/generated/main/index.d.ts +7 -0
  26. package/typings/generated/main/index.d.ts.map +1 -1
  27. package/typings/generated/nrfutil/moduleVersion.d.ts +1 -1
  28. package/typings/generated/nrfutil/moduleVersion.d.ts.map +1 -1
  29. package/typings/generated/src/Button/Button.d.ts +2 -1
  30. package/typings/generated/src/Button/Button.d.ts.map +1 -1
  31. package/typings/generated/src/Device/deviceInfo/deviceInfo.d.ts.map +1 -1
  32. package/typings/generated/src/Link/ExternalLink.d.ts +7 -0
  33. package/typings/generated/src/Link/ExternalLink.d.ts.map +1 -0
  34. package/typings/generated/src/Link/FileLink.d.ts +7 -0
  35. package/typings/generated/src/Link/FileLink.d.ts.map +1 -0
  36. package/typings/generated/src/MasonryLayout/MasonryLayout.d.ts.map +1 -1
  37. package/typings/generated/src/index.d.ts +4 -1
  38. package/typings/generated/src/index.d.ts.map +1 -1
  39. package/typings/generated/src/utils/logLibVersions.d.ts.map +1 -1
  40. package/typings/generated/src/utils/persistentStore.d.ts +2 -0
  41. package/typings/generated/src/utils/persistentStore.d.ts.map +1 -1
  42. 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