@fluidframework/routerlicious-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 +154 -150
- 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 +11 -14
- 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/routerlicious-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,38 +64,38 @@ Dependency updates only.
|
|
|
60
64
|
|
|
61
65
|
### Minor Changes
|
|
62
66
|
|
|
63
|
-
-
|
|
67
|
+
- Updated server dependencies ([#21514](https://github.com/microsoft/FluidFramework/pull/21514)) [9629f1d93a](https://github.com/microsoft/FluidFramework/commit/9629f1d93a7e412c0cb2f65cc21da0c95ff8981d)
|
|
64
68
|
|
|
65
|
-
|
|
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)
|
|
66
70
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
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
|
|
87
91
|
|
|
88
|
-
-
|
|
92
|
+
- Update to TypeScript 5.4 ([#21214](https://github.com/microsoft/FluidFramework/pull/21214)) [0e6256c722](https://github.com/microsoft/FluidFramework/commit/0e6256c722d8bf024f4325bf02547daeeb18bfa6)
|
|
89
93
|
|
|
90
|
-
|
|
94
|
+
Update package implementations to use TypeScript 5.4.5.
|
|
91
95
|
|
|
92
|
-
-
|
|
96
|
+
- Update to ES 2022 ([#21292](https://github.com/microsoft/FluidFramework/pull/21292)) [68921502f7](https://github.com/microsoft/FluidFramework/commit/68921502f79b1833c4cd6d0fe339bfb126a712c7)
|
|
93
97
|
|
|
94
|
-
|
|
98
|
+
Update tsconfig to target ES 2022.
|
|
95
99
|
|
|
96
100
|
## 2.0.0-rc.4.0.0
|
|
97
101
|
|
|
@@ -101,90 +105,90 @@ Dependency updates only.
|
|
|
101
105
|
|
|
102
106
|
### Major Changes
|
|
103
107
|
|
|
104
|
-
-
|
|
108
|
+
- Packages now use package.json "exports" and require modern module resolution [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
|
|
105
109
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
110
|
+
Fluid Framework packages have been updated to use the [package.json "exports"
|
|
111
|
+
field](https://nodejs.org/docs/latest-v18.x/api/packages.html#exports) to define explicit entry points for both
|
|
112
|
+
TypeScript types and implementation code.
|
|
109
113
|
|
|
110
|
-
|
|
114
|
+
This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
|
|
111
115
|
|
|
112
|
-
|
|
113
|
-
|
|
116
|
+
- `"moduleResolution": "Node16"` with `"module": "Node16"`
|
|
117
|
+
- `"moduleResolution": "Bundler"` with `"module": "ESNext"`
|
|
114
118
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
+
We recommend using Node16/Node16 unless absolutely necessary. That will produce transpiled JavaScript that is suitable
|
|
120
|
+
for use with modern versions of Node.js _and_ Bundlers.
|
|
121
|
+
[See the TypeScript documentation](https://www.typescriptlang.org/tsconfig#moduleResolution) for more information
|
|
122
|
+
regarding the module and moduleResolution options.
|
|
119
123
|
|
|
120
|
-
|
|
121
|
-
|
|
124
|
+
**Node10 moduleResolution is not supported; it does not support Fluid Framework's API structuring pattern that is used
|
|
125
|
+
to distinguish stable APIs from those that are in development.**
|
|
122
126
|
|
|
123
127
|
## 2.0.0-rc.2.0.0
|
|
124
128
|
|
|
125
129
|
### Minor Changes
|
|
126
130
|
|
|
127
|
-
-
|
|
131
|
+
- Resolved URLs no longer use non-standard protocols ([#19840](https://github.com/microsoft/FluidFramework/issues/19840)) [9d3d185183](https://github.com/microsoft/FluidFramework/commits/9d3d1851830d953792a6dfad60dde6f1c59480de)
|
|
128
132
|
|
|
129
|
-
|
|
133
|
+
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.
|
|
130
134
|
|
|
131
|
-
-
|
|
135
|
+
- driver-definitions: repositoryUrl removed from IDocumentStorageService ([#19522](https://github.com/microsoft/FluidFramework/issues/19522)) [90eb3c9d33](https://github.com/microsoft/FluidFramework/commits/90eb3c9d33d80e24caa1393a50f414c5602f6aa3)
|
|
132
136
|
|
|
133
|
-
|
|
137
|
+
The `repositoryUrl` member of `IDocumentStorageService` was unused and always equal to the empty string. It has been removed.
|
|
134
138
|
|
|
135
|
-
-
|
|
139
|
+
- Deprecated error-related enums have been removed ([#19067](https://github.com/microsoft/FluidFramework/issues/19067)) [59793302e5](https://github.com/microsoft/FluidFramework/commits/59793302e56784cfb6ace0e6469345f3565b3312)
|
|
136
140
|
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
141
|
+
Error-related enums `ContainerErrorType`, `DriverErrorType`, `OdspErrorType` and `RouterliciousErrorType` were previously
|
|
142
|
+
deprecated and are now removed. There are replacement object-based enumerations of `ContainerErrorTypes`,
|
|
143
|
+
`DriverErrorTypes`, `OdspErrorTypes` and `RouterliciousErrorTypes`. Refer to the release notes of [Fluid Framework version
|
|
144
|
+
2.0.0-internal.7.0.0](https://github.com/microsoft/FluidFramework/releases/tag/client_v2.0.0-internal.7.0.0) for details
|
|
145
|
+
on the replacements.
|
|
142
146
|
|
|
143
|
-
-
|
|
147
|
+
- routerlicious-driver: Ephemeral containers now controlled in attach() call rather than as driver policy ([#19646](https://github.com/microsoft/FluidFramework/issues/19646)) [22bd1fc045](https://github.com/microsoft/FluidFramework/commits/22bd1fc045fd6bb74eed812ddcf86ae85bd81125)
|
|
144
148
|
|
|
145
|
-
|
|
149
|
+
Previously, ephemeral containers were created by adding an `isEphemeralContainer` flag in `IRouterliciousDriverPolicies`. Now, it is controlled by a `createAsEphemeral` flag on the resolved URL. See <https://github.com/microsoft/FluidFramework/pull/19544> for an example of how to set this flag via your URL resolver.
|
|
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,49 +214,49 @@ Dependency updates only.
|
|
|
210
214
|
|
|
211
215
|
### Major Changes
|
|
212
216
|
|
|
213
|
-
-
|
|
217
|
+
- Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
214
218
|
|
|
215
|
-
|
|
219
|
+
This included the following changes from the protocol-definitions release:
|
|
216
220
|
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
221
|
+
- Updating signal interfaces for some planned improvements. The intention is split the interface between signals
|
|
222
|
+
submitted by clients to the server and the resulting signals sent from the server to clients.
|
|
223
|
+
- A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
|
|
224
|
+
been added, which will be the typing for signals sent from the client to the server. Both extend a new
|
|
225
|
+
ISignalMessageBase interface that contains common members.
|
|
226
|
+
- The @fluidframework/common-definitions package dependency has been updated to version 1.0.0.
|
|
223
227
|
|
|
224
|
-
-
|
|
228
|
+
- routerlicious-driver: remove dead blob aggregation concepts and code [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
225
229
|
|
|
226
|
-
|
|
230
|
+
Dead concepts blob aggregation like `aggregateBlobsSmallerThanBytes` and `minBlobSize` have been removed.
|
|
227
231
|
|
|
228
|
-
-
|
|
232
|
+
- Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
229
233
|
|
|
230
|
-
|
|
234
|
+
Dependencies on the following Fluid server package have been updated to version 2.0.1:
|
|
231
235
|
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
236
|
+
- @fluidframework/gitresources: 2.0.1
|
|
237
|
+
- @fluidframework/server-kafka-orderer: 2.0.1
|
|
238
|
+
- @fluidframework/server-lambdas: 2.0.1
|
|
239
|
+
- @fluidframework/server-lambdas-driver: 2.0.1
|
|
240
|
+
- @fluidframework/server-local-server: 2.0.1
|
|
241
|
+
- @fluidframework/server-memory-orderer: 2.0.1
|
|
242
|
+
- @fluidframework/protocol-base: 2.0.1
|
|
243
|
+
- @fluidframework/server-routerlicious: 2.0.1
|
|
244
|
+
- @fluidframework/server-routerlicious-base: 2.0.1
|
|
245
|
+
- @fluidframework/server-services: 2.0.1
|
|
246
|
+
- @fluidframework/server-services-client: 2.0.1
|
|
247
|
+
- @fluidframework/server-services-core: 2.0.1
|
|
248
|
+
- @fluidframework/server-services-ordering-kafkanode: 2.0.1
|
|
249
|
+
- @fluidframework/server-services-ordering-rdkafka: 2.0.1
|
|
250
|
+
- @fluidframework/server-services-ordering-zookeeper: 2.0.1
|
|
251
|
+
- @fluidframework/server-services-shared: 2.0.1
|
|
252
|
+
- @fluidframework/server-services-telemetry: 2.0.1
|
|
253
|
+
- @fluidframework/server-services-utils: 2.0.1
|
|
254
|
+
- @fluidframework/server-test-utils: 2.0.1
|
|
255
|
+
- tinylicious: 2.0.1
|
|
252
256
|
|
|
253
|
-
-
|
|
257
|
+
- Minimum TypeScript version now 5.1.6 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
254
258
|
|
|
255
|
-
|
|
259
|
+
The minimum supported TypeScript version for Fluid 2.0 clients is now 5.1.6.
|
|
256
260
|
|
|
257
261
|
## 2.0.0-internal.6.4.0
|
|
258
262
|
|
|
@@ -266,32 +270,32 @@ Dependency updates only.
|
|
|
266
270
|
|
|
267
271
|
### Minor Changes
|
|
268
272
|
|
|
269
|
-
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
273
|
+
- Remove use of @fluidframework/common-definitions ([#16638](https://github.com/microsoft/FluidFramework/issues/16638)) [a8c81509c9](https://github.com/microsoft/FluidFramework/commits/a8c81509c9bf09cfb2092ebcf7265205f9eb6dbf)
|
|
274
|
+
|
|
275
|
+
The **@fluidframework/common-definitions** package is being deprecated, so the following interfaces and types are now
|
|
276
|
+
imported from the **@fluidframework/core-interfaces** package:
|
|
277
|
+
|
|
278
|
+
- interface IDisposable
|
|
279
|
+
- interface IErrorEvent
|
|
280
|
+
- interface IErrorEvent
|
|
281
|
+
- interface IEvent
|
|
282
|
+
- interface IEventProvider
|
|
283
|
+
- interface ILoggingError
|
|
284
|
+
- interface ITaggedTelemetryPropertyType
|
|
285
|
+
- interface ITelemetryBaseEvent
|
|
286
|
+
- interface ITelemetryBaseLogger
|
|
287
|
+
- interface ITelemetryErrorEvent
|
|
288
|
+
- interface ITelemetryGenericEvent
|
|
289
|
+
- interface ITelemetryLogger
|
|
290
|
+
- interface ITelemetryPerformanceEvent
|
|
291
|
+
- interface ITelemetryProperties
|
|
292
|
+
- type ExtendEventProvider
|
|
293
|
+
- type IEventThisPlaceHolder
|
|
294
|
+
- type IEventTransformer
|
|
295
|
+
- type ReplaceIEventThisPlaceHolder
|
|
296
|
+
- type ReplaceIEventThisPlaceHolder
|
|
297
|
+
- type TelemetryEventCategory
|
|
298
|
+
- type TelemetryEventPropertyType
|
|
295
299
|
|
|
296
300
|
## 2.0.0-internal.6.1.0
|
|
297
301
|
|
|
@@ -301,17 +305,17 @@ Dependency updates only.
|
|
|
301
305
|
|
|
302
306
|
### Major Changes
|
|
303
307
|
|
|
304
|
-
-
|
|
308
|
+
- Server compatibility change: Upload first summary as base64 blob [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
|
|
305
309
|
|
|
306
|
-
|
|
310
|
+
We are updating the client to adjust the behavior of the routerlicious driver during the first summary, which will now allow non-UTF-8 compatible binaries to be submitted. (See [PR #16286](https://github.com/microsoft/FluidFramework/pull/16286) and [PR #16397](https://github.com/microsoft/FluidFramework/pull/16397)). To support this change, it is necessary for the servers to run the latest versions that are prepared to work with this new format.
|
|
307
311
|
|
|
308
|
-
|
|
312
|
+
This means that this version of routerlicious-driver requires routerlicious server version >=1.0.0.
|
|
309
313
|
|
|
310
|
-
|
|
314
|
+
When uploading summaries, the SummaryTreeUploadManager and WholeSummaryUploadManager currently use different conversion types based on the content of the ISummaryTree object. If the content is binary, the encoding is base64, and if it comes from a string, the encoding is utf-8. Previously, there was an exception for the first summary, which was always encoded in utf-8. However, recent changes have adjusted the server code to replicate this processing for all summaries. As a result, new clients will need to be run against recent versions of the servers that understand this new format.
|
|
311
315
|
|
|
312
|
-
-
|
|
316
|
+
- Upgraded typescript transpilation target to ES2020 [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
|
|
313
317
|
|
|
314
|
-
|
|
318
|
+
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.
|
|
315
319
|
|
|
316
320
|
## 2.0.0-internal.5.4.0
|
|
317
321
|
|
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/routerlicious-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/routerlicious-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,sCAAsC,CAAC;AACjD,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/routerlicious-driver\";\nexport const pkgVersion = \"2.
|
|
1
|
+
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,sCAAsC,CAAC;AACjD,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/routerlicious-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/routerlicious-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,sCAAsC,CAAC;AAC9D,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/routerlicious-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,sCAAsC,CAAC;AAC9D,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/routerlicious-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/routerlicious-driver",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.31.1",
|
|
4
4
|
"description": "Socket.IO + Git implementation of Fluid service API",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -69,14 +69,14 @@
|
|
|
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.
|
|
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
78
|
"@fluidframework/server-services-client": "^5.0.0",
|
|
79
|
-
"@fluidframework/telemetry-utils": "~2.
|
|
79
|
+
"@fluidframework/telemetry-utils": "~2.31.1",
|
|
80
80
|
"cross-fetch": "^3.1.5",
|
|
81
81
|
"json-stringify-safe": "5.0.1",
|
|
82
82
|
"socket.io-client": "~4.7.5",
|
|
@@ -85,13 +85,13 @@
|
|
|
85
85
|
"devDependencies": {
|
|
86
86
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
87
87
|
"@biomejs/biome": "~1.9.3",
|
|
88
|
-
"@fluid-internal/mocha-test-setup": "~2.
|
|
88
|
+
"@fluid-internal/mocha-test-setup": "~2.31.1",
|
|
89
89
|
"@fluid-tools/build-cli": "^0.54.0",
|
|
90
90
|
"@fluidframework/build-common": "^2.0.3",
|
|
91
91
|
"@fluidframework/build-tools": "^0.54.0",
|
|
92
92
|
"@fluidframework/eslint-config-fluid": "^5.7.3",
|
|
93
|
-
"@fluidframework/routerlicious-driver-previous": "npm:@fluidframework/routerlicious-driver@2.
|
|
94
|
-
"@microsoft/api-extractor": "7.
|
|
93
|
+
"@fluidframework/routerlicious-driver-previous": "npm:@fluidframework/routerlicious-driver@2.31.0",
|
|
94
|
+
"@microsoft/api-extractor": "7.50.1",
|
|
95
95
|
"@types/mocha": "^10.0.10",
|
|
96
96
|
"@types/nock": "^9.3.0",
|
|
97
97
|
"@types/node": "^18.19.0",
|
|
@@ -107,7 +107,6 @@
|
|
|
107
107
|
"mocha-multi-reporters": "^1.5.1",
|
|
108
108
|
"moment": "^2.21.0",
|
|
109
109
|
"nock": "^13.3.3",
|
|
110
|
-
"prettier": "~3.0.3",
|
|
111
110
|
"rimraf": "^4.4.0",
|
|
112
111
|
"sinon": "^18.0.1",
|
|
113
112
|
"typescript": "~5.4.5"
|
|
@@ -141,7 +140,6 @@
|
|
|
141
140
|
"check:exports:esm:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.esm.json",
|
|
142
141
|
"check:exports:esm:public": "api-extractor run --config api-extractor/api-extractor-lint-public.esm.json",
|
|
143
142
|
"check:format": "npm run check:biome",
|
|
144
|
-
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
|
145
143
|
"ci:build:api-reports": "concurrently \"npm:ci:build:api-reports:*\"",
|
|
146
144
|
"ci:build:api-reports:current": "api-extractor run --config api-extractor/api-extractor.current.json",
|
|
147
145
|
"ci:build:api-reports:legacy": "api-extractor run --config api-extractor/api-extractor.legacy.json",
|
|
@@ -151,7 +149,6 @@
|
|
|
151
149
|
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
152
150
|
"format": "npm run format:biome",
|
|
153
151
|
"format:biome": "biome check . --write",
|
|
154
|
-
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
|
155
152
|
"lint": "fluid-build . --task lint",
|
|
156
153
|
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
|
157
154
|
"test": "npm run test:mocha",
|
package/src/packageVersion.ts
CHANGED
package/tsconfig.json
CHANGED