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