@fluidframework/fluid-static 2.70.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/CHANGELOG.md +8 -13
- package/package.json +26 -26
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @fluidframework/fluid-static
|
|
2
2
|
|
|
3
|
+
## 2.72.0
|
|
4
|
+
|
|
5
|
+
Dependency updates only.
|
|
6
|
+
|
|
7
|
+
## 2.71.0
|
|
8
|
+
|
|
9
|
+
Dependency updates only.
|
|
10
|
+
|
|
3
11
|
## 2.70.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -119,7 +127,6 @@ Dependency updates only.
|
|
|
119
127
|
Similarly, `IDeltaManager.outbound` contained functionality that could break core runtime features such as generation of batches and chunking. Data loss or corruption could occur when `IDeltaManger.inbound.pause()` or `IDeltaManager.inbound.resume()` were called.
|
|
120
128
|
|
|
121
129
|
#### Alternatives
|
|
122
|
-
|
|
123
130
|
- Alternatives to `IDeltaManager.inbound.on("op", ...)` are `IDeltaManager.on("op", ...)`
|
|
124
131
|
- Alternatives to calling `IDeltaManager.inbound.pause`, `IDeltaManager.outbound.pause` for `IContainer` disconnect use `IContainer.disconnect`.
|
|
125
132
|
- Alternatives to calling `IDeltaManager.inbound.resume`, `IDeltaManager.outbound.resume` for `IContainer` reconnect use `IContainer.connect`.
|
|
@@ -158,7 +165,6 @@ Dependency updates only.
|
|
|
158
165
|
|
|
159
166
|
Access to these now less public types should not be required for users of the `@public` "declarative API" exposed in the `fluid-framework` package, but can still be accessed for those who need them under the `/legacy` import paths.
|
|
160
167
|
The full list of such types is:
|
|
161
|
-
|
|
162
168
|
- `SharedTree` as exported from `@fluidframwork/tree`: It is still exported as `@public` from `fluid-framework` as `SharedObjectKind`.
|
|
163
169
|
- `ISharedObjectKind`: See new `SharedObjectKind` type for use in `@public` APIs.
|
|
164
170
|
`ISharedObject`
|
|
@@ -176,7 +182,6 @@ Dependency updates only.
|
|
|
176
182
|
- `IProvideFluidHandleContext`
|
|
177
183
|
|
|
178
184
|
Removed APIs:
|
|
179
|
-
|
|
180
185
|
- `DataObjectClass`: Usages replaced with `SharedObjectKind`.
|
|
181
186
|
- `LoadableObjectClass`: Replaced with `SharedObjectKind`.
|
|
182
187
|
- `LoadableObjectClassRecord`: Replaced with `Record<string, SharedObjectKind>`.
|
|
@@ -195,7 +200,6 @@ Dependency updates only.
|
|
|
195
200
|
### Minor Changes
|
|
196
201
|
|
|
197
202
|
- Rename `AzureMember.userName` to `AzureMember.name` and `IMember.userId` to `IMember.id` [96872186d0](https://github.com/microsoft/FluidFramework/commit/96872186d0d0f245c1fece7d19b3743e501679b6)
|
|
198
|
-
|
|
199
203
|
1. Renamed `AzureMember.userName` to `AzureMember.name` to establish uniform naming across odsp-client and azure-client.
|
|
200
204
|
2. Renamed `IMember.userId` to `IMember.id` to align with the properties received from AFR.
|
|
201
205
|
|
|
@@ -210,7 +214,6 @@ Dependency updates only.
|
|
|
210
214
|
TypeScript types and implementation code.
|
|
211
215
|
|
|
212
216
|
This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
|
|
213
|
-
|
|
214
217
|
- `"moduleResolution": "Node16"` with `"module": "Node16"`
|
|
215
218
|
- `"moduleResolution": "Bundler"` with `"module": "ESNext"`
|
|
216
219
|
|
|
@@ -251,7 +254,6 @@ Dependency updates only.
|
|
|
251
254
|
- Updated server dependencies ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
|
|
252
255
|
|
|
253
256
|
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)
|
|
254
|
-
|
|
255
257
|
- @fluidframework/gitresources
|
|
256
258
|
- @fluidframework/server-kafka-orderer
|
|
257
259
|
- @fluidframework/server-lambdas
|
|
@@ -287,7 +289,6 @@ Dependency updates only.
|
|
|
287
289
|
Several FluidStatic classes were unnecessarily exposed and were deprecated in an earlier release. They have been replaced with creation functions. This helps us
|
|
288
290
|
keep implementations decoupled from usage which is easier to maintain and extend. It has very minimal impact on the
|
|
289
291
|
public surface area of downstream packages. The removed classes are as follows:
|
|
290
|
-
|
|
291
292
|
- `AzureAudience` (use `IAzureAudience` instead)
|
|
292
293
|
- `TinyliciousAudience` (use `ITinyliciousAudience` instead)
|
|
293
294
|
- `DOProviderContainerRuntimeFactory`
|
|
@@ -303,7 +304,6 @@ Dependency updates only.
|
|
|
303
304
|
Several FluidStatic classes were unnecessarily exposed. They have been replaced with creation functions. This helps us
|
|
304
305
|
keep implementations decoupled from usage which is easier to maintain and extend. It has very minimal impact on the
|
|
305
306
|
public surface area of downstream packages. The deprecated classes are as follows:
|
|
306
|
-
|
|
307
307
|
- `AzureAudience` (use `IAzureAudience` instead)
|
|
308
308
|
- `TinyliciousAudience` (use `ITinyliciousAudience` instead)
|
|
309
309
|
- `DOProviderContainerRuntimeFactory`
|
|
@@ -329,7 +329,6 @@ Dependency updates only.
|
|
|
329
329
|
- Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
330
330
|
|
|
331
331
|
This included the following changes from the protocol-definitions release:
|
|
332
|
-
|
|
333
332
|
- Updating signal interfaces for some planned improvements. The intention is split the interface between signals
|
|
334
333
|
submitted by clients to the server and the resulting signals sent from the server to clients.
|
|
335
334
|
- A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
|
|
@@ -340,7 +339,6 @@ Dependency updates only.
|
|
|
340
339
|
- Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
341
340
|
|
|
342
341
|
Dependencies on the following Fluid server package have been updated to version 2.0.1:
|
|
343
|
-
|
|
344
342
|
- @fluidframework/gitresources: 2.0.1
|
|
345
343
|
- @fluidframework/server-kafka-orderer: 2.0.1
|
|
346
344
|
- @fluidframework/server-lambdas: 2.0.1
|
|
@@ -365,7 +363,6 @@ Dependency updates only.
|
|
|
365
363
|
- test-utils: provideEntryPoint is required [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
366
364
|
|
|
367
365
|
The optional `provideEntryPoint` method has become required on a number of constructors. A value will need to be provided to the following classes:
|
|
368
|
-
|
|
369
366
|
- `BaseContainerRuntimeFactory`
|
|
370
367
|
- `RuntimeFactory`
|
|
371
368
|
- `ContainerRuntime` (constructor and `loadRuntime`)
|
|
@@ -398,7 +395,6 @@ Dependency updates only.
|
|
|
398
395
|
|
|
399
396
|
The **@fluidframework/common-definitions** package is being deprecated, so the following interfaces and types are now
|
|
400
397
|
imported from the **@fluidframework/core-interfaces** package:
|
|
401
|
-
|
|
402
398
|
- interface IDisposable
|
|
403
399
|
- interface IErrorEvent
|
|
404
400
|
- interface IErrorEvent
|
|
@@ -458,7 +454,6 @@ Dependency updates only.
|
|
|
458
454
|
### Major Changes
|
|
459
455
|
|
|
460
456
|
- The following functions and classes were deprecated in previous releases and have been removed: [8b242fdc79](https://github.com/microsoft/FluidFramework/commits/8b242fdc796714cf1da9ad3f90d02efb122af0c2)
|
|
461
|
-
|
|
462
457
|
- `PureDataObject.getFluidObjectFromDirectory`
|
|
463
458
|
- `IProvideContainerRuntime` and its `IContainerRuntime` member.
|
|
464
459
|
- `ContainerRuntime`'s `IProvideContainerRuntime` has also been removed.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/fluid-static",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.72.0",
|
|
4
4
|
"description": "A tool to enable consumption of Fluid Data Objects without requiring custom container code.",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -69,34 +69,34 @@
|
|
|
69
69
|
"temp-directory": "nyc/.nyc_output"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@fluid-internal/client-utils": "~2.
|
|
73
|
-
"@fluidframework/aqueduct": "~2.
|
|
74
|
-
"@fluidframework/container-definitions": "~2.
|
|
75
|
-
"@fluidframework/container-loader": "~2.
|
|
76
|
-
"@fluidframework/container-runtime": "~2.
|
|
77
|
-
"@fluidframework/container-runtime-definitions": "~2.
|
|
78
|
-
"@fluidframework/core-interfaces": "~2.
|
|
79
|
-
"@fluidframework/core-utils": "~2.
|
|
80
|
-
"@fluidframework/datastore-definitions": "~2.
|
|
81
|
-
"@fluidframework/driver-definitions": "~2.
|
|
82
|
-
"@fluidframework/request-handler": "~2.
|
|
83
|
-
"@fluidframework/runtime-definitions": "~2.
|
|
84
|
-
"@fluidframework/runtime-utils": "~2.
|
|
85
|
-
"@fluidframework/shared-object-base": "~2.
|
|
86
|
-
"@fluidframework/telemetry-utils": "~2.
|
|
87
|
-
"@fluidframework/tree": "~2.
|
|
72
|
+
"@fluid-internal/client-utils": "~2.72.0",
|
|
73
|
+
"@fluidframework/aqueduct": "~2.72.0",
|
|
74
|
+
"@fluidframework/container-definitions": "~2.72.0",
|
|
75
|
+
"@fluidframework/container-loader": "~2.72.0",
|
|
76
|
+
"@fluidframework/container-runtime": "~2.72.0",
|
|
77
|
+
"@fluidframework/container-runtime-definitions": "~2.72.0",
|
|
78
|
+
"@fluidframework/core-interfaces": "~2.72.0",
|
|
79
|
+
"@fluidframework/core-utils": "~2.72.0",
|
|
80
|
+
"@fluidframework/datastore-definitions": "~2.72.0",
|
|
81
|
+
"@fluidframework/driver-definitions": "~2.72.0",
|
|
82
|
+
"@fluidframework/request-handler": "~2.72.0",
|
|
83
|
+
"@fluidframework/runtime-definitions": "~2.72.0",
|
|
84
|
+
"@fluidframework/runtime-utils": "~2.72.0",
|
|
85
|
+
"@fluidframework/shared-object-base": "~2.72.0",
|
|
86
|
+
"@fluidframework/telemetry-utils": "~2.72.0",
|
|
87
|
+
"@fluidframework/tree": "~2.72.0"
|
|
88
88
|
},
|
|
89
89
|
"devDependencies": {
|
|
90
90
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
91
91
|
"@biomejs/biome": "~1.9.3",
|
|
92
|
-
"@fluid-internal/mocha-test-setup": "~2.
|
|
93
|
-
"@fluid-tools/build-cli": "^0.
|
|
92
|
+
"@fluid-internal/mocha-test-setup": "~2.72.0",
|
|
93
|
+
"@fluid-tools/build-cli": "^0.60.0",
|
|
94
94
|
"@fluidframework/build-common": "^2.0.3",
|
|
95
|
-
"@fluidframework/build-tools": "^0.
|
|
96
|
-
"@fluidframework/eslint-config-fluid": "
|
|
97
|
-
"@fluidframework/fluid-static-previous": "npm:@fluidframework/fluid-static@2.
|
|
98
|
-
"@fluidframework/map": "~2.
|
|
99
|
-
"@fluidframework/sequence": "~2.
|
|
95
|
+
"@fluidframework/build-tools": "^0.60.0",
|
|
96
|
+
"@fluidframework/eslint-config-fluid": "~2.72.0",
|
|
97
|
+
"@fluidframework/fluid-static-previous": "npm:@fluidframework/fluid-static@2.71.0",
|
|
98
|
+
"@fluidframework/map": "~2.72.0",
|
|
99
|
+
"@fluidframework/sequence": "~2.72.0",
|
|
100
100
|
"@microsoft/api-extractor": "7.52.11",
|
|
101
101
|
"@types/mocha": "^10.0.10",
|
|
102
102
|
"@types/node": "^18.19.0",
|
|
@@ -143,8 +143,8 @@
|
|
|
143
143
|
"ci:build:api-reports:legacy": "api-extractor run --config api-extractor/api-extractor.legacy.json",
|
|
144
144
|
"ci:build:docs": "api-extractor run",
|
|
145
145
|
"clean": "rimraf --glob dist lib {alpha,beta,internal,legacy}.d.ts \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc",
|
|
146
|
-
"eslint": "eslint --format stylish src",
|
|
147
|
-
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
146
|
+
"eslint": "eslint --quiet --format stylish src",
|
|
147
|
+
"eslint:fix": "eslint --quiet --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
148
148
|
"format": "npm run format:biome",
|
|
149
149
|
"format:biome": "biome check . --write",
|
|
150
150
|
"lint": "fluid-build . --task lint",
|