@fluidframework/matrix 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 +148 -140
- 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 +20 -23
- 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/matrix
|
|
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,58 +64,58 @@ Dependency updates only.
|
|
|
56
64
|
|
|
57
65
|
### Minor Changes
|
|
58
66
|
|
|
59
|
-
-
|
|
67
|
+
- Update to TypeScript 5.4 ([#21214](https://github.com/microsoft/FluidFramework/pull/21214)) [0e6256c722](https://github.com/microsoft/FluidFramework/commit/0e6256c722d8bf024f4325bf02547daeeb18bfa6)
|
|
60
68
|
|
|
61
|
-
|
|
69
|
+
Update package implementations to use TypeScript 5.4.5.
|
|
62
70
|
|
|
63
71
|
## 2.0.0-rc.4.0.0
|
|
64
72
|
|
|
65
73
|
### Minor Changes
|
|
66
74
|
|
|
67
|
-
-
|
|
75
|
+
- Deprecated members of IFluidHandle are split off into new IFluidHandleInternal interface [96872186d0](https://github.com/microsoft/FluidFramework/commit/96872186d0d0f245c1fece7d19b3743e501679b6)
|
|
68
76
|
|
|
69
|
-
|
|
70
|
-
|
|
77
|
+
Split IFluidHandle into two interfaces, `IFluidHandle` and `IFluidHandleInternal`.
|
|
78
|
+
Code depending on the previously deprecated members of IFluidHandle can access them by using `toFluidHandleInternal` from `@fluidframework/runtime-utils/legacy`.
|
|
71
79
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
80
|
+
External implementation of the `IFluidHandle` interface are not supported: this change makes the typing better convey this using the `ErasedType` pattern.
|
|
81
|
+
Any existing and previously working, and now broken, external implementations of `IFluidHandle` should still work at runtime, but will need some unsafe type casts to compile.
|
|
82
|
+
Such handle implementation may break in the future and thus should be replaced with use of handles produced by the Fluid Framework client packages.
|
|
75
83
|
|
|
76
|
-
-
|
|
84
|
+
- matrix: SharedMatrix class hidden [96872186d0](https://github.com/microsoft/FluidFramework/commit/96872186d0d0f245c1fece7d19b3743e501679b6)
|
|
77
85
|
|
|
78
|
-
|
|
79
|
-
|
|
86
|
+
The `SharedMatrix` class has been hidden from the alpha API.
|
|
87
|
+
In its place:
|
|
80
88
|
|
|
81
|
-
|
|
82
|
-
|
|
89
|
+
- The constant `SharedMatrix` is exposed as the entrypoint for `SharedMatrix` creation. See documentation on `ISharedObjectKind`.
|
|
90
|
+
- The type `SharedMatrix` is aliased to `ISharedMatrix`, which contains matrix's public API. This API has no semantic changes from previous versions.
|
|
83
91
|
|
|
84
|
-
|
|
92
|
+
Additionally, `SharedMatrixFactory` has been deprecated. Rather than construct the factory directly, use `SharedMatrix.getFactory()` (e.g. for usage in `DataObject` registries).
|
|
85
93
|
|
|
86
|
-
|
|
87
|
-
|
|
94
|
+
This change is part of a larger effort to clean up the API surface of various DDSes we have to leak less implementation details. See e.g. #20030.
|
|
95
|
+
Most code which uses `SharedMatrix` should continue to function without changes.
|
|
88
96
|
|
|
89
97
|
## 2.0.0-rc.3.0.0
|
|
90
98
|
|
|
91
99
|
### Major Changes
|
|
92
100
|
|
|
93
|
-
-
|
|
101
|
+
- Packages now use package.json "exports" and require modern module resolution [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
|
|
94
102
|
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
103
|
+
Fluid Framework packages have been updated to use the [package.json "exports"
|
|
104
|
+
field](https://nodejs.org/docs/latest-v18.x/api/packages.html#exports) to define explicit entry points for both
|
|
105
|
+
TypeScript types and implementation code.
|
|
98
106
|
|
|
99
|
-
|
|
107
|
+
This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
|
|
100
108
|
|
|
101
|
-
|
|
102
|
-
|
|
109
|
+
- `"moduleResolution": "Node16"` with `"module": "Node16"`
|
|
110
|
+
- `"moduleResolution": "Bundler"` with `"module": "ESNext"`
|
|
103
111
|
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
112
|
+
We recommend using Node16/Node16 unless absolutely necessary. That will produce transpiled JavaScript that is suitable
|
|
113
|
+
for use with modern versions of Node.js _and_ Bundlers.
|
|
114
|
+
[See the TypeScript documentation](https://www.typescriptlang.org/tsconfig#moduleResolution) for more information
|
|
115
|
+
regarding the module and moduleResolution options.
|
|
108
116
|
|
|
109
|
-
|
|
110
|
-
|
|
117
|
+
**Node10 moduleResolution is not supported; it does not support Fluid Framework's API structuring pattern that is used
|
|
118
|
+
to distinguish stable APIs from those that are in development.**
|
|
111
119
|
|
|
112
120
|
## 2.0.0-rc.2.0.0
|
|
113
121
|
|
|
@@ -117,67 +125,67 @@ Dependency updates only.
|
|
|
117
125
|
|
|
118
126
|
### Minor Changes
|
|
119
127
|
|
|
120
|
-
-
|
|
128
|
+
- Updated server dependencies ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
|
|
121
129
|
|
|
122
|
-
|
|
130
|
+
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)
|
|
123
131
|
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
132
|
+
- @fluidframework/gitresources
|
|
133
|
+
- @fluidframework/server-kafka-orderer
|
|
134
|
+
- @fluidframework/server-lambdas
|
|
135
|
+
- @fluidframework/server-lambdas-driver
|
|
136
|
+
- @fluidframework/server-local-server
|
|
137
|
+
- @fluidframework/server-memory-orderer
|
|
138
|
+
- @fluidframework/protocol-base
|
|
139
|
+
- @fluidframework/server-routerlicious
|
|
140
|
+
- @fluidframework/server-routerlicious-base
|
|
141
|
+
- @fluidframework/server-services
|
|
142
|
+
- @fluidframework/server-services-client
|
|
143
|
+
- @fluidframework/server-services-core
|
|
144
|
+
- @fluidframework/server-services-ordering-kafkanode
|
|
145
|
+
- @fluidframework/server-services-ordering-rdkafka
|
|
146
|
+
- @fluidframework/server-services-ordering-zookeeper
|
|
147
|
+
- @fluidframework/server-services-shared
|
|
148
|
+
- @fluidframework/server-services-telemetry
|
|
149
|
+
- @fluidframework/server-services-utils
|
|
150
|
+
- @fluidframework/server-test-utils
|
|
151
|
+
- tinylicious
|
|
144
152
|
|
|
145
|
-
-
|
|
153
|
+
- Updated @fluidframework/protocol-definitions ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
|
|
146
154
|
|
|
147
|
-
|
|
148
|
-
|
|
155
|
+
The @fluidframework/protocol-definitions dependency has been upgraded to v3.1.0. [See the full
|
|
156
|
+
changelog.](https://github.com/microsoft/FluidFramework/blob/main/common/lib/protocol-definitions/CHANGELOG.md#310)
|
|
149
157
|
|
|
150
|
-
-
|
|
158
|
+
- shared-object-base: SharedObject processGCDataCore now takes IFluidSerializer rather than SummarySerializer ([#18803](https://github.com/microsoft/FluidFramework/issues/18803)) [396b8e9738](https://github.com/microsoft/FluidFramework/commits/396b8e9738156ff88b62424a0076f09fb5028a32)
|
|
151
159
|
|
|
152
|
-
|
|
160
|
+
This change should be a no-op for consumers, and `SummarySerializer` and `IFluidSerializer` expose the same consumer facing APIs. This change just makes our APIs more consistent by only using interfaces, rather than a mix of interfaces and concrete implementations.
|
|
153
161
|
|
|
154
162
|
## 2.0.0-internal.8.0.0
|
|
155
163
|
|
|
156
164
|
### Major Changes
|
|
157
165
|
|
|
158
|
-
-
|
|
166
|
+
- sequence: Some function return types are now void instead of any [9a451d4946](https://github.com/microsoft/FluidFramework/commits/9a451d4946b5c51a52e4d1ab5bf51e7b285b0d74)
|
|
159
167
|
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
168
|
+
The return types of some functions have changed from `any` to `void` because the projects are now being compiled with
|
|
169
|
+
the `noImplicitAny` TypeScript compilation option. This does not represent a logic change and only serves to make the
|
|
170
|
+
typing of these functions more accurate.
|
|
163
171
|
|
|
164
|
-
-
|
|
172
|
+
- datastore-definitions: Jsonable and Serializable now require a generic parameter [9a451d4946](https://github.com/microsoft/FluidFramework/commits/9a451d4946b5c51a52e4d1ab5bf51e7b285b0d74)
|
|
165
173
|
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
174
|
+
The `Jsonable` and `Serializable` types from @fluidframework/datastore-definitions now require a generic parameter and
|
|
175
|
+
if that type is `any` or `unknown`will return a new result `JsonableTypeWith<>` that more accurately represents the
|
|
176
|
+
limitation of serialization.
|
|
169
177
|
|
|
170
|
-
|
|
178
|
+
Additional modifications:
|
|
171
179
|
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
180
|
+
- `Jsonable`'s `TReplacement` parameter default has also been changed from `void` to `never`, which now disallows
|
|
181
|
+
`void`.
|
|
182
|
+
- Unrecognized primitive types like `symbol` are now filtered to `never` instead of `{}`.
|
|
183
|
+
- Recursive types with arrays (`[]`) are now supported.
|
|
176
184
|
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
185
|
+
`Serializable` is commonly used for DDS values and now requires more precision when using them. For example SharedMatrix
|
|
186
|
+
(unqualified) has an `any` default that meant values were `Serializable<any>` (i.e. `any`), but now `Serializable<any>`
|
|
187
|
+
is `JsonableTypeWith<IFluidHandle>` which may be problematic for reading or writing. Preferred correction is to specify
|
|
188
|
+
the value type but casting through `any` may provide a quick fix.
|
|
181
189
|
|
|
182
190
|
## 2.0.0-internal.7.4.0
|
|
183
191
|
|
|
@@ -199,45 +207,45 @@ Dependency updates only.
|
|
|
199
207
|
|
|
200
208
|
### Major Changes
|
|
201
209
|
|
|
202
|
-
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
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
|
-
|
|
210
|
+
- Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
211
|
+
|
|
212
|
+
This included the following changes from the protocol-definitions release:
|
|
213
|
+
|
|
214
|
+
- Updating signal interfaces for some planned improvements. The intention is split the interface between signals
|
|
215
|
+
submitted by clients to the server and the resulting signals sent from the server to clients.
|
|
216
|
+
- A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
|
|
217
|
+
been added, which will be the typing for signals sent from the client to the server. Both extend a new
|
|
218
|
+
ISignalMessageBase interface that contains common members.
|
|
219
|
+
- The @fluidframework/common-definitions package dependency has been updated to version 1.0.0.
|
|
220
|
+
|
|
221
|
+
- Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
222
|
+
|
|
223
|
+
Dependencies on the following Fluid server package have been updated to version 2.0.1:
|
|
224
|
+
|
|
225
|
+
- @fluidframework/gitresources: 2.0.1
|
|
226
|
+
- @fluidframework/server-kafka-orderer: 2.0.1
|
|
227
|
+
- @fluidframework/server-lambdas: 2.0.1
|
|
228
|
+
- @fluidframework/server-lambdas-driver: 2.0.1
|
|
229
|
+
- @fluidframework/server-local-server: 2.0.1
|
|
230
|
+
- @fluidframework/server-memory-orderer: 2.0.1
|
|
231
|
+
- @fluidframework/protocol-base: 2.0.1
|
|
232
|
+
- @fluidframework/server-routerlicious: 2.0.1
|
|
233
|
+
- @fluidframework/server-routerlicious-base: 2.0.1
|
|
234
|
+
- @fluidframework/server-services: 2.0.1
|
|
235
|
+
- @fluidframework/server-services-client: 2.0.1
|
|
236
|
+
- @fluidframework/server-services-core: 2.0.1
|
|
237
|
+
- @fluidframework/server-services-ordering-kafkanode: 2.0.1
|
|
238
|
+
- @fluidframework/server-services-ordering-rdkafka: 2.0.1
|
|
239
|
+
- @fluidframework/server-services-ordering-zookeeper: 2.0.1
|
|
240
|
+
- @fluidframework/server-services-shared: 2.0.1
|
|
241
|
+
- @fluidframework/server-services-telemetry: 2.0.1
|
|
242
|
+
- @fluidframework/server-services-utils: 2.0.1
|
|
243
|
+
- @fluidframework/server-test-utils: 2.0.1
|
|
244
|
+
- tinylicious: 2.0.1
|
|
245
|
+
|
|
246
|
+
- Minimum TypeScript version now 5.1.6 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
247
|
+
|
|
248
|
+
The minimum supported TypeScript version for Fluid 2.0 clients is now 5.1.6.
|
|
241
249
|
|
|
242
250
|
## 2.0.0-internal.6.4.0
|
|
243
251
|
|
|
@@ -251,32 +259,32 @@ Dependency updates only.
|
|
|
251
259
|
|
|
252
260
|
### Minor Changes
|
|
253
261
|
|
|
254
|
-
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
262
|
+
- Remove use of @fluidframework/common-definitions ([#16638](https://github.com/microsoft/FluidFramework/issues/16638)) [a8c81509c9](https://github.com/microsoft/FluidFramework/commits/a8c81509c9bf09cfb2092ebcf7265205f9eb6dbf)
|
|
263
|
+
|
|
264
|
+
The **@fluidframework/common-definitions** package is being deprecated, so the following interfaces and types are now
|
|
265
|
+
imported from the **@fluidframework/core-interfaces** package:
|
|
266
|
+
|
|
267
|
+
- interface IDisposable
|
|
268
|
+
- interface IErrorEvent
|
|
269
|
+
- interface IErrorEvent
|
|
270
|
+
- interface IEvent
|
|
271
|
+
- interface IEventProvider
|
|
272
|
+
- interface ILoggingError
|
|
273
|
+
- interface ITaggedTelemetryPropertyType
|
|
274
|
+
- interface ITelemetryBaseEvent
|
|
275
|
+
- interface ITelemetryBaseLogger
|
|
276
|
+
- interface ITelemetryErrorEvent
|
|
277
|
+
- interface ITelemetryGenericEvent
|
|
278
|
+
- interface ITelemetryLogger
|
|
279
|
+
- interface ITelemetryPerformanceEvent
|
|
280
|
+
- interface ITelemetryProperties
|
|
281
|
+
- type ExtendEventProvider
|
|
282
|
+
- type IEventThisPlaceHolder
|
|
283
|
+
- type IEventTransformer
|
|
284
|
+
- type ReplaceIEventThisPlaceHolder
|
|
285
|
+
- type ReplaceIEventThisPlaceHolder
|
|
286
|
+
- type TelemetryEventCategory
|
|
287
|
+
- type TelemetryEventPropertyType
|
|
280
288
|
|
|
281
289
|
## 2.0.0-internal.6.1.0
|
|
282
290
|
|
|
@@ -286,9 +294,9 @@ Dependency updates only.
|
|
|
286
294
|
|
|
287
295
|
### Major Changes
|
|
288
296
|
|
|
289
|
-
-
|
|
297
|
+
- Upgraded typescript transpilation target to ES2020 [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
|
|
290
298
|
|
|
291
|
-
|
|
299
|
+
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.
|
|
292
300
|
|
|
293
301
|
## 2.0.0-internal.5.4.0
|
|
294
302
|
|
package/dist/packageVersion.d.ts
CHANGED
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/matrix";
|
|
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,wBAAwB,CAAC;AACnC,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/matrix\";\nexport const pkgVersion = \"2.
|
|
1
|
+
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,wBAAwB,CAAC;AACnC,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/matrix\";\nexport const pkgVersion = \"2.31.0\";\n"]}
|
package/lib/packageVersion.d.ts
CHANGED
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,wBAAwB,CAAC;AAChD,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/matrix\";\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,wBAAwB,CAAC;AAChD,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/matrix\";\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/matrix",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.31.0",
|
|
4
4
|
"description": "Distributed matrix",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -69,17 +69,17 @@
|
|
|
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/datastore-definitions": "~2.
|
|
76
|
-
"@fluidframework/driver-definitions": "~2.
|
|
77
|
-
"@fluidframework/driver-utils": "~2.
|
|
78
|
-
"@fluidframework/merge-tree": "~2.
|
|
79
|
-
"@fluidframework/runtime-definitions": "~2.
|
|
80
|
-
"@fluidframework/runtime-utils": "~2.
|
|
81
|
-
"@fluidframework/shared-object-base": "~2.
|
|
82
|
-
"@fluidframework/telemetry-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/datastore-definitions": "~2.31.0",
|
|
76
|
+
"@fluidframework/driver-definitions": "~2.31.0",
|
|
77
|
+
"@fluidframework/driver-utils": "~2.31.0",
|
|
78
|
+
"@fluidframework/merge-tree": "~2.31.0",
|
|
79
|
+
"@fluidframework/runtime-definitions": "~2.31.0",
|
|
80
|
+
"@fluidframework/runtime-utils": "~2.31.0",
|
|
81
|
+
"@fluidframework/shared-object-base": "~2.31.0",
|
|
82
|
+
"@fluidframework/telemetry-utils": "~2.31.0",
|
|
83
83
|
"@tiny-calc/nano": "0.0.0-alpha.5",
|
|
84
84
|
"double-ended-queue": "^2.1.0-0",
|
|
85
85
|
"tslib": "^1.10.0"
|
|
@@ -87,18 +87,18 @@
|
|
|
87
87
|
"devDependencies": {
|
|
88
88
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
89
89
|
"@biomejs/biome": "~1.9.3",
|
|
90
|
-
"@fluid-internal/mocha-test-setup": "~2.
|
|
91
|
-
"@fluid-private/stochastic-test-utils": "~2.
|
|
92
|
-
"@fluid-private/test-dds-utils": "~2.
|
|
90
|
+
"@fluid-internal/mocha-test-setup": "~2.31.0",
|
|
91
|
+
"@fluid-private/stochastic-test-utils": "~2.31.0",
|
|
92
|
+
"@fluid-private/test-dds-utils": "~2.31.0",
|
|
93
93
|
"@fluid-tools/benchmark": "^0.50.0",
|
|
94
94
|
"@fluid-tools/build-cli": "^0.54.0",
|
|
95
95
|
"@fluidframework/build-common": "^2.0.3",
|
|
96
96
|
"@fluidframework/build-tools": "^0.54.0",
|
|
97
|
-
"@fluidframework/container-definitions": "~2.
|
|
97
|
+
"@fluidframework/container-definitions": "~2.31.0",
|
|
98
98
|
"@fluidframework/eslint-config-fluid": "^5.7.3",
|
|
99
|
-
"@fluidframework/matrix-previous": "npm:@fluidframework/matrix@2.
|
|
100
|
-
"@fluidframework/test-runtime-utils": "~2.
|
|
101
|
-
"@microsoft/api-extractor": "7.
|
|
99
|
+
"@fluidframework/matrix-previous": "npm:@fluidframework/matrix@2.30.0",
|
|
100
|
+
"@fluidframework/test-runtime-utils": "~2.31.0",
|
|
101
|
+
"@microsoft/api-extractor": "7.50.1",
|
|
102
102
|
"@tiny-calc/micro": "0.0.0-alpha.5",
|
|
103
103
|
"@types/double-ended-queue": "^2.1.0",
|
|
104
104
|
"@types/mocha": "^10.0.10",
|
|
@@ -110,10 +110,9 @@
|
|
|
110
110
|
"cross-env": "^7.0.3",
|
|
111
111
|
"eslint": "~8.55.0",
|
|
112
112
|
"hotloop": "^1.2.0",
|
|
113
|
-
"mocha": "^10.2
|
|
113
|
+
"mocha": "^10.8.2",
|
|
114
114
|
"mocha-multi-reporters": "^1.5.1",
|
|
115
115
|
"moment": "^2.21.0",
|
|
116
|
-
"prettier": "~3.0.3",
|
|
117
116
|
"replace-in-file": "^6.3.5",
|
|
118
117
|
"rimraf": "^4.4.0",
|
|
119
118
|
"ts-node": "^10.9.1",
|
|
@@ -150,7 +149,6 @@
|
|
|
150
149
|
"check:exports:esm:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.esm.json",
|
|
151
150
|
"check:exports:esm:public": "api-extractor run --config api-extractor/api-extractor-lint-public.esm.json",
|
|
152
151
|
"check:format": "npm run check:biome",
|
|
153
|
-
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
|
154
152
|
"ci:build:api-reports": "concurrently \"npm:ci:build:api-reports:*\"",
|
|
155
153
|
"ci:build:api-reports:current": "api-extractor run --config api-extractor/api-extractor.current.json",
|
|
156
154
|
"ci:build:api-reports:legacy": "api-extractor run --config api-extractor/api-extractor.legacy.json",
|
|
@@ -160,7 +158,6 @@
|
|
|
160
158
|
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
161
159
|
"format": "npm run format:biome",
|
|
162
160
|
"format:biome": "biome check . --write",
|
|
163
|
-
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
|
164
161
|
"lint": "fluid-build . --task lint",
|
|
165
162
|
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
|
166
163
|
"test": "npm run test:mocha",
|
package/src/packageVersion.ts
CHANGED
package/tsconfig.json
CHANGED