@fluidframework/container-runtime 2.0.0-dev.1.4.5.105745 → 2.0.0-dev.1.4.6.106135
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/dist/garbageCollection.d.ts.map +1 -1
- package/dist/garbageCollection.js +1 -1
- package/dist/garbageCollection.js.map +1 -1
- package/dist/packageVersion.d.ts +1 -1
- package/dist/packageVersion.js +1 -1
- package/dist/packageVersion.js.map +1 -1
- package/lib/garbageCollection.d.ts.map +1 -1
- package/lib/garbageCollection.js +2 -2
- package/lib/garbageCollection.js.map +1 -1
- package/lib/packageVersion.d.ts +1 -1
- package/lib/packageVersion.js +1 -1
- package/lib/packageVersion.js.map +1 -1
- package/package.json +14 -14
- package/src/garbageCollection.ts +2 -0
- package/src/packageVersion.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/container-runtime",
|
|
3
|
-
"version": "2.0.0-dev.1.4.
|
|
3
|
+
"version": "2.0.0-dev.1.4.6.106135",
|
|
4
4
|
"description": "Fluid container runtime",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -63,19 +63,19 @@
|
|
|
63
63
|
"dependencies": {
|
|
64
64
|
"@fluidframework/common-definitions": "^0.20.1",
|
|
65
65
|
"@fluidframework/common-utils": "^1.0.0",
|
|
66
|
-
"@fluidframework/container-definitions": "2.0.0-dev.1.4.
|
|
67
|
-
"@fluidframework/container-runtime-definitions": "2.0.0-dev.1.4.
|
|
68
|
-
"@fluidframework/container-utils": "2.0.0-dev.1.4.
|
|
69
|
-
"@fluidframework/core-interfaces": "2.0.0-dev.1.4.
|
|
70
|
-
"@fluidframework/datastore": "2.0.0-dev.1.4.
|
|
71
|
-
"@fluidframework/driver-definitions": "2.0.0-dev.1.4.
|
|
72
|
-
"@fluidframework/driver-utils": "2.0.0-dev.1.4.
|
|
73
|
-
"@fluidframework/garbage-collector": "2.0.0-dev.1.4.
|
|
66
|
+
"@fluidframework/container-definitions": "2.0.0-dev.1.4.6.106135",
|
|
67
|
+
"@fluidframework/container-runtime-definitions": "2.0.0-dev.1.4.6.106135",
|
|
68
|
+
"@fluidframework/container-utils": "2.0.0-dev.1.4.6.106135",
|
|
69
|
+
"@fluidframework/core-interfaces": "2.0.0-dev.1.4.6.106135",
|
|
70
|
+
"@fluidframework/datastore": "2.0.0-dev.1.4.6.106135",
|
|
71
|
+
"@fluidframework/driver-definitions": "2.0.0-dev.1.4.6.106135",
|
|
72
|
+
"@fluidframework/driver-utils": "2.0.0-dev.1.4.6.106135",
|
|
73
|
+
"@fluidframework/garbage-collector": "2.0.0-dev.1.4.6.106135",
|
|
74
74
|
"@fluidframework/protocol-base": "^0.1037.2001",
|
|
75
75
|
"@fluidframework/protocol-definitions": "^1.0.0",
|
|
76
|
-
"@fluidframework/runtime-definitions": "2.0.0-dev.1.4.
|
|
77
|
-
"@fluidframework/runtime-utils": "2.0.0-dev.1.4.
|
|
78
|
-
"@fluidframework/telemetry-utils": "2.0.0-dev.1.4.
|
|
76
|
+
"@fluidframework/runtime-definitions": "2.0.0-dev.1.4.6.106135",
|
|
77
|
+
"@fluidframework/runtime-utils": "2.0.0-dev.1.4.6.106135",
|
|
78
|
+
"@fluidframework/telemetry-utils": "2.0.0-dev.1.4.6.106135",
|
|
79
79
|
"double-ended-queue": "^2.1.0-0",
|
|
80
80
|
"uuid": "^8.3.1"
|
|
81
81
|
},
|
|
@@ -84,8 +84,8 @@
|
|
|
84
84
|
"@fluidframework/build-tools": "^0.4.4000",
|
|
85
85
|
"@fluidframework/container-runtime-previous": "npm:@fluidframework/container-runtime@^1.0.0",
|
|
86
86
|
"@fluidframework/eslint-config-fluid": "^1.0.0",
|
|
87
|
-
"@fluidframework/mocha-test-setup": "2.0.0-dev.1.4.
|
|
88
|
-
"@fluidframework/test-runtime-utils": "2.0.0-dev.1.4.
|
|
87
|
+
"@fluidframework/mocha-test-setup": "2.0.0-dev.1.4.6.106135",
|
|
88
|
+
"@fluidframework/test-runtime-utils": "2.0.0-dev.1.4.6.106135",
|
|
89
89
|
"@microsoft/api-extractor": "^7.22.2",
|
|
90
90
|
"@rushstack/eslint-config": "^2.5.1",
|
|
91
91
|
"@types/double-ended-queue": "^2.1.0",
|
package/src/garbageCollection.ts
CHANGED
|
@@ -34,6 +34,7 @@ import {
|
|
|
34
34
|
} from "@fluidframework/runtime-utils";
|
|
35
35
|
import {
|
|
36
36
|
ChildLogger,
|
|
37
|
+
generateStack,
|
|
37
38
|
loggerToMonitoringContext,
|
|
38
39
|
MonitoringContext,
|
|
39
40
|
PerformanceEvent,
|
|
@@ -1430,6 +1431,7 @@ export class GarbageCollector implements IGarbageCollector {
|
|
|
1430
1431
|
...propsToLog,
|
|
1431
1432
|
eventName: `${state}Object_${usageType}`,
|
|
1432
1433
|
pkg: packagePath ? { value: packagePath.join("/"), tag: TelemetryDataTag.CodeArtifact } : undefined,
|
|
1434
|
+
stack: generateStack(),
|
|
1433
1435
|
});
|
|
1434
1436
|
}
|
|
1435
1437
|
|
package/src/packageVersion.ts
CHANGED