@fluidframework/synthesize 2.0.0-rc.3.0.3 → 2.0.0-rc.4.0.1
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 +13 -0
- package/dist/legacy.d.ts +1 -1
- package/lib/legacy.d.ts +1 -1
- package/lib/tsdoc-metadata.json +1 -1
- package/package.json +11 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @fluidframework/synthesize
|
|
2
2
|
|
|
3
|
+
## 2.0.0-rc.4.0.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Deprecated members of IFluidHandle are split off into new IFluidHandleInternal interface [96872186d0](https://github.com/microsoft/FluidFramework/commit/96872186d0d0f245c1fece7d19b3743e501679b6)
|
|
8
|
+
|
|
9
|
+
Split IFluidHandle into two interfaces, `IFluidHandle` and `IFluidHandleInternal`.
|
|
10
|
+
Code depending on the previously deprecated members of IFluidHandle can access them by using `toFluidHandleInternal` from `@fluidframework/runtime-utils/legacy`.
|
|
11
|
+
|
|
12
|
+
External implementation of the `IFluidHandle` interface are not supported: this change makes the typing better convey this using the `ErasedType` pattern.
|
|
13
|
+
Any existing and previously working, and now broken, external implementations of `IFluidHandle` should still work at runtime, but will need some unsafe type casts to compile.
|
|
14
|
+
Such handle implementation may break in the future and thus should be replaced with use of handles produced by the Fluid Framework client packages.
|
|
15
|
+
|
|
3
16
|
## 2.0.0-rc.3.0.0
|
|
4
17
|
|
|
5
18
|
### Major Changes
|
package/dist/legacy.d.ts
CHANGED
package/lib/legacy.d.ts
CHANGED
package/lib/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/synthesize",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.4.0.1",
|
|
4
4
|
"description": "A library for synthesizing scope objects.",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -67,20 +67,21 @@
|
|
|
67
67
|
"temp-directory": "nyc/.nyc_output"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@fluidframework/core-utils": ">=2.0.0-rc.
|
|
70
|
+
"@fluidframework/core-utils": ">=2.0.0-rc.4.0.1 <2.0.0-rc.4.1.0"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
73
|
"@arethetypeswrong/cli": "^0.15.2",
|
|
74
74
|
"@biomejs/biome": "^1.6.2",
|
|
75
|
-
"@fluid-internal/mocha-test-setup": ">=2.0.0-rc.
|
|
76
|
-
"@fluid-tools/build-cli": "^0.
|
|
75
|
+
"@fluid-internal/mocha-test-setup": ">=2.0.0-rc.4.0.1 <2.0.0-rc.4.1.0",
|
|
76
|
+
"@fluid-tools/build-cli": "^0.38.0",
|
|
77
77
|
"@fluidframework/build-common": "^2.0.3",
|
|
78
|
-
"@fluidframework/build-tools": "^0.
|
|
79
|
-
"@fluidframework/core-interfaces": ">=2.0.0-rc.
|
|
80
|
-
"@fluidframework/datastore": ">=2.0.0-rc.
|
|
78
|
+
"@fluidframework/build-tools": "^0.38.0",
|
|
79
|
+
"@fluidframework/core-interfaces": ">=2.0.0-rc.4.0.1 <2.0.0-rc.4.1.0",
|
|
80
|
+
"@fluidframework/datastore": ">=2.0.0-rc.4.0.1 <2.0.0-rc.4.1.0",
|
|
81
81
|
"@fluidframework/eslint-config-fluid": "^5.1.0",
|
|
82
|
-
"@fluidframework/
|
|
83
|
-
"@
|
|
82
|
+
"@fluidframework/runtime-utils": ">=2.0.0-rc.4.0.1 <2.0.0-rc.4.1.0",
|
|
83
|
+
"@fluidframework/synthesize-previous": "npm:@fluidframework/synthesize@2.0.0-rc.3.0.0",
|
|
84
|
+
"@microsoft/api-extractor": "^7.43.1",
|
|
84
85
|
"@types/mocha": "^9.1.1",
|
|
85
86
|
"@types/node": "^18.19.0",
|
|
86
87
|
"c8": "^8.0.1",
|
|
@@ -128,7 +129,7 @@
|
|
|
128
129
|
"test:mocha:esm": "mocha --recursive \"lib/test/**/*.spec.*js\" --exit",
|
|
129
130
|
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
|
|
130
131
|
"tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../common/build/build-common/src/cjs/package.json ./dist",
|
|
131
|
-
"typetests:gen": "
|
|
132
|
+
"typetests:gen": "flub generate typetests --dir . -v --publicFallback",
|
|
132
133
|
"typetests:prepare": "flub typetests --dir . --reset --previous --normalize"
|
|
133
134
|
}
|
|
134
135
|
}
|