@fluidframework/container-loader 2.40.0-336023 → 2.41.0-337492

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.
@@ -5,5 +5,5 @@
5
5
  * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY
6
6
  */
7
7
  export declare const pkgName = "@fluidframework/container-loader";
8
- export declare const pkgVersion = "2.40.0-336023";
8
+ export declare const pkgVersion = "2.41.0-337492";
9
9
  //# sourceMappingURL=packageVersion.d.ts.map
@@ -5,5 +5,5 @@
5
5
  * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY
6
6
  */
7
7
  export const pkgName = "@fluidframework/container-loader";
8
- export const pkgVersion = "2.40.0-336023";
8
+ export const pkgVersion = "2.41.0-337492";
9
9
  //# sourceMappingURL=packageVersion.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,kCAAkC,CAAC;AAC1D,MAAM,CAAC,MAAM,UAAU,GAAG,eAAe,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/container-loader\";\nexport const pkgVersion = \"2.40.0-336023\";\n"]}
1
+ {"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,kCAAkC,CAAC;AAC1D,MAAM,CAAC,MAAM,UAAU,GAAG,eAAe,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/container-loader\";\nexport const pkgVersion = \"2.41.0-337492\";\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/container-loader",
3
- "version": "2.40.0-336023",
3
+ "version": "2.41.0-337492",
4
4
  "description": "Fluid container loader",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -119,13 +119,13 @@
119
119
  "temp-directory": "nyc/.nyc_output"
120
120
  },
121
121
  "dependencies": {
122
- "@fluid-internal/client-utils": "2.40.0-336023",
123
- "@fluidframework/container-definitions": "2.40.0-336023",
124
- "@fluidframework/core-interfaces": "2.40.0-336023",
125
- "@fluidframework/core-utils": "2.40.0-336023",
126
- "@fluidframework/driver-definitions": "2.40.0-336023",
127
- "@fluidframework/driver-utils": "2.40.0-336023",
128
- "@fluidframework/telemetry-utils": "2.40.0-336023",
122
+ "@fluid-internal/client-utils": "2.41.0-337492",
123
+ "@fluidframework/container-definitions": "2.41.0-337492",
124
+ "@fluidframework/core-interfaces": "2.41.0-337492",
125
+ "@fluidframework/core-utils": "2.41.0-337492",
126
+ "@fluidframework/driver-definitions": "2.41.0-337492",
127
+ "@fluidframework/driver-utils": "2.41.0-337492",
128
+ "@fluidframework/telemetry-utils": "2.41.0-337492",
129
129
  "@types/events_pkg": "npm:@types/events@^3.0.0",
130
130
  "@ungap/structured-clone": "^1.2.0",
131
131
  "debug": "^4.3.4",
@@ -136,9 +136,9 @@
136
136
  "devDependencies": {
137
137
  "@arethetypeswrong/cli": "^0.17.1",
138
138
  "@biomejs/biome": "~1.9.3",
139
- "@fluid-internal/client-utils": "2.40.0-336023",
140
- "@fluid-internal/mocha-test-setup": "2.40.0-336023",
141
- "@fluid-private/test-loader-utils": "2.40.0-336023",
139
+ "@fluid-internal/client-utils": "2.41.0-337492",
140
+ "@fluid-internal/mocha-test-setup": "2.41.0-337492",
141
+ "@fluid-private/test-loader-utils": "2.41.0-337492",
142
142
  "@fluid-tools/build-cli": "^0.55.0",
143
143
  "@fluidframework/build-common": "^2.0.3",
144
144
  "@fluidframework/build-tools": "^0.55.0",
package/src/container.ts CHANGED
@@ -72,7 +72,6 @@ import {
72
72
  ISequencedDocumentMessage,
73
73
  ISignalMessage,
74
74
  type ConnectionMode,
75
- type IContainerPackageInfo,
76
75
  } from "@fluidframework/driver-definitions/internal";
77
76
  import {
78
77
  getSnapshotTree,
@@ -715,17 +714,6 @@ export class Container
715
714
  return this._loadedCodeDetails;
716
715
  }
717
716
 
718
- /**
719
- * Get the package info for the code details that were used to load the container.
720
- * @returns The package info for the code details that were used to load the container if it is loaded, undefined otherwise
721
- * @deprecated To be removed in 2.40.
722
- * Use getLoadedCodeDetails instead; see https://github.com/microsoft/FluidFramework/issues/23898 for details.
723
- * Deprecating the function here to avoid polluting public container api surface.
724
- */
725
- public getContainerPackageInfo?(): IContainerPackageInfo | undefined {
726
- return getPackageName(this._loadedCodeDetails);
727
- }
728
-
729
717
  private _loadedModule: IFluidModuleWithDetails | undefined;
730
718
 
731
719
  /**
@@ -1835,7 +1823,7 @@ export class Container
1835
1823
  if (attachmentBlobs !== undefined) {
1836
1824
  assert(
1837
1825
  this.detachedBlobStorage !== undefined,
1838
- "detached blob storage should always exist when detached",
1826
+ 0xb8e /* detached blob storage should always exist when detached */,
1839
1827
  );
1840
1828
  tryInitializeMemoryDetachedBlobStorage(this.detachedBlobStorage, attachmentBlobs);
1841
1829
  }
@@ -6,4 +6,4 @@
6
6
  */
7
7
 
8
8
  export const pkgName = "@fluidframework/container-loader";
9
- export const pkgVersion = "2.40.0-336023";
9
+ export const pkgVersion = "2.41.0-337492";