@fluidframework/odsp-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 +148 -144
- package/dist/packageVersion.d.ts +1 -1
- package/dist/packageVersion.js +1 -1
- package/dist/packageVersion.js.map +1 -1
- package/lib/packageVersion.d.ts +1 -1
- package/lib/packageVersion.js +1 -1
- package/lib/packageVersion.js.map +1 -1
- package/lib/tsdoc-metadata.json +1 -1
- package/package.json +13 -16
- package/src/packageVersion.ts +1 -1
- package/tsconfig.json +1 -0
- package/prettier.config.cjs +0 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# @fluidframework/odsp-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.
|
|
@@ -12,13 +16,13 @@ Dependency updates only.
|
|
|
12
16
|
|
|
13
17
|
### Minor Changes
|
|
14
18
|
|
|
15
|
-
-
|
|
19
|
+
- odsp-driver no longer depends on node-fetch ([#23796](https://github.com/microsoft/FluidFramework/pull/23796)) [b17276c186](https://github.com/microsoft/FluidFramework/commit/b17276c186043723486dfbd0714da0dcb5ca1e17)
|
|
16
20
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
21
|
+
The `@fluidframework/odsp-driver` package had a dependency on [node-fetch](https://www.npmjs.com/package/node-fetch) to provide consistent behavior of the [Fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) across Node.js and browsers.
|
|
22
|
+
Since v18 of Node.js, the Node-native Fetch API implementation no longer requires extra flags to be enabled, so the Fetch API is effectively now natively available on all browsers and Node.js.
|
|
23
|
+
This dependency removal should reduce Fluid Framework's contribution to application bundle sizes.
|
|
20
24
|
|
|
21
|
-
|
|
25
|
+
We expect this change to have no impact for Fluid Framework consumers. However, if you are running Fluid in a Node.js environment with the `--no-experimental-fetch` flag, this is no longer supported.
|
|
22
26
|
|
|
23
27
|
## 2.21.0
|
|
24
28
|
|
|
@@ -68,9 +72,9 @@ Dependency updates only.
|
|
|
68
72
|
|
|
69
73
|
### Minor Changes
|
|
70
74
|
|
|
71
|
-
-
|
|
75
|
+
- Update to TypeScript 5.4 ([#21214](https://github.com/microsoft/FluidFramework/pull/21214)) [0e6256c722](https://github.com/microsoft/FluidFramework/commit/0e6256c722d8bf024f4325bf02547daeeb18bfa6)
|
|
72
76
|
|
|
73
|
-
|
|
77
|
+
Update package implementations to use TypeScript 5.4.5.
|
|
74
78
|
|
|
75
79
|
## 2.0.0-rc.4.0.0
|
|
76
80
|
|
|
@@ -80,108 +84,108 @@ Dependency updates only.
|
|
|
80
84
|
|
|
81
85
|
### Major Changes
|
|
82
86
|
|
|
83
|
-
-
|
|
87
|
+
- Packages now use package.json "exports" and require modern module resolution [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
|
|
84
88
|
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
89
|
+
Fluid Framework packages have been updated to use the [package.json "exports"
|
|
90
|
+
field](https://nodejs.org/docs/latest-v18.x/api/packages.html#exports) to define explicit entry points for both
|
|
91
|
+
TypeScript types and implementation code.
|
|
88
92
|
|
|
89
|
-
|
|
93
|
+
This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
|
|
90
94
|
|
|
91
|
-
|
|
92
|
-
|
|
95
|
+
- `"moduleResolution": "Node16"` with `"module": "Node16"`
|
|
96
|
+
- `"moduleResolution": "Bundler"` with `"module": "ESNext"`
|
|
93
97
|
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
+
We recommend using Node16/Node16 unless absolutely necessary. That will produce transpiled JavaScript that is suitable
|
|
99
|
+
for use with modern versions of Node.js _and_ Bundlers.
|
|
100
|
+
[See the TypeScript documentation](https://www.typescriptlang.org/tsconfig#moduleResolution) for more information
|
|
101
|
+
regarding the module and moduleResolution options.
|
|
98
102
|
|
|
99
|
-
|
|
100
|
-
|
|
103
|
+
**Node10 moduleResolution is not supported; it does not support Fluid Framework's API structuring pattern that is used
|
|
104
|
+
to distinguish stable APIs from those that are in development.**
|
|
101
105
|
|
|
102
106
|
### Minor Changes
|
|
103
107
|
|
|
104
|
-
-
|
|
108
|
+
- driver-definitions: update submitSignal content type to string [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
|
|
105
109
|
|
|
106
|
-
|
|
110
|
+
Change IDocumentDeltaConnection.submitSignal's content argument type to string which represents actual/known use.
|
|
107
111
|
|
|
108
112
|
## 2.0.0-rc.2.0.0
|
|
109
113
|
|
|
110
114
|
### Minor Changes
|
|
111
115
|
|
|
112
|
-
-
|
|
116
|
+
- Resolved URLs no longer use non-standard protocols ([#19840](https://github.com/microsoft/FluidFramework/issues/19840)) [9d3d185183](https://github.com/microsoft/FluidFramework/commits/9d3d1851830d953792a6dfad60dde6f1c59480de)
|
|
113
117
|
|
|
114
|
-
|
|
118
|
+
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.
|
|
115
119
|
|
|
116
|
-
-
|
|
120
|
+
- driver-definitions: Deprecate `ISnapshotContents` ([#19314](https://github.com/microsoft/FluidFramework/issues/19314)) [fc731b69de](https://github.com/microsoft/FluidFramework/commits/fc731b69deed4a2987e9b97d8918492d689bafbc)
|
|
117
121
|
|
|
118
|
-
|
|
122
|
+
`ISnapshotContents` is deprecated. It has been replaced with `ISnapshot`.
|
|
119
123
|
|
|
120
|
-
-
|
|
124
|
+
- driver-definitions: repositoryUrl removed from IDocumentStorageService ([#19522](https://github.com/microsoft/FluidFramework/issues/19522)) [90eb3c9d33](https://github.com/microsoft/FluidFramework/commits/90eb3c9d33d80e24caa1393a50f414c5602f6aa3)
|
|
121
125
|
|
|
122
|
-
|
|
126
|
+
The `repositoryUrl` member of `IDocumentStorageService` was unused and always equal to the empty string. It has been removed.
|
|
123
127
|
|
|
124
|
-
-
|
|
128
|
+
- Deprecated error-related enums have been removed ([#19067](https://github.com/microsoft/FluidFramework/issues/19067)) [59793302e5](https://github.com/microsoft/FluidFramework/commits/59793302e56784cfb6ace0e6469345f3565b3312)
|
|
125
129
|
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
130
|
+
Error-related enums `ContainerErrorType`, `DriverErrorType`, `OdspErrorType` and `RouterliciousErrorType` were previously
|
|
131
|
+
deprecated and are now removed. There are replacement object-based enumerations of `ContainerErrorTypes`,
|
|
132
|
+
`DriverErrorTypes`, `OdspErrorTypes` and `RouterliciousErrorTypes`. Refer to the release notes of [Fluid Framework version
|
|
133
|
+
2.0.0-internal.7.0.0](https://github.com/microsoft/FluidFramework/releases/tag/client_v2.0.0-internal.7.0.0) for details
|
|
134
|
+
on the replacements.
|
|
131
135
|
|
|
132
|
-
-
|
|
136
|
+
- odsp-driver: Added a new method to odspDriverUrlResolverForShareLink class ([#19648](https://github.com/microsoft/FluidFramework/issues/19648)) [77d4071a9a](https://github.com/microsoft/FluidFramework/commits/77d4071a9af5d7217ce52a180776fb4b90754b86)
|
|
133
137
|
|
|
134
|
-
|
|
138
|
+
Added a new method called `appendLocatorParams` to `odspDriverUrlResolverForShareLink` class which appends locator params to the base URL provided.
|
|
135
139
|
|
|
136
|
-
-
|
|
140
|
+
- odsp-driver: createNavParam removed from odspDriverUrlResolverForShareLink ([#19620](https://github.com/microsoft/FluidFramework/issues/19620)) [93c82abb9c](https://github.com/microsoft/FluidFramework/commits/93c82abb9c9fe9d3264e54a579a10589cf7183d7)
|
|
137
141
|
|
|
138
|
-
|
|
142
|
+
Remove deprecated method: createNavParam from odsp-driver's odspDriverUrlResolverForShareLink.
|
|
139
143
|
|
|
140
|
-
-
|
|
144
|
+
- odsp-driver: Removed deprecated implementation of SingleRT feature ([#18690](https://github.com/microsoft/FluidFramework/issues/18690)) [430205cff1](https://github.com/microsoft/FluidFramework/commits/430205cff1ba8a1a7b13b4d42d12babaae596708)
|
|
141
145
|
|
|
142
|
-
|
|
146
|
+
Removed the deprecated logic of creating sharing-links with container attach (called SingleRT) which was enabled via enableShareLinkWithCreate flag in HostStoragePolicy. This change removes SharingLinkTypes interface definition, removes other deprecated properties from the odsp-driver's resolvedUrl object and also removes the enableShareLinkWithCreate flag. The newer version of SingleRT feature continues to exist, which can be enabled via enableSingleRequestForShareLinkWithCreate feature flag in HostStoragePolicy.
|
|
143
147
|
|
|
144
|
-
-
|
|
148
|
+
- container-definitions: Added containerMetadata prop on IContainer interface ([#19142](https://github.com/microsoft/FluidFramework/issues/19142)) [d0d77f3516](https://github.com/microsoft/FluidFramework/commits/d0d77f3516d67f3c9faedb47b20dbd4e309c3bc2)
|
|
145
149
|
|
|
146
|
-
|
|
150
|
+
Added `containerMetadata` prop on IContainer interface.
|
|
147
151
|
|
|
148
|
-
-
|
|
152
|
+
- runtime-definitions: Moved ISignalEnvelope interface to core-interfaces ([#19142](https://github.com/microsoft/FluidFramework/issues/19142)) [d0d77f3516](https://github.com/microsoft/FluidFramework/commits/d0d77f3516d67f3c9faedb47b20dbd4e309c3bc2)
|
|
149
153
|
|
|
150
|
-
|
|
154
|
+
The `ISignalEnvelope` interface has been moved to the @fluidframework/core-interfaces package.
|
|
151
155
|
|
|
152
156
|
## 2.0.0-rc.1.0.0
|
|
153
157
|
|
|
154
158
|
### Minor Changes
|
|
155
159
|
|
|
156
|
-
-
|
|
157
|
-
|
|
158
|
-
|
|
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
|
-
|
|
160
|
+
- Updated server dependencies ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
|
|
161
|
+
|
|
162
|
+
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)
|
|
163
|
+
|
|
164
|
+
- @fluidframework/gitresources
|
|
165
|
+
- @fluidframework/server-kafka-orderer
|
|
166
|
+
- @fluidframework/server-lambdas
|
|
167
|
+
- @fluidframework/server-lambdas-driver
|
|
168
|
+
- @fluidframework/server-local-server
|
|
169
|
+
- @fluidframework/server-memory-orderer
|
|
170
|
+
- @fluidframework/protocol-base
|
|
171
|
+
- @fluidframework/server-routerlicious
|
|
172
|
+
- @fluidframework/server-routerlicious-base
|
|
173
|
+
- @fluidframework/server-services
|
|
174
|
+
- @fluidframework/server-services-client
|
|
175
|
+
- @fluidframework/server-services-core
|
|
176
|
+
- @fluidframework/server-services-ordering-kafkanode
|
|
177
|
+
- @fluidframework/server-services-ordering-rdkafka
|
|
178
|
+
- @fluidframework/server-services-ordering-zookeeper
|
|
179
|
+
- @fluidframework/server-services-shared
|
|
180
|
+
- @fluidframework/server-services-telemetry
|
|
181
|
+
- @fluidframework/server-services-utils
|
|
182
|
+
- @fluidframework/server-test-utils
|
|
183
|
+
- tinylicious
|
|
184
|
+
|
|
185
|
+
- Updated @fluidframework/protocol-definitions ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
|
|
186
|
+
|
|
187
|
+
The @fluidframework/protocol-definitions dependency has been upgraded to v3.1.0. [See the full
|
|
188
|
+
changelog.](https://github.com/microsoft/FluidFramework/blob/main/common/lib/protocol-definitions/CHANGELOG.md#310)
|
|
185
189
|
|
|
186
190
|
## 2.0.0-internal.8.0.0
|
|
187
191
|
|
|
@@ -207,63 +211,63 @@ Dependency updates only.
|
|
|
207
211
|
|
|
208
212
|
### Major Changes
|
|
209
213
|
|
|
210
|
-
-
|
|
214
|
+
- Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
211
215
|
|
|
212
|
-
|
|
216
|
+
This included the following changes from the protocol-definitions release:
|
|
213
217
|
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
218
|
+
- Updating signal interfaces for some planned improvements. The intention is split the interface between signals
|
|
219
|
+
submitted by clients to the server and the resulting signals sent from the server to clients.
|
|
220
|
+
- A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
|
|
221
|
+
been added, which will be the typing for signals sent from the client to the server. Both extend a new
|
|
222
|
+
ISignalMessageBase interface that contains common members.
|
|
223
|
+
- The @fluidframework/common-definitions package dependency has been updated to version 1.0.0.
|
|
220
224
|
|
|
221
|
-
-
|
|
225
|
+
- routerlicious-driver: remove dead blob aggregation concepts and code [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
222
226
|
|
|
223
|
-
|
|
227
|
+
Dead concepts blob aggregation like `aggregateBlobsSmallerThanBytes` and `minBlobSize` have been removed.
|
|
224
228
|
|
|
225
|
-
-
|
|
229
|
+
- Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
226
230
|
|
|
227
|
-
|
|
231
|
+
Dependencies on the following Fluid server package have been updated to version 2.0.1:
|
|
228
232
|
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
233
|
+
- @fluidframework/gitresources: 2.0.1
|
|
234
|
+
- @fluidframework/server-kafka-orderer: 2.0.1
|
|
235
|
+
- @fluidframework/server-lambdas: 2.0.1
|
|
236
|
+
- @fluidframework/server-lambdas-driver: 2.0.1
|
|
237
|
+
- @fluidframework/server-local-server: 2.0.1
|
|
238
|
+
- @fluidframework/server-memory-orderer: 2.0.1
|
|
239
|
+
- @fluidframework/protocol-base: 2.0.1
|
|
240
|
+
- @fluidframework/server-routerlicious: 2.0.1
|
|
241
|
+
- @fluidframework/server-routerlicious-base: 2.0.1
|
|
242
|
+
- @fluidframework/server-services: 2.0.1
|
|
243
|
+
- @fluidframework/server-services-client: 2.0.1
|
|
244
|
+
- @fluidframework/server-services-core: 2.0.1
|
|
245
|
+
- @fluidframework/server-services-ordering-kafkanode: 2.0.1
|
|
246
|
+
- @fluidframework/server-services-ordering-rdkafka: 2.0.1
|
|
247
|
+
- @fluidframework/server-services-ordering-zookeeper: 2.0.1
|
|
248
|
+
- @fluidframework/server-services-shared: 2.0.1
|
|
249
|
+
- @fluidframework/server-services-telemetry: 2.0.1
|
|
250
|
+
- @fluidframework/server-services-utils: 2.0.1
|
|
251
|
+
- @fluidframework/server-test-utils: 2.0.1
|
|
252
|
+
- tinylicious: 2.0.1
|
|
249
253
|
|
|
250
|
-
-
|
|
254
|
+
- Minimum TypeScript version now 5.1.6 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
251
255
|
|
|
252
|
-
|
|
256
|
+
The minimum supported TypeScript version for Fluid 2.0 clients is now 5.1.6.
|
|
253
257
|
|
|
254
258
|
## 2.0.0-internal.6.4.0
|
|
255
259
|
|
|
256
260
|
### Minor Changes
|
|
257
261
|
|
|
258
|
-
-
|
|
262
|
+
- Upcoming: The type of the logger property/param in various APIs will be changing ([#17350](https://github.com/microsoft/FluidFramework/issues/17350)) [27284bcda3](https://github.com/microsoft/FluidFramework/commits/27284bcda3d63cc4306cf76806f8a075db0db60f)
|
|
259
263
|
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
264
|
+
- @fluidframework/runtime-definitions
|
|
265
|
+
- `IFluidDataStoreRuntime.logger` will be re-typed as `ITelemetryBaseLogger`
|
|
266
|
+
- @fluidframework/odsp-driver
|
|
267
|
+
- `protected OdspDocumentServiceFactoryCore.createDocumentServiceCore`'s parameter `odspLogger` will be re-typed as `ITelemetryLoggerExt`
|
|
268
|
+
- `protected LocalOdspDocumentServiceFactory.createDocumentServiceCore`'s parameter `odspLogger` will be re-typed as `ITelemetryLoggerExt`
|
|
265
269
|
|
|
266
|
-
|
|
270
|
+
Additionally, several of @fluidframework/telemetry-utils's exports are being marked as internal and should not be consumed outside of other FF packages.
|
|
267
271
|
|
|
268
272
|
## 2.0.0-internal.6.3.0
|
|
269
273
|
|
|
@@ -273,32 +277,32 @@ Dependency updates only.
|
|
|
273
277
|
|
|
274
278
|
### Minor Changes
|
|
275
279
|
|
|
276
|
-
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
280
|
+
- Remove use of @fluidframework/common-definitions ([#16638](https://github.com/microsoft/FluidFramework/issues/16638)) [a8c81509c9](https://github.com/microsoft/FluidFramework/commits/a8c81509c9bf09cfb2092ebcf7265205f9eb6dbf)
|
|
281
|
+
|
|
282
|
+
The **@fluidframework/common-definitions** package is being deprecated, so the following interfaces and types are now
|
|
283
|
+
imported from the **@fluidframework/core-interfaces** package:
|
|
284
|
+
|
|
285
|
+
- interface IDisposable
|
|
286
|
+
- interface IErrorEvent
|
|
287
|
+
- interface IErrorEvent
|
|
288
|
+
- interface IEvent
|
|
289
|
+
- interface IEventProvider
|
|
290
|
+
- interface ILoggingError
|
|
291
|
+
- interface ITaggedTelemetryPropertyType
|
|
292
|
+
- interface ITelemetryBaseEvent
|
|
293
|
+
- interface ITelemetryBaseLogger
|
|
294
|
+
- interface ITelemetryErrorEvent
|
|
295
|
+
- interface ITelemetryGenericEvent
|
|
296
|
+
- interface ITelemetryLogger
|
|
297
|
+
- interface ITelemetryPerformanceEvent
|
|
298
|
+
- interface ITelemetryProperties
|
|
299
|
+
- type ExtendEventProvider
|
|
300
|
+
- type IEventThisPlaceHolder
|
|
301
|
+
- type IEventTransformer
|
|
302
|
+
- type ReplaceIEventThisPlaceHolder
|
|
303
|
+
- type ReplaceIEventThisPlaceHolder
|
|
304
|
+
- type TelemetryEventCategory
|
|
305
|
+
- type TelemetryEventPropertyType
|
|
302
306
|
|
|
303
307
|
## 2.0.0-internal.6.1.0
|
|
304
308
|
|
|
@@ -308,9 +312,9 @@ Dependency updates only.
|
|
|
308
312
|
|
|
309
313
|
### Major Changes
|
|
310
314
|
|
|
311
|
-
-
|
|
315
|
+
- Upgraded typescript transpilation target to ES2020 [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
|
|
312
316
|
|
|
313
|
-
|
|
317
|
+
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.
|
|
314
318
|
|
|
315
319
|
## 2.0.0-internal.5.4.0
|
|
316
320
|
|
|
@@ -320,9 +324,9 @@ Dependency updates only.
|
|
|
320
324
|
|
|
321
325
|
### Minor Changes
|
|
322
326
|
|
|
323
|
-
-
|
|
327
|
+
- New API getRelaySessionInfo in odsp-driver ([#16300](https://github.com/microsoft/FluidFramework/issues/16300)) [a25789cd37](https://github.com/microsoft/FluidFramework/commits/a25789cd37bf60ebc4a08e1a9f7eaa8c65f4eae2)
|
|
324
328
|
|
|
325
|
-
|
|
329
|
+
`OdspDocumentServiceFactory` and `OdspDocumentServiceFactoryCore` now provide a new API `getRelaySessionInfo` to surface relay session info from cache.
|
|
326
330
|
|
|
327
331
|
## 2.0.0-internal.5.2.0
|
|
328
332
|
|
package/dist/packageVersion.d.ts
CHANGED
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY
|
|
6
6
|
*/
|
|
7
7
|
export declare const pkgName = "@fluidframework/odsp-driver";
|
|
8
|
-
export declare const pkgVersion = "2.
|
|
8
|
+
export declare const pkgVersion = "2.31.1";
|
|
9
9
|
//# sourceMappingURL=packageVersion.d.ts.map
|
package/dist/packageVersion.js
CHANGED
|
@@ -8,5 +8,5 @@
|
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
9
|
exports.pkgVersion = exports.pkgName = void 0;
|
|
10
10
|
exports.pkgName = "@fluidframework/odsp-driver";
|
|
11
|
-
exports.pkgVersion = "2.
|
|
11
|
+
exports.pkgVersion = "2.31.1";
|
|
12
12
|
//# sourceMappingURL=packageVersion.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,6BAA6B,CAAC;AACxC,QAAA,UAAU,GAAG,QAAQ,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/odsp-driver\";\nexport const pkgVersion = \"2.
|
|
1
|
+
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,6BAA6B,CAAC;AACxC,QAAA,UAAU,GAAG,QAAQ,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/odsp-driver\";\nexport const pkgVersion = \"2.31.1\";\n"]}
|
package/lib/packageVersion.d.ts
CHANGED
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY
|
|
6
6
|
*/
|
|
7
7
|
export declare const pkgName = "@fluidframework/odsp-driver";
|
|
8
|
-
export declare const pkgVersion = "2.
|
|
8
|
+
export declare const pkgVersion = "2.31.1";
|
|
9
9
|
//# sourceMappingURL=packageVersion.d.ts.map
|
package/lib/packageVersion.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,6BAA6B,CAAC;AACrD,MAAM,CAAC,MAAM,UAAU,GAAG,QAAQ,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/odsp-driver\";\nexport const pkgVersion = \"2.
|
|
1
|
+
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,6BAA6B,CAAC;AACrD,MAAM,CAAC,MAAM,UAAU,GAAG,QAAQ,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/odsp-driver\";\nexport const pkgVersion = \"2.31.1\";\n"]}
|
package/lib/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/odsp-driver",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.31.1",
|
|
4
4
|
"description": "Socket storage implementation for SPO and ODC",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -69,28 +69,28 @@
|
|
|
69
69
|
"temp-directory": "nyc/.nyc_output"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@fluid-internal/client-utils": "~2.
|
|
73
|
-
"@fluidframework/core-interfaces": "~2.
|
|
74
|
-
"@fluidframework/core-utils": "~2.
|
|
75
|
-
"@fluidframework/driver-base": "~2.
|
|
76
|
-
"@fluidframework/driver-definitions": "~2.
|
|
77
|
-
"@fluidframework/driver-utils": "~2.
|
|
78
|
-
"@fluidframework/odsp-doclib-utils": "~2.
|
|
79
|
-
"@fluidframework/odsp-driver-definitions": "~2.
|
|
80
|
-
"@fluidframework/telemetry-utils": "~2.
|
|
72
|
+
"@fluid-internal/client-utils": "~2.31.1",
|
|
73
|
+
"@fluidframework/core-interfaces": "~2.31.1",
|
|
74
|
+
"@fluidframework/core-utils": "~2.31.1",
|
|
75
|
+
"@fluidframework/driver-base": "~2.31.1",
|
|
76
|
+
"@fluidframework/driver-definitions": "~2.31.1",
|
|
77
|
+
"@fluidframework/driver-utils": "~2.31.1",
|
|
78
|
+
"@fluidframework/odsp-doclib-utils": "~2.31.1",
|
|
79
|
+
"@fluidframework/odsp-driver-definitions": "~2.31.1",
|
|
80
|
+
"@fluidframework/telemetry-utils": "~2.31.1",
|
|
81
81
|
"socket.io-client": "~4.7.5",
|
|
82
82
|
"uuid": "^9.0.0"
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
85
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
86
86
|
"@biomejs/biome": "~1.9.3",
|
|
87
|
-
"@fluid-internal/mocha-test-setup": "~2.
|
|
87
|
+
"@fluid-internal/mocha-test-setup": "~2.31.1",
|
|
88
88
|
"@fluid-tools/build-cli": "^0.54.0",
|
|
89
89
|
"@fluidframework/build-common": "^2.0.3",
|
|
90
90
|
"@fluidframework/build-tools": "^0.54.0",
|
|
91
91
|
"@fluidframework/eslint-config-fluid": "^5.7.3",
|
|
92
|
-
"@fluidframework/odsp-driver-previous": "npm:@fluidframework/odsp-driver@2.
|
|
93
|
-
"@microsoft/api-extractor": "7.
|
|
92
|
+
"@fluidframework/odsp-driver-previous": "npm:@fluidframework/odsp-driver@2.31.0",
|
|
93
|
+
"@microsoft/api-extractor": "7.50.1",
|
|
94
94
|
"@types/mocha": "^10.0.10",
|
|
95
95
|
"@types/node": "^18.19.0",
|
|
96
96
|
"@types/sinon": "^17.0.3",
|
|
@@ -103,7 +103,6 @@
|
|
|
103
103
|
"mocha": "^10.8.2",
|
|
104
104
|
"mocha-multi-reporters": "^1.5.1",
|
|
105
105
|
"moment": "^2.21.0",
|
|
106
|
-
"prettier": "~3.0.3",
|
|
107
106
|
"rimraf": "^4.4.0",
|
|
108
107
|
"sinon": "^18.0.1",
|
|
109
108
|
"typescript": "~5.4.5"
|
|
@@ -137,7 +136,6 @@
|
|
|
137
136
|
"check:exports:esm:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.esm.json",
|
|
138
137
|
"check:exports:esm:public": "api-extractor run --config api-extractor/api-extractor-lint-public.esm.json",
|
|
139
138
|
"check:format": "npm run check:biome",
|
|
140
|
-
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
|
141
139
|
"ci:build:api-reports": "concurrently \"npm:ci:build:api-reports:*\"",
|
|
142
140
|
"ci:build:api-reports:current": "api-extractor run --config api-extractor/api-extractor.current.json",
|
|
143
141
|
"ci:build:api-reports:legacy": "api-extractor run --config api-extractor/api-extractor.legacy.json",
|
|
@@ -147,7 +145,6 @@
|
|
|
147
145
|
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
148
146
|
"format": "npm run format:biome",
|
|
149
147
|
"format:biome": "biome check . --write",
|
|
150
|
-
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
|
151
148
|
"lint": "fluid-build . --task lint",
|
|
152
149
|
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
|
153
150
|
"test": "npm run test:mocha",
|
package/src/packageVersion.ts
CHANGED
package/tsconfig.json
CHANGED