@fluidframework/map 2.71.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 +4 -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 +20 -20
- 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,9 @@
|
|
|
1
1
|
# @fluidframework/map
|
|
2
2
|
|
|
3
|
+
## 2.72.0
|
|
4
|
+
|
|
5
|
+
Dependency updates only.
|
|
6
|
+
|
|
3
7
|
## 2.71.0
|
|
4
8
|
|
|
5
9
|
Dependency updates only.
|
|
@@ -143,7 +147,6 @@ Dependency updates only.
|
|
|
143
147
|
already the case, but the documentation was not clear.
|
|
144
148
|
|
|
145
149
|
Updated APIs:
|
|
146
|
-
|
|
147
150
|
- [IDirectory](https://fluidframework.com/docs/api/v2/fluid-framework/idirectory-interface) sealed
|
|
148
151
|
- [IDirectoryEvents](https://fluidframework.com/docs/api/v2/fluid-framework/idirectoryevents-interface) sealed
|
|
149
152
|
- [IDirectoryValueChanged](https://fluidframework.com/docs/api/v2/fluid-framework/idirectoryvaluechanged-interface) sealed and path property is readonly
|
|
@@ -192,7 +195,6 @@ Dependency updates only.
|
|
|
192
195
|
TypeScript types and implementation code.
|
|
193
196
|
|
|
194
197
|
This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
|
|
195
|
-
|
|
196
198
|
- `"moduleResolution": "Node16"` with `"module": "Node16"`
|
|
197
199
|
- `"moduleResolution": "Bundler"` with `"module": "ESNext"`
|
|
198
200
|
|
|
@@ -234,7 +236,6 @@ Dependency updates only.
|
|
|
234
236
|
- Updated server dependencies ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
|
|
235
237
|
|
|
236
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)
|
|
237
|
-
|
|
238
239
|
- @fluidframework/gitresources
|
|
239
240
|
- @fluidframework/server-kafka-orderer
|
|
240
241
|
- @fluidframework/server-lambdas
|
|
@@ -272,7 +273,6 @@ Dependency updates only.
|
|
|
272
273
|
limitation of serialization.
|
|
273
274
|
|
|
274
275
|
Additional modifications:
|
|
275
|
-
|
|
276
276
|
- `Jsonable`'s `TReplacement` parameter default has also been changed from `void` to `never`, which now disallows
|
|
277
277
|
`void`.
|
|
278
278
|
- Unrecognized primitive types like `symbol` are now filtered to `never` instead of `{}`.
|
|
@@ -306,7 +306,6 @@ Dependency updates only.
|
|
|
306
306
|
- Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
307
307
|
|
|
308
308
|
This included the following changes from the protocol-definitions release:
|
|
309
|
-
|
|
310
309
|
- Updating signal interfaces for some planned improvements. The intention is split the interface between signals
|
|
311
310
|
submitted by clients to the server and the resulting signals sent from the server to clients.
|
|
312
311
|
- A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
|
|
@@ -317,7 +316,6 @@ Dependency updates only.
|
|
|
317
316
|
- Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
318
317
|
|
|
319
318
|
Dependencies on the following Fluid server package have been updated to version 2.0.1:
|
|
320
|
-
|
|
321
319
|
- @fluidframework/gitresources: 2.0.1
|
|
322
320
|
- @fluidframework/server-kafka-orderer: 2.0.1
|
|
323
321
|
- @fluidframework/server-lambdas: 2.0.1
|
|
@@ -359,7 +357,6 @@ Dependency updates only.
|
|
|
359
357
|
|
|
360
358
|
The **@fluidframework/common-definitions** package is being deprecated, so the following interfaces and types are now
|
|
361
359
|
imported from the **@fluidframework/core-interfaces** package:
|
|
362
|
-
|
|
363
360
|
- interface IDisposable
|
|
364
361
|
- interface IErrorEvent
|
|
365
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),
|