fluid-framework 2.70.0-361788 → 2.70.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 +29 -0
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# fluid-framework
|
|
2
2
|
|
|
3
|
+
## 2.70.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- All non-structurally named beta schema factory APIs now support node schema metadata ([#25685](https://github.com/microsoft/FluidFramework/pull/25685)) [6d8c0ca181](https://github.com/microsoft/FluidFramework/commit/6d8c0ca181c7ed7c600e56197ed4bc75cfbba3db)
|
|
8
|
+
|
|
9
|
+
The "options" parameter which allows providing metadata for `TreeNodeSchema` is now available consistently on `SchemaFactoryBeta`,
|
|
10
|
+
not just `SchemaFactoryAlpha` and a subset of `SchemaFactoryBeta`.
|
|
11
|
+
|
|
12
|
+
- A minimal set of branching APIs has been promoted to beta. ([#25744](https://github.com/microsoft/FluidFramework/pull/25744)) [32cc2c75d8](https://github.com/microsoft/FluidFramework/commit/32cc2c75d82c35403caa91e67e81f71baee5d092)
|
|
13
|
+
|
|
14
|
+
The following APIs have been promoted to beta in `@fluidframework/tree`:
|
|
15
|
+
|
|
16
|
+
- `TreeBranch.fork()`
|
|
17
|
+
- `TreeBranch.merge()`
|
|
18
|
+
- `TreeBranch.rebaseOnto()`
|
|
19
|
+
- `TreeBranch.dispose()`
|
|
20
|
+
- `TreeView.fork()`
|
|
21
|
+
|
|
22
|
+
These APIs enable applications to implement basic local branching flows.
|
|
23
|
+
|
|
24
|
+
- Promote FluidSerializableAsTree APIs from alpha to beta ([#25693](https://github.com/microsoft/FluidFramework/pull/25693)) [43fbc54d05](https://github.com/microsoft/FluidFramework/commit/43fbc54d05351d06c4bc20d1e6f5ca732775f605)
|
|
25
|
+
|
|
26
|
+
`FluidSerializableAsTree` may now be imported from `/beta`.
|
|
27
|
+
|
|
28
|
+
- Update TableSchema APIs (alpha) to accept SchemaFactoryBeta in addition to SchemaFactoryAlpha ([#25613](https://github.com/microsoft/FluidFramework/pull/25613)) [1bdf44ac5a](https://github.com/microsoft/FluidFramework/commit/1bdf44ac5a93bcd1956e15e54c46a16ad2d1c005)
|
|
29
|
+
|
|
30
|
+
Makes the [TableSchema](https://fluidframework.com/docs/api/fluid-framework/tableschema-namespace) APIs more flexible, and prepares them for future promotion to beta themselves.
|
|
31
|
+
|
|
3
32
|
## 2.63.0
|
|
4
33
|
|
|
5
34
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fluid-framework",
|
|
3
|
-
"version": "2.70.0
|
|
3
|
+
"version": "2.70.0",
|
|
4
4
|
"description": "The main entry point into Fluid Framework public packages",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -57,17 +57,17 @@
|
|
|
57
57
|
"main": "lib/index.js",
|
|
58
58
|
"types": "lib/public.d.ts",
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@fluidframework/container-definitions": "2.70.0
|
|
61
|
-
"@fluidframework/container-loader": "2.70.0
|
|
62
|
-
"@fluidframework/core-interfaces": "2.70.0
|
|
63
|
-
"@fluidframework/core-utils": "2.70.0
|
|
64
|
-
"@fluidframework/driver-definitions": "2.70.0
|
|
65
|
-
"@fluidframework/fluid-static": "2.70.0
|
|
66
|
-
"@fluidframework/map": "2.70.0
|
|
67
|
-
"@fluidframework/runtime-utils": "2.70.0
|
|
68
|
-
"@fluidframework/sequence": "2.70.0
|
|
69
|
-
"@fluidframework/shared-object-base": "2.70.0
|
|
70
|
-
"@fluidframework/tree": "2.70.0
|
|
60
|
+
"@fluidframework/container-definitions": "~2.70.0",
|
|
61
|
+
"@fluidframework/container-loader": "~2.70.0",
|
|
62
|
+
"@fluidframework/core-interfaces": "~2.70.0",
|
|
63
|
+
"@fluidframework/core-utils": "~2.70.0",
|
|
64
|
+
"@fluidframework/driver-definitions": "~2.70.0",
|
|
65
|
+
"@fluidframework/fluid-static": "~2.70.0",
|
|
66
|
+
"@fluidframework/map": "~2.70.0",
|
|
67
|
+
"@fluidframework/runtime-utils": "~2.70.0",
|
|
68
|
+
"@fluidframework/sequence": "~2.70.0",
|
|
69
|
+
"@fluidframework/shared-object-base": "~2.70.0",
|
|
70
|
+
"@fluidframework/tree": "~2.70.0"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
73
|
"@arethetypeswrong/cli": "^0.17.1",
|