@nordicsemiconductor/pc-nrfconnect-shared 141.0.0 → 142.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,12 @@ 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
|
+
## 142.0.0 - 2023-12-13
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- `UsageData` sends common app metadata
|
|
15
|
+
|
|
10
16
|
## 141.0.0 - 2023-12-12
|
|
11
17
|
|
|
12
18
|
### Added
|
package/package.json
CHANGED
|
@@ -52,12 +52,14 @@ const init = () => {
|
|
|
52
52
|
envelope.data.baseData = { name: envelope.data?.baseData.name };
|
|
53
53
|
} else {
|
|
54
54
|
envelope.tags['ai.cloud.roleInstance'] = undefined; // remove PC name
|
|
55
|
-
envelope.data.baseData
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
55
|
+
if (envelope.data.baseData) {
|
|
56
|
+
envelope.data.baseData.properties = {
|
|
57
|
+
applicationName,
|
|
58
|
+
applicationVersion,
|
|
59
|
+
isDevelopment,
|
|
60
|
+
...envelope.data.baseData.properties,
|
|
61
|
+
};
|
|
62
|
+
}
|
|
61
63
|
}
|
|
62
64
|
|
|
63
65
|
return true;
|
|
@@ -66,12 +66,12 @@ const init = async () => {
|
|
|
66
66
|
name: applicationName,
|
|
67
67
|
};
|
|
68
68
|
envelope.ext = { ...envelope.ext, trace };
|
|
69
|
-
envelope.
|
|
69
|
+
envelope.data = {
|
|
70
|
+
...envelope.data,
|
|
70
71
|
applicationName,
|
|
71
72
|
applicationVersion,
|
|
72
73
|
isDevelopment,
|
|
73
74
|
source,
|
|
74
|
-
...envelope.baseData,
|
|
75
75
|
};
|
|
76
76
|
}
|
|
77
77
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"usageDataMain.d.ts","sourceRoot":"","sources":["../../../../src/utils/usageDataMain.ts"],"names":[],"mappings":"AAUA,OAAwB,EAEpB,QAAQ,EACX,MAAM,mBAAmB,CAAC;;;;;;;;
|
|
1
|
+
{"version":3,"file":"usageDataMain.d.ts","sourceRoot":"","sources":["../../../../src/utils/usageDataMain.ts"],"names":[],"mappings":"AAUA,OAAwB,EAEpB,QAAQ,EACX,MAAM,mBAAmB,CAAC;;;;;;;;AAmG3B,wBAME"}
|