@fluidframework/container-runtime-definitions 2.23.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,5 +1,13 @@
1
1
  # @fluidframework/container-runtime-definitions
2
2
 
3
+ ## 2.31.0
4
+
5
+ Dependency updates only.
6
+
7
+ ## 2.30.0
8
+
9
+ Dependency updates only.
10
+
3
11
  ## 2.23.0
4
12
 
5
13
  Dependency updates only.
@@ -16,18 +24,18 @@ Dependency updates only.
16
24
 
17
25
  ### Minor Changes
18
26
 
19
- - 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)
27
+ - 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)
20
28
 
21
- `ContainerRuntime.createDataStoreWithProps` and `IContainerRuntimeBase.createDataStoreWithProps`
22
- were [deprecated in version 0.25.0](https://github.com/microsoft/FluidFramework/blob/main/BREAKING.md#icontainerruntimebase_createdatastorewithprops-is-removed) and have been removed.
29
+ `ContainerRuntime.createDataStoreWithProps` and `IContainerRuntimeBase.createDataStoreWithProps`
30
+ were [deprecated in version 0.25.0](https://github.com/microsoft/FluidFramework/blob/main/BREAKING.md#icontainerruntimebase_createdatastorewithprops-is-removed) and have been removed.
23
31
 
24
- Replace uses of these APIs with `PureDataObjectFactory.createInstanceWithDataStore` and pass in props via the `initialState`
25
- parameter.
32
+ Replace uses of these APIs with `PureDataObjectFactory.createInstanceWithDataStore` and pass in props via the `initialState`
33
+ parameter.
26
34
 
27
- These changes were originally announced in version 0.25.0. See the following issues for more details:
35
+ These changes were originally announced in version 0.25.0. See the following issues for more details:
28
36
 
29
- - [#1537](https://github.com/microsoft/FluidFramework/issues/1537)
30
- - [#2931](https://github.com/microsoft/FluidFramework/pull/2931)
37
+ - [#1537](https://github.com/microsoft/FluidFramework/issues/1537)
38
+ - [#2931](https://github.com/microsoft/FluidFramework/pull/2931)
31
39
 
32
40
  ## 2.13.0
33
41
 
@@ -45,19 +53,19 @@ Dependency updates only.
45
53
 
46
54
  ### Minor Changes
47
55
 
48
- - 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)
56
+ - 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)
49
57
 
50
- 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`.
58
+ 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`.
51
59
 
52
- `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.
60
+ `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.
53
61
 
54
- 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.
62
+ 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.
55
63
 
56
- #### Alternatives
64
+ #### Alternatives
57
65
 
58
- - Alternatives to `IDeltaManager.inbound.on("op", ...)` are `IDeltaManager.on("op", ...)`
59
- - Alternatives to calling `IDeltaManager.inbound.pause`, `IDeltaManager.outbound.pause` for `IContainer` disconnect use `IContainer.disconnect`.
60
- - Alternatives to calling `IDeltaManager.inbound.resume`, `IDeltaManager.outbound.resume` for `IContainer` reconnect use `IContainer.connect`.
66
+ - Alternatives to `IDeltaManager.inbound.on("op", ...)` are `IDeltaManager.on("op", ...)`
67
+ - Alternatives to calling `IDeltaManager.inbound.pause`, `IDeltaManager.outbound.pause` for `IContainer` disconnect use `IContainer.disconnect`.
68
+ - Alternatives to calling `IDeltaManager.inbound.resume`, `IDeltaManager.outbound.resume` for `IContainer` reconnect use `IContainer.connect`.
61
69
 
62
70
  ## 2.5.0
63
71
 
@@ -83,144 +91,144 @@ Dependency updates only.
83
91
 
84
92
  ### Minor Changes
85
93
 
86
- - Update to TypeScript 5.4 ([#21214](https://github.com/microsoft/FluidFramework/pull/21214)) [0e6256c722](https://github.com/microsoft/FluidFramework/commit/0e6256c722d8bf024f4325bf02547daeeb18bfa6)
94
+ - Update to TypeScript 5.4 ([#21214](https://github.com/microsoft/FluidFramework/pull/21214)) [0e6256c722](https://github.com/microsoft/FluidFramework/commit/0e6256c722d8bf024f4325bf02547daeeb18bfa6)
87
95
 
88
- Update package implementations to use TypeScript 5.4.5.
96
+ Update package implementations to use TypeScript 5.4.5.
89
97
 
90
98
  ## 2.0.0-rc.4.0.0
91
99
 
92
100
  ### Minor Changes
93
101
 
94
- - Type Erase IFluidDataStoreRuntime.deltaManager [96872186d0](https://github.com/microsoft/FluidFramework/commit/96872186d0d0f245c1fece7d19b3743e501679b6)
102
+ - Type Erase IFluidDataStoreRuntime.deltaManager [96872186d0](https://github.com/microsoft/FluidFramework/commit/96872186d0d0f245c1fece7d19b3743e501679b6)
95
103
 
96
- Make IFluidDataStoreRuntime.deltaManager have an opaque type.
97
- Marks the following types which were reachable from it as alpha:
104
+ Make IFluidDataStoreRuntime.deltaManager have an opaque type.
105
+ Marks the following types which were reachable from it as alpha:
98
106
 
99
- - IConnectionDetails
100
- - IDeltaSender
101
- - IDeltaManagerEvents
102
- - IDeltaManager
103
- - IDeltaQueueEvents
104
- - IDeltaQueue
105
- - ReadOnlyInfo
107
+ - IConnectionDetails
108
+ - IDeltaSender
109
+ - IDeltaManagerEvents
110
+ - IDeltaManager
111
+ - IDeltaQueueEvents
112
+ - IDeltaQueue
113
+ - ReadOnlyInfo
106
114
 
107
- 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.
115
+ 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.
108
116
 
109
- Implementing a custom `IFluidDataStoreRuntime` is not supported: this is now indicated by it being marked with `@sealed`.
117
+ Implementing a custom `IFluidDataStoreRuntime` is not supported: this is now indicated by it being marked with `@sealed`.
110
118
 
111
119
  ## 2.0.0-rc.3.0.0
112
120
 
113
121
  ### Major Changes
114
122
 
115
- - Packages now use package.json "exports" and require modern module resolution [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
123
+ - Packages now use package.json "exports" and require modern module resolution [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
116
124
 
117
- Fluid Framework packages have been updated to use the [package.json "exports"
118
- field](https://nodejs.org/docs/latest-v18.x/api/packages.html#exports) to define explicit entry points for both
119
- TypeScript types and implementation code.
125
+ Fluid Framework packages have been updated to use the [package.json "exports"
126
+ field](https://nodejs.org/docs/latest-v18.x/api/packages.html#exports) to define explicit entry points for both
127
+ TypeScript types and implementation code.
120
128
 
121
- This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
129
+ This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
122
130
 
123
- - `"moduleResolution": "Node16"` with `"module": "Node16"`
124
- - `"moduleResolution": "Bundler"` with `"module": "ESNext"`
131
+ - `"moduleResolution": "Node16"` with `"module": "Node16"`
132
+ - `"moduleResolution": "Bundler"` with `"module": "ESNext"`
125
133
 
126
- We recommend using Node16/Node16 unless absolutely necessary. That will produce transpiled JavaScript that is suitable
127
- for use with modern versions of Node.js _and_ Bundlers.
128
- [See the TypeScript documentation](https://www.typescriptlang.org/tsconfig#moduleResolution) for more information
129
- regarding the module and moduleResolution options.
134
+ We recommend using Node16/Node16 unless absolutely necessary. That will produce transpiled JavaScript that is suitable
135
+ for use with modern versions of Node.js _and_ Bundlers.
136
+ [See the TypeScript documentation](https://www.typescriptlang.org/tsconfig#moduleResolution) for more information
137
+ regarding the module and moduleResolution options.
130
138
 
131
- **Node10 moduleResolution is not supported; it does not support Fluid Framework's API structuring pattern that is used
132
- to distinguish stable APIs from those that are in development.**
139
+ **Node10 moduleResolution is not supported; it does not support Fluid Framework's API structuring pattern that is used
140
+ to distinguish stable APIs from those that are in development.**
133
141
 
134
142
  ## 2.0.0-rc.2.0.0
135
143
 
136
144
  ### Minor Changes
137
145
 
138
- - 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)
146
+ - 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)
139
147
 
140
- ### Key changes
148
+ ### Key changes
141
149
 
142
- 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.
143
- 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)
144
- 3. Similar DDS names will be opportunistically short (same considerations for detached DDS vs. attached DDS)
150
+ 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.
151
+ 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)
152
+ 3. Similar DDS names will be opportunistically short (same considerations for detached DDS vs. attached DDS)
145
153
 
146
- ### Implementation details
154
+ ### Implementation details
147
155
 
148
- 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).
156
+ 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).
149
157
 
150
- ### Breaking changes
158
+ ### Breaking changes
151
159
 
152
- 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).
160
+ 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).
153
161
 
154
- ### Backward compatibility considerations
162
+ ### Backward compatibility considerations
155
163
 
156
- 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.
157
- 2. If application runs to these problems, or wants to reduce risks, consider disabling ID compressor via IContainerRuntimeOptions.enableRuntimeIdCompressor = "off".
164
+ 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.
165
+ 2. If application runs to these problems, or wants to reduce risks, consider disabling ID compressor via IContainerRuntimeOptions.enableRuntimeIdCompressor = "off".
158
166
 
159
- ### Minor changes
167
+ ### Minor changes
160
168
 
161
- 1. IContainerRuntime.createDetachedRootDataStore() is removed. Please use IContainerRuntime.createDetachedDataStore and IDataStore.trySetAlias() instead
162
- 2. IContainerRuntimeOptions.enableRuntimeIdCompressor has been changes from boolean to tri-state.
169
+ 1. IContainerRuntime.createDetachedRootDataStore() is removed. Please use IContainerRuntime.createDetachedDataStore and IDataStore.trySetAlias() instead
170
+ 2. IContainerRuntimeOptions.enableRuntimeIdCompressor has been changes from boolean to tri-state.
163
171
 
164
- - driver-definitions: repositoryUrl removed from IDocumentStorageService ([#19522](https://github.com/microsoft/FluidFramework/issues/19522)) [90eb3c9d33](https://github.com/microsoft/FluidFramework/commits/90eb3c9d33d80e24caa1393a50f414c5602f6aa3)
172
+ - driver-definitions: repositoryUrl removed from IDocumentStorageService ([#19522](https://github.com/microsoft/FluidFramework/issues/19522)) [90eb3c9d33](https://github.com/microsoft/FluidFramework/commits/90eb3c9d33d80e24caa1393a50f414c5602f6aa3)
165
173
 
166
- The `repositoryUrl` member of `IDocumentStorageService` was unused and always equal to the empty string. It has been removed.
174
+ The `repositoryUrl` member of `IDocumentStorageService` was unused and always equal to the empty string. It has been removed.
167
175
 
168
- - 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)
176
+ - 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)
169
177
 
170
- 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.
178
+ 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.
171
179
 
172
180
  ## 2.0.0-rc.1.0.0
173
181
 
174
182
  ### Minor Changes
175
183
 
176
- - Updated server dependencies ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
177
-
178
- 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)
179
-
180
- - @fluidframework/gitresources
181
- - @fluidframework/server-kafka-orderer
182
- - @fluidframework/server-lambdas
183
- - @fluidframework/server-lambdas-driver
184
- - @fluidframework/server-local-server
185
- - @fluidframework/server-memory-orderer
186
- - @fluidframework/protocol-base
187
- - @fluidframework/server-routerlicious
188
- - @fluidframework/server-routerlicious-base
189
- - @fluidframework/server-services
190
- - @fluidframework/server-services-client
191
- - @fluidframework/server-services-core
192
- - @fluidframework/server-services-ordering-kafkanode
193
- - @fluidframework/server-services-ordering-rdkafka
194
- - @fluidframework/server-services-ordering-zookeeper
195
- - @fluidframework/server-services-shared
196
- - @fluidframework/server-services-telemetry
197
- - @fluidframework/server-services-utils
198
- - @fluidframework/server-test-utils
199
- - tinylicious
200
-
201
- - Updated @fluidframework/protocol-definitions ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
202
-
203
- The @fluidframework/protocol-definitions dependency has been upgraded to v3.1.0. [See the full
204
- changelog.](https://github.com/microsoft/FluidFramework/blob/main/common/lib/protocol-definitions/CHANGELOG.md#310)
184
+ - Updated server dependencies ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
185
+
186
+ 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)
187
+
188
+ - @fluidframework/gitresources
189
+ - @fluidframework/server-kafka-orderer
190
+ - @fluidframework/server-lambdas
191
+ - @fluidframework/server-lambdas-driver
192
+ - @fluidframework/server-local-server
193
+ - @fluidframework/server-memory-orderer
194
+ - @fluidframework/protocol-base
195
+ - @fluidframework/server-routerlicious
196
+ - @fluidframework/server-routerlicious-base
197
+ - @fluidframework/server-services
198
+ - @fluidframework/server-services-client
199
+ - @fluidframework/server-services-core
200
+ - @fluidframework/server-services-ordering-kafkanode
201
+ - @fluidframework/server-services-ordering-rdkafka
202
+ - @fluidframework/server-services-ordering-zookeeper
203
+ - @fluidframework/server-services-shared
204
+ - @fluidframework/server-services-telemetry
205
+ - @fluidframework/server-services-utils
206
+ - @fluidframework/server-test-utils
207
+ - tinylicious
208
+
209
+ - Updated @fluidframework/protocol-definitions ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
210
+
211
+ The @fluidframework/protocol-definitions dependency has been upgraded to v3.1.0. [See the full
212
+ changelog.](https://github.com/microsoft/FluidFramework/blob/main/common/lib/protocol-definitions/CHANGELOG.md#310)
205
213
 
206
214
  ## 2.0.0-internal.8.0.0
207
215
 
208
216
  ### Major Changes
209
217
 
210
- - container-runtime-definitions: Removed resolveHandle and IFluidHandleContext from ContainerRuntime interfaces [9a451d4946](https://github.com/microsoft/FluidFramework/commits/9a451d4946b5c51a52e4d1ab5bf51e7b285b0d74)
218
+ - container-runtime-definitions: Removed resolveHandle and IFluidHandleContext from ContainerRuntime interfaces [9a451d4946](https://github.com/microsoft/FluidFramework/commits/9a451d4946b5c51a52e4d1ab5bf51e7b285b0d74)
211
219
 
212
- The `IContainerRuntime.resolveHandle(...)` method and the `IContainerRuntimeBase.IFluidHandleContext` property have been
213
- removed. Please remove all usage of these APIs.
220
+ The `IContainerRuntime.resolveHandle(...)` method and the `IContainerRuntimeBase.IFluidHandleContext` property have been
221
+ removed. Please remove all usage of these APIs.
214
222
 
215
- See
216
- [Removing-IFluidRouter.md](https://github.com/microsoft/FluidFramework/blob/main/packages/common/core-interfaces/Removing-IFluidRouter.md)
217
- for more details.
223
+ See
224
+ [Removing-IFluidRouter.md](https://github.com/microsoft/FluidFramework/blob/main/packages/common/core-interfaces/Removing-IFluidRouter.md)
225
+ for more details.
218
226
 
219
- - container-runtime-definitions: Removed getRootDataStore [9a451d4946](https://github.com/microsoft/FluidFramework/commits/9a451d4946b5c51a52e4d1ab5bf51e7b285b0d74)
227
+ - container-runtime-definitions: Removed getRootDataStore [9a451d4946](https://github.com/microsoft/FluidFramework/commits/9a451d4946b5c51a52e4d1ab5bf51e7b285b0d74)
220
228
 
221
- The `getRootDataStore` method has been removed from `IContainerRuntime` and `ContainerRuntime`. Please migrate all usage to the new `getAliasedDataStoreEntryPoint` method. This method returns the data store's entry point which is its `IFluidHandle`.
229
+ The `getRootDataStore` method has been removed from `IContainerRuntime` and `ContainerRuntime`. Please migrate all usage to the new `getAliasedDataStoreEntryPoint` method. This method returns the data store's entry point which is its `IFluidHandle`.
222
230
 
223
- See [Removing-IFluidRouter.md](https://github.com/microsoft/FluidFramework/blob/main/packages/common/core-interfaces/Removing-IFluidRouter.md) for more details.
231
+ See [Removing-IFluidRouter.md](https://github.com/microsoft/FluidFramework/blob/main/packages/common/core-interfaces/Removing-IFluidRouter.md) for more details.
224
232
 
225
233
  ## 2.0.0-internal.7.4.0
226
234
 
@@ -242,64 +250,64 @@ Dependency updates only.
242
250
 
243
251
  ### Major Changes
244
252
 
245
- - Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
253
+ - Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
246
254
 
247
- This included the following changes from the protocol-definitions release:
255
+ This included the following changes from the protocol-definitions release:
248
256
 
249
- - Updating signal interfaces for some planned improvements. The intention is split the interface between signals
250
- submitted by clients to the server and the resulting signals sent from the server to clients.
251
- - A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
252
- been added, which will be the typing for signals sent from the client to the server. Both extend a new
253
- ISignalMessageBase interface that contains common members.
254
- - The @fluidframework/common-definitions package dependency has been updated to version 1.0.0.
257
+ - Updating signal interfaces for some planned improvements. The intention is split the interface between signals
258
+ submitted by clients to the server and the resulting signals sent from the server to clients.
259
+ - A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
260
+ been added, which will be the typing for signals sent from the client to the server. Both extend a new
261
+ ISignalMessageBase interface that contains common members.
262
+ - The @fluidframework/common-definitions package dependency has been updated to version 1.0.0.
255
263
 
256
- - container-runtime-definitions: `IDataStoreWithBindToContext_Deprecated` interface removed [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
264
+ - container-runtime-definitions: `IDataStoreWithBindToContext_Deprecated` interface removed [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
257
265
 
258
- `IDataStoreWithBindToContext_Deprecated` has been removed. It has been deprecated for a while and cannot be used anymore.
266
+ `IDataStoreWithBindToContext_Deprecated` has been removed. It has been deprecated for a while and cannot be used anymore.
259
267
 
260
- - DEPRECATED: resolveHandle and IFluidHandleContext deprecated on IContainerRuntime [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
268
+ - DEPRECATED: resolveHandle and IFluidHandleContext deprecated on IContainerRuntime [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
261
269
 
262
- The `resolveHandle(...)` and `get IFluidHandleContext()` methods have been deprecated on the following interfaces:
270
+ The `resolveHandle(...)` and `get IFluidHandleContext()` methods have been deprecated on the following interfaces:
263
271
 
264
- - `IContainerRuntime`
265
- - `IContainerRuntimeBase`
272
+ - `IContainerRuntime`
273
+ - `IContainerRuntimeBase`
266
274
 
267
- Requesting arbitrary URLs has been deprecated on `IContainerRuntime`. Please migrate all usage to the `IContainerRuntime.getEntryPoint()` method if trying to obtain the application-specified root object.
275
+ Requesting arbitrary URLs has been deprecated on `IContainerRuntime`. Please migrate all usage to the `IContainerRuntime.getEntryPoint()` method if trying to obtain the application-specified root object.
268
276
 
269
- See [Removing-IFluidRouter.md](https://github.com/microsoft/FluidFramework/blob/main/packages/common/core-interfaces/Removing-IFluidRouter.md) for more details.
277
+ See [Removing-IFluidRouter.md](https://github.com/microsoft/FluidFramework/blob/main/packages/common/core-interfaces/Removing-IFluidRouter.md) for more details.
270
278
 
271
- - Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
279
+ - Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
272
280
 
273
- Dependencies on the following Fluid server package have been updated to version 2.0.1:
281
+ Dependencies on the following Fluid server package have been updated to version 2.0.1:
274
282
 
275
- - @fluidframework/gitresources: 2.0.1
276
- - @fluidframework/server-kafka-orderer: 2.0.1
277
- - @fluidframework/server-lambdas: 2.0.1
278
- - @fluidframework/server-lambdas-driver: 2.0.1
279
- - @fluidframework/server-local-server: 2.0.1
280
- - @fluidframework/server-memory-orderer: 2.0.1
281
- - @fluidframework/protocol-base: 2.0.1
282
- - @fluidframework/server-routerlicious: 2.0.1
283
- - @fluidframework/server-routerlicious-base: 2.0.1
284
- - @fluidframework/server-services: 2.0.1
285
- - @fluidframework/server-services-client: 2.0.1
286
- - @fluidframework/server-services-core: 2.0.1
287
- - @fluidframework/server-services-ordering-kafkanode: 2.0.1
288
- - @fluidframework/server-services-ordering-rdkafka: 2.0.1
289
- - @fluidframework/server-services-ordering-zookeeper: 2.0.1
290
- - @fluidframework/server-services-shared: 2.0.1
291
- - @fluidframework/server-services-telemetry: 2.0.1
292
- - @fluidframework/server-services-utils: 2.0.1
293
- - @fluidframework/server-test-utils: 2.0.1
294
- - tinylicious: 2.0.1
283
+ - @fluidframework/gitresources: 2.0.1
284
+ - @fluidframework/server-kafka-orderer: 2.0.1
285
+ - @fluidframework/server-lambdas: 2.0.1
286
+ - @fluidframework/server-lambdas-driver: 2.0.1
287
+ - @fluidframework/server-local-server: 2.0.1
288
+ - @fluidframework/server-memory-orderer: 2.0.1
289
+ - @fluidframework/protocol-base: 2.0.1
290
+ - @fluidframework/server-routerlicious: 2.0.1
291
+ - @fluidframework/server-routerlicious-base: 2.0.1
292
+ - @fluidframework/server-services: 2.0.1
293
+ - @fluidframework/server-services-client: 2.0.1
294
+ - @fluidframework/server-services-core: 2.0.1
295
+ - @fluidframework/server-services-ordering-kafkanode: 2.0.1
296
+ - @fluidframework/server-services-ordering-rdkafka: 2.0.1
297
+ - @fluidframework/server-services-ordering-zookeeper: 2.0.1
298
+ - @fluidframework/server-services-shared: 2.0.1
299
+ - @fluidframework/server-services-telemetry: 2.0.1
300
+ - @fluidframework/server-services-utils: 2.0.1
301
+ - @fluidframework/server-test-utils: 2.0.1
302
+ - tinylicious: 2.0.1
295
303
 
296
- - Minimum TypeScript version now 5.1.6 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
304
+ - Minimum TypeScript version now 5.1.6 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
297
305
 
298
- The minimum supported TypeScript version for Fluid 2.0 clients is now 5.1.6.
306
+ The minimum supported TypeScript version for Fluid 2.0 clients is now 5.1.6.
299
307
 
300
- - container-runtime-definitions: `getAliasedDataStoreEntryPoint` in `IContainerRuntime` is now required [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
308
+ - container-runtime-definitions: `getAliasedDataStoreEntryPoint` in `IContainerRuntime` is now required [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
301
309
 
302
- `getAliasedDataStoreEntryPoint` was added to `IContainerRuntime` in 2.0.0-internal.6.0 and is now required.
310
+ `getAliasedDataStoreEntryPoint` was added to `IContainerRuntime` in 2.0.0-internal.6.0 and is now required.
303
311
 
304
312
  ## 2.0.0-internal.6.4.0
305
313
 
@@ -313,32 +321,32 @@ Dependency updates only.
313
321
 
314
322
  ### Minor Changes
315
323
 
316
- - Remove use of @fluidframework/common-definitions ([#16638](https://github.com/microsoft/FluidFramework/issues/16638)) [a8c81509c9](https://github.com/microsoft/FluidFramework/commits/a8c81509c9bf09cfb2092ebcf7265205f9eb6dbf)
317
-
318
- The **@fluidframework/common-definitions** package is being deprecated, so the following interfaces and types are now
319
- imported from the **@fluidframework/core-interfaces** package:
320
-
321
- - interface IDisposable
322
- - interface IErrorEvent
323
- - interface IErrorEvent
324
- - interface IEvent
325
- - interface IEventProvider
326
- - interface ILoggingError
327
- - interface ITaggedTelemetryPropertyType
328
- - interface ITelemetryBaseEvent
329
- - interface ITelemetryBaseLogger
330
- - interface ITelemetryErrorEvent
331
- - interface ITelemetryGenericEvent
332
- - interface ITelemetryLogger
333
- - interface ITelemetryPerformanceEvent
334
- - interface ITelemetryProperties
335
- - type ExtendEventProvider
336
- - type IEventThisPlaceHolder
337
- - type IEventTransformer
338
- - type ReplaceIEventThisPlaceHolder
339
- - type ReplaceIEventThisPlaceHolder
340
- - type TelemetryEventCategory
341
- - type TelemetryEventPropertyType
324
+ - Remove use of @fluidframework/common-definitions ([#16638](https://github.com/microsoft/FluidFramework/issues/16638)) [a8c81509c9](https://github.com/microsoft/FluidFramework/commits/a8c81509c9bf09cfb2092ebcf7265205f9eb6dbf)
325
+
326
+ The **@fluidframework/common-definitions** package is being deprecated, so the following interfaces and types are now
327
+ imported from the **@fluidframework/core-interfaces** package:
328
+
329
+ - interface IDisposable
330
+ - interface IErrorEvent
331
+ - interface IErrorEvent
332
+ - interface IEvent
333
+ - interface IEventProvider
334
+ - interface ILoggingError
335
+ - interface ITaggedTelemetryPropertyType
336
+ - interface ITelemetryBaseEvent
337
+ - interface ITelemetryBaseLogger
338
+ - interface ITelemetryErrorEvent
339
+ - interface ITelemetryGenericEvent
340
+ - interface ITelemetryLogger
341
+ - interface ITelemetryPerformanceEvent
342
+ - interface ITelemetryProperties
343
+ - type ExtendEventProvider
344
+ - type IEventThisPlaceHolder
345
+ - type IEventTransformer
346
+ - type ReplaceIEventThisPlaceHolder
347
+ - type ReplaceIEventThisPlaceHolder
348
+ - type TelemetryEventCategory
349
+ - type TelemetryEventPropertyType
342
350
 
343
351
  ## 2.0.0-internal.6.1.0
344
352
 
@@ -348,18 +356,18 @@ Dependency updates only.
348
356
 
349
357
  ### Major Changes
350
358
 
351
- - `getRootDataStore` API is deprecated [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
359
+ - `getRootDataStore` API is deprecated [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
352
360
 
353
- The `getRootDataStore` API that is used to get aliased data store has been deprecated. It will be removed in a future release.
354
- Use `getAliasedDataStoreEntryPoint` API to get aliased data stores instead. It returns the data store's entry point which is its `IFluidHandle`. To use this API `initializeEntryPoint` must be provided when creating `FluidDataStoreRuntime` [here](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/datastore/src/dataStoreRuntime.ts#L243). `getAliasedDataStoreEntryPoint` and `initializeEntryPoint` will become required in a future release.
361
+ The `getRootDataStore` API that is used to get aliased data store has been deprecated. It will be removed in a future release.
362
+ Use `getAliasedDataStoreEntryPoint` API to get aliased data stores instead. It returns the data store's entry point which is its `IFluidHandle`. To use this API `initializeEntryPoint` must be provided when creating `FluidDataStoreRuntime` [here](https://github.com/microsoft/FluidFramework/blob/main/packages/runtime/datastore/src/dataStoreRuntime.ts#L243). `getAliasedDataStoreEntryPoint` and `initializeEntryPoint` will become required in a future release.
355
363
 
356
- - Upgraded typescript transpilation target to ES2020 [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
364
+ - Upgraded typescript transpilation target to ES2020 [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
357
365
 
358
- 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.
366
+ 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.
359
367
 
360
- - IDeltaManager members disposed and dispose() removed [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
368
+ - IDeltaManager members disposed and dispose() removed [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
361
369
 
362
- IDeltaManager members disposed and dispose() were deprecated in 2.0.0-internal.5.3.0 and have now been removed.
370
+ IDeltaManager members disposed and dispose() were deprecated in 2.0.0-internal.5.3.0 and have now been removed.
363
371
 
364
372
  ## 2.0.0-internal.5.4.0
365
373
 
@@ -381,11 +389,11 @@ Dependency updates only.
381
389
 
382
390
  ### Major Changes
383
391
 
384
- - The following functions and classes were deprecated in previous releases and have been removed: [8b242fdc79](https://github.com/microsoft/FluidFramework/commits/8b242fdc796714cf1da9ad3f90d02efb122af0c2)
392
+ - The following functions and classes were deprecated in previous releases and have been removed: [8b242fdc79](https://github.com/microsoft/FluidFramework/commits/8b242fdc796714cf1da9ad3f90d02efb122af0c2)
385
393
 
386
- - `PureDataObject.getFluidObjectFromDirectory`
387
- - `IProvideContainerRuntime` and its `IContainerRuntime` member.
388
- - `ContainerRuntime`'s `IProvideContainerRuntime` has also been removed.
394
+ - `PureDataObject.getFluidObjectFromDirectory`
395
+ - `IProvideContainerRuntime` and its `IContainerRuntime` member.
396
+ - `ContainerRuntime`'s `IProvideContainerRuntime` has also been removed.
389
397
 
390
398
  ## 2.0.0-internal.4.4.0
391
399
 
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.47.8"
8
+ "packageVersion": "7.50.1"
9
9
  }
10
10
  ]
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/container-runtime-definitions",
3
- "version": "2.23.0",
3
+ "version": "2.31.0",
4
4
  "description": "Fluid Runtime definitions",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -41,10 +41,10 @@
41
41
  "main": "",
42
42
  "types": "lib/public.d.ts",
43
43
  "dependencies": {
44
- "@fluidframework/container-definitions": "~2.23.0",
45
- "@fluidframework/core-interfaces": "~2.23.0",
46
- "@fluidframework/driver-definitions": "~2.23.0",
47
- "@fluidframework/runtime-definitions": "~2.23.0"
44
+ "@fluidframework/container-definitions": "~2.31.0",
45
+ "@fluidframework/core-interfaces": "~2.31.0",
46
+ "@fluidframework/driver-definitions": "~2.31.0",
47
+ "@fluidframework/runtime-definitions": "~2.31.0"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@arethetypeswrong/cli": "^0.17.1",
@@ -52,13 +52,12 @@
52
52
  "@fluid-tools/build-cli": "^0.54.0",
53
53
  "@fluidframework/build-common": "^2.0.3",
54
54
  "@fluidframework/build-tools": "^0.54.0",
55
- "@fluidframework/container-runtime-definitions-previous": "npm:@fluidframework/container-runtime-definitions@2.22.0",
55
+ "@fluidframework/container-runtime-definitions-previous": "npm:@fluidframework/container-runtime-definitions@2.30.0",
56
56
  "@fluidframework/eslint-config-fluid": "^5.7.3",
57
- "@microsoft/api-extractor": "7.47.8",
57
+ "@microsoft/api-extractor": "7.50.1",
58
58
  "concurrently": "^8.2.1",
59
59
  "copyfiles": "^2.4.1",
60
60
  "eslint": "~8.55.0",
61
- "prettier": "~3.0.3",
62
61
  "rimraf": "^4.4.0",
63
62
  "typescript": "~5.4.5"
64
63
  },
@@ -89,7 +88,6 @@
89
88
  "check:exports:esm:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.esm.json",
90
89
  "check:exports:esm:public": "api-extractor run --config api-extractor/api-extractor-lint-public.esm.json",
91
90
  "check:format": "npm run check:biome",
92
- "check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
93
91
  "ci:build:api-reports": "concurrently \"npm:ci:build:api-reports:*\"",
94
92
  "ci:build:api-reports:current": "api-extractor run --config api-extractor/api-extractor.current.json",
95
93
  "ci:build:api-reports:legacy": "api-extractor run --config api-extractor/api-extractor.legacy.json",
@@ -99,7 +97,6 @@
99
97
  "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
100
98
  "format": "npm run format:biome",
101
99
  "format:biome": "biome check . --write",
102
- "format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
103
100
  "lint": "fluid-build . --task lint",
104
101
  "lint:fix": "fluid-build . --task eslint:fix --task format",
105
102
  "tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../common/build/build-common/src/cjs/package.json ./dist",
@@ -1,8 +0,0 @@
1
- /*!
2
- * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
- * Licensed under the MIT License.
4
- */
5
-
6
- module.exports = {
7
- ...require("@fluidframework/build-common/prettier.config.cjs"),
8
- };