@fluidframework/container-loader 0.53.0-46105 → 0.53.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/dist/deltaManager.d.ts.map +1 -1
- package/dist/deltaManager.js +0 -1
- package/dist/deltaManager.js.map +1 -1
- package/dist/packageVersion.d.ts +1 -1
- package/dist/packageVersion.d.ts.map +1 -1
- package/dist/packageVersion.js +1 -1
- package/dist/packageVersion.js.map +1 -1
- package/lib/deltaManager.d.ts.map +1 -1
- package/lib/deltaManager.js +0 -1
- package/lib/deltaManager.js.map +1 -1
- package/lib/packageVersion.d.ts +1 -1
- package/lib/packageVersion.d.ts.map +1 -1
- package/lib/packageVersion.js +1 -1
- package/lib/packageVersion.js.map +1 -1
- package/package.json +8 -8
- package/src/deltaManager.ts +0 -1
- package/src/packageVersion.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/container-loader",
|
|
3
|
-
"version": "0.53.0
|
|
3
|
+
"version": "0.53.0",
|
|
4
4
|
"description": "Fluid container loader",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": "https://github.com/microsoft/FluidFramework",
|
|
@@ -58,14 +58,14 @@
|
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"@fluidframework/common-definitions": "^0.20.1",
|
|
60
60
|
"@fluidframework/common-utils": "^0.32.1",
|
|
61
|
-
"@fluidframework/container-definitions": "^0.43.0
|
|
62
|
-
"@fluidframework/container-utils": "0.53.0
|
|
61
|
+
"@fluidframework/container-definitions": "^0.43.0",
|
|
62
|
+
"@fluidframework/container-utils": "^0.53.0",
|
|
63
63
|
"@fluidframework/core-interfaces": "^0.41.0",
|
|
64
|
-
"@fluidframework/driver-definitions": "^0.43.0
|
|
65
|
-
"@fluidframework/driver-utils": "0.53.0
|
|
64
|
+
"@fluidframework/driver-definitions": "^0.43.0",
|
|
65
|
+
"@fluidframework/driver-utils": "^0.53.0",
|
|
66
66
|
"@fluidframework/protocol-base": "^0.1034.0",
|
|
67
67
|
"@fluidframework/protocol-definitions": "^0.1026.0",
|
|
68
|
-
"@fluidframework/telemetry-utils": "0.53.0
|
|
68
|
+
"@fluidframework/telemetry-utils": "^0.53.0",
|
|
69
69
|
"abort-controller": "^3.0.0",
|
|
70
70
|
"double-ended-queue": "^2.1.0-0",
|
|
71
71
|
"lodash": "^4.17.21",
|
|
@@ -74,8 +74,8 @@
|
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"@fluidframework/build-common": "^0.23.0",
|
|
76
76
|
"@fluidframework/eslint-config-fluid": "^0.24.0",
|
|
77
|
-
"@fluidframework/mocha-test-setup": "0.53.0
|
|
78
|
-
"@fluidframework/test-loader-utils": "0.53.0
|
|
77
|
+
"@fluidframework/mocha-test-setup": "^0.53.0",
|
|
78
|
+
"@fluidframework/test-loader-utils": "^0.53.0",
|
|
79
79
|
"@microsoft/api-extractor": "^7.16.1",
|
|
80
80
|
"@types/double-ended-queue": "^2.1.0",
|
|
81
81
|
"@types/lodash": "^4.14.118",
|
package/src/deltaManager.ts
CHANGED
|
@@ -633,7 +633,6 @@ export class DeltaManager
|
|
|
633
633
|
existing: connection.existing,
|
|
634
634
|
checkpointSequenceNumber: connection.checkpointSequenceNumber,
|
|
635
635
|
get initialClients() { return connection.initialClients; },
|
|
636
|
-
maxMessageSize: connection.serviceConfiguration.maxMessageSize,
|
|
637
636
|
mode: connection.mode,
|
|
638
637
|
serviceConfiguration: connection.serviceConfiguration,
|
|
639
638
|
version: connection.version,
|
package/src/packageVersion.ts
CHANGED