@nordicsemiconductor/pc-nrfconnect-shared 233.0.0 → 234.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
|
+
## 234.0.0 - 2025-10-21
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- In Telemetry disabled sending dependency events.
|
|
15
|
+
|
|
10
16
|
## 233.0.0 - 2025-10-10
|
|
11
17
|
|
|
12
18
|
### Changed
|
package/package.json
CHANGED
package/release_notes.md
CHANGED
|
@@ -24,12 +24,24 @@ export default class TelemetrySenderInRenderer extends TelemetrySender {
|
|
|
24
24
|
|
|
25
25
|
const accountId = getTelemetryClientId();
|
|
26
26
|
|
|
27
|
+
// Fix issue with duplicate events being sent https://github.com/microsoft/ApplicationInsights-JS/issues/796
|
|
28
|
+
const removeDuplicateEvents = {
|
|
29
|
+
isStorageUseDisabled: true,
|
|
30
|
+
namePrefix: applicationName,
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
// According to https://github.com/microsoft/ApplicationInsights-JS/issues/2655#issuecomment-3423857757 this might be the way to disable dependency events
|
|
34
|
+
const disableDependencyEvents = {
|
|
35
|
+
disableAjaxTracking: true,
|
|
36
|
+
disableFetchTracking: true,
|
|
37
|
+
};
|
|
38
|
+
|
|
27
39
|
this.client = new ApplicationInsights({
|
|
28
40
|
config: {
|
|
29
41
|
instrumentationKey: this.INSTRUMENTATION_KEY,
|
|
30
42
|
accountId, // to hide with removeAllMetadata
|
|
31
|
-
|
|
32
|
-
|
|
43
|
+
...removeDuplicateEvents,
|
|
44
|
+
...disableDependencyEvents,
|
|
33
45
|
},
|
|
34
46
|
});
|
|
35
47
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TelemetrySenderInRenderer.d.ts","sourceRoot":"","sources":["../../../../src/telemetry/TelemetrySenderInRenderer.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,oCAAoC,CAAC;AAMzE,OAAO,iBAAiB,MAAM,qBAAqB,CAAC;AACpD,OAAO,eAAe,MAAM,mBAAmB,CAAC;AAEhD,MAAM,CAAC,OAAO,OAAO,yBAA0B,SAAQ,eAAe;IAClE,MAAM,CAAC,EAAE,mBAAmB,CAAC;IAEvB,UAAU;
|
|
1
|
+
{"version":3,"file":"TelemetrySenderInRenderer.d.ts","sourceRoot":"","sources":["../../../../src/telemetry/TelemetrySenderInRenderer.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,oCAAoC,CAAC;AAMzE,OAAO,iBAAiB,MAAM,qBAAqB,CAAC;AACpD,OAAO,eAAe,MAAM,mBAAmB,CAAC;AAEhD,MAAM,CAAC,OAAO,OAAO,yBAA0B,SAAQ,eAAe;IAClE,MAAM,CAAC,EAAE,mBAAmB,CAAC;IAEvB,UAAU;IAyDhB,SAAS,2DAA0C;IAEnD,SAAS,GAAU,QAAQ,MAAM,EAAE,WAAW,iBAAiB,mBAG7D;IAEF,YAAY,GAAU,UAAU,MAAM,mBACyB;IAE/D,UAAU,GAAU,MAAM,MAAM,EAAE,SAAS,MAAM,mBACW;IAE5D,SAAS,GAAU,SAAS,MAAM,mBACmB;IAErD,eAAe,GAAU,OAAO,KAAK,mBAGnC;IAEF,KAAK,sBAAgD;IAErD,IAAI,IAAI,IAAI;CAOf"}
|