@fluidframework/datastore 2.30.0 → 2.31.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 CHANGED
@@ -1,32 +1,46 @@
1
1
  # @fluidframework/datastore
2
2
 
3
+ ## 2.31.0
4
+
5
+ ### Minor Changes
6
+
7
+ - New ILayerCompatDetails property on FluidDataStoreRuntime, MockFluidDataStoreContext and MockFluidDataStoreRuntime ([#24166](https://github.com/microsoft/FluidFramework/pull/24166)) [fac75c8258](https://github.com/microsoft/FluidFramework/commit/fac75c8258c979a6b15a70b9cf84df09f62b3e93)
8
+
9
+ A new optional property, `ILayerCompatDetails`, has been added to `FluidDataStoreRuntime`. This property is used by
10
+ `FluidDataStoreContext` in the Runtime layer to validate that the Runtime and DataStore layers are compatible.
11
+
12
+ `ILayerCompatDetails` has also been added to `MockFluidDataStoreRuntime` and `MockFluidDataStoreContext` which are used for
13
+ testing.
14
+
15
+ Important: this property is intended for use by Fluid Framework code only. No code outside the Fluid Framework should use or depend on this property in any way.
16
+
3
17
  ## 2.30.0
4
18
 
5
19
  ### Minor Changes
6
20
 
7
- - The process and processDocumentSchemaOp functions have been removed ([#24018](https://github.com/microsoft/FluidFramework/pull/24018)) [bc35d543d5](https://github.com/microsoft/FluidFramework/commit/bc35d543d58c7e4bf28944b09d645cc26bf28a29)
21
+ - The process and processDocumentSchemaOp functions have been removed ([#24018](https://github.com/microsoft/FluidFramework/pull/24018)) [bc35d543d5](https://github.com/microsoft/FluidFramework/commit/bc35d543d58c7e4bf28944b09d645cc26bf28a29)
8
22
 
9
- `process` has been replaced by `processMessages` from the following:
23
+ `process` has been replaced by `processMessages` from the following:
10
24
 
11
- - `FluidDataStoreRuntime`
12
- - `IDeltaHandler`
13
- - `IFluidDataStoreChannel`
14
- - `MockFluidDataStoreRuntime`
15
- - `MockDeltaConnection`
25
+ - `FluidDataStoreRuntime`
26
+ - `IDeltaHandler`
27
+ - `IFluidDataStoreChannel`
28
+ - `MockFluidDataStoreRuntime`
29
+ - `MockDeltaConnection`
16
30
 
17
- `processDocumentSchemaOp` has been replaced by `processDocumentSchemaMessages` from `DocumentsSchemaController`.
31
+ `processDocumentSchemaOp` has been replaced by `processDocumentSchemaMessages` from `DocumentsSchemaController`.
18
32
 
19
- See the [deprecation release note](https://github.com/microsoft/FluidFramework/releases/tag/client_v2.5.0#user-content-the-process-function-on-ifluiddatastorechannel-ideltahandler-mockfluiddatastoreruntime-and-mockdeltaconnection-is-now-deprecated-22840) for more details.
33
+ See the [deprecation release note](https://github.com/microsoft/FluidFramework/releases/tag/client_v2.5.0#user-content-the-process-function-on-ifluiddatastorechannel-ideltahandler-mockfluiddatastoreruntime-and-mockdeltaconnection-is-now-deprecated-22840) for more details.
20
34
 
21
35
  ## 2.23.0
22
36
 
23
37
  ### Minor Changes
24
38
 
25
- - The FluidDataStoreRuntime.process function is now deprecated ([#23866](https://github.com/microsoft/FluidFramework/pull/23866)) [3f44d43e985](https://github.com/microsoft/FluidFramework/commit/3f44d43e985fea02ea349d024d3ae5d85f7eddd6)
39
+ - The FluidDataStoreRuntime.process function is now deprecated ([#23866](https://github.com/microsoft/FluidFramework/pull/23866)) [3f44d43e985](https://github.com/microsoft/FluidFramework/commit/3f44d43e985fea02ea349d024d3ae5d85f7eddd6)
26
40
 
27
- A new function `processMessages` has been added in place of `process`. The new function will be called to process multiple messages instead of a single one on the data store runtime. This is part of a feature called "op bunching" where contiguous ops of a given type and to a given data store / DDS are bunched and sent together for processing.
41
+ A new function `processMessages` has been added in place of `process`. The new function will be called to process multiple messages instead of a single one on the data store runtime. This is part of a feature called "op bunching" where contiguous ops of a given type and to a given data store / DDS are bunched and sent together for processing.
28
42
 
29
- Note that `process` may still be called in scenarios where this data store runtime (Datastore layer) is running with an older version of data store context (Runtime layer) in the same client. This is to support Fluid layer compatibility.
43
+ Note that `process` may still be called in scenarios where this data store runtime (Datastore layer) is running with an older version of data store context (Runtime layer) in the same client. This is to support Fluid layer compatibility.
30
44
 
31
45
  ## 2.22.0
32
46
 
@@ -40,18 +54,18 @@ Dependency updates only.
40
54
 
41
55
  ### Minor Changes
42
56
 
43
- - The createDataStoreWithProps APIs on ContainerRuntime and IContainerRuntimeBase have been removed ([#22996](https://github.com/microsoft/FluidFramework/pull/22996)) [bd243fb292](https://github.com/microsoft/FluidFramework/commit/bd243fb2927915d87c42486e21ee0c990962a9a7)
57
+ - The createDataStoreWithProps APIs on ContainerRuntime and IContainerRuntimeBase have been removed ([#22996](https://github.com/microsoft/FluidFramework/pull/22996)) [bd243fb292](https://github.com/microsoft/FluidFramework/commit/bd243fb2927915d87c42486e21ee0c990962a9a7)
44
58
 
45
- `ContainerRuntime.createDataStoreWithProps` and `IContainerRuntimeBase.createDataStoreWithProps`
46
- were [deprecated in version 0.25.0](https://github.com/microsoft/FluidFramework/blob/main/BREAKING.md#icontainerruntimebase_createdatastorewithprops-is-removed) and have been removed.
59
+ `ContainerRuntime.createDataStoreWithProps` and `IContainerRuntimeBase.createDataStoreWithProps`
60
+ were [deprecated in version 0.25.0](https://github.com/microsoft/FluidFramework/blob/main/BREAKING.md#icontainerruntimebase_createdatastorewithprops-is-removed) and have been removed.
47
61
 
48
- Replace uses of these APIs with `PureDataObjectFactory.createInstanceWithDataStore` and pass in props via the `initialState`
49
- parameter.
62
+ Replace uses of these APIs with `PureDataObjectFactory.createInstanceWithDataStore` and pass in props via the `initialState`
63
+ parameter.
50
64
 
51
- These changes were originally announced in version 0.25.0. See the following issues for more details:
65
+ These changes were originally announced in version 0.25.0. See the following issues for more details:
52
66
 
53
- - [#1537](https://github.com/microsoft/FluidFramework/issues/1537)
54
- - [#2931](https://github.com/microsoft/FluidFramework/pull/2931)
67
+ - [#1537](https://github.com/microsoft/FluidFramework/issues/1537)
68
+ - [#2931](https://github.com/microsoft/FluidFramework/pull/2931)
55
69
 
56
70
  ## 2.13.0
57
71
 
@@ -69,19 +83,19 @@ Dependency updates only.
69
83
 
70
84
  ### Minor Changes
71
85
 
72
- - The inbound and outbound properties have been removed from IDeltaManager ([#22282](https://github.com/microsoft/FluidFramework/pull/22282)) [45a57693f2](https://github.com/microsoft/FluidFramework/commit/45a57693f291e0dc5e91af7f29a9b9c8f82dfad5)
86
+ - The inbound and outbound properties have been removed from IDeltaManager ([#22282](https://github.com/microsoft/FluidFramework/pull/22282)) [45a57693f2](https://github.com/microsoft/FluidFramework/commit/45a57693f291e0dc5e91af7f29a9b9c8f82dfad5)
73
87
 
74
- The inbound and outbound properties were [deprecated in version 2.0.0-rc.2.0.0](https://github.com/microsoft/FluidFramework/blob/main/RELEASE_NOTES/2.0.0-rc.2.0.0.md#container-definitions-deprecate-ideltamanagerinbound-and-ideltamanageroutbound) and have been removed from `IDeltaManager`.
88
+ The inbound and outbound properties were [deprecated in version 2.0.0-rc.2.0.0](https://github.com/microsoft/FluidFramework/blob/main/RELEASE_NOTES/2.0.0-rc.2.0.0.md#container-definitions-deprecate-ideltamanagerinbound-and-ideltamanageroutbound) and have been removed from `IDeltaManager`.
75
89
 
76
- `IDeltaManager.inbound` contained functionality that could break core runtime features such as summarization and processing batches if used improperly. Data loss or corruption could occur when `IDeltaManger.inbound.pause()` or `IDeltaManager.inbound.resume()` were called.
90
+ `IDeltaManager.inbound` contained functionality that could break core runtime features such as summarization and processing batches if used improperly. Data loss or corruption could occur when `IDeltaManger.inbound.pause()` or `IDeltaManager.inbound.resume()` were called.
77
91
 
78
- 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.
92
+ 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.
79
93
 
80
- #### Alternatives
94
+ #### Alternatives
81
95
 
82
- - Alternatives to `IDeltaManager.inbound.on("op", ...)` are `IDeltaManager.on("op", ...)`
83
- - Alternatives to calling `IDeltaManager.inbound.pause`, `IDeltaManager.outbound.pause` for `IContainer` disconnect use `IContainer.disconnect`.
84
- - Alternatives to calling `IDeltaManager.inbound.resume`, `IDeltaManager.outbound.resume` for `IContainer` reconnect use `IContainer.connect`.
96
+ - Alternatives to `IDeltaManager.inbound.on("op", ...)` are `IDeltaManager.on("op", ...)`
97
+ - Alternatives to calling `IDeltaManager.inbound.pause`, `IDeltaManager.outbound.pause` for `IContainer` disconnect use `IContainer.disconnect`.
98
+ - Alternatives to calling `IDeltaManager.inbound.resume`, `IDeltaManager.outbound.resume` for `IContainer` reconnect use `IContainer.connect`.
85
99
 
86
100
  ## 2.5.0
87
101
 
@@ -107,153 +121,153 @@ Dependency updates only.
107
121
 
108
122
  ### Minor Changes
109
123
 
110
- - Update to TypeScript 5.4 ([#21214](https://github.com/microsoft/FluidFramework/pull/21214)) [0e6256c722](https://github.com/microsoft/FluidFramework/commit/0e6256c722d8bf024f4325bf02547daeeb18bfa6)
124
+ - Update to TypeScript 5.4 ([#21214](https://github.com/microsoft/FluidFramework/pull/21214)) [0e6256c722](https://github.com/microsoft/FluidFramework/commit/0e6256c722d8bf024f4325bf02547daeeb18bfa6)
111
125
 
112
- Update package implementations to use TypeScript 5.4.5.
126
+ Update package implementations to use TypeScript 5.4.5.
113
127
 
114
128
  ## 2.0.0-rc.4.0.0
115
129
 
116
130
  ### Minor Changes
117
131
 
118
- - Type Erase IFluidDataStoreRuntime.deltaManager [96872186d0](https://github.com/microsoft/FluidFramework/commit/96872186d0d0f245c1fece7d19b3743e501679b6)
132
+ - Type Erase IFluidDataStoreRuntime.deltaManager [96872186d0](https://github.com/microsoft/FluidFramework/commit/96872186d0d0f245c1fece7d19b3743e501679b6)
119
133
 
120
- Make IFluidDataStoreRuntime.deltaManager have an opaque type.
121
- Marks the following types which were reachable from it as alpha:
134
+ Make IFluidDataStoreRuntime.deltaManager have an opaque type.
135
+ Marks the following types which were reachable from it as alpha:
122
136
 
123
- - IConnectionDetails
124
- - IDeltaSender
125
- - IDeltaManagerEvents
126
- - IDeltaManager
127
- - IDeltaQueueEvents
128
- - IDeltaQueue
129
- - ReadOnlyInfo
137
+ - IConnectionDetails
138
+ - IDeltaSender
139
+ - IDeltaManagerEvents
140
+ - IDeltaManager
141
+ - IDeltaQueueEvents
142
+ - IDeltaQueue
143
+ - ReadOnlyInfo
130
144
 
131
- As a temporary workaround, users needing access to the full delta manager API can use the `@alpha` `toDeltaManagerInternal` API to retrieve its members, but should migrate away from requiring access to those APIs.
145
+ As a temporary workaround, users needing access to the full delta manager API can use the `@alpha` `toDeltaManagerInternal` API to retrieve its members, but should migrate away from requiring access to those APIs.
132
146
 
133
- Implementing a custom `IFluidDataStoreRuntime` is not supported: this is now indicated by it being marked with `@sealed`.
147
+ Implementing a custom `IFluidDataStoreRuntime` is not supported: this is now indicated by it being marked with `@sealed`.
134
148
 
135
149
  ## 2.0.0-rc.3.0.0
136
150
 
137
151
  ### Major Changes
138
152
 
139
- - Packages now use package.json "exports" and require modern module resolution [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
153
+ - Packages now use package.json "exports" and require modern module resolution [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
140
154
 
141
- Fluid Framework packages have been updated to use the [package.json "exports"
142
- field](https://nodejs.org/docs/latest-v18.x/api/packages.html#exports) to define explicit entry points for both
143
- TypeScript types and implementation code.
155
+ Fluid Framework packages have been updated to use the [package.json "exports"
156
+ field](https://nodejs.org/docs/latest-v18.x/api/packages.html#exports) to define explicit entry points for both
157
+ TypeScript types and implementation code.
144
158
 
145
- This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
159
+ This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
146
160
 
147
- - `"moduleResolution": "Node16"` with `"module": "Node16"`
148
- - `"moduleResolution": "Bundler"` with `"module": "ESNext"`
161
+ - `"moduleResolution": "Node16"` with `"module": "Node16"`
162
+ - `"moduleResolution": "Bundler"` with `"module": "ESNext"`
149
163
 
150
- We recommend using Node16/Node16 unless absolutely necessary. That will produce transpiled JavaScript that is suitable
151
- for use with modern versions of Node.js _and_ Bundlers.
152
- [See the TypeScript documentation](https://www.typescriptlang.org/tsconfig#moduleResolution) for more information
153
- regarding the module and moduleResolution options.
164
+ We recommend using Node16/Node16 unless absolutely necessary. That will produce transpiled JavaScript that is suitable
165
+ for use with modern versions of Node.js _and_ Bundlers.
166
+ [See the TypeScript documentation](https://www.typescriptlang.org/tsconfig#moduleResolution) for more information
167
+ regarding the module and moduleResolution options.
154
168
 
155
- **Node10 moduleResolution is not supported; it does not support Fluid Framework's API structuring pattern that is used
156
- to distinguish stable APIs from those that are in development.**
169
+ **Node10 moduleResolution is not supported; it does not support Fluid Framework's API structuring pattern that is used
170
+ to distinguish stable APIs from those that are in development.**
157
171
 
158
172
  ## 2.0.0-rc.2.0.0
159
173
 
160
174
  ### Minor Changes
161
175
 
162
- - container-runtime: New feature: ID compression for DataStores & DDSs ([#19859](https://github.com/microsoft/FluidFramework/issues/19859)) [51f0d3db73](https://github.com/microsoft/FluidFramework/commits/51f0d3db737800e1c30ea5e3952d38ff30ffc7da)
176
+ - container-runtime: New feature: ID compression for DataStores & DDSs ([#19859](https://github.com/microsoft/FluidFramework/issues/19859)) [51f0d3db73](https://github.com/microsoft/FluidFramework/commits/51f0d3db737800e1c30ea5e3952d38ff30ffc7da)
163
177
 
164
- ### Key changes
178
+ ### Key changes
165
179
 
166
- 1. A new API IContainerRuntimeBase.generateDocumentUniqueId() is exposed. This API will opportunistically generate IDs in short format (non-negative numbers). If it can't achieve that, it will return UUID strings. UUIDs generated will have low entropy in groups and will compress well. It can be leveraged anywhere in container where container unique IDs are required. I.e. any place that uses uuid() and stores data in container is likely candidate to start leveraging this API.
167
- 2. Data store internal IDs (IDs that are auto generated by FF system) will opportunistically be generated in shorter form. Data stores created in detached container will always have short IDs, data stores created in attached container will opportunistically be short (by using newly added IContainerRuntimeBase.generateDocumentUniqueId() capability)
168
- 3. Similar DDS names will be opportunistically short (same considerations for detached DDS vs. attached DDS)
180
+ 1. A new API IContainerRuntimeBase.generateDocumentUniqueId() is exposed. This API will opportunistically generate IDs in short format (non-negative numbers). If it can't achieve that, it will return UUID strings. UUIDs generated will have low entropy in groups and will compress well. It can be leveraged anywhere in container where container unique IDs are required. I.e. any place that uses uuid() and stores data in container is likely candidate to start leveraging this API.
181
+ 2. Data store internal IDs (IDs that are auto generated by FF system) will opportunistically be generated in shorter form. Data stores created in detached container will always have short IDs, data stores created in attached container will opportunistically be short (by using newly added IContainerRuntimeBase.generateDocumentUniqueId() capability)
182
+ 3. Similar DDS names will be opportunistically short (same considerations for detached DDS vs. attached DDS)
169
183
 
170
- ### Implementation details
184
+ ### Implementation details
171
185
 
172
- 1. Container level ID Compressor can now be enabled with delay. With such setting, only new IContainerRuntimeBase.generateDocumentUniqueId() is exposed (ID Compressor is not exposed in such case, as leveraging any of its other capabilities requires future container sessions to load ID Compressor on container load, for correctness reasons). Once Container establishes connection and any changes are made in container, newly added API will start generating more compact IDs (in most cases).
186
+ 1. Container level ID Compressor can now be enabled with delay. With such setting, only new IContainerRuntimeBase.generateDocumentUniqueId() is exposed (ID Compressor is not exposed in such case, as leveraging any of its other capabilities requires future container sessions to load ID Compressor on container load, for correctness reasons). Once Container establishes connection and any changes are made in container, newly added API will start generating more compact IDs (in most cases).
173
187
 
174
- ### Breaking changes
188
+ ### Breaking changes
175
189
 
176
- 1. DDS names can no longer start with "\_" symbol - this is reserved for FF needs. I've validated that's not an issue for AzureClient (it only creates root object by name, everything else is referred by handle). Our main internal partners almost never use named DDSs (I can find only 4 instances in Loop).
190
+ 1. DDS names can no longer start with "\_" symbol - this is reserved for FF needs. I've validated that's not an issue for AzureClient (it only creates root object by name, everything else is referred by handle). Our main internal partners almost never use named DDSs (I can find only 4 instances in Loop).
177
191
 
178
- ### Backward compatibility considerations
192
+ ### Backward compatibility considerations
179
193
 
180
- 1. Data store internal IDs could collide with earlier used names data stores. Earlier versions of FF framework (before DataStore aliasing feature was added) allowed customers to supply IDs for data stores. And thus, files created with earlier versions of framework could have data store IDs that will be similar to names FF will use for newly created data stores ("A", ... "Z", "a"..."z", "AA", etc.). While such collision is possible, it's very unlikely (almost impossible) if user-provided names were at least 4-5 characters long.
181
- 2. If application runs to these problems, or wants to reduce risks, consider disabling ID compressor via IContainerRuntimeOptions.enableRuntimeIdCompressor = "off".
194
+ 1. Data store internal IDs could collide with earlier used names data stores. Earlier versions of FF framework (before DataStore aliasing feature was added) allowed customers to supply IDs for data stores. And thus, files created with earlier versions of framework could have data store IDs that will be similar to names FF will use for newly created data stores ("A", ... "Z", "a"..."z", "AA", etc.). While such collision is possible, it's very unlikely (almost impossible) if user-provided names were at least 4-5 characters long.
195
+ 2. If application runs to these problems, or wants to reduce risks, consider disabling ID compressor via IContainerRuntimeOptions.enableRuntimeIdCompressor = "off".
182
196
 
183
- ### Minor changes
197
+ ### Minor changes
184
198
 
185
- 1. IContainerRuntime.createDetachedRootDataStore() is removed. Please use IContainerRuntime.createDetachedDataStore and IDataStore.trySetAlias() instead
186
- 2. IContainerRuntimeOptions.enableRuntimeIdCompressor has been changes from boolean to tri-state.
199
+ 1. IContainerRuntime.createDetachedRootDataStore() is removed. Please use IContainerRuntime.createDetachedDataStore and IDataStore.trySetAlias() instead
200
+ 2. IContainerRuntimeOptions.enableRuntimeIdCompressor has been changes from boolean to tri-state.
187
201
 
188
- - Deprecated error-related enums have been removed ([#19067](https://github.com/microsoft/FluidFramework/issues/19067)) [59793302e5](https://github.com/microsoft/FluidFramework/commits/59793302e56784cfb6ace0e6469345f3565b3312)
202
+ - Deprecated error-related enums have been removed ([#19067](https://github.com/microsoft/FluidFramework/issues/19067)) [59793302e5](https://github.com/microsoft/FluidFramework/commits/59793302e56784cfb6ace0e6469345f3565b3312)
189
203
 
190
- Error-related enums `ContainerErrorType`, `DriverErrorType`, `OdspErrorType` and `RouterliciousErrorType` were previously
191
- deprecated and are now removed. There are replacement object-based enumerations of `ContainerErrorTypes`,
192
- `DriverErrorTypes`, `OdspErrorTypes` and `RouterliciousErrorTypes`. Refer to the release notes of [Fluid Framework version
193
- 2.0.0-internal.7.0.0](https://github.com/microsoft/FluidFramework/releases/tag/client_v2.0.0-internal.7.0.0) for details
194
- on the replacements.
204
+ Error-related enums `ContainerErrorType`, `DriverErrorType`, `OdspErrorType` and `RouterliciousErrorType` were previously
205
+ deprecated and are now removed. There are replacement object-based enumerations of `ContainerErrorTypes`,
206
+ `DriverErrorTypes`, `OdspErrorTypes` and `RouterliciousErrorTypes`. Refer to the release notes of [Fluid Framework version
207
+ 2.0.0-internal.7.0.0](https://github.com/microsoft/FluidFramework/releases/tag/client_v2.0.0-internal.7.0.0) for details
208
+ on the replacements.
195
209
 
196
- - container-definitions: ILoaderOptions no longer accepts arbitrary key/value pairs ([#19306](https://github.com/microsoft/FluidFramework/issues/19306)) [741926e225](https://github.com/microsoft/FluidFramework/commits/741926e2253a161504ecc6a6451d8f15d7ac4ed6)
210
+ - container-definitions: ILoaderOptions no longer accepts arbitrary key/value pairs ([#19306](https://github.com/microsoft/FluidFramework/issues/19306)) [741926e225](https://github.com/microsoft/FluidFramework/commits/741926e2253a161504ecc6a6451d8f15d7ac4ed6)
197
211
 
198
- ILoaderOptions has been narrowed to the specific set of supported loader options, and may no longer be used to pass arbitrary key/value pairs through to the runtime.
212
+ ILoaderOptions has been narrowed to the specific set of supported loader options, and may no longer be used to pass arbitrary key/value pairs through to the runtime.
199
213
 
200
214
  ## 2.0.0-rc.1.0.0
201
215
 
202
216
  ### Minor Changes
203
217
 
204
- - Updated server dependencies ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
205
-
206
- 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)
207
-
208
- - @fluidframework/gitresources
209
- - @fluidframework/server-kafka-orderer
210
- - @fluidframework/server-lambdas
211
- - @fluidframework/server-lambdas-driver
212
- - @fluidframework/server-local-server
213
- - @fluidframework/server-memory-orderer
214
- - @fluidframework/protocol-base
215
- - @fluidframework/server-routerlicious
216
- - @fluidframework/server-routerlicious-base
217
- - @fluidframework/server-services
218
- - @fluidframework/server-services-client
219
- - @fluidframework/server-services-core
220
- - @fluidframework/server-services-ordering-kafkanode
221
- - @fluidframework/server-services-ordering-rdkafka
222
- - @fluidframework/server-services-ordering-zookeeper
223
- - @fluidframework/server-services-shared
224
- - @fluidframework/server-services-telemetry
225
- - @fluidframework/server-services-utils
226
- - @fluidframework/server-test-utils
227
- - tinylicious
228
-
229
- - Updated @fluidframework/protocol-definitions ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
230
-
231
- The @fluidframework/protocol-definitions dependency has been upgraded to v3.1.0. [See the full
232
- changelog.](https://github.com/microsoft/FluidFramework/blob/main/common/lib/protocol-definitions/CHANGELOG.md#310)
218
+ - Updated server dependencies ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
219
+
220
+ 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)
221
+
222
+ - @fluidframework/gitresources
223
+ - @fluidframework/server-kafka-orderer
224
+ - @fluidframework/server-lambdas
225
+ - @fluidframework/server-lambdas-driver
226
+ - @fluidframework/server-local-server
227
+ - @fluidframework/server-memory-orderer
228
+ - @fluidframework/protocol-base
229
+ - @fluidframework/server-routerlicious
230
+ - @fluidframework/server-routerlicious-base
231
+ - @fluidframework/server-services
232
+ - @fluidframework/server-services-client
233
+ - @fluidframework/server-services-core
234
+ - @fluidframework/server-services-ordering-kafkanode
235
+ - @fluidframework/server-services-ordering-rdkafka
236
+ - @fluidframework/server-services-ordering-zookeeper
237
+ - @fluidframework/server-services-shared
238
+ - @fluidframework/server-services-telemetry
239
+ - @fluidframework/server-services-utils
240
+ - @fluidframework/server-test-utils
241
+ - tinylicious
242
+
243
+ - Updated @fluidframework/protocol-definitions ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
244
+
245
+ The @fluidframework/protocol-definitions dependency has been upgraded to v3.1.0. [See the full
246
+ changelog.](https://github.com/microsoft/FluidFramework/blob/main/common/lib/protocol-definitions/CHANGELOG.md#310)
233
247
 
234
248
  ## 2.0.0-internal.8.0.0
235
249
 
236
250
  ### Major Changes
237
251
 
238
- - datastore: Removed `FluidDataStoreRuntime.load(...)` [9a451d4946](https://github.com/microsoft/FluidFramework/commits/9a451d4946b5c51a52e4d1ab5bf51e7b285b0d74)
252
+ - datastore: Removed `FluidDataStoreRuntime.load(...)` [9a451d4946](https://github.com/microsoft/FluidFramework/commits/9a451d4946b5c51a52e4d1ab5bf51e7b285b0d74)
239
253
 
240
- The static method `FluidDataStoreRuntime.load(...)` has been removed. Please migrate all usage of this method to
241
- `FluidDataStoreRuntime` constructor.
254
+ The static method `FluidDataStoreRuntime.load(...)` has been removed. Please migrate all usage of this method to
255
+ `FluidDataStoreRuntime` constructor.
242
256
 
243
- - container-definitions: Fix ISnapshotTreeWithBlobContents and mark internal [9a451d4946](https://github.com/microsoft/FluidFramework/commits/9a451d4946b5c51a52e4d1ab5bf51e7b285b0d74)
257
+ - container-definitions: Fix ISnapshotTreeWithBlobContents and mark internal [9a451d4946](https://github.com/microsoft/FluidFramework/commits/9a451d4946b5c51a52e4d1ab5bf51e7b285b0d74)
244
258
 
245
- `ISnapshotTreeWithBlobContents` is an internal type that should not be used externally. Additionally, the type didn't
246
- match the usage, specifically in runtime-utils where an `any` cast was used to work around undefined blobContents. The
247
- type has been updated to reflect that blobContents can be undefined.
259
+ `ISnapshotTreeWithBlobContents` is an internal type that should not be used externally. Additionally, the type didn't
260
+ match the usage, specifically in runtime-utils where an `any` cast was used to work around undefined blobContents. The
261
+ type has been updated to reflect that blobContents can be undefined.
248
262
 
249
- - runtime-definitions: Removed IFluidRouter from IFluidDataStoreChannel and FluidDataStoreRuntime [9a451d4946](https://github.com/microsoft/FluidFramework/commits/9a451d4946b5c51a52e4d1ab5bf51e7b285b0d74)
263
+ - runtime-definitions: Removed IFluidRouter from IFluidDataStoreChannel and FluidDataStoreRuntime [9a451d4946](https://github.com/microsoft/FluidFramework/commits/9a451d4946b5c51a52e4d1ab5bf51e7b285b0d74)
250
264
 
251
- The `IFluidRouter` property has been removed from `IFluidDataStoreChannel` and `FluidDataStoreRuntime`. Please migrate
252
- all usage to the `IFluidDataStoreChannel.entryPoint` API.
265
+ The `IFluidRouter` property has been removed from `IFluidDataStoreChannel` and `FluidDataStoreRuntime`. Please migrate
266
+ all usage to the `IFluidDataStoreChannel.entryPoint` API.
253
267
 
254
- See
255
- [Removing-IFluidRouter.md](https://github.com/microsoft/FluidFramework/blob/main/packages/common/core-interfaces/Removing-IFluidRouter.md)
256
- for more details.
268
+ See
269
+ [Removing-IFluidRouter.md](https://github.com/microsoft/FluidFramework/blob/main/packages/common/core-interfaces/Removing-IFluidRouter.md)
270
+ for more details.
257
271
 
258
272
  ## 2.0.0-internal.7.4.0
259
273
 
@@ -275,74 +289,74 @@ Dependency updates only.
275
289
 
276
290
  ### Major Changes
277
291
 
278
- - Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
292
+ - Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
279
293
 
280
- This included the following changes from the protocol-definitions release:
294
+ This included the following changes from the protocol-definitions release:
281
295
 
282
- - Updating signal interfaces for some planned improvements. The intention is split the interface between signals
283
- submitted by clients to the server and the resulting signals sent from the server to clients.
284
- - A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
285
- been added, which will be the typing for signals sent from the client to the server. Both extend a new
286
- ISignalMessageBase interface that contains common members.
287
- - The @fluidframework/common-definitions package dependency has been updated to version 1.0.0.
296
+ - Updating signal interfaces for some planned improvements. The intention is split the interface between signals
297
+ submitted by clients to the server and the resulting signals sent from the server to clients.
298
+ - A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
299
+ been added, which will be the typing for signals sent from the client to the server. Both extend a new
300
+ ISignalMessageBase interface that contains common members.
301
+ - The @fluidframework/common-definitions package dependency has been updated to version 1.0.0.
288
302
 
289
- - runtime-definitions: `bindToContext` API removed [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
303
+ - runtime-definitions: `bindToContext` API removed [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
290
304
 
291
- `bindToContext` has been removed from `FluidDataStoreRuntime`, `IFluidDataStoreContext` and
292
- `MockFluidDataStoreContext`. This has been deprecated for several releases and cannot be used anymore.
305
+ `bindToContext` has been removed from `FluidDataStoreRuntime`, `IFluidDataStoreContext` and
306
+ `MockFluidDataStoreContext`. This has been deprecated for several releases and cannot be used anymore.
293
307
 
294
- - Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
308
+ - Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
295
309
 
296
- Dependencies on the following Fluid server package have been updated to version 2.0.1:
310
+ Dependencies on the following Fluid server package have been updated to version 2.0.1:
297
311
 
298
- - @fluidframework/gitresources: 2.0.1
299
- - @fluidframework/server-kafka-orderer: 2.0.1
300
- - @fluidframework/server-lambdas: 2.0.1
301
- - @fluidframework/server-lambdas-driver: 2.0.1
302
- - @fluidframework/server-local-server: 2.0.1
303
- - @fluidframework/server-memory-orderer: 2.0.1
304
- - @fluidframework/protocol-base: 2.0.1
305
- - @fluidframework/server-routerlicious: 2.0.1
306
- - @fluidframework/server-routerlicious-base: 2.0.1
307
- - @fluidframework/server-services: 2.0.1
308
- - @fluidframework/server-services-client: 2.0.1
309
- - @fluidframework/server-services-core: 2.0.1
310
- - @fluidframework/server-services-ordering-kafkanode: 2.0.1
311
- - @fluidframework/server-services-ordering-rdkafka: 2.0.1
312
- - @fluidframework/server-services-ordering-zookeeper: 2.0.1
313
- - @fluidframework/server-services-shared: 2.0.1
314
- - @fluidframework/server-services-telemetry: 2.0.1
315
- - @fluidframework/server-services-utils: 2.0.1
316
- - @fluidframework/server-test-utils: 2.0.1
317
- - tinylicious: 2.0.1
312
+ - @fluidframework/gitresources: 2.0.1
313
+ - @fluidframework/server-kafka-orderer: 2.0.1
314
+ - @fluidframework/server-lambdas: 2.0.1
315
+ - @fluidframework/server-lambdas-driver: 2.0.1
316
+ - @fluidframework/server-local-server: 2.0.1
317
+ - @fluidframework/server-memory-orderer: 2.0.1
318
+ - @fluidframework/protocol-base: 2.0.1
319
+ - @fluidframework/server-routerlicious: 2.0.1
320
+ - @fluidframework/server-routerlicious-base: 2.0.1
321
+ - @fluidframework/server-services: 2.0.1
322
+ - @fluidframework/server-services-client: 2.0.1
323
+ - @fluidframework/server-services-core: 2.0.1
324
+ - @fluidframework/server-services-ordering-kafkanode: 2.0.1
325
+ - @fluidframework/server-services-ordering-rdkafka: 2.0.1
326
+ - @fluidframework/server-services-ordering-zookeeper: 2.0.1
327
+ - @fluidframework/server-services-shared: 2.0.1
328
+ - @fluidframework/server-services-telemetry: 2.0.1
329
+ - @fluidframework/server-services-utils: 2.0.1
330
+ - @fluidframework/server-test-utils: 2.0.1
331
+ - tinylicious: 2.0.1
318
332
 
319
- - test-utils: provideEntryPoint is required [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
333
+ - test-utils: provideEntryPoint is required [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
320
334
 
321
- The optional `provideEntryPoint` method has become required on a number of constructors. A value will need to be provided to the following classes:
335
+ The optional `provideEntryPoint` method has become required on a number of constructors. A value will need to be provided to the following classes:
322
336
 
323
- - `BaseContainerRuntimeFactory`
324
- - `RuntimeFactory`
325
- - `ContainerRuntime` (constructor and `loadRuntime`)
326
- - `FluidDataStoreRuntime`
337
+ - `BaseContainerRuntimeFactory`
338
+ - `RuntimeFactory`
339
+ - `ContainerRuntime` (constructor and `loadRuntime`)
340
+ - `FluidDataStoreRuntime`
327
341
 
328
- See [testContainerRuntimeFactoryWithDefaultDataStore.ts](https://github.com/microsoft/FluidFramework/tree/main/packages/test/test-utils/src/testContainerRuntimeFactoryWithDefaultDataStore.ts) for an example implemtation of `provideEntryPoint` for ContainerRuntime.
329
- See [pureDataObjectFactory.ts](https://github.com/microsoft/FluidFramework/tree/main/packages/framework/aqueduct/src/data-object-factories/pureDataObjectFactory.ts#L83) for an example implementation of `provideEntryPoint` for DataStoreRuntime.
342
+ See [testContainerRuntimeFactoryWithDefaultDataStore.ts](https://github.com/microsoft/FluidFramework/tree/main/packages/test/test-utils/src/testContainerRuntimeFactoryWithDefaultDataStore.ts) for an example implemtation of `provideEntryPoint` for ContainerRuntime.
343
+ See [pureDataObjectFactory.ts](https://github.com/microsoft/FluidFramework/tree/main/packages/framework/aqueduct/src/data-object-factories/pureDataObjectFactory.ts#L83) for an example implementation of `provideEntryPoint` for DataStoreRuntime.
330
344
 
331
- Subsequently, various `entryPoint` and `getEntryPoint()` endpoints have become required. Please see [containerRuntime.ts](https://github.com/microsoft/FluidFramework/tree/main/packages/runtime/container-runtime/src/containerRuntime.ts) for example implementations of these APIs.
345
+ Subsequently, various `entryPoint` and `getEntryPoint()` endpoints have become required. Please see [containerRuntime.ts](https://github.com/microsoft/FluidFramework/tree/main/packages/runtime/container-runtime/src/containerRuntime.ts) for example implementations of these APIs.
332
346
 
333
- For more details, see [Removing-IFluidRouter.md](https://github.com/microsoft/FluidFramework/blob/main/packages/common/core-interfaces/Removing-IFluidRouter.md)
347
+ For more details, see [Removing-IFluidRouter.md](https://github.com/microsoft/FluidFramework/blob/main/packages/common/core-interfaces/Removing-IFluidRouter.md)
334
348
 
335
- - Minimum TypeScript version now 5.1.6 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
349
+ - Minimum TypeScript version now 5.1.6 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
336
350
 
337
- The minimum supported TypeScript version for Fluid 2.0 clients is now 5.1.6.
351
+ The minimum supported TypeScript version for Fluid 2.0 clients is now 5.1.6.
338
352
 
339
353
  ## 2.0.0-internal.6.4.0
340
354
 
341
355
  ### Minor Changes
342
356
 
343
- - Some stack traces are improved ([#17380](https://github.com/microsoft/FluidFramework/issues/17380)) [34f2808ee9](https://github.com/microsoft/FluidFramework/commits/34f2808ee9764aef21b990f8b48860d9e3ce27a5)
357
+ - Some stack traces are improved ([#17380](https://github.com/microsoft/FluidFramework/issues/17380)) [34f2808ee9](https://github.com/microsoft/FluidFramework/commits/34f2808ee9764aef21b990f8b48860d9e3ce27a5)
344
358
 
345
- Some stack traces have been improved and might now include frames for async functions that weren't previously included.
359
+ Some stack traces have been improved and might now include frames for async functions that weren't previously included.
346
360
 
347
361
  ## 2.0.0-internal.6.3.0
348
362
 
@@ -352,32 +366,32 @@ Dependency updates only.
352
366
 
353
367
  ### Minor Changes
354
368
 
355
- - Remove use of @fluidframework/common-definitions ([#16638](https://github.com/microsoft/FluidFramework/issues/16638)) [a8c81509c9](https://github.com/microsoft/FluidFramework/commits/a8c81509c9bf09cfb2092ebcf7265205f9eb6dbf)
356
-
357
- The **@fluidframework/common-definitions** package is being deprecated, so the following interfaces and types are now
358
- imported from the **@fluidframework/core-interfaces** package:
359
-
360
- - interface IDisposable
361
- - interface IErrorEvent
362
- - interface IErrorEvent
363
- - interface IEvent
364
- - interface IEventProvider
365
- - interface ILoggingError
366
- - interface ITaggedTelemetryPropertyType
367
- - interface ITelemetryBaseEvent
368
- - interface ITelemetryBaseLogger
369
- - interface ITelemetryErrorEvent
370
- - interface ITelemetryGenericEvent
371
- - interface ITelemetryLogger
372
- - interface ITelemetryPerformanceEvent
373
- - interface ITelemetryProperties
374
- - type ExtendEventProvider
375
- - type IEventThisPlaceHolder
376
- - type IEventTransformer
377
- - type ReplaceIEventThisPlaceHolder
378
- - type ReplaceIEventThisPlaceHolder
379
- - type TelemetryEventCategory
380
- - type TelemetryEventPropertyType
369
+ - Remove use of @fluidframework/common-definitions ([#16638](https://github.com/microsoft/FluidFramework/issues/16638)) [a8c81509c9](https://github.com/microsoft/FluidFramework/commits/a8c81509c9bf09cfb2092ebcf7265205f9eb6dbf)
370
+
371
+ The **@fluidframework/common-definitions** package is being deprecated, so the following interfaces and types are now
372
+ imported from the **@fluidframework/core-interfaces** package:
373
+
374
+ - interface IDisposable
375
+ - interface IErrorEvent
376
+ - interface IErrorEvent
377
+ - interface IEvent
378
+ - interface IEventProvider
379
+ - interface ILoggingError
380
+ - interface ITaggedTelemetryPropertyType
381
+ - interface ITelemetryBaseEvent
382
+ - interface ITelemetryBaseLogger
383
+ - interface ITelemetryErrorEvent
384
+ - interface ITelemetryGenericEvent
385
+ - interface ITelemetryLogger
386
+ - interface ITelemetryPerformanceEvent
387
+ - interface ITelemetryProperties
388
+ - type ExtendEventProvider
389
+ - type IEventThisPlaceHolder
390
+ - type IEventTransformer
391
+ - type ReplaceIEventThisPlaceHolder
392
+ - type ReplaceIEventThisPlaceHolder
393
+ - type TelemetryEventCategory
394
+ - type TelemetryEventPropertyType
381
395
 
382
396
  ## 2.0.0-internal.6.1.0
383
397
 
@@ -387,47 +401,47 @@ Dependency updates only.
387
401
 
388
402
  ### Major Changes
389
403
 
390
- - Request APIs deprecated from many places [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
404
+ - Request APIs deprecated from many places [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
391
405
 
392
- The `request` API (associated with the `IFluidRouter` interface) has been deprecated on a number of classes and interfaces. The following are impacted:
406
+ The `request` API (associated with the `IFluidRouter` interface) has been deprecated on a number of classes and interfaces. The following are impacted:
393
407
 
394
- - `IRuntime` and `ContainerRuntime`
395
- - `IFluidDataStoreRuntime` and `FluidDataStoreRuntime`
396
- - `IFluidDataStoreChannel`
397
- - `MockFluidDataStoreRuntime`
398
- - `TestFluidObject`
408
+ - `IRuntime` and `ContainerRuntime`
409
+ - `IFluidDataStoreRuntime` and `FluidDataStoreRuntime`
410
+ - `IFluidDataStoreChannel`
411
+ - `MockFluidDataStoreRuntime`
412
+ - `TestFluidObject`
399
413
 
400
- Please migrate usage to the corresponding `entryPoint` or `getEntryPoint()` of the object. The value for these "entryPoint" related APIs is determined from factories (for `IRuntime` and `IFluidDataStoreRuntime`) via the `initializeEntryPoint` method. If no method is passed to the factory, the corresponding `entryPoint` and `getEntryPoint()` will be undefined.
414
+ Please migrate usage to the corresponding `entryPoint` or `getEntryPoint()` of the object. The value for these "entryPoint" related APIs is determined from factories (for `IRuntime` and `IFluidDataStoreRuntime`) via the `initializeEntryPoint` method. If no method is passed to the factory, the corresponding `entryPoint` and `getEntryPoint()` will be undefined.
401
415
 
402
- For an example implementation of `initializeEntryPoint`, see [pureDataObjectFactory.ts](https://github.com/microsoft/FluidFramework/blob/next/packages/framework/aqueduct/src/data-object-factories/pureDataObjectFactory.ts#L84).
416
+ For an example implementation of `initializeEntryPoint`, see [pureDataObjectFactory.ts](https://github.com/microsoft/FluidFramework/blob/next/packages/framework/aqueduct/src/data-object-factories/pureDataObjectFactory.ts#L84).
403
417
 
404
- More information of the migration off the request pattern, and current status of its removal, is documented in [Removing-IFluidRouter.md](https://github.com/microsoft/FluidFramework/blob/main/packages/common/core-interfaces/Removing-IFluidRouter.md).
418
+ More information of the migration off the request pattern, and current status of its removal, is documented in [Removing-IFluidRouter.md](https://github.com/microsoft/FluidFramework/blob/main/packages/common/core-interfaces/Removing-IFluidRouter.md).
405
419
 
406
- - `initializeEntryPoint` will become required [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
420
+ - `initializeEntryPoint` will become required [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
407
421
 
408
- The optional `initializeEntryPoint` method has been added to a number of constructors. **This method argument will become required in an upcoming release** and a value will need to be provided to the following classes:
422
+ The optional `initializeEntryPoint` method has been added to a number of constructors. **This method argument will become required in an upcoming release** and a value will need to be provided to the following classes:
409
423
 
410
- - `BaseContainerRuntimeFactory`
411
- - `ContainerRuntimeFactoryWithDefaultDataStore`
412
- - `RuntimeFactory`
413
- - `ContainerRuntime` (constructor and `loadRuntime`)
414
- - `FluidDataStoreRuntime`
424
+ - `BaseContainerRuntimeFactory`
425
+ - `ContainerRuntimeFactoryWithDefaultDataStore`
426
+ - `RuntimeFactory`
427
+ - `ContainerRuntime` (constructor and `loadRuntime`)
428
+ - `FluidDataStoreRuntime`
415
429
 
416
- For an example implementation of `initializeEntryPoint`, see [pureDataObjectFactory.ts](https://github.com/microsoft/FluidFramework/blob/main/packages/framework/aqueduct/src/data-object-factories/pureDataObjectFactory.ts#L84).
430
+ For an example implementation of `initializeEntryPoint`, see [pureDataObjectFactory.ts](https://github.com/microsoft/FluidFramework/blob/main/packages/framework/aqueduct/src/data-object-factories/pureDataObjectFactory.ts#L84).
417
431
 
418
- This work will replace the request pattern. See [Removing-IFluidRouter.md](https://github.com/microsoft/FluidFramework/blob/main/packages/common/core-interfaces/Removing-IFluidRouter.md) for more info on this effort.
432
+ This work will replace the request pattern. See [Removing-IFluidRouter.md](https://github.com/microsoft/FluidFramework/blob/main/packages/common/core-interfaces/Removing-IFluidRouter.md) for more info on this effort.
419
433
 
420
- - FluidDataStoreRuntime.getChannel throws for channels that do not exist [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
434
+ - FluidDataStoreRuntime.getChannel throws for channels that do not exist [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
421
435
 
422
- Previously, calling `FluidDataStoreRuntime.getChannel(id)` for a channel that does not exist would wait for the channel to be created (possibly waiting indefinitely if never created). However, there is no safe means to dynamically create a channel in this manner without risking data corruption. The call will instead now throw for non-existent channels.
436
+ Previously, calling `FluidDataStoreRuntime.getChannel(id)` for a channel that does not exist would wait for the channel to be created (possibly waiting indefinitely if never created). However, there is no safe means to dynamically create a channel in this manner without risking data corruption. The call will instead now throw for non-existent channels.
423
437
 
424
- - Upgraded typescript transpilation target to ES2020 [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
438
+ - Upgraded typescript transpilation target to ES2020 [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
425
439
 
426
- Upgraded typescript transpilation target to ES2020. This is done in order to decrease the bundle sizes of Fluid Framework packages. This has provided size improvements across the board for ex. Loader, Driver, Runtime etc. Reduced bundle sizes helps to load lesser code in apps and hence also helps to improve the perf.If any app wants to target any older versions of browsers with which this target version is not compatible, then they can use packages like babel to transpile to a older target.
440
+ Upgraded typescript transpilation target to ES2020. This is done in order to decrease the bundle sizes of Fluid Framework packages. This has provided size improvements across the board for ex. Loader, Driver, Runtime etc. Reduced bundle sizes helps to load lesser code in apps and hence also helps to improve the perf.If any app wants to target any older versions of browsers with which this target version is not compatible, then they can use packages like babel to transpile to a older target.
427
441
 
428
- - IDeltaManager members disposed and dispose() removed [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
442
+ - IDeltaManager members disposed and dispose() removed [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
429
443
 
430
- IDeltaManager members disposed and dispose() were deprecated in 2.0.0-internal.5.3.0 and have now been removed.
444
+ IDeltaManager members disposed and dispose() were deprecated in 2.0.0-internal.5.3.0 and have now been removed.
431
445
 
432
446
  ## 2.0.0-internal.5.4.0
433
447
 
@@ -449,22 +463,22 @@ Dependency updates only.
449
463
 
450
464
  ### Major Changes
451
465
 
452
- - The `@fluidframework/garbage-collector` package was deprecated in version 2.0.0-internal.4.1.0. [8b242fdc79](https://github.com/microsoft/FluidFramework/commits/8b242fdc796714cf1da9ad3f90d02efb122af0c2)
453
- It has now been removed with the following functions, interfaces, and types in it.
454
-
455
- - `cloneGCData`
456
- - `concatGarbageCollectionData`
457
- - `concatGarbageCollectionStates`
458
- - `GCDataBuilder`
459
- - `getGCDataFromSnapshot`
460
- - `IGCResult`
461
- - `removeRouteFromAllNodes`
462
- - `runGarbageCollection`
463
- - `trimLeadingAndTrailingSlashes`
464
- - `trimLeadingSlashes`
465
- - `trimTrailingSlashes`
466
- - `unpackChildNodesGCDetails`
467
- - `unpackChildNodesUsedRoutes`
466
+ - The `@fluidframework/garbage-collector` package was deprecated in version 2.0.0-internal.4.1.0. [8b242fdc79](https://github.com/microsoft/FluidFramework/commits/8b242fdc796714cf1da9ad3f90d02efb122af0c2)
467
+ It has now been removed with the following functions, interfaces, and types in it.
468
+
469
+ - `cloneGCData`
470
+ - `concatGarbageCollectionData`
471
+ - `concatGarbageCollectionStates`
472
+ - `GCDataBuilder`
473
+ - `getGCDataFromSnapshot`
474
+ - `IGCResult`
475
+ - `removeRouteFromAllNodes`
476
+ - `runGarbageCollection`
477
+ - `trimLeadingAndTrailingSlashes`
478
+ - `trimLeadingSlashes`
479
+ - `trimTrailingSlashes`
480
+ - `unpackChildNodesGCDetails`
481
+ - `unpackChildNodesUsedRoutes`
468
482
 
469
483
  ## 2.0.0-internal.4.4.0
470
484
 
@@ -474,31 +488,31 @@ Dependency updates only.
474
488
 
475
489
  ### Minor Changes
476
490
 
477
- - GC interfaces removed from runtime-definitions ([#14750](https://github.com/microsoft/FluidFramework/pull-requests/14750)) [60274eacab](https://github.com/microsoft/FluidFramework/commits/60274eacabf14d42f52f6ad1c2f64356e64ba1a2)
478
-
479
- The following interfaces available in `@fluidframework/runtime-definitions` are internal implementation details and have been deprecated for public use. They will be removed in an upcoming release.
480
-
481
- - `IGarbageCollectionNodeData`
482
- - `IGarbageCollectionState`
483
- - `IGarbageCollectionSnapshotData`
484
- - `IGarbageCollectionSummaryDetailsLegacy`
485
-
486
- - @fluidframework/garbage-collector deprecated ([#14750](https://github.com/microsoft/FluidFramework/pull-requests/14750)) [60274eacab](https://github.com/microsoft/FluidFramework/commits/60274eacabf14d42f52f6ad1c2f64356e64ba1a2)
487
-
488
- The `@fluidframework/garbage-collector` package is deprecated with the following functions, interfaces, and types in it.
489
- These are internal implementation details and have been deprecated for public use. They will be removed in an upcoming
490
- release.
491
-
492
- - `cloneGCData`
493
- - `concatGarbageCollectionData`
494
- - `concatGarbageCollectionStates`
495
- - `GCDataBuilder`
496
- - `getGCDataFromSnapshot`
497
- - `IGCResult`
498
- - `removeRouteFromAllNodes`
499
- - `runGarbageCollection`
500
- - `trimLeadingAndTrailingSlashes`
501
- - `trimLeadingSlashes`
502
- - `trimTrailingSlashes`
503
- - `unpackChildNodesGCDetails`
504
- - `unpackChildNodesUsedRoutes`
491
+ - GC interfaces removed from runtime-definitions ([#14750](https://github.com/microsoft/FluidFramework/pull-requests/14750)) [60274eacab](https://github.com/microsoft/FluidFramework/commits/60274eacabf14d42f52f6ad1c2f64356e64ba1a2)
492
+
493
+ The following interfaces available in `@fluidframework/runtime-definitions` are internal implementation details and have been deprecated for public use. They will be removed in an upcoming release.
494
+
495
+ - `IGarbageCollectionNodeData`
496
+ - `IGarbageCollectionState`
497
+ - `IGarbageCollectionSnapshotData`
498
+ - `IGarbageCollectionSummaryDetailsLegacy`
499
+
500
+ - @fluidframework/garbage-collector deprecated ([#14750](https://github.com/microsoft/FluidFramework/pull-requests/14750)) [60274eacab](https://github.com/microsoft/FluidFramework/commits/60274eacabf14d42f52f6ad1c2f64356e64ba1a2)
501
+
502
+ The `@fluidframework/garbage-collector` package is deprecated with the following functions, interfaces, and types in it.
503
+ These are internal implementation details and have been deprecated for public use. They will be removed in an upcoming
504
+ release.
505
+
506
+ - `cloneGCData`
507
+ - `concatGarbageCollectionData`
508
+ - `concatGarbageCollectionStates`
509
+ - `GCDataBuilder`
510
+ - `getGCDataFromSnapshot`
511
+ - `IGCResult`
512
+ - `removeRouteFromAllNodes`
513
+ - `runGarbageCollection`
514
+ - `trimLeadingAndTrailingSlashes`
515
+ - `trimLeadingSlashes`
516
+ - `trimTrailingSlashes`
517
+ - `unpackChildNodesGCDetails`
518
+ - `unpackChildNodesUsedRoutes`