@nordicsemiconductor/pc-nrfconnect-shared 192.0.0 → 194.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,19 @@ 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
+ ## 194.0.0 - 2024-12-17
11
+
12
+ ### Fixed
13
+
14
+ - nrfutil: mcu-state-set caused an error if no target was specified.
15
+
16
+ ## 193.0.0 - 2024-12-04
17
+
18
+ ### Changed
19
+
20
+ - Update @swc/core and @swc/jest to fix issues when class functions are called
21
+ via multiple ?. e.g. obj.set?.function?.()
22
+
10
23
  ## 192.0.0 - 2024-11-27
11
24
 
12
25
  ### Changed
@@ -21,5 +21,5 @@ export default (
21
21
  'mcu-state-set',
22
22
  onProgress,
23
23
  controller,
24
- [state, target ? `--target=${target}` : '']
24
+ [state, ...(target ? ['--target', target] : [])]
25
25
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nordicsemiconductor/pc-nrfconnect-shared",
3
- "version": "192.0.0",
3
+ "version": "194.0.0",
4
4
  "description": "Shared commodities for developing pc-nrfconnect-* packages",
5
5
  "repository": {
6
6
  "type": "git",
@@ -37,8 +37,8 @@
37
37
  "@reduxjs/toolkit": "1.9.3",
38
38
  "@svgr/core": "^7.0.0",
39
39
  "@svgr/plugin-jsx": "7.0.0",
40
- "@swc/core": "1.3.56",
41
- "@swc/jest": "0.2.24",
40
+ "@swc/core": "1.10.0",
41
+ "@swc/jest": "0.2.37",
42
42
  "@testing-library/jest-dom": "5.16.5",
43
43
  "@testing-library/react": "^14.0.0",
44
44
  "@types/adm-zip": "^0.5.0",