@fluid-experimental/tree 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 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,13 @@
1
1
  # @fluid-experimental/tree
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.
@@ -171,7 +179,6 @@ Dependency updates only.
171
179
  TypeScript types and implementation code.
172
180
 
173
181
  This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
174
-
175
182
  - `"moduleResolution": "Node16"` with `"module": "Node16"`
176
183
  - `"moduleResolution": "Bundler"` with `"module": "ESNext"`
177
184
 
@@ -194,7 +201,6 @@ Dependency updates only.
194
201
  - Updated server dependencies ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
195
202
 
196
203
  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
204
  - @fluidframework/gitresources
199
205
  - @fluidframework/server-kafka-orderer
200
206
  - @fluidframework/server-lambdas
@@ -248,7 +254,6 @@ Dependency updates only.
248
254
  - Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
249
255
 
250
256
  This included the following changes from the protocol-definitions release:
251
-
252
257
  - Updating signal interfaces for some planned improvements. The intention is split the interface between signals
253
258
  submitted by clients to the server and the resulting signals sent from the server to clients.
254
259
  - A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
@@ -259,7 +264,6 @@ Dependency updates only.
259
264
  - Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
260
265
 
261
266
  Dependencies on the following Fluid server package have been updated to version 2.0.1:
262
-
263
267
  - @fluidframework/gitresources: 2.0.1
264
268
  - @fluidframework/server-kafka-orderer: 2.0.1
265
269
  - @fluidframework/server-lambdas: 2.0.1
@@ -301,7 +305,6 @@ Dependency updates only.
301
305
 
302
306
  The **@fluidframework/common-definitions** package is being deprecated, so the following interfaces and types are now
303
307
  imported from the **@fluidframework/core-interfaces** package:
304
-
305
308
  - interface IDisposable
306
309
  - interface IErrorEvent
307
310
  - interface IErrorEvent
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluid-experimental/tree",
3
- "version": "2.71.0",
3
+ "version": "2.73.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.71.0",
31
- "@fluidframework/container-definitions": "~2.71.0",
32
- "@fluidframework/core-interfaces": "~2.71.0",
33
- "@fluidframework/core-utils": "~2.71.0",
34
- "@fluidframework/datastore-definitions": "~2.71.0",
35
- "@fluidframework/driver-definitions": "~2.71.0",
36
- "@fluidframework/id-compressor": "~2.71.0",
37
- "@fluidframework/runtime-definitions": "~2.71.0",
38
- "@fluidframework/runtime-utils": "~2.71.0",
39
- "@fluidframework/shared-object-base": "~2.71.0",
40
- "@fluidframework/telemetry-utils": "~2.71.0",
41
- "@fluidframework/tree": "~2.71.0",
30
+ "@fluid-internal/client-utils": "~2.73.0",
31
+ "@fluidframework/container-definitions": "~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/driver-definitions": "~2.73.0",
36
+ "@fluidframework/id-compressor": "~2.73.0",
37
+ "@fluidframework/runtime-definitions": "~2.73.0",
38
+ "@fluidframework/runtime-utils": "~2.73.0",
39
+ "@fluidframework/shared-object-base": "~2.73.0",
40
+ "@fluidframework/telemetry-utils": "~2.73.0",
41
+ "@fluidframework/tree": "~2.73.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.71.0",
52
- "@fluid-private/stochastic-test-utils": "~2.71.0",
53
- "@fluid-private/test-drivers": "~2.71.0",
51
+ "@fluid-internal/mocha-test-setup": "~2.73.0",
52
+ "@fluid-private/stochastic-test-utils": "~2.73.0",
53
+ "@fluid-private/test-drivers": "~2.73.0",
54
54
  "@fluid-tools/benchmark": "^0.51.0",
55
55
  "@fluidframework/build-common": "^2.0.3",
56
- "@fluidframework/build-tools": "^0.58.3",
57
- "@fluidframework/container-definitions": "~2.71.0",
58
- "@fluidframework/container-loader": "~2.71.0",
59
- "@fluidframework/container-runtime": "~2.71.0",
60
- "@fluidframework/eslint-config-fluid": "^7.0.0",
61
- "@fluidframework/runtime-utils": "~2.71.0",
62
- "@fluidframework/test-runtime-utils": "~2.71.0",
63
- "@fluidframework/test-utils": "~2.71.0",
64
- "@fluidframework/undo-redo": "~2.71.0",
56
+ "@fluidframework/build-tools": "^0.60.0",
57
+ "@fluidframework/container-definitions": "~2.73.0",
58
+ "@fluidframework/container-loader": "~2.73.0",
59
+ "@fluidframework/container-runtime": "~2.73.0",
60
+ "@fluidframework/eslint-config-fluid": "~2.73.0",
61
+ "@fluidframework/runtime-utils": "~2.73.0",
62
+ "@fluidframework/test-runtime-utils": "~2.73.0",
63
+ "@fluidframework/test-utils": "~2.73.0",
64
+ "@fluidframework/undo-redo": "~2.73.0",
65
65
  "@microsoft/api-extractor": "7.52.11",
66
66
  "@types/chai": "^4.0.0",
67
67
  "@types/lru-cache": "^5.1.0",