@fluidframework/fluid-static 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/CHANGELOG.md +8 -13
- package/package.json +24 -24
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @fluidframework/fluid-static
|
|
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.
|
|
@@ -123,7 +131,6 @@ Dependency updates only.
|
|
|
123
131
|
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.
|
|
124
132
|
|
|
125
133
|
#### Alternatives
|
|
126
|
-
|
|
127
134
|
- Alternatives to `IDeltaManager.inbound.on("op", ...)` are `IDeltaManager.on("op", ...)`
|
|
128
135
|
- Alternatives to calling `IDeltaManager.inbound.pause`, `IDeltaManager.outbound.pause` for `IContainer` disconnect use `IContainer.disconnect`.
|
|
129
136
|
- Alternatives to calling `IDeltaManager.inbound.resume`, `IDeltaManager.outbound.resume` for `IContainer` reconnect use `IContainer.connect`.
|
|
@@ -162,7 +169,6 @@ Dependency updates only.
|
|
|
162
169
|
|
|
163
170
|
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.
|
|
164
171
|
The full list of such types is:
|
|
165
|
-
|
|
166
172
|
- `SharedTree` as exported from `@fluidframwork/tree`: It is still exported as `@public` from `fluid-framework` as `SharedObjectKind`.
|
|
167
173
|
- `ISharedObjectKind`: See new `SharedObjectKind` type for use in `@public` APIs.
|
|
168
174
|
`ISharedObject`
|
|
@@ -180,7 +186,6 @@ Dependency updates only.
|
|
|
180
186
|
- `IProvideFluidHandleContext`
|
|
181
187
|
|
|
182
188
|
Removed APIs:
|
|
183
|
-
|
|
184
189
|
- `DataObjectClass`: Usages replaced with `SharedObjectKind`.
|
|
185
190
|
- `LoadableObjectClass`: Replaced with `SharedObjectKind`.
|
|
186
191
|
- `LoadableObjectClassRecord`: Replaced with `Record<string, SharedObjectKind>`.
|
|
@@ -199,7 +204,6 @@ Dependency updates only.
|
|
|
199
204
|
### Minor Changes
|
|
200
205
|
|
|
201
206
|
- Rename `AzureMember.userName` to `AzureMember.name` and `IMember.userId` to `IMember.id` [96872186d0](https://github.com/microsoft/FluidFramework/commit/96872186d0d0f245c1fece7d19b3743e501679b6)
|
|
202
|
-
|
|
203
207
|
1. Renamed `AzureMember.userName` to `AzureMember.name` to establish uniform naming across odsp-client and azure-client.
|
|
204
208
|
2. Renamed `IMember.userId` to `IMember.id` to align with the properties received from AFR.
|
|
205
209
|
|
|
@@ -214,7 +218,6 @@ Dependency updates only.
|
|
|
214
218
|
TypeScript types and implementation code.
|
|
215
219
|
|
|
216
220
|
This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
|
|
217
|
-
|
|
218
221
|
- `"moduleResolution": "Node16"` with `"module": "Node16"`
|
|
219
222
|
- `"moduleResolution": "Bundler"` with `"module": "ESNext"`
|
|
220
223
|
|
|
@@ -255,7 +258,6 @@ Dependency updates only.
|
|
|
255
258
|
- Updated server dependencies ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
|
|
256
259
|
|
|
257
260
|
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)
|
|
258
|
-
|
|
259
261
|
- @fluidframework/gitresources
|
|
260
262
|
- @fluidframework/server-kafka-orderer
|
|
261
263
|
- @fluidframework/server-lambdas
|
|
@@ -291,7 +293,6 @@ Dependency updates only.
|
|
|
291
293
|
Several FluidStatic classes were unnecessarily exposed and were deprecated in an earlier release. They have been replaced with creation functions. This helps us
|
|
292
294
|
keep implementations decoupled from usage which is easier to maintain and extend. It has very minimal impact on the
|
|
293
295
|
public surface area of downstream packages. The removed classes are as follows:
|
|
294
|
-
|
|
295
296
|
- `AzureAudience` (use `IAzureAudience` instead)
|
|
296
297
|
- `TinyliciousAudience` (use `ITinyliciousAudience` instead)
|
|
297
298
|
- `DOProviderContainerRuntimeFactory`
|
|
@@ -307,7 +308,6 @@ Dependency updates only.
|
|
|
307
308
|
Several FluidStatic classes were unnecessarily exposed. They have been replaced with creation functions. This helps us
|
|
308
309
|
keep implementations decoupled from usage which is easier to maintain and extend. It has very minimal impact on the
|
|
309
310
|
public surface area of downstream packages. The deprecated classes are as follows:
|
|
310
|
-
|
|
311
311
|
- `AzureAudience` (use `IAzureAudience` instead)
|
|
312
312
|
- `TinyliciousAudience` (use `ITinyliciousAudience` instead)
|
|
313
313
|
- `DOProviderContainerRuntimeFactory`
|
|
@@ -333,7 +333,6 @@ Dependency updates only.
|
|
|
333
333
|
- Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
334
334
|
|
|
335
335
|
This included the following changes from the protocol-definitions release:
|
|
336
|
-
|
|
337
336
|
- Updating signal interfaces for some planned improvements. The intention is split the interface between signals
|
|
338
337
|
submitted by clients to the server and the resulting signals sent from the server to clients.
|
|
339
338
|
- A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
|
|
@@ -344,7 +343,6 @@ Dependency updates only.
|
|
|
344
343
|
- Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
345
344
|
|
|
346
345
|
Dependencies on the following Fluid server package have been updated to version 2.0.1:
|
|
347
|
-
|
|
348
346
|
- @fluidframework/gitresources: 2.0.1
|
|
349
347
|
- @fluidframework/server-kafka-orderer: 2.0.1
|
|
350
348
|
- @fluidframework/server-lambdas: 2.0.1
|
|
@@ -369,7 +367,6 @@ Dependency updates only.
|
|
|
369
367
|
- test-utils: provideEntryPoint is required [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
370
368
|
|
|
371
369
|
The optional `provideEntryPoint` method has become required on a number of constructors. A value will need to be provided to the following classes:
|
|
372
|
-
|
|
373
370
|
- `BaseContainerRuntimeFactory`
|
|
374
371
|
- `RuntimeFactory`
|
|
375
372
|
- `ContainerRuntime` (constructor and `loadRuntime`)
|
|
@@ -402,7 +399,6 @@ Dependency updates only.
|
|
|
402
399
|
|
|
403
400
|
The **@fluidframework/common-definitions** package is being deprecated, so the following interfaces and types are now
|
|
404
401
|
imported from the **@fluidframework/core-interfaces** package:
|
|
405
|
-
|
|
406
402
|
- interface IDisposable
|
|
407
403
|
- interface IErrorEvent
|
|
408
404
|
- interface IErrorEvent
|
|
@@ -462,7 +458,6 @@ Dependency updates only.
|
|
|
462
458
|
### Major Changes
|
|
463
459
|
|
|
464
460
|
- The following functions and classes were deprecated in previous releases and have been removed: [8b242fdc79](https://github.com/microsoft/FluidFramework/commits/8b242fdc796714cf1da9ad3f90d02efb122af0c2)
|
|
465
|
-
|
|
466
461
|
- `PureDataObject.getFluidObjectFromDirectory`
|
|
467
462
|
- `IProvideContainerRuntime` and its `IContainerRuntime` member.
|
|
468
463
|
- `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.73.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.73.0",
|
|
73
|
+
"@fluidframework/aqueduct": "~2.73.0",
|
|
74
|
+
"@fluidframework/container-definitions": "~2.73.0",
|
|
75
|
+
"@fluidframework/container-loader": "~2.73.0",
|
|
76
|
+
"@fluidframework/container-runtime": "~2.73.0",
|
|
77
|
+
"@fluidframework/container-runtime-definitions": "~2.73.0",
|
|
78
|
+
"@fluidframework/core-interfaces": "~2.73.0",
|
|
79
|
+
"@fluidframework/core-utils": "~2.73.0",
|
|
80
|
+
"@fluidframework/datastore-definitions": "~2.73.0",
|
|
81
|
+
"@fluidframework/driver-definitions": "~2.73.0",
|
|
82
|
+
"@fluidframework/request-handler": "~2.73.0",
|
|
83
|
+
"@fluidframework/runtime-definitions": "~2.73.0",
|
|
84
|
+
"@fluidframework/runtime-utils": "~2.73.0",
|
|
85
|
+
"@fluidframework/shared-object-base": "~2.73.0",
|
|
86
|
+
"@fluidframework/telemetry-utils": "~2.73.0",
|
|
87
|
+
"@fluidframework/tree": "~2.73.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.73.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.73.0",
|
|
97
|
+
"@fluidframework/fluid-static-previous": "npm:@fluidframework/fluid-static@2.71.0",
|
|
98
|
+
"@fluidframework/map": "~2.73.0",
|
|
99
|
+
"@fluidframework/sequence": "~2.73.0",
|
|
100
100
|
"@microsoft/api-extractor": "7.52.11",
|
|
101
101
|
"@types/mocha": "^10.0.10",
|
|
102
102
|
"@types/node": "^18.19.0",
|