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