@fluidframework/datastore 2.92.0 → 2.93.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/datastore",
3
- "version": "2.92.0",
3
+ "version": "2.93.0",
4
4
  "description": "Fluid data store implementation",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -69,33 +69,33 @@
69
69
  "temp-directory": "nyc/.nyc_output"
70
70
  },
71
71
  "dependencies": {
72
- "@fluid-internal/client-utils": "~2.92.0",
73
- "@fluidframework/container-definitions": "~2.92.0",
74
- "@fluidframework/core-interfaces": "~2.92.0",
75
- "@fluidframework/core-utils": "~2.92.0",
76
- "@fluidframework/datastore-definitions": "~2.92.0",
77
- "@fluidframework/driver-definitions": "~2.92.0",
78
- "@fluidframework/driver-utils": "~2.92.0",
79
- "@fluidframework/id-compressor": "~2.92.0",
80
- "@fluidframework/runtime-definitions": "~2.92.0",
81
- "@fluidframework/runtime-utils": "~2.92.0",
82
- "@fluidframework/telemetry-utils": "~2.92.0",
72
+ "@fluid-internal/client-utils": "~2.93.0",
73
+ "@fluidframework/container-definitions": "~2.93.0",
74
+ "@fluidframework/core-interfaces": "~2.93.0",
75
+ "@fluidframework/core-utils": "~2.93.0",
76
+ "@fluidframework/datastore-definitions": "~2.93.0",
77
+ "@fluidframework/driver-definitions": "~2.93.0",
78
+ "@fluidframework/driver-utils": "~2.93.0",
79
+ "@fluidframework/id-compressor": "~2.93.0",
80
+ "@fluidframework/runtime-definitions": "~2.93.0",
81
+ "@fluidframework/runtime-utils": "~2.93.0",
82
+ "@fluidframework/telemetry-utils": "~2.93.0",
83
83
  "uuid": "^11.1.0"
84
84
  },
85
85
  "devDependencies": {
86
86
  "@arethetypeswrong/cli": "^0.18.2",
87
87
  "@biomejs/biome": "~2.4.5",
88
- "@fluid-internal/mocha-test-setup": "~2.92.0",
88
+ "@fluid-internal/mocha-test-setup": "~2.93.0",
89
89
  "@fluid-tools/build-cli": "^0.64.0",
90
90
  "@fluidframework/build-common": "^2.0.3",
91
91
  "@fluidframework/build-tools": "^0.64.0",
92
- "@fluidframework/datastore-previous": "npm:@fluidframework/datastore@2.91.0",
92
+ "@fluidframework/datastore-previous": "npm:@fluidframework/datastore@2.92.0",
93
93
  "@fluidframework/eslint-config-fluid": "^9.0.0",
94
- "@fluidframework/test-runtime-utils": "~2.92.0",
95
- "@microsoft/api-extractor": "7.52.11",
94
+ "@fluidframework/test-runtime-utils": "~2.93.0",
95
+ "@microsoft/api-extractor": "7.58.1",
96
96
  "@types/lodash": "^4.14.118",
97
97
  "@types/mocha": "^10.0.10",
98
- "@types/node": "~20.19.30",
98
+ "@types/node": "~22.19.17",
99
99
  "@types/sinon": "^17.0.3",
100
100
  "c8": "^10.1.3",
101
101
  "concurrently": "^9.2.1",
@@ -110,7 +110,11 @@
110
110
  "typescript": "~5.4.5"
111
111
  },
112
112
  "typeValidation": {
113
- "broken": {},
113
+ "broken": {
114
+ "Class_FluidDataStoreRuntime": {
115
+ "forwardCompat": false
116
+ }
117
+ },
114
118
  "entrypoint": "legacy"
115
119
  },
116
120
  "scripts": {
@@ -158,7 +162,6 @@
158
162
  "test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
159
163
  "tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && npm run place:cjs:package-stub",
160
164
  "tsc:watch": "npm run place:cjs:package-stub && fluid-tsc commonjs --project ./tsconfig.cjs.json --watch",
161
- "typetests:gen": "flub generate typetests --dir . -v",
162
- "typetests:prepare": "flub typetests --dir . --reset --previous --normalize"
165
+ "typetests:gen": "flub generate typetests --dir . -v"
163
166
  }
164
167
  }
@@ -383,9 +383,13 @@ export class FluidDataStoreRuntime
383
383
  private readonly submitMessagesWithoutEncodingHandles: boolean;
384
384
 
385
385
  /**
386
- * See `IFluidDataStoreRuntimeInternalConfig.minVersionForCollab`.
386
+ * See IFluidDataStoreRuntimeInternalConfig.minVersionForCollab
387
+ *
388
+ * Note: this class doesn't declare that it implements IFluidDataStoreRuntimeInternalConfig,
389
+ * and we keep this property as private, but consumers may optimistically cast
390
+ * to the internal interface to access this property.
387
391
  */
388
- public readonly minVersionForCollab?: MinimumVersionForCollab | undefined;
392
+ public readonly minVersionForCollab: MinimumVersionForCollab;
389
393
 
390
394
  /**
391
395
  * Create an instance of a DataStore runtime.
@@ -6,4 +6,4 @@
6
6
  */
7
7
 
8
8
  export const pkgName = "@fluidframework/datastore";
9
- export const pkgVersion = "2.92.0";
9
+ export const pkgVersion = "2.93.0";