@fluidframework/map 2.70.0 → 2.72.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 +8 -7
- package/dist/directory.js +1 -1
- package/dist/directory.js.map +1 -1
- package/dist/localValues.js +1 -1
- package/dist/localValues.js.map +1 -1
- package/dist/mapKernel.js.map +1 -1
- package/dist/packageVersion.d.ts +1 -1
- package/dist/packageVersion.js +1 -1
- package/dist/packageVersion.js.map +1 -1
- package/lib/directory.js +1 -1
- package/lib/directory.js.map +1 -1
- package/lib/localValues.js +1 -1
- package/lib/localValues.js.map +1 -1
- package/lib/mapKernel.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/package.json +22 -22
- package/src/directory.ts +5 -5
- package/src/localValues.ts +2 -2
- package/src/mapKernel.ts +2 -2
- package/src/packageVersion.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @fluidframework/map
|
|
2
2
|
|
|
3
|
+
## 2.72.0
|
|
4
|
+
|
|
5
|
+
Dependency updates only.
|
|
6
|
+
|
|
7
|
+
## 2.71.0
|
|
8
|
+
|
|
9
|
+
Dependency updates only.
|
|
10
|
+
|
|
3
11
|
## 2.70.0
|
|
4
12
|
|
|
5
13
|
Dependency updates only.
|
|
@@ -139,7 +147,6 @@ Dependency updates only.
|
|
|
139
147
|
already the case, but the documentation was not clear.
|
|
140
148
|
|
|
141
149
|
Updated APIs:
|
|
142
|
-
|
|
143
150
|
- [IDirectory](https://fluidframework.com/docs/api/v2/fluid-framework/idirectory-interface) sealed
|
|
144
151
|
- [IDirectoryEvents](https://fluidframework.com/docs/api/v2/fluid-framework/idirectoryevents-interface) sealed
|
|
145
152
|
- [IDirectoryValueChanged](https://fluidframework.com/docs/api/v2/fluid-framework/idirectoryvaluechanged-interface) sealed and path property is readonly
|
|
@@ -188,7 +195,6 @@ Dependency updates only.
|
|
|
188
195
|
TypeScript types and implementation code.
|
|
189
196
|
|
|
190
197
|
This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
|
|
191
|
-
|
|
192
198
|
- `"moduleResolution": "Node16"` with `"module": "Node16"`
|
|
193
199
|
- `"moduleResolution": "Bundler"` with `"module": "ESNext"`
|
|
194
200
|
|
|
@@ -230,7 +236,6 @@ Dependency updates only.
|
|
|
230
236
|
- Updated server dependencies ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
|
|
231
237
|
|
|
232
238
|
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)
|
|
233
|
-
|
|
234
239
|
- @fluidframework/gitresources
|
|
235
240
|
- @fluidframework/server-kafka-orderer
|
|
236
241
|
- @fluidframework/server-lambdas
|
|
@@ -268,7 +273,6 @@ Dependency updates only.
|
|
|
268
273
|
limitation of serialization.
|
|
269
274
|
|
|
270
275
|
Additional modifications:
|
|
271
|
-
|
|
272
276
|
- `Jsonable`'s `TReplacement` parameter default has also been changed from `void` to `never`, which now disallows
|
|
273
277
|
`void`.
|
|
274
278
|
- Unrecognized primitive types like `symbol` are now filtered to `never` instead of `{}`.
|
|
@@ -302,7 +306,6 @@ Dependency updates only.
|
|
|
302
306
|
- Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
303
307
|
|
|
304
308
|
This included the following changes from the protocol-definitions release:
|
|
305
|
-
|
|
306
309
|
- Updating signal interfaces for some planned improvements. The intention is split the interface between signals
|
|
307
310
|
submitted by clients to the server and the resulting signals sent from the server to clients.
|
|
308
311
|
- A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
|
|
@@ -313,7 +316,6 @@ Dependency updates only.
|
|
|
313
316
|
- Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
314
317
|
|
|
315
318
|
Dependencies on the following Fluid server package have been updated to version 2.0.1:
|
|
316
|
-
|
|
317
319
|
- @fluidframework/gitresources: 2.0.1
|
|
318
320
|
- @fluidframework/server-kafka-orderer: 2.0.1
|
|
319
321
|
- @fluidframework/server-lambdas: 2.0.1
|
|
@@ -355,7 +357,6 @@ Dependency updates only.
|
|
|
355
357
|
|
|
356
358
|
The **@fluidframework/common-definitions** package is being deprecated, so the following interfaces and types are now
|
|
357
359
|
imported from the **@fluidframework/core-interfaces** package:
|
|
358
|
-
|
|
359
360
|
- interface IDisposable
|
|
360
361
|
- interface IErrorEvent
|
|
361
362
|
- interface IErrorEvent
|
package/dist/directory.js
CHANGED
|
@@ -559,7 +559,7 @@ class SharedDirectory extends internal_5.SharedObject {
|
|
|
559
559
|
if (!currentSubDirObject.storage) {
|
|
560
560
|
currentSubDirObject.storage = {};
|
|
561
561
|
}
|
|
562
|
-
// eslint-disable-next-line import/no-deprecated
|
|
562
|
+
// eslint-disable-next-line import-x/no-deprecated
|
|
563
563
|
const result = {
|
|
564
564
|
type: value.type,
|
|
565
565
|
value: value.value && JSON.parse(value.value),
|