@fluid-experimental/data-objects 2.71.0 → 2.73.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 +1 -1
- package/CHANGELOG.md +8 -2
- package/package.json +12 -12
package/.eslintrc.cjs
CHANGED
|
@@ -20,7 +20,7 @@ module.exports = {
|
|
|
20
20
|
files: ["*.spec.ts", "src/test/**"],
|
|
21
21
|
rules: {
|
|
22
22
|
// Test files are run in node only so additional node libraries can be used.
|
|
23
|
-
"import/no-nodejs-modules": ["error", { allow: ["assert"] }],
|
|
23
|
+
"import-x/no-nodejs-modules": ["error", { allow: ["assert"] }],
|
|
24
24
|
},
|
|
25
25
|
},
|
|
26
26
|
],
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @fluid-experimental/data-objects
|
|
2
2
|
|
|
3
|
+
## 2.73.0
|
|
4
|
+
|
|
5
|
+
Dependency updates only.
|
|
6
|
+
|
|
7
|
+
## 2.72.0
|
|
8
|
+
|
|
9
|
+
Dependency updates only.
|
|
10
|
+
|
|
3
11
|
## 2.71.0
|
|
4
12
|
|
|
5
13
|
Dependency updates only.
|
|
@@ -152,7 +160,6 @@ Dependency updates only.
|
|
|
152
160
|
TypeScript types and implementation code.
|
|
153
161
|
|
|
154
162
|
This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
|
|
155
|
-
|
|
156
163
|
- `"moduleResolution": "Node16"` with `"module": "Node16"`
|
|
157
164
|
- `"moduleResolution": "Bundler"` with `"module": "ESNext"`
|
|
158
165
|
|
|
@@ -216,7 +223,6 @@ Dependency updates only.
|
|
|
216
223
|
|
|
217
224
|
The **@fluidframework/common-definitions** package is being deprecated, so the following interfaces and types are now
|
|
218
225
|
imported from the **@fluidframework/core-interfaces** package:
|
|
219
|
-
|
|
220
226
|
- interface IDisposable
|
|
221
227
|
- interface IErrorEvent
|
|
222
228
|
- interface IErrorEvent
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-experimental/data-objects",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.73.0",
|
|
4
4
|
"description": "A collection of ready to use Fluid Data Objects",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -27,22 +27,22 @@
|
|
|
27
27
|
"main": "lib/index.js",
|
|
28
28
|
"types": "lib/index.d.ts",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@fluid-internal/client-utils": "~2.
|
|
31
|
-
"@fluidframework/aqueduct": "~2.
|
|
32
|
-
"@fluidframework/core-interfaces": "~2.
|
|
33
|
-
"@fluidframework/core-utils": "~2.
|
|
34
|
-
"@fluidframework/datastore-definitions": "~2.
|
|
35
|
-
"@fluidframework/map": "~2.
|
|
36
|
-
"@fluidframework/runtime-definitions": "~2.
|
|
37
|
-
"@fluidframework/shared-object-base": "~2.
|
|
30
|
+
"@fluid-internal/client-utils": "~2.73.0",
|
|
31
|
+
"@fluidframework/aqueduct": "~2.73.0",
|
|
32
|
+
"@fluidframework/core-interfaces": "~2.73.0",
|
|
33
|
+
"@fluidframework/core-utils": "~2.73.0",
|
|
34
|
+
"@fluidframework/datastore-definitions": "~2.73.0",
|
|
35
|
+
"@fluidframework/map": "~2.73.0",
|
|
36
|
+
"@fluidframework/runtime-definitions": "~2.73.0",
|
|
37
|
+
"@fluidframework/shared-object-base": "~2.73.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
41
41
|
"@biomejs/biome": "~1.9.3",
|
|
42
|
-
"@fluid-tools/build-cli": "^0.
|
|
42
|
+
"@fluid-tools/build-cli": "^0.60.0",
|
|
43
43
|
"@fluidframework/build-common": "^2.0.3",
|
|
44
|
-
"@fluidframework/build-tools": "^0.
|
|
45
|
-
"@fluidframework/eslint-config-fluid": "
|
|
44
|
+
"@fluidframework/build-tools": "^0.60.0",
|
|
45
|
+
"@fluidframework/eslint-config-fluid": "~2.73.0",
|
|
46
46
|
"@microsoft/api-extractor": "7.52.11",
|
|
47
47
|
"@types/node": "^18.19.0",
|
|
48
48
|
"concurrently": "^8.2.1",
|