@nordicsemiconductor/pc-nrfconnect-shared 247.0.0 → 249.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,6 +7,34 @@ 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
+ ## 249.0.0 - 2026-06-03
11
+
12
+ ### Changed
13
+
14
+ - Adjusted app release workflow for unified docs.
15
+ - Updated list of the supported devices.
16
+
17
+ ### Steps to upgrade when using this package
18
+
19
+ - Update the workflows as demonstrated in
20
+ https://github.com/nordicsemi/pc-nrfconnect-boilerplate/pull/168:
21
+ - Delete the outdated `.github/workflows/docs-bundle.yml`,
22
+ `.github/workflows/docs-publish-dev.yml`, and
23
+ `.github/workflows/docs-publish-prod.yml`.
24
+ - If the project has documentation, then adjust the workflow
25
+ `.github/workflows/release.yml`: Replace the `doc_bundle_name` property
26
+ with a property called `unified_doc_project_name` which contains the right
27
+ project name from
28
+ https://github.com/nordicsemi/swtools-app-docs/blob/main/projects.json
29
+ (currently always the name of the project's repository).
30
+
31
+ ## 248.0.0 - 2026-05-20
32
+
33
+ ### Fixed
34
+
35
+ - In case app is executing important task application will properly reopen when
36
+ resetting defaults.
37
+
10
38
  ## 247.0.0 - 2026-04-23
11
39
 
12
40
  ### Changed
@@ -48,14 +76,12 @@ structure of `Card` changed. Follow this format:
48
76
  import { Card } from '@nordicsemiconductor/pc-nrfconnect-shared';
49
77
 
50
78
  <Card>
51
- <Card.Header className="tw-flex tw-flex-row tw-justify-between">
52
- <Card.Header.Title cardTitle="your title here" />
53
- { /* your button here */ }
54
- </Card.Header>
55
- <Card.Body>
56
- { /* your card content here */ }
57
- </Card.Body>
58
- </Card>
79
+ <Card.Header className="tw-flex tw-flex-row tw-justify-between">
80
+ <Card.Header.Title cardTitle="your title here" />
81
+ {/* your button here */}
82
+ </Card.Header>
83
+ <Card.Body>{/* your card content here */}</Card.Body>
84
+ </Card>;
59
85
  ```
60
86
 
61
87
  ## 244.0.0 - 2026-01-22