@fluid-experimental/tree 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 +4 -4
- package/CHANGELOG.md +4 -5
- package/package.json +25 -25
package/.eslintrc.cjs
CHANGED
|
@@ -23,7 +23,7 @@ module.exports = {
|
|
|
23
23
|
'@typescript-eslint/no-shadow': 'off',
|
|
24
24
|
'no-shadow': 'off',
|
|
25
25
|
'@typescript-eslint/no-unsafe-return': 'off',
|
|
26
|
-
'import/no-deprecated': 'off',
|
|
26
|
+
'import-x/no-deprecated': 'off',
|
|
27
27
|
'@fluid-internal/fluid/no-unchecked-record-access': 'off',
|
|
28
28
|
},
|
|
29
29
|
overrides: [
|
|
@@ -34,20 +34,20 @@ module.exports = {
|
|
|
34
34
|
'@typescript-eslint/no-unused-expressions': 'off',
|
|
35
35
|
|
|
36
36
|
// Dev dependencies and internal modules may be used in test code
|
|
37
|
-
'import/no-extraneous-dependencies': [
|
|
37
|
+
'import-x/no-extraneous-dependencies': [
|
|
38
38
|
'error',
|
|
39
39
|
{
|
|
40
40
|
devDependencies: true,
|
|
41
41
|
},
|
|
42
42
|
],
|
|
43
|
-
'import/no-internal-modules': 'off',
|
|
43
|
+
'import-x/no-internal-modules': 'off',
|
|
44
44
|
},
|
|
45
45
|
},
|
|
46
46
|
{
|
|
47
47
|
files: ['**/test/**', 'src/index.ts'],
|
|
48
48
|
rules: {
|
|
49
49
|
// Test code and the main package export shouldn't be linted for unused exports
|
|
50
|
-
'import/no-unused-modules': 'off',
|
|
50
|
+
'import-x/no-unused-modules': 'off',
|
|
51
51
|
},
|
|
52
52
|
},
|
|
53
53
|
],
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# @fluid-experimental/tree
|
|
2
2
|
|
|
3
|
+
## 2.72.0
|
|
4
|
+
|
|
5
|
+
Dependency updates only.
|
|
6
|
+
|
|
3
7
|
## 2.71.0
|
|
4
8
|
|
|
5
9
|
Dependency updates only.
|
|
@@ -171,7 +175,6 @@ Dependency updates only.
|
|
|
171
175
|
TypeScript types and implementation code.
|
|
172
176
|
|
|
173
177
|
This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
|
|
174
|
-
|
|
175
178
|
- `"moduleResolution": "Node16"` with `"module": "Node16"`
|
|
176
179
|
- `"moduleResolution": "Bundler"` with `"module": "ESNext"`
|
|
177
180
|
|
|
@@ -194,7 +197,6 @@ Dependency updates only.
|
|
|
194
197
|
- Updated server dependencies ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
|
|
195
198
|
|
|
196
199
|
The following Fluid server dependencies have been updated to the latest version, 3.0.0. [See the full changelog.](https://github.com/microsoft/FluidFramework/releases/tag/server_v3.0.0)
|
|
197
|
-
|
|
198
200
|
- @fluidframework/gitresources
|
|
199
201
|
- @fluidframework/server-kafka-orderer
|
|
200
202
|
- @fluidframework/server-lambdas
|
|
@@ -248,7 +250,6 @@ Dependency updates only.
|
|
|
248
250
|
- Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
249
251
|
|
|
250
252
|
This included the following changes from the protocol-definitions release:
|
|
251
|
-
|
|
252
253
|
- Updating signal interfaces for some planned improvements. The intention is split the interface between signals
|
|
253
254
|
submitted by clients to the server and the resulting signals sent from the server to clients.
|
|
254
255
|
- A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
|
|
@@ -259,7 +260,6 @@ Dependency updates only.
|
|
|
259
260
|
- Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
260
261
|
|
|
261
262
|
Dependencies on the following Fluid server package have been updated to version 2.0.1:
|
|
262
|
-
|
|
263
263
|
- @fluidframework/gitresources: 2.0.1
|
|
264
264
|
- @fluidframework/server-kafka-orderer: 2.0.1
|
|
265
265
|
- @fluidframework/server-lambdas: 2.0.1
|
|
@@ -301,7 +301,6 @@ Dependency updates only.
|
|
|
301
301
|
|
|
302
302
|
The **@fluidframework/common-definitions** package is being deprecated, so the following interfaces and types are now
|
|
303
303
|
imported from the **@fluidframework/core-interfaces** package:
|
|
304
|
-
|
|
305
304
|
- interface IDisposable
|
|
306
305
|
- interface IErrorEvent
|
|
307
306
|
- interface IErrorEvent
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-experimental/tree",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.72.0",
|
|
4
4
|
"description": "Distributed tree",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -27,18 +27,18 @@
|
|
|
27
27
|
"main": "lib/index.js",
|
|
28
28
|
"types": "lib/index.d.ts",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@fluid-internal/client-utils": "~2.
|
|
31
|
-
"@fluidframework/container-definitions": "~2.
|
|
32
|
-
"@fluidframework/core-interfaces": "~2.
|
|
33
|
-
"@fluidframework/core-utils": "~2.
|
|
34
|
-
"@fluidframework/datastore-definitions": "~2.
|
|
35
|
-
"@fluidframework/driver-definitions": "~2.
|
|
36
|
-
"@fluidframework/id-compressor": "~2.
|
|
37
|
-
"@fluidframework/runtime-definitions": "~2.
|
|
38
|
-
"@fluidframework/runtime-utils": "~2.
|
|
39
|
-
"@fluidframework/shared-object-base": "~2.
|
|
40
|
-
"@fluidframework/telemetry-utils": "~2.
|
|
41
|
-
"@fluidframework/tree": "~2.
|
|
30
|
+
"@fluid-internal/client-utils": "~2.72.0",
|
|
31
|
+
"@fluidframework/container-definitions": "~2.72.0",
|
|
32
|
+
"@fluidframework/core-interfaces": "~2.72.0",
|
|
33
|
+
"@fluidframework/core-utils": "~2.72.0",
|
|
34
|
+
"@fluidframework/datastore-definitions": "~2.72.0",
|
|
35
|
+
"@fluidframework/driver-definitions": "~2.72.0",
|
|
36
|
+
"@fluidframework/id-compressor": "~2.72.0",
|
|
37
|
+
"@fluidframework/runtime-definitions": "~2.72.0",
|
|
38
|
+
"@fluidframework/runtime-utils": "~2.72.0",
|
|
39
|
+
"@fluidframework/shared-object-base": "~2.72.0",
|
|
40
|
+
"@fluidframework/telemetry-utils": "~2.72.0",
|
|
41
|
+
"@fluidframework/tree": "~2.72.0",
|
|
42
42
|
"@tylerbu/sorted-btree-es6": "^1.8.0",
|
|
43
43
|
"buffer": "^6.0.3",
|
|
44
44
|
"denque": "^1.5.1",
|
|
@@ -48,20 +48,20 @@
|
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
50
50
|
"@biomejs/biome": "~1.9.3",
|
|
51
|
-
"@fluid-internal/mocha-test-setup": "~2.
|
|
52
|
-
"@fluid-private/stochastic-test-utils": "~2.
|
|
53
|
-
"@fluid-private/test-drivers": "~2.
|
|
51
|
+
"@fluid-internal/mocha-test-setup": "~2.72.0",
|
|
52
|
+
"@fluid-private/stochastic-test-utils": "~2.72.0",
|
|
53
|
+
"@fluid-private/test-drivers": "~2.72.0",
|
|
54
54
|
"@fluid-tools/benchmark": "^0.51.0",
|
|
55
55
|
"@fluidframework/build-common": "^2.0.3",
|
|
56
|
-
"@fluidframework/build-tools": "^0.
|
|
57
|
-
"@fluidframework/container-definitions": "~2.
|
|
58
|
-
"@fluidframework/container-loader": "~2.
|
|
59
|
-
"@fluidframework/container-runtime": "~2.
|
|
60
|
-
"@fluidframework/eslint-config-fluid": "
|
|
61
|
-
"@fluidframework/runtime-utils": "~2.
|
|
62
|
-
"@fluidframework/test-runtime-utils": "~2.
|
|
63
|
-
"@fluidframework/test-utils": "~2.
|
|
64
|
-
"@fluidframework/undo-redo": "~2.
|
|
56
|
+
"@fluidframework/build-tools": "^0.60.0",
|
|
57
|
+
"@fluidframework/container-definitions": "~2.72.0",
|
|
58
|
+
"@fluidframework/container-loader": "~2.72.0",
|
|
59
|
+
"@fluidframework/container-runtime": "~2.72.0",
|
|
60
|
+
"@fluidframework/eslint-config-fluid": "~2.72.0",
|
|
61
|
+
"@fluidframework/runtime-utils": "~2.72.0",
|
|
62
|
+
"@fluidframework/test-runtime-utils": "~2.72.0",
|
|
63
|
+
"@fluidframework/test-utils": "~2.72.0",
|
|
64
|
+
"@fluidframework/undo-redo": "~2.72.0",
|
|
65
65
|
"@microsoft/api-extractor": "7.52.11",
|
|
66
66
|
"@types/chai": "^4.0.0",
|
|
67
67
|
"@types/lru-cache": "^5.1.0",
|