@fluidframework/container-runtime 2.71.0 → 2.72.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/.eslintrc.cjs +2 -2
- package/CHANGELOG.md +4 -39
- package/container-runtime.test-files.tar +0 -0
- package/dist/containerRuntime.js +1 -1
- package/dist/containerRuntime.js.map +1 -1
- package/dist/dataStoreContext.js +2 -2
- package/dist/dataStoreContext.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/dist/runtimeLayerCompatState.d.ts +2 -2
- package/dist/runtimeLayerCompatState.js +1 -1
- package/dist/runtimeLayerCompatState.js.map +1 -1
- package/lib/containerRuntime.js +2 -2
- package/lib/containerRuntime.js.map +1 -1
- package/lib/dataStoreContext.js +2 -2
- package/lib/dataStoreContext.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/lib/runtimeLayerCompatState.d.ts +2 -2
- package/lib/runtimeLayerCompatState.js +1 -1
- package/lib/runtimeLayerCompatState.js.map +1 -1
- package/package.json +21 -21
- package/src/containerRuntime.ts +4 -4
- package/src/dataStoreContext.ts +3 -3
- package/src/packageVersion.ts +1 -1
- package/src/runtimeLayerCompatState.ts +1 -1
package/src/containerRuntime.ts
CHANGED
|
@@ -44,7 +44,7 @@ import type {
|
|
|
44
44
|
IContainerRuntime,
|
|
45
45
|
IContainerRuntimeEvents,
|
|
46
46
|
IContainerRuntimeInternal,
|
|
47
|
-
// eslint-disable-next-line import/no-deprecated
|
|
47
|
+
// eslint-disable-next-line import-x/no-deprecated
|
|
48
48
|
IContainerRuntimeWithResolveHandle_Deprecated,
|
|
49
49
|
JoinedStatus,
|
|
50
50
|
OutboundExtensionMessage,
|
|
@@ -161,7 +161,7 @@ import {
|
|
|
161
161
|
GenericError,
|
|
162
162
|
LoggingError,
|
|
163
163
|
PerformanceEvent,
|
|
164
|
-
// eslint-disable-next-line import/no-deprecated
|
|
164
|
+
// eslint-disable-next-line import-x/no-deprecated
|
|
165
165
|
TaggedLoggerAdapter,
|
|
166
166
|
UsageError,
|
|
167
167
|
createChildLogger,
|
|
@@ -839,7 +839,7 @@ export class ContainerRuntime
|
|
|
839
839
|
implements
|
|
840
840
|
IContainerRuntimeInternal,
|
|
841
841
|
IContainerRuntimeBaseInternal,
|
|
842
|
-
// eslint-disable-next-line import/no-deprecated
|
|
842
|
+
// eslint-disable-next-line import-x/no-deprecated
|
|
843
843
|
IContainerRuntimeWithResolveHandle_Deprecated,
|
|
844
844
|
IRuntime,
|
|
845
845
|
IGarbageCollectionRuntime,
|
|
@@ -926,7 +926,7 @@ export class ContainerRuntime
|
|
|
926
926
|
const backCompatContext: IContainerContext | OldContainerContextWithLogger = context;
|
|
927
927
|
const passLogger =
|
|
928
928
|
backCompatContext.taggedLogger ??
|
|
929
|
-
// eslint-disable-next-line import/no-deprecated
|
|
929
|
+
// eslint-disable-next-line import-x/no-deprecated
|
|
930
930
|
new TaggedLoggerAdapter((backCompatContext as OldContainerContextWithLogger).logger);
|
|
931
931
|
const logger = createChildLogger({
|
|
932
932
|
logger: passLogger,
|
package/src/dataStoreContext.ts
CHANGED
|
@@ -95,7 +95,7 @@ import {
|
|
|
95
95
|
validateDatastoreCompatibility,
|
|
96
96
|
} from "./runtimeLayerCompatState.js";
|
|
97
97
|
import {
|
|
98
|
-
// eslint-disable-next-line import/no-deprecated
|
|
98
|
+
// eslint-disable-next-line import-x/no-deprecated
|
|
99
99
|
type ReadFluidDataStoreAttributes,
|
|
100
100
|
type WriteFluidDataStoreAttributes,
|
|
101
101
|
dataStoreAttributesBlobName,
|
|
@@ -1315,7 +1315,7 @@ export class RemoteFluidDataStoreContext extends FluidDataStoreContext {
|
|
|
1315
1315
|
|
|
1316
1316
|
if (!!tree && tree.blobs[dataStoreAttributesBlobName] !== undefined) {
|
|
1317
1317
|
// Need to get through snapshot and use that to populate extraBlobs
|
|
1318
|
-
// eslint-disable-next-line import/no-deprecated
|
|
1318
|
+
// eslint-disable-next-line import-x/no-deprecated
|
|
1319
1319
|
const attributes = await readAndParse<ReadFluidDataStoreAttributes>(
|
|
1320
1320
|
this.storage,
|
|
1321
1321
|
tree.blobs[dataStoreAttributesBlobName],
|
|
@@ -1494,7 +1494,7 @@ export class LocalFluidDataStoreContextBase extends FluidDataStoreContext {
|
|
|
1494
1494
|
// eslint-disable-next-line unicorn/consistent-function-scoping -- Property is defined once; no need to extract inner lambda
|
|
1495
1495
|
private readonly initialSnapshotDetailsP = new LazyPromise<ISnapshotDetails>(async () => {
|
|
1496
1496
|
let snapshot = this.snapshotTree;
|
|
1497
|
-
// eslint-disable-next-line import/no-deprecated
|
|
1497
|
+
// eslint-disable-next-line import-x/no-deprecated
|
|
1498
1498
|
let attributes: ReadFluidDataStoreAttributes;
|
|
1499
1499
|
let isRootDataStore = false;
|
|
1500
1500
|
if (snapshot !== undefined) {
|
package/src/packageVersion.ts
CHANGED