@fluidframework/routerlicious-driver 2.23.0 → 2.31.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +158 -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 +12 -15
- package/src/packageVersion.ts +1 -1
- package/tsconfig.json +1 -0
- package/prettier.config.cjs +0 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @fluidframework/routerlicious-driver
|
|
2
2
|
|
|
3
|
+
## 2.31.0
|
|
4
|
+
|
|
5
|
+
Dependency updates only.
|
|
6
|
+
|
|
7
|
+
## 2.30.0
|
|
8
|
+
|
|
9
|
+
Dependency updates only.
|
|
10
|
+
|
|
3
11
|
## 2.23.0
|
|
4
12
|
|
|
5
13
|
Dependency updates only.
|
|
@@ -56,38 +64,38 @@ Dependency updates only.
|
|
|
56
64
|
|
|
57
65
|
### Minor Changes
|
|
58
66
|
|
|
59
|
-
-
|
|
67
|
+
- Updated server dependencies ([#21514](https://github.com/microsoft/FluidFramework/pull/21514)) [9629f1d93a](https://github.com/microsoft/FluidFramework/commit/9629f1d93a7e412c0cb2f65cc21da0c95ff8981d)
|
|
60
68
|
|
|
61
|
-
|
|
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)
|
|
62
70
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
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
|
|
83
91
|
|
|
84
|
-
-
|
|
92
|
+
- Update to TypeScript 5.4 ([#21214](https://github.com/microsoft/FluidFramework/pull/21214)) [0e6256c722](https://github.com/microsoft/FluidFramework/commit/0e6256c722d8bf024f4325bf02547daeeb18bfa6)
|
|
85
93
|
|
|
86
|
-
|
|
94
|
+
Update package implementations to use TypeScript 5.4.5.
|
|
87
95
|
|
|
88
|
-
-
|
|
96
|
+
- Update to ES 2022 ([#21292](https://github.com/microsoft/FluidFramework/pull/21292)) [68921502f7](https://github.com/microsoft/FluidFramework/commit/68921502f79b1833c4cd6d0fe339bfb126a712c7)
|
|
89
97
|
|
|
90
|
-
|
|
98
|
+
Update tsconfig to target ES 2022.
|
|
91
99
|
|
|
92
100
|
## 2.0.0-rc.4.0.0
|
|
93
101
|
|
|
@@ -97,90 +105,90 @@ Dependency updates only.
|
|
|
97
105
|
|
|
98
106
|
### Major Changes
|
|
99
107
|
|
|
100
|
-
-
|
|
108
|
+
- Packages now use package.json "exports" and require modern module resolution [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
|
|
101
109
|
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
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.
|
|
105
113
|
|
|
106
|
-
|
|
114
|
+
This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
|
|
107
115
|
|
|
108
|
-
|
|
109
|
-
|
|
116
|
+
- `"moduleResolution": "Node16"` with `"module": "Node16"`
|
|
117
|
+
- `"moduleResolution": "Bundler"` with `"module": "ESNext"`
|
|
110
118
|
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
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.
|
|
115
123
|
|
|
116
|
-
|
|
117
|
-
|
|
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.**
|
|
118
126
|
|
|
119
127
|
## 2.0.0-rc.2.0.0
|
|
120
128
|
|
|
121
129
|
### Minor Changes
|
|
122
130
|
|
|
123
|
-
-
|
|
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)
|
|
124
132
|
|
|
125
|
-
|
|
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.
|
|
126
134
|
|
|
127
|
-
-
|
|
135
|
+
- driver-definitions: repositoryUrl removed from IDocumentStorageService ([#19522](https://github.com/microsoft/FluidFramework/issues/19522)) [90eb3c9d33](https://github.com/microsoft/FluidFramework/commits/90eb3c9d33d80e24caa1393a50f414c5602f6aa3)
|
|
128
136
|
|
|
129
|
-
|
|
137
|
+
The `repositoryUrl` member of `IDocumentStorageService` was unused and always equal to the empty string. It has been removed.
|
|
130
138
|
|
|
131
|
-
-
|
|
139
|
+
- Deprecated error-related enums have been removed ([#19067](https://github.com/microsoft/FluidFramework/issues/19067)) [59793302e5](https://github.com/microsoft/FluidFramework/commits/59793302e56784cfb6ace0e6469345f3565b3312)
|
|
132
140
|
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
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.
|
|
138
146
|
|
|
139
|
-
-
|
|
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)
|
|
140
148
|
|
|
141
|
-
|
|
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.
|
|
142
150
|
|
|
143
|
-
-
|
|
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)
|
|
144
152
|
|
|
145
|
-
|
|
153
|
+
Added `containerMetadata` prop on IContainer interface.
|
|
146
154
|
|
|
147
|
-
-
|
|
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)
|
|
148
156
|
|
|
149
|
-
|
|
157
|
+
The `ISignalEnvelope` interface has been moved to the @fluidframework/core-interfaces package.
|
|
150
158
|
|
|
151
159
|
## 2.0.0-rc.1.0.0
|
|
152
160
|
|
|
153
161
|
### Minor Changes
|
|
154
162
|
|
|
155
|
-
-
|
|
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
|
-
|
|
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)
|
|
184
192
|
|
|
185
193
|
## 2.0.0-internal.8.0.0
|
|
186
194
|
|
|
@@ -206,49 +214,49 @@ Dependency updates only.
|
|
|
206
214
|
|
|
207
215
|
### Major Changes
|
|
208
216
|
|
|
209
|
-
-
|
|
217
|
+
- Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
210
218
|
|
|
211
|
-
|
|
219
|
+
This included the following changes from the protocol-definitions release:
|
|
212
220
|
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
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.
|
|
219
227
|
|
|
220
|
-
-
|
|
228
|
+
- routerlicious-driver: remove dead blob aggregation concepts and code [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
221
229
|
|
|
222
|
-
|
|
230
|
+
Dead concepts blob aggregation like `aggregateBlobsSmallerThanBytes` and `minBlobSize` have been removed.
|
|
223
231
|
|
|
224
|
-
-
|
|
232
|
+
- Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
225
233
|
|
|
226
|
-
|
|
234
|
+
Dependencies on the following Fluid server package have been updated to version 2.0.1:
|
|
227
235
|
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
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
|
|
248
256
|
|
|
249
|
-
-
|
|
257
|
+
- Minimum TypeScript version now 5.1.6 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
250
258
|
|
|
251
|
-
|
|
259
|
+
The minimum supported TypeScript version for Fluid 2.0 clients is now 5.1.6.
|
|
252
260
|
|
|
253
261
|
## 2.0.0-internal.6.4.0
|
|
254
262
|
|
|
@@ -262,32 +270,32 @@ Dependency updates only.
|
|
|
262
270
|
|
|
263
271
|
### Minor Changes
|
|
264
272
|
|
|
265
|
-
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
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
|
|
291
299
|
|
|
292
300
|
## 2.0.0-internal.6.1.0
|
|
293
301
|
|
|
@@ -297,17 +305,17 @@ Dependency updates only.
|
|
|
297
305
|
|
|
298
306
|
### Major Changes
|
|
299
307
|
|
|
300
|
-
-
|
|
308
|
+
- Server compatibility change: Upload first summary as base64 blob [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
|
|
301
309
|
|
|
302
|
-
|
|
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.
|
|
303
311
|
|
|
304
|
-
|
|
312
|
+
This means that this version of routerlicious-driver requires routerlicious server version >=1.0.0.
|
|
305
313
|
|
|
306
|
-
|
|
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.
|
|
307
315
|
|
|
308
|
-
-
|
|
316
|
+
- Upgraded typescript transpilation target to ES2020 [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
|
|
309
317
|
|
|
310
|
-
|
|
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.
|
|
311
319
|
|
|
312
320
|
## 2.0.0-internal.5.4.0
|
|
313
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.0";
|
|
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.0";
|
|
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.0\";\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.0";
|
|
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.0\";\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.0",
|
|
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.0",
|
|
73
|
+
"@fluidframework/core-interfaces": "~2.31.0",
|
|
74
|
+
"@fluidframework/core-utils": "~2.31.0",
|
|
75
|
+
"@fluidframework/driver-base": "~2.31.0",
|
|
76
|
+
"@fluidframework/driver-definitions": "~2.31.0",
|
|
77
|
+
"@fluidframework/driver-utils": "~2.31.0",
|
|
78
78
|
"@fluidframework/server-services-client": "^5.0.0",
|
|
79
|
-
"@fluidframework/telemetry-utils": "~2.
|
|
79
|
+
"@fluidframework/telemetry-utils": "~2.31.0",
|
|
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.0",
|
|
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.30.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",
|
|
@@ -103,11 +103,10 @@
|
|
|
103
103
|
"copyfiles": "^2.4.1",
|
|
104
104
|
"cross-env": "^7.0.3",
|
|
105
105
|
"eslint": "~8.55.0",
|
|
106
|
-
"mocha": "^10.2
|
|
106
|
+
"mocha": "^10.8.2",
|
|
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