@nordicsemiconductor/pc-nrfconnect-shared 173.0.0 → 174.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,21 +7,43 @@ 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
+ ## 174.0.0 - 2024-04-30
11
+
12
+ ### Added
13
+
14
+ - `setPaneDisabled` to disable a pane from the `NavMenu`.
15
+ - `setPaneHidden` to hide a pane from the `NavMenu`.
16
+ - `preHidden` and `preDisabled` properties in `Pane` type passed to `App`.
17
+ - Publish timestamp for nordic-publish for non-official sources.
18
+
19
+ #### Changed
20
+
21
+ - `currentPane` now returns the current pane name instead of index.
22
+ - Persisted `currentPane` value is now the pane name instead of index.
23
+
24
+ ### Removed
25
+
26
+ - Removed upload of legacy app info files when publishing apps.
27
+
28
+ ### Steps to upgrade when using this package
29
+
30
+ - Update all `currentPane` calls to work with strings instead of indexes.
31
+
10
32
  ## 173.0.0 - 2024-04-23
11
33
 
12
34
  ### Added
13
35
 
14
- - Support for splitting M1 and x64 nrfutil sandboxes
36
+ - Support for splitting M1 and x64 nrfutil sandboxes.
15
37
 
16
38
  ## 172.0.0 - 2024-04-15
17
39
 
18
40
  ### Fixed
19
41
 
20
- - nrf9151 and nrf9131 not have the modem trait set to true
42
+ - nrf9151 and nrf9131 not have the modem trait set to true.
21
43
 
22
44
  ### Changed
23
45
 
24
- - All `NRF91` devices are now considered to have modem trait
46
+ - All `NRF91` devices are now considered to have modem trait.
25
47
 
26
48
  ## 171.0.0 - 2024-04-04
27
49
 
package/ipc/MetaFiles.ts CHANGED
@@ -21,6 +21,7 @@ export type AppVersions = {
21
21
 
22
22
  export type AppVersion = {
23
23
  shasum?: string;
24
+ publishTimestamp?: string;
24
25
  tarballUrl: UrlString;
25
26
  nrfutilModules?: NrfutilModules;
26
27
  };
package/ipc/apps.ts CHANGED
@@ -34,6 +34,7 @@ interface Installed {
34
34
  repositoryUrl?: UrlString;
35
35
  html?: string;
36
36
  installed: {
37
+ publishTimestamp?: string;
37
38
  path: string;
38
39
  shasum?: string;
39
40
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nordicsemiconductor/pc-nrfconnect-shared",
3
- "version": "173.0.0",
3
+ "version": "174.0.0",
4
4
  "description": "Shared commodities for developing pc-nrfconnect-* packages",
5
5
  "repository": {
6
6
  "type": "git",