@fluidframework/shared-object-base 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 -10
- 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/package.json +19 -19
- package/src/packageVersion.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# @fluidframework/shared-object-base
|
|
2
2
|
|
|
3
|
+
## 2.72.0
|
|
4
|
+
|
|
5
|
+
Dependency updates only.
|
|
6
|
+
|
|
3
7
|
## 2.71.0
|
|
4
8
|
|
|
5
9
|
Dependency updates only.
|
|
@@ -154,7 +158,6 @@ Dependency updates only.
|
|
|
154
158
|
to validate that the returned object actually matches the expected type.
|
|
155
159
|
|
|
156
160
|
The list of affected APIs is as follows:
|
|
157
|
-
|
|
158
161
|
- `IFluidSerializer.encode(...)` now takes `value: unknown` instead of `value: any` and returns `unknown` instead of `any`.
|
|
159
162
|
- `IFluidSerializer.decode(...)` now takes `input: unknown` instead of `input: any` and returns `unknown` instead of `any`.
|
|
160
163
|
- `IFluidSerializer.stringify(...)` now takes `value: unknown` instead of `value: any`.
|
|
@@ -169,7 +172,6 @@ Dependency updates only.
|
|
|
169
172
|
- `parseHandles(...)` now returns `unknown` instead of `any`.
|
|
170
173
|
|
|
171
174
|
Additionally, the following APIs were never designed to return a value and have thus been updated to return `void` instead of `any`:
|
|
172
|
-
|
|
173
175
|
- `SharedObjectCore.processCore(...)`.
|
|
174
176
|
- `SharedObjectCore.onDisconnect(...)`
|
|
175
177
|
|
|
@@ -245,7 +247,6 @@ Dependency updates only.
|
|
|
245
247
|
|
|
246
248
|
Access to these now less public types should not be required for users of the `@public` "declarative API" exposed in the `fluid-framework` package, but can still be accessed for those who need them under the `/legacy` import paths.
|
|
247
249
|
The full list of such types is:
|
|
248
|
-
|
|
249
250
|
- `SharedTree` as exported from `@fluidframwork/tree`: It is still exported as `@public` from `fluid-framework` as `SharedObjectKind`.
|
|
250
251
|
- `ISharedObjectKind`: See new `SharedObjectKind` type for use in `@public` APIs.
|
|
251
252
|
`ISharedObject`
|
|
@@ -263,7 +264,6 @@ Dependency updates only.
|
|
|
263
264
|
- `IProvideFluidHandleContext`
|
|
264
265
|
|
|
265
266
|
Removed APIs:
|
|
266
|
-
|
|
267
267
|
- `DataObjectClass`: Usages replaced with `SharedObjectKind`.
|
|
268
268
|
- `LoadableObjectClass`: Replaced with `SharedObjectKind`.
|
|
269
269
|
- `LoadableObjectClassRecord`: Replaced with `Record<string, SharedObjectKind>`.
|
|
@@ -276,7 +276,6 @@ Dependency updates only.
|
|
|
276
276
|
- fluid-framework: Remove several types from `@public` scope ([#21142](https://github.com/microsoft/FluidFramework/pull/21142)) [983e9f09f7](https://github.com/microsoft/FluidFramework/commit/983e9f09f7b10fef9ffa1e9af86166f0ccda7e14)
|
|
277
277
|
|
|
278
278
|
The following types have been moved from `@public` to `@alpha`:
|
|
279
|
-
|
|
280
279
|
- `IFluidSerializer`
|
|
281
280
|
- `ISharedObjectEvents`
|
|
282
281
|
- `IChannelServices`
|
|
@@ -310,7 +309,6 @@ Dependency updates only.
|
|
|
310
309
|
TypeScript types and implementation code.
|
|
311
310
|
|
|
312
311
|
This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
|
|
313
|
-
|
|
314
312
|
- `"moduleResolution": "Node16"` with `"module": "Node16"`
|
|
315
313
|
- `"moduleResolution": "Bundler"` with `"module": "ESNext"`
|
|
316
314
|
|
|
@@ -347,7 +345,6 @@ Dependency updates only.
|
|
|
347
345
|
- Updated server dependencies ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
|
|
348
346
|
|
|
349
347
|
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)
|
|
350
|
-
|
|
351
348
|
- @fluidframework/gitresources
|
|
352
349
|
- @fluidframework/server-kafka-orderer
|
|
353
350
|
- @fluidframework/server-lambdas
|
|
@@ -405,7 +402,6 @@ Dependency updates only.
|
|
|
405
402
|
- Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
406
403
|
|
|
407
404
|
This included the following changes from the protocol-definitions release:
|
|
408
|
-
|
|
409
405
|
- Updating signal interfaces for some planned improvements. The intention is split the interface between signals
|
|
410
406
|
submitted by clients to the server and the resulting signals sent from the server to clients.
|
|
411
407
|
- A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
|
|
@@ -416,7 +412,6 @@ Dependency updates only.
|
|
|
416
412
|
- Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
417
413
|
|
|
418
414
|
Dependencies on the following Fluid server package have been updated to version 2.0.1:
|
|
419
|
-
|
|
420
415
|
- @fluidframework/gitresources: 2.0.1
|
|
421
416
|
- @fluidframework/server-kafka-orderer: 2.0.1
|
|
422
417
|
- @fluidframework/server-lambdas: 2.0.1
|
|
@@ -462,7 +457,6 @@ Dependency updates only.
|
|
|
462
457
|
|
|
463
458
|
The **@fluidframework/common-definitions** package is being deprecated, so the following interfaces and types are now
|
|
464
459
|
imported from the **@fluidframework/core-interfaces** package:
|
|
465
|
-
|
|
466
460
|
- interface IDisposable
|
|
467
461
|
- interface IErrorEvent
|
|
468
462
|
- interface IErrorEvent
|
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/shared-object-base";
|
|
8
|
-
export declare const pkgVersion = "2.
|
|
8
|
+
export declare const pkgVersion = "2.72.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/shared-object-base";
|
|
11
|
-
exports.pkgVersion = "2.
|
|
11
|
+
exports.pkgVersion = "2.72.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,oCAAoC,CAAC;AAC/C,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/shared-object-base\";\nexport const pkgVersion = \"2.
|
|
1
|
+
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,oCAAoC,CAAC;AAC/C,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/shared-object-base\";\nexport const pkgVersion = \"2.72.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/shared-object-base";
|
|
8
|
-
export declare const pkgVersion = "2.
|
|
8
|
+
export declare const pkgVersion = "2.72.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,oCAAoC,CAAC;AAC5D,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/shared-object-base\";\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,oCAAoC,CAAC;AAC5D,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/shared-object-base\";\nexport const pkgVersion = \"2.72.0\";\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/shared-object-base",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.72.0",
|
|
4
4
|
"description": "Fluid base class for shared distributed data structures",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -69,30 +69,30 @@
|
|
|
69
69
|
"temp-directory": "nyc/.nyc_output"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@fluid-internal/client-utils": "~2.
|
|
73
|
-
"@fluidframework/container-definitions": "~2.
|
|
74
|
-
"@fluidframework/core-interfaces": "~2.
|
|
75
|
-
"@fluidframework/core-utils": "~2.
|
|
76
|
-
"@fluidframework/datastore": "~2.
|
|
77
|
-
"@fluidframework/datastore-definitions": "~2.
|
|
78
|
-
"@fluidframework/driver-definitions": "~2.
|
|
79
|
-
"@fluidframework/id-compressor": "~2.
|
|
80
|
-
"@fluidframework/runtime-definitions": "~2.
|
|
81
|
-
"@fluidframework/runtime-utils": "~2.
|
|
82
|
-
"@fluidframework/telemetry-utils": "~2.
|
|
72
|
+
"@fluid-internal/client-utils": "~2.72.0",
|
|
73
|
+
"@fluidframework/container-definitions": "~2.72.0",
|
|
74
|
+
"@fluidframework/core-interfaces": "~2.72.0",
|
|
75
|
+
"@fluidframework/core-utils": "~2.72.0",
|
|
76
|
+
"@fluidframework/datastore": "~2.72.0",
|
|
77
|
+
"@fluidframework/datastore-definitions": "~2.72.0",
|
|
78
|
+
"@fluidframework/driver-definitions": "~2.72.0",
|
|
79
|
+
"@fluidframework/id-compressor": "~2.72.0",
|
|
80
|
+
"@fluidframework/runtime-definitions": "~2.72.0",
|
|
81
|
+
"@fluidframework/runtime-utils": "~2.72.0",
|
|
82
|
+
"@fluidframework/telemetry-utils": "~2.72.0",
|
|
83
83
|
"uuid": "^11.1.0"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
86
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
87
87
|
"@biomejs/biome": "~1.9.3",
|
|
88
|
-
"@fluid-internal/mocha-test-setup": "~2.
|
|
89
|
-
"@fluid-private/test-pairwise-generator": "~2.
|
|
90
|
-
"@fluid-tools/build-cli": "^0.
|
|
88
|
+
"@fluid-internal/mocha-test-setup": "~2.72.0",
|
|
89
|
+
"@fluid-private/test-pairwise-generator": "~2.72.0",
|
|
90
|
+
"@fluid-tools/build-cli": "^0.60.0",
|
|
91
91
|
"@fluidframework/build-common": "^2.0.3",
|
|
92
|
-
"@fluidframework/build-tools": "^0.
|
|
93
|
-
"@fluidframework/eslint-config-fluid": "
|
|
94
|
-
"@fluidframework/shared-object-base-previous": "npm:@fluidframework/shared-object-base@2.
|
|
95
|
-
"@fluidframework/test-runtime-utils": "~2.
|
|
92
|
+
"@fluidframework/build-tools": "^0.60.0",
|
|
93
|
+
"@fluidframework/eslint-config-fluid": "~2.72.0",
|
|
94
|
+
"@fluidframework/shared-object-base-previous": "npm:@fluidframework/shared-object-base@2.71.0",
|
|
95
|
+
"@fluidframework/test-runtime-utils": "~2.72.0",
|
|
96
96
|
"@microsoft/api-extractor": "7.52.11",
|
|
97
97
|
"@types/benchmark": "^2.1.0",
|
|
98
98
|
"@types/mocha": "^10.0.10",
|
package/src/packageVersion.ts
CHANGED