@fluidframework/local-driver 2.30.0 → 2.31.1

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,9 @@
1
1
  # @fluidframework/local-driver
2
2
 
3
+ ## 2.31.0
4
+
5
+ Dependency updates only.
6
+
3
7
  ## 2.30.0
4
8
 
5
9
  Dependency updates only.
@@ -60,34 +64,34 @@ Dependency updates only.
60
64
 
61
65
  ### Minor Changes
62
66
 
63
- - Updated server dependencies ([#21514](https://github.com/microsoft/FluidFramework/pull/21514)) [9629f1d93a](https://github.com/microsoft/FluidFramework/commit/9629f1d93a7e412c0cb2f65cc21da0c95ff8981d)
64
-
65
- The following Fluid server dependencies have been updated to the latest version, 5.0.0. [See the full changelog.](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/RELEASE_NOTES/5.0.0.md)
66
-
67
- - @fluidframework/gitresources
68
- - @fluidframework/server-kafka-orderer
69
- - @fluidframework/server-lambdas
70
- - @fluidframework/server-lambdas-driver
71
- - @fluidframework/server-local-server
72
- - @fluidframework/server-memory-orderer
73
- - @fluidframework/protocol-base
74
- - @fluidframework/server-routerlicious
75
- - @fluidframework/server-routerlicious-base
76
- - @fluidframework/server-services
77
- - @fluidframework/server-services-client
78
- - @fluidframework/server-services-core
79
- - @fluidframework/server-services-ordering-kafkanode
80
- - @fluidframework/server-services-ordering-rdkafka
81
- - @fluidframework/server-services-ordering-zookeeper
82
- - @fluidframework/server-services-shared
83
- - @fluidframework/server-services-telemetry
84
- - @fluidframework/server-services-utils
85
- - @fluidframework/server-test-utils
86
- - tinylicious
87
-
88
- - Update to TypeScript 5.4 ([#21214](https://github.com/microsoft/FluidFramework/pull/21214)) [0e6256c722](https://github.com/microsoft/FluidFramework/commit/0e6256c722d8bf024f4325bf02547daeeb18bfa6)
89
-
90
- Update package implementations to use TypeScript 5.4.5.
67
+ - Updated server dependencies ([#21514](https://github.com/microsoft/FluidFramework/pull/21514)) [9629f1d93a](https://github.com/microsoft/FluidFramework/commit/9629f1d93a7e412c0cb2f65cc21da0c95ff8981d)
68
+
69
+ The following Fluid server dependencies have been updated to the latest version, 5.0.0. [See the full changelog.](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/RELEASE_NOTES/5.0.0.md)
70
+
71
+ - @fluidframework/gitresources
72
+ - @fluidframework/server-kafka-orderer
73
+ - @fluidframework/server-lambdas
74
+ - @fluidframework/server-lambdas-driver
75
+ - @fluidframework/server-local-server
76
+ - @fluidframework/server-memory-orderer
77
+ - @fluidframework/protocol-base
78
+ - @fluidframework/server-routerlicious
79
+ - @fluidframework/server-routerlicious-base
80
+ - @fluidframework/server-services
81
+ - @fluidframework/server-services-client
82
+ - @fluidframework/server-services-core
83
+ - @fluidframework/server-services-ordering-kafkanode
84
+ - @fluidframework/server-services-ordering-rdkafka
85
+ - @fluidframework/server-services-ordering-zookeeper
86
+ - @fluidframework/server-services-shared
87
+ - @fluidframework/server-services-telemetry
88
+ - @fluidframework/server-services-utils
89
+ - @fluidframework/server-test-utils
90
+ - tinylicious
91
+
92
+ - Update to TypeScript 5.4 ([#21214](https://github.com/microsoft/FluidFramework/pull/21214)) [0e6256c722](https://github.com/microsoft/FluidFramework/commit/0e6256c722d8bf024f4325bf02547daeeb18bfa6)
93
+
94
+ Update package implementations to use TypeScript 5.4.5.
91
95
 
92
96
  ## 2.0.0-rc.4.0.0
93
97
 
@@ -97,94 +101,94 @@ Dependency updates only.
97
101
 
98
102
  ### Major Changes
99
103
 
100
- - Packages now use package.json "exports" and require modern module resolution [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
104
+ - Packages now use package.json "exports" and require modern module resolution [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
101
105
 
102
- Fluid Framework packages have been updated to use the [package.json "exports"
103
- field](https://nodejs.org/docs/latest-v18.x/api/packages.html#exports) to define explicit entry points for both
104
- TypeScript types and implementation code.
106
+ Fluid Framework packages have been updated to use the [package.json "exports"
107
+ field](https://nodejs.org/docs/latest-v18.x/api/packages.html#exports) to define explicit entry points for both
108
+ TypeScript types and implementation code.
105
109
 
106
- This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
110
+ This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
107
111
 
108
- - `"moduleResolution": "Node16"` with `"module": "Node16"`
109
- - `"moduleResolution": "Bundler"` with `"module": "ESNext"`
112
+ - `"moduleResolution": "Node16"` with `"module": "Node16"`
113
+ - `"moduleResolution": "Bundler"` with `"module": "ESNext"`
110
114
 
111
- We recommend using Node16/Node16 unless absolutely necessary. That will produce transpiled JavaScript that is suitable
112
- for use with modern versions of Node.js _and_ Bundlers.
113
- [See the TypeScript documentation](https://www.typescriptlang.org/tsconfig#moduleResolution) for more information
114
- regarding the module and moduleResolution options.
115
+ We recommend using Node16/Node16 unless absolutely necessary. That will produce transpiled JavaScript that is suitable
116
+ for use with modern versions of Node.js _and_ Bundlers.
117
+ [See the TypeScript documentation](https://www.typescriptlang.org/tsconfig#moduleResolution) for more information
118
+ regarding the module and moduleResolution options.
115
119
 
116
- **Node10 moduleResolution is not supported; it does not support Fluid Framework's API structuring pattern that is used
117
- to distinguish stable APIs from those that are in development.**
120
+ **Node10 moduleResolution is not supported; it does not support Fluid Framework's API structuring pattern that is used
121
+ to distinguish stable APIs from those that are in development.**
118
122
 
119
123
  ### Minor Changes
120
124
 
121
- - driver-definitions: update submitSignal content type to string [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
125
+ - driver-definitions: update submitSignal content type to string [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
122
126
 
123
- Change IDocumentDeltaConnection.submitSignal's content argument type to string which represents actual/known use.
127
+ Change IDocumentDeltaConnection.submitSignal's content argument type to string which represents actual/known use.
124
128
 
125
129
  ## 2.0.0-rc.2.0.0
126
130
 
127
131
  ### Minor Changes
128
132
 
129
- - Resolved URLs no longer use non-standard protocols ([#19840](https://github.com/microsoft/FluidFramework/issues/19840)) [9d3d185183](https://github.com/microsoft/FluidFramework/commits/9d3d1851830d953792a6dfad60dde6f1c59480de)
133
+ - Resolved URLs no longer use non-standard protocols ([#19840](https://github.com/microsoft/FluidFramework/issues/19840)) [9d3d185183](https://github.com/microsoft/FluidFramework/commits/9d3d1851830d953792a6dfad60dde6f1c59480de)
130
134
 
131
- Previously, `IResolvedUrl.url` could use a non-standard protocol like `fluid://`, `fluid-odsp://`, or `fluid-test://`. These have been replaced with `https://` to permit standards-compliant URL parsing.
135
+ Previously, `IResolvedUrl.url` could use a non-standard protocol like `fluid://`, `fluid-odsp://`, or `fluid-test://`. These have been replaced with `https://` to permit standards-compliant URL parsing.
132
136
 
133
- - driver-definitions: repositoryUrl removed from IDocumentStorageService ([#19522](https://github.com/microsoft/FluidFramework/issues/19522)) [90eb3c9d33](https://github.com/microsoft/FluidFramework/commits/90eb3c9d33d80e24caa1393a50f414c5602f6aa3)
137
+ - driver-definitions: repositoryUrl removed from IDocumentStorageService ([#19522](https://github.com/microsoft/FluidFramework/issues/19522)) [90eb3c9d33](https://github.com/microsoft/FluidFramework/commits/90eb3c9d33d80e24caa1393a50f414c5602f6aa3)
134
138
 
135
- The `repositoryUrl` member of `IDocumentStorageService` was unused and always equal to the empty string. It has been removed.
139
+ The `repositoryUrl` member of `IDocumentStorageService` was unused and always equal to the empty string. It has been removed.
136
140
 
137
- - container-definitions: Added containerMetadata prop on IContainer interface ([#19142](https://github.com/microsoft/FluidFramework/issues/19142)) [d0d77f3516](https://github.com/microsoft/FluidFramework/commits/d0d77f3516d67f3c9faedb47b20dbd4e309c3bc2)
141
+ - container-definitions: Added containerMetadata prop on IContainer interface ([#19142](https://github.com/microsoft/FluidFramework/issues/19142)) [d0d77f3516](https://github.com/microsoft/FluidFramework/commits/d0d77f3516d67f3c9faedb47b20dbd4e309c3bc2)
138
142
 
139
- Added `containerMetadata` prop on IContainer interface.
143
+ Added `containerMetadata` prop on IContainer interface.
140
144
 
141
- - runtime-definitions: Moved ISignalEnvelope interface to core-interfaces ([#19142](https://github.com/microsoft/FluidFramework/issues/19142)) [d0d77f3516](https://github.com/microsoft/FluidFramework/commits/d0d77f3516d67f3c9faedb47b20dbd4e309c3bc2)
145
+ - runtime-definitions: Moved ISignalEnvelope interface to core-interfaces ([#19142](https://github.com/microsoft/FluidFramework/issues/19142)) [d0d77f3516](https://github.com/microsoft/FluidFramework/commits/d0d77f3516d67f3c9faedb47b20dbd4e309c3bc2)
142
146
 
143
- The `ISignalEnvelope` interface has been moved to the @fluidframework/core-interfaces package.
147
+ The `ISignalEnvelope` interface has been moved to the @fluidframework/core-interfaces package.
144
148
 
145
149
  ## 2.0.0-rc.1.0.0
146
150
 
147
151
  ### Minor Changes
148
152
 
149
- - Updated server dependencies ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
150
-
151
- 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)
152
-
153
- - @fluidframework/gitresources
154
- - @fluidframework/server-kafka-orderer
155
- - @fluidframework/server-lambdas
156
- - @fluidframework/server-lambdas-driver
157
- - @fluidframework/server-local-server
158
- - @fluidframework/server-memory-orderer
159
- - @fluidframework/protocol-base
160
- - @fluidframework/server-routerlicious
161
- - @fluidframework/server-routerlicious-base
162
- - @fluidframework/server-services
163
- - @fluidframework/server-services-client
164
- - @fluidframework/server-services-core
165
- - @fluidframework/server-services-ordering-kafkanode
166
- - @fluidframework/server-services-ordering-rdkafka
167
- - @fluidframework/server-services-ordering-zookeeper
168
- - @fluidframework/server-services-shared
169
- - @fluidframework/server-services-telemetry
170
- - @fluidframework/server-services-utils
171
- - @fluidframework/server-test-utils
172
- - tinylicious
173
-
174
- - Updated @fluidframework/protocol-definitions ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
175
-
176
- The @fluidframework/protocol-definitions dependency has been upgraded to v3.1.0. [See the full
177
- changelog.](https://github.com/microsoft/FluidFramework/blob/main/common/lib/protocol-definitions/CHANGELOG.md#310)
153
+ - Updated server dependencies ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
154
+
155
+ 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)
156
+
157
+ - @fluidframework/gitresources
158
+ - @fluidframework/server-kafka-orderer
159
+ - @fluidframework/server-lambdas
160
+ - @fluidframework/server-lambdas-driver
161
+ - @fluidframework/server-local-server
162
+ - @fluidframework/server-memory-orderer
163
+ - @fluidframework/protocol-base
164
+ - @fluidframework/server-routerlicious
165
+ - @fluidframework/server-routerlicious-base
166
+ - @fluidframework/server-services
167
+ - @fluidframework/server-services-client
168
+ - @fluidframework/server-services-core
169
+ - @fluidframework/server-services-ordering-kafkanode
170
+ - @fluidframework/server-services-ordering-rdkafka
171
+ - @fluidframework/server-services-ordering-zookeeper
172
+ - @fluidframework/server-services-shared
173
+ - @fluidframework/server-services-telemetry
174
+ - @fluidframework/server-services-utils
175
+ - @fluidframework/server-test-utils
176
+ - tinylicious
177
+
178
+ - Updated @fluidframework/protocol-definitions ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
179
+
180
+ The @fluidframework/protocol-definitions dependency has been upgraded to v3.1.0. [See the full
181
+ changelog.](https://github.com/microsoft/FluidFramework/blob/main/common/lib/protocol-definitions/CHANGELOG.md#310)
178
182
 
179
183
  ## 2.0.0-internal.8.0.0
180
184
 
181
185
  ### Major Changes
182
186
 
183
- - local-driver: LocalDocumentStorageService class property type changes [9a451d4946](https://github.com/microsoft/FluidFramework/commits/9a451d4946b5c51a52e4d1ab5bf51e7b285b0d74)
187
+ - local-driver: LocalDocumentStorageService class property type changes [9a451d4946](https://github.com/microsoft/FluidFramework/commits/9a451d4946b5c51a52e4d1ab5bf51e7b285b0d74)
184
188
 
185
- The `repositoryUrl` property on the `LocalDocumentStorageService` class has changed from a property getter to a
186
- `readonly` field. While this is an API change, there should be no changes required on the consumer side since calling
187
- code should remain the same.
189
+ The `repositoryUrl` property on the `LocalDocumentStorageService` class has changed from a property getter to a
190
+ `readonly` field. While this is an API change, there should be no changes required on the consumer side since calling
191
+ code should remain the same.
188
192
 
189
193
  ## 2.0.0-internal.7.4.0
190
194
 
@@ -206,49 +210,49 @@ Dependency updates only.
206
210
 
207
211
  ### Major Changes
208
212
 
209
- - Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
213
+ - Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
210
214
 
211
- This included the following changes from the protocol-definitions release:
215
+ This included the following changes from the protocol-definitions release:
212
216
 
213
- - Updating signal interfaces for some planned improvements. The intention is split the interface between signals
214
- submitted by clients to the server and the resulting signals sent from the server to clients.
215
- - A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
216
- been added, which will be the typing for signals sent from the client to the server. Both extend a new
217
- ISignalMessageBase interface that contains common members.
218
- - The @fluidframework/common-definitions package dependency has been updated to version 1.0.0.
217
+ - Updating signal interfaces for some planned improvements. The intention is split the interface between signals
218
+ submitted by clients to the server and the resulting signals sent from the server to clients.
219
+ - A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
220
+ been added, which will be the typing for signals sent from the client to the server. Both extend a new
221
+ ISignalMessageBase interface that contains common members.
222
+ - The @fluidframework/common-definitions package dependency has been updated to version 1.0.0.
219
223
 
220
- - routerlicious-driver: remove dead blob aggregation concepts and code [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
224
+ - routerlicious-driver: remove dead blob aggregation concepts and code [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
221
225
 
222
- Dead concepts blob aggregation like `aggregateBlobsSmallerThanBytes` and `minBlobSize` have been removed.
226
+ Dead concepts blob aggregation like `aggregateBlobsSmallerThanBytes` and `minBlobSize` have been removed.
223
227
 
224
- - Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
228
+ - Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
225
229
 
226
- Dependencies on the following Fluid server package have been updated to version 2.0.1:
230
+ Dependencies on the following Fluid server package have been updated to version 2.0.1:
227
231
 
228
- - @fluidframework/gitresources: 2.0.1
229
- - @fluidframework/server-kafka-orderer: 2.0.1
230
- - @fluidframework/server-lambdas: 2.0.1
231
- - @fluidframework/server-lambdas-driver: 2.0.1
232
- - @fluidframework/server-local-server: 2.0.1
233
- - @fluidframework/server-memory-orderer: 2.0.1
234
- - @fluidframework/protocol-base: 2.0.1
235
- - @fluidframework/server-routerlicious: 2.0.1
236
- - @fluidframework/server-routerlicious-base: 2.0.1
237
- - @fluidframework/server-services: 2.0.1
238
- - @fluidframework/server-services-client: 2.0.1
239
- - @fluidframework/server-services-core: 2.0.1
240
- - @fluidframework/server-services-ordering-kafkanode: 2.0.1
241
- - @fluidframework/server-services-ordering-rdkafka: 2.0.1
242
- - @fluidframework/server-services-ordering-zookeeper: 2.0.1
243
- - @fluidframework/server-services-shared: 2.0.1
244
- - @fluidframework/server-services-telemetry: 2.0.1
245
- - @fluidframework/server-services-utils: 2.0.1
246
- - @fluidframework/server-test-utils: 2.0.1
247
- - tinylicious: 2.0.1
232
+ - @fluidframework/gitresources: 2.0.1
233
+ - @fluidframework/server-kafka-orderer: 2.0.1
234
+ - @fluidframework/server-lambdas: 2.0.1
235
+ - @fluidframework/server-lambdas-driver: 2.0.1
236
+ - @fluidframework/server-local-server: 2.0.1
237
+ - @fluidframework/server-memory-orderer: 2.0.1
238
+ - @fluidframework/protocol-base: 2.0.1
239
+ - @fluidframework/server-routerlicious: 2.0.1
240
+ - @fluidframework/server-routerlicious-base: 2.0.1
241
+ - @fluidframework/server-services: 2.0.1
242
+ - @fluidframework/server-services-client: 2.0.1
243
+ - @fluidframework/server-services-core: 2.0.1
244
+ - @fluidframework/server-services-ordering-kafkanode: 2.0.1
245
+ - @fluidframework/server-services-ordering-rdkafka: 2.0.1
246
+ - @fluidframework/server-services-ordering-zookeeper: 2.0.1
247
+ - @fluidframework/server-services-shared: 2.0.1
248
+ - @fluidframework/server-services-telemetry: 2.0.1
249
+ - @fluidframework/server-services-utils: 2.0.1
250
+ - @fluidframework/server-test-utils: 2.0.1
251
+ - tinylicious: 2.0.1
248
252
 
249
- - Minimum TypeScript version now 5.1.6 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
253
+ - Minimum TypeScript version now 5.1.6 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
250
254
 
251
- The minimum supported TypeScript version for Fluid 2.0 clients is now 5.1.6.
255
+ The minimum supported TypeScript version for Fluid 2.0 clients is now 5.1.6.
252
256
 
253
257
  ## 2.0.0-internal.6.4.0
254
258
 
@@ -270,9 +274,9 @@ Dependency updates only.
270
274
 
271
275
  ### Major Changes
272
276
 
273
- - Upgraded typescript transpilation target to ES2020 [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
277
+ - Upgraded typescript transpilation target to ES2020 [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
274
278
 
275
- 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.
279
+ 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.
276
280
 
277
281
  ## 2.0.0-internal.5.4.0
278
282
 
@@ -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/local-driver",
3
- "version": "2.30.0",
3
+ "version": "2.31.1",
4
4
  "description": "Fluid local driver",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -71,32 +71,32 @@
71
71
  "temp-directory": "nyc/.nyc_output"
72
72
  },
73
73
  "dependencies": {
74
- "@fluid-internal/client-utils": "~2.30.0",
75
- "@fluidframework/core-interfaces": "~2.30.0",
76
- "@fluidframework/core-utils": "~2.30.0",
77
- "@fluidframework/driver-base": "~2.30.0",
78
- "@fluidframework/driver-definitions": "~2.30.0",
79
- "@fluidframework/driver-utils": "~2.30.0",
74
+ "@fluid-internal/client-utils": "~2.31.1",
75
+ "@fluidframework/core-interfaces": "~2.31.1",
76
+ "@fluidframework/core-utils": "~2.31.1",
77
+ "@fluidframework/driver-base": "~2.31.1",
78
+ "@fluidframework/driver-definitions": "~2.31.1",
79
+ "@fluidframework/driver-utils": "~2.31.1",
80
80
  "@fluidframework/protocol-base": "^5.0.0",
81
- "@fluidframework/routerlicious-driver": "~2.30.0",
81
+ "@fluidframework/routerlicious-driver": "~2.31.1",
82
82
  "@fluidframework/server-local-server": "^5.0.0",
83
83
  "@fluidframework/server-services-client": "^5.0.0",
84
84
  "@fluidframework/server-services-core": "^5.0.0",
85
85
  "@fluidframework/server-test-utils": "^5.0.0",
86
- "@fluidframework/telemetry-utils": "~2.30.0",
86
+ "@fluidframework/telemetry-utils": "~2.31.1",
87
87
  "jsrsasign": "^11.0.0",
88
88
  "uuid": "^9.0.0"
89
89
  },
90
90
  "devDependencies": {
91
91
  "@arethetypeswrong/cli": "^0.17.1",
92
92
  "@biomejs/biome": "~1.9.3",
93
- "@fluid-internal/mocha-test-setup": "~2.30.0",
93
+ "@fluid-internal/mocha-test-setup": "~2.31.1",
94
94
  "@fluid-tools/build-cli": "^0.54.0",
95
95
  "@fluidframework/build-common": "^2.0.3",
96
96
  "@fluidframework/build-tools": "^0.54.0",
97
97
  "@fluidframework/eslint-config-fluid": "^5.7.3",
98
- "@fluidframework/local-driver-previous": "npm:@fluidframework/local-driver@2.23.0",
99
- "@microsoft/api-extractor": "7.47.8",
98
+ "@fluidframework/local-driver-previous": "npm:@fluidframework/local-driver@2.31.0",
99
+ "@microsoft/api-extractor": "7.50.1",
100
100
  "@types/jsrsasign": "^10.5.12",
101
101
  "@types/mocha": "^10.0.10",
102
102
  "@types/node": "^18.19.0",
@@ -109,7 +109,6 @@
109
109
  "mocha": "^10.8.2",
110
110
  "mocha-multi-reporters": "^1.5.1",
111
111
  "moment": "^2.21.0",
112
- "prettier": "~3.0.3",
113
112
  "rimraf": "^4.4.0",
114
113
  "socket.io-client": "~4.7.5",
115
114
  "typescript": "~5.4.5"
@@ -142,7 +141,6 @@
142
141
  "check:exports:esm:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.esm.json",
143
142
  "check:exports:esm:public": "api-extractor run --config api-extractor/api-extractor-lint-public.esm.json",
144
143
  "check:format": "npm run check:biome",
145
- "check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
146
144
  "ci:build:api-reports": "concurrently \"npm:ci:build:api-reports:*\"",
147
145
  "ci:build:api-reports:current": "api-extractor run --config api-extractor/api-extractor.current.json",
148
146
  "ci:build:api-reports:legacy": "api-extractor run --config api-extractor/api-extractor.legacy.json",
@@ -152,7 +150,6 @@
152
150
  "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
153
151
  "format": "npm run format:biome",
154
152
  "format:biome": "biome check . --write",
155
- "format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
156
153
  "lint": "fluid-build . --task lint",
157
154
  "lint:fix": "fluid-build . --task eslint:fix --task format",
158
155
  "test": "npm run test:mocha",
@@ -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
- };