@fluidframework/driver-definitions 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 +183 -176
- package/lib/tsdoc-metadata.json +1 -1
- package/package.json +4 -7
- package/prettier.config.cjs +0 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# @fluidframework/driver-definitions
|
|
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,131 +64,131 @@ Dependency updates only.
|
|
|
60
64
|
|
|
61
65
|
### Minor Changes
|
|
62
66
|
|
|
63
|
-
-
|
|
67
|
+
- Update to TypeScript 5.4 ([#21214](https://github.com/microsoft/FluidFramework/pull/21214)) [0e6256c722](https://github.com/microsoft/FluidFramework/commit/0e6256c722d8bf024f4325bf02547daeeb18bfa6)
|
|
64
68
|
|
|
65
|
-
|
|
69
|
+
Update package implementations to use TypeScript 5.4.5.
|
|
66
70
|
|
|
67
|
-
-
|
|
71
|
+
- fluid-framework: Remove some types from `@public` that are not needed ([#21326](https://github.com/microsoft/FluidFramework/pull/21326)) [b629cb80b0](https://github.com/microsoft/FluidFramework/commit/b629cb80b0e5ecdc750270807f77a0e30fab4559)
|
|
68
72
|
|
|
69
|
-
|
|
73
|
+
Mark the following APIs `@alpha` instead of `@public`:
|
|
70
74
|
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
75
|
+
- IBranchOrigin
|
|
76
|
+
- ISequencedDocumentMessage
|
|
77
|
+
- ISignalMessage
|
|
78
|
+
- ISignalMessageBase
|
|
79
|
+
- ITrace
|
|
76
80
|
|
|
77
|
-
-
|
|
81
|
+
- Update to ES 2022 ([#21292](https://github.com/microsoft/FluidFramework/pull/21292)) [68921502f7](https://github.com/microsoft/FluidFramework/commit/68921502f79b1833c4cd6d0fe339bfb126a712c7)
|
|
78
82
|
|
|
79
|
-
|
|
83
|
+
Update tsconfig to target ES 2022.
|
|
80
84
|
|
|
81
85
|
## 2.0.0-rc.4.0.0
|
|
82
86
|
|
|
83
87
|
### Minor Changes
|
|
84
88
|
|
|
85
|
-
-
|
|
89
|
+
- Make several driver types no longer public [b7ad7d0b55](https://github.com/microsoft/FluidFramework/commit/b7ad7d0b55884dd8954abf7c398e518838b9bda0)
|
|
86
90
|
|
|
87
|
-
|
|
91
|
+
Move the following types from `@public` to `@alpha`:
|
|
88
92
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
93
|
+
- ITokenClaims
|
|
94
|
+
- IDocumentMessage
|
|
95
|
+
- IClientConfiguration
|
|
96
|
+
- IAnyDriverError
|
|
97
|
+
- IDriverErrorBase
|
|
98
|
+
- DriverErrorTypes
|
|
95
99
|
|
|
96
|
-
|
|
100
|
+
`DriverErrorTypes` is no longer exported from the `fluid-framework` package.
|
|
97
101
|
|
|
98
102
|
## 2.0.0-rc.3.0.0
|
|
99
103
|
|
|
100
104
|
### Major Changes
|
|
101
105
|
|
|
102
|
-
-
|
|
106
|
+
- Packages now use package.json "exports" and require modern module resolution [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
|
|
103
107
|
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
108
|
+
Fluid Framework packages have been updated to use the [package.json "exports"
|
|
109
|
+
field](https://nodejs.org/docs/latest-v18.x/api/packages.html#exports) to define explicit entry points for both
|
|
110
|
+
TypeScript types and implementation code.
|
|
107
111
|
|
|
108
|
-
|
|
112
|
+
This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
|
|
109
113
|
|
|
110
|
-
|
|
111
|
-
|
|
114
|
+
- `"moduleResolution": "Node16"` with `"module": "Node16"`
|
|
115
|
+
- `"moduleResolution": "Bundler"` with `"module": "ESNext"`
|
|
112
116
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
+
We recommend using Node16/Node16 unless absolutely necessary. That will produce transpiled JavaScript that is suitable
|
|
118
|
+
for use with modern versions of Node.js _and_ Bundlers.
|
|
119
|
+
[See the TypeScript documentation](https://www.typescriptlang.org/tsconfig#moduleResolution) for more information
|
|
120
|
+
regarding the module and moduleResolution options.
|
|
117
121
|
|
|
118
|
-
|
|
119
|
-
|
|
122
|
+
**Node10 moduleResolution is not supported; it does not support Fluid Framework's API structuring pattern that is used
|
|
123
|
+
to distinguish stable APIs from those that are in development.**
|
|
120
124
|
|
|
121
125
|
### Minor Changes
|
|
122
126
|
|
|
123
|
-
-
|
|
127
|
+
- driver-definitions: update submitSignal content type to string [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
|
|
124
128
|
|
|
125
|
-
|
|
129
|
+
Change IDocumentDeltaConnection.submitSignal's content argument type to string which represents actual/known use.
|
|
126
130
|
|
|
127
131
|
## 2.0.0-rc.2.0.0
|
|
128
132
|
|
|
129
133
|
### Minor Changes
|
|
130
134
|
|
|
131
|
-
-
|
|
135
|
+
- driver-definitions: Deprecate `ISnapshotContents` ([#19314](https://github.com/microsoft/FluidFramework/issues/19314)) [fc731b69de](https://github.com/microsoft/FluidFramework/commits/fc731b69deed4a2987e9b97d8918492d689bafbc)
|
|
132
136
|
|
|
133
|
-
|
|
137
|
+
`ISnapshotContents` is deprecated. It has been replaced with `ISnapshot`.
|
|
134
138
|
|
|
135
|
-
-
|
|
139
|
+
- driver-definitions: repositoryUrl removed from IDocumentStorageService ([#19522](https://github.com/microsoft/FluidFramework/issues/19522)) [90eb3c9d33](https://github.com/microsoft/FluidFramework/commits/90eb3c9d33d80e24caa1393a50f414c5602f6aa3)
|
|
136
140
|
|
|
137
|
-
|
|
141
|
+
The `repositoryUrl` member of `IDocumentStorageService` was unused and always equal to the empty string. It has been removed.
|
|
138
142
|
|
|
139
|
-
-
|
|
143
|
+
- Deprecated error-related enums have been removed ([#19067](https://github.com/microsoft/FluidFramework/issues/19067)) [59793302e5](https://github.com/microsoft/FluidFramework/commits/59793302e56784cfb6ace0e6469345f3565b3312)
|
|
140
144
|
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
145
|
+
Error-related enums `ContainerErrorType`, `DriverErrorType`, `OdspErrorType` and `RouterliciousErrorType` were previously
|
|
146
|
+
deprecated and are now removed. There are replacement object-based enumerations of `ContainerErrorTypes`,
|
|
147
|
+
`DriverErrorTypes`, `OdspErrorTypes` and `RouterliciousErrorTypes`. Refer to the release notes of [Fluid Framework version
|
|
148
|
+
2.0.0-internal.7.0.0](https://github.com/microsoft/FluidFramework/releases/tag/client_v2.0.0-internal.7.0.0) for details
|
|
149
|
+
on the replacements.
|
|
146
150
|
|
|
147
|
-
-
|
|
151
|
+
- container-definitions: Added containerMetadata prop on IContainer interface ([#19142](https://github.com/microsoft/FluidFramework/issues/19142)) [d0d77f3516](https://github.com/microsoft/FluidFramework/commits/d0d77f3516d67f3c9faedb47b20dbd4e309c3bc2)
|
|
148
152
|
|
|
149
|
-
|
|
153
|
+
Added `containerMetadata` prop on IContainer interface.
|
|
150
154
|
|
|
151
|
-
-
|
|
155
|
+
- runtime-definitions: Moved ISignalEnvelope interface to core-interfaces ([#19142](https://github.com/microsoft/FluidFramework/issues/19142)) [d0d77f3516](https://github.com/microsoft/FluidFramework/commits/d0d77f3516d67f3c9faedb47b20dbd4e309c3bc2)
|
|
152
156
|
|
|
153
|
-
|
|
157
|
+
The `ISignalEnvelope` interface has been moved to the @fluidframework/core-interfaces package.
|
|
154
158
|
|
|
155
159
|
## 2.0.0-rc.1.0.0
|
|
156
160
|
|
|
157
161
|
### Minor Changes
|
|
158
162
|
|
|
159
|
-
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
163
|
+
- Updated server dependencies ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
|
|
164
|
+
|
|
165
|
+
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)
|
|
166
|
+
|
|
167
|
+
- @fluidframework/gitresources
|
|
168
|
+
- @fluidframework/server-kafka-orderer
|
|
169
|
+
- @fluidframework/server-lambdas
|
|
170
|
+
- @fluidframework/server-lambdas-driver
|
|
171
|
+
- @fluidframework/server-local-server
|
|
172
|
+
- @fluidframework/server-memory-orderer
|
|
173
|
+
- @fluidframework/protocol-base
|
|
174
|
+
- @fluidframework/server-routerlicious
|
|
175
|
+
- @fluidframework/server-routerlicious-base
|
|
176
|
+
- @fluidframework/server-services
|
|
177
|
+
- @fluidframework/server-services-client
|
|
178
|
+
- @fluidframework/server-services-core
|
|
179
|
+
- @fluidframework/server-services-ordering-kafkanode
|
|
180
|
+
- @fluidframework/server-services-ordering-rdkafka
|
|
181
|
+
- @fluidframework/server-services-ordering-zookeeper
|
|
182
|
+
- @fluidframework/server-services-shared
|
|
183
|
+
- @fluidframework/server-services-telemetry
|
|
184
|
+
- @fluidframework/server-services-utils
|
|
185
|
+
- @fluidframework/server-test-utils
|
|
186
|
+
- tinylicious
|
|
187
|
+
|
|
188
|
+
- Updated @fluidframework/protocol-definitions ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
|
|
189
|
+
|
|
190
|
+
The @fluidframework/protocol-definitions dependency has been upgraded to v3.1.0. [See the full
|
|
191
|
+
changelog.](https://github.com/microsoft/FluidFramework/blob/main/common/lib/protocol-definitions/CHANGELOG.md#310)
|
|
188
192
|
|
|
189
193
|
## 2.0.0-internal.8.0.0
|
|
190
194
|
|
|
@@ -210,67 +214,70 @@ Dependency updates only.
|
|
|
210
214
|
|
|
211
215
|
### Major Changes
|
|
212
216
|
|
|
213
|
-
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
-
|
|
272
|
-
|
|
273
|
-
|
|
217
|
+
- odsp-driver: Load container in readonly mode when driver throws DriverErrorType.outOfStorage [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
218
|
+
|
|
219
|
+
Handle DriverErrorType.outOfStorage error from driver and load the container in readonly mode. Currently there is no
|
|
220
|
+
handling and when the join session throws this error, the container will get closed. With this we use NoDeltaStream
|
|
221
|
+
object as connection and load the container in read mode, so that it loads properly. We also notify the that the
|
|
222
|
+
container is "readonly" through the event on delta manager so that apps can listen to this and show any UX etc. The app
|
|
223
|
+
can listen to the event like this:
|
|
224
|
+
|
|
225
|
+
```ts
|
|
226
|
+
container.deltaManager.on(
|
|
227
|
+
"readonly",
|
|
228
|
+
(
|
|
229
|
+
readonly?: boolean,
|
|
230
|
+
readonlyConnectionReason?: { text: string; error?: IErrorBase },
|
|
231
|
+
) => {
|
|
232
|
+
// error?.errorType will be equal to DriverErrorType.outOfStorage in this case
|
|
233
|
+
// App logic
|
|
234
|
+
},
|
|
235
|
+
);
|
|
236
|
+
```
|
|
237
|
+
|
|
238
|
+
- Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
239
|
+
|
|
240
|
+
This included the following changes from the protocol-definitions release:
|
|
241
|
+
|
|
242
|
+
- Updating signal interfaces for some planned improvements. The intention is split the interface between signals
|
|
243
|
+
submitted by clients to the server and the resulting signals sent from the server to clients.
|
|
244
|
+
- A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
|
|
245
|
+
been added, which will be the typing for signals sent from the client to the server. Both extend a new
|
|
246
|
+
ISignalMessageBase interface that contains common members.
|
|
247
|
+
- The @fluidframework/common-definitions package dependency has been updated to version 1.0.0.
|
|
248
|
+
|
|
249
|
+
- routerlicious-driver: remove dead blob aggregation concepts and code [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
250
|
+
|
|
251
|
+
Dead concepts blob aggregation like `aggregateBlobsSmallerThanBytes` and `minBlobSize` have been removed.
|
|
252
|
+
|
|
253
|
+
- Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
254
|
+
|
|
255
|
+
Dependencies on the following Fluid server package have been updated to version 2.0.1:
|
|
256
|
+
|
|
257
|
+
- @fluidframework/gitresources: 2.0.1
|
|
258
|
+
- @fluidframework/server-kafka-orderer: 2.0.1
|
|
259
|
+
- @fluidframework/server-lambdas: 2.0.1
|
|
260
|
+
- @fluidframework/server-lambdas-driver: 2.0.1
|
|
261
|
+
- @fluidframework/server-local-server: 2.0.1
|
|
262
|
+
- @fluidframework/server-memory-orderer: 2.0.1
|
|
263
|
+
- @fluidframework/protocol-base: 2.0.1
|
|
264
|
+
- @fluidframework/server-routerlicious: 2.0.1
|
|
265
|
+
- @fluidframework/server-routerlicious-base: 2.0.1
|
|
266
|
+
- @fluidframework/server-services: 2.0.1
|
|
267
|
+
- @fluidframework/server-services-client: 2.0.1
|
|
268
|
+
- @fluidframework/server-services-core: 2.0.1
|
|
269
|
+
- @fluidframework/server-services-ordering-kafkanode: 2.0.1
|
|
270
|
+
- @fluidframework/server-services-ordering-rdkafka: 2.0.1
|
|
271
|
+
- @fluidframework/server-services-ordering-zookeeper: 2.0.1
|
|
272
|
+
- @fluidframework/server-services-shared: 2.0.1
|
|
273
|
+
- @fluidframework/server-services-telemetry: 2.0.1
|
|
274
|
+
- @fluidframework/server-services-utils: 2.0.1
|
|
275
|
+
- @fluidframework/server-test-utils: 2.0.1
|
|
276
|
+
- tinylicious: 2.0.1
|
|
277
|
+
|
|
278
|
+
- Minimum TypeScript version now 5.1.6 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
279
|
+
|
|
280
|
+
The minimum supported TypeScript version for Fluid 2.0 clients is now 5.1.6.
|
|
274
281
|
|
|
275
282
|
## 2.0.0-internal.6.4.0
|
|
276
283
|
|
|
@@ -280,40 +287,40 @@ Dependency updates only.
|
|
|
280
287
|
|
|
281
288
|
### Minor Changes
|
|
282
289
|
|
|
283
|
-
-
|
|
290
|
+
- Add new error type enumeration that extends common errors from core-interfaces ([#17078](https://github.com/microsoft/FluidFramework/issues/17078)) [5c4bf0d9c2](https://github.com/microsoft/FluidFramework/commits/5c4bf0d9c224af86d0c2205c67c6e64405fee51c)
|
|
284
291
|
|
|
285
|
-
|
|
292
|
+
Deprecates existing `DriverErrorType` enum in favor of the new `DriverErrorTypes` type.
|
|
286
293
|
|
|
287
294
|
## 2.0.0-internal.6.2.0
|
|
288
295
|
|
|
289
296
|
### Minor Changes
|
|
290
297
|
|
|
291
|
-
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
298
|
+
- Remove use of @fluidframework/common-definitions ([#16638](https://github.com/microsoft/FluidFramework/issues/16638)) [a8c81509c9](https://github.com/microsoft/FluidFramework/commits/a8c81509c9bf09cfb2092ebcf7265205f9eb6dbf)
|
|
299
|
+
|
|
300
|
+
The **@fluidframework/common-definitions** package is being deprecated, so the following interfaces and types are now
|
|
301
|
+
imported from the **@fluidframework/core-interfaces** package:
|
|
302
|
+
|
|
303
|
+
- interface IDisposable
|
|
304
|
+
- interface IErrorEvent
|
|
305
|
+
- interface IErrorEvent
|
|
306
|
+
- interface IEvent
|
|
307
|
+
- interface IEventProvider
|
|
308
|
+
- interface ILoggingError
|
|
309
|
+
- interface ITaggedTelemetryPropertyType
|
|
310
|
+
- interface ITelemetryBaseEvent
|
|
311
|
+
- interface ITelemetryBaseLogger
|
|
312
|
+
- interface ITelemetryErrorEvent
|
|
313
|
+
- interface ITelemetryGenericEvent
|
|
314
|
+
- interface ITelemetryLogger
|
|
315
|
+
- interface ITelemetryPerformanceEvent
|
|
316
|
+
- interface ITelemetryProperties
|
|
317
|
+
- type ExtendEventProvider
|
|
318
|
+
- type IEventThisPlaceHolder
|
|
319
|
+
- type IEventTransformer
|
|
320
|
+
- type ReplaceIEventThisPlaceHolder
|
|
321
|
+
- type ReplaceIEventThisPlaceHolder
|
|
322
|
+
- type TelemetryEventCategory
|
|
323
|
+
- type TelemetryEventPropertyType
|
|
317
324
|
|
|
318
325
|
## 2.0.0-internal.6.1.0
|
|
319
326
|
|
|
@@ -323,13 +330,13 @@ Dependency updates only.
|
|
|
323
330
|
|
|
324
331
|
### Major Changes
|
|
325
332
|
|
|
326
|
-
-
|
|
333
|
+
- Remove Interface IFluidResolvedUrl [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
|
|
327
334
|
|
|
328
|
-
|
|
335
|
+
IFluidResolvedUrl was deprecated and is now removed. All usages should use IResolvedUrl instead
|
|
329
336
|
|
|
330
|
-
-
|
|
337
|
+
- Upgraded typescript transpilation target to ES2020 [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
|
|
331
338
|
|
|
332
|
-
|
|
339
|
+
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.
|
|
333
340
|
|
|
334
341
|
## 2.0.0-internal.5.4.0
|
|
335
342
|
|
|
@@ -351,13 +358,13 @@ Dependency updates only.
|
|
|
351
358
|
|
|
352
359
|
### Major Changes
|
|
353
360
|
|
|
354
|
-
-
|
|
361
|
+
- IResolvedUrl equivalent to IFluidResolvedUrl [8b242fdc79](https://github.com/microsoft/FluidFramework/commits/8b242fdc796714cf1da9ad3f90d02efb122af0c2)
|
|
355
362
|
|
|
356
|
-
|
|
363
|
+
In @fluidframework/driver-definitions, IResolvedUrlBase and IWebResolvedUrl have now been removed.
|
|
357
364
|
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
365
|
+
This makes IResolvedUrl and IFluidResolvedUrl equivalent. Since all ResolvedUrls are now FluidResolvedUrls we no longer
|
|
366
|
+
need to differentiate them. In @fluidframework/driver-utils isFluidResolvedUrl and ensureFluidResolvedUrl have been
|
|
367
|
+
removed due to this.
|
|
361
368
|
|
|
362
369
|
## 2.0.0-internal.4.4.0
|
|
363
370
|
|
package/lib/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/driver-definitions",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.31.1",
|
|
4
4
|
"description": "Fluid driver definitions",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"main": "lib/index.js",
|
|
48
48
|
"types": "lib/public.d.ts",
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@fluidframework/core-interfaces": "~2.
|
|
50
|
+
"@fluidframework/core-interfaces": "~2.31.1"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
@@ -55,13 +55,12 @@
|
|
|
55
55
|
"@fluid-tools/build-cli": "^0.54.0",
|
|
56
56
|
"@fluidframework/build-common": "^2.0.3",
|
|
57
57
|
"@fluidframework/build-tools": "^0.54.0",
|
|
58
|
-
"@fluidframework/driver-definitions-previous": "npm:@fluidframework/driver-definitions@2.
|
|
58
|
+
"@fluidframework/driver-definitions-previous": "npm:@fluidframework/driver-definitions@2.31.0",
|
|
59
59
|
"@fluidframework/eslint-config-fluid": "^5.7.3",
|
|
60
|
-
"@microsoft/api-extractor": "7.
|
|
60
|
+
"@microsoft/api-extractor": "7.50.1",
|
|
61
61
|
"concurrently": "^8.2.1",
|
|
62
62
|
"copyfiles": "^2.4.1",
|
|
63
63
|
"eslint": "~8.55.0",
|
|
64
|
-
"prettier": "~3.0.3",
|
|
65
64
|
"rimraf": "^4.4.0",
|
|
66
65
|
"typescript": "~5.4.5"
|
|
67
66
|
},
|
|
@@ -101,7 +100,6 @@
|
|
|
101
100
|
"check:exports:esm:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.esm.json",
|
|
102
101
|
"check:exports:esm:public": "api-extractor run --config api-extractor/api-extractor-lint-public.esm.json",
|
|
103
102
|
"check:format": "npm run check:biome",
|
|
104
|
-
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
|
105
103
|
"ci:build": "npm run build:compile",
|
|
106
104
|
"ci:build:api-reports": "concurrently \"npm:ci:build:api-reports:*\"",
|
|
107
105
|
"ci:build:api-reports:current": "api-extractor run --config api-extractor/api-extractor.current.json",
|
|
@@ -114,7 +112,6 @@
|
|
|
114
112
|
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
115
113
|
"format": "npm run format:biome",
|
|
116
114
|
"format:biome": "biome check . --write",
|
|
117
|
-
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
|
118
115
|
"lint": "fluid-build . --task lint",
|
|
119
116
|
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
|
120
117
|
"place:cjs:package-stub": "copyfiles -f ../../../common/build/build-common/src/cjs/package.json ./dist",
|