@fluid-experimental/dds-interceptions 2.23.0 → 2.31.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 -21
- package/lib/tsdoc-metadata.json +1 -1
- package/package.json +10 -13
- package/prettier.config.cjs +0 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @fluidframework/dds-interceptions
|
|
2
2
|
|
|
3
|
+
## 2.31.0
|
|
4
|
+
|
|
5
|
+
Dependency updates only.
|
|
6
|
+
|
|
7
|
+
## 2.30.0
|
|
8
|
+
|
|
9
|
+
Dependency updates only.
|
|
10
|
+
|
|
3
11
|
## 2.23.0
|
|
4
12
|
|
|
5
13
|
Dependency updates only.
|
|
@@ -56,9 +64,9 @@ Dependency updates only.
|
|
|
56
64
|
|
|
57
65
|
### Minor Changes
|
|
58
66
|
|
|
59
|
-
-
|
|
67
|
+
- Update to TypeScript 5.4 ([#21214](https://github.com/microsoft/FluidFramework/pull/21214)) [0e6256c722](https://github.com/microsoft/FluidFramework/commit/0e6256c722d8bf024f4325bf02547daeeb18bfa6)
|
|
60
68
|
|
|
61
|
-
|
|
69
|
+
Update package implementations to use TypeScript 5.4.5.
|
|
62
70
|
|
|
63
71
|
## 2.0.0-rc.4.0.0
|
|
64
72
|
|
|
@@ -68,32 +76,32 @@ Dependency updates only.
|
|
|
68
76
|
|
|
69
77
|
### Major Changes
|
|
70
78
|
|
|
71
|
-
-
|
|
79
|
+
- Packages now use package.json "exports" and require modern module resolution [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
|
|
72
80
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
81
|
+
Fluid Framework packages have been updated to use the [package.json "exports"
|
|
82
|
+
field](https://nodejs.org/docs/latest-v18.x/api/packages.html#exports) to define explicit entry points for both
|
|
83
|
+
TypeScript types and implementation code.
|
|
76
84
|
|
|
77
|
-
|
|
85
|
+
This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
|
|
78
86
|
|
|
79
|
-
|
|
80
|
-
|
|
87
|
+
- `"moduleResolution": "Node16"` with `"module": "Node16"`
|
|
88
|
+
- `"moduleResolution": "Bundler"` with `"module": "ESNext"`
|
|
81
89
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
90
|
+
We recommend using Node16/Node16 unless absolutely necessary. That will produce transpiled JavaScript that is suitable
|
|
91
|
+
for use with modern versions of Node.js _and_ Bundlers.
|
|
92
|
+
[See the TypeScript documentation](https://www.typescriptlang.org/tsconfig#moduleResolution) for more information
|
|
93
|
+
regarding the module and moduleResolution options.
|
|
86
94
|
|
|
87
|
-
|
|
88
|
-
|
|
95
|
+
**Node10 moduleResolution is not supported; it does not support Fluid Framework's API structuring pattern that is used
|
|
96
|
+
to distinguish stable APIs from those that are in development.**
|
|
89
97
|
|
|
90
98
|
## 2.0.0-rc.2.0.0
|
|
91
99
|
|
|
92
100
|
### Minor Changes
|
|
93
101
|
|
|
94
|
-
-
|
|
102
|
+
- @fluidframework/dds-interceptions is now considered experimental ([#19679](https://github.com/microsoft/FluidFramework/issues/19679)) [181d802c9b](https://github.com/microsoft/FluidFramework/commits/181d802c9bb990ec3464d0c9d78126b05fa06cd3)
|
|
95
103
|
|
|
96
|
-
|
|
104
|
+
The DDS interception pattern was intended to support attribution scenarios but is now in process of being replaced by a different attributor approach. It is not recommended for use.
|
|
97
105
|
|
|
98
106
|
## 2.0.0-rc.1.0.0
|
|
99
107
|
|
|
@@ -123,9 +131,9 @@ Dependency updates only.
|
|
|
123
131
|
|
|
124
132
|
### Major Changes
|
|
125
133
|
|
|
126
|
-
-
|
|
134
|
+
- Minimum TypeScript version now 5.1.6 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
127
135
|
|
|
128
|
-
|
|
136
|
+
The minimum supported TypeScript version for Fluid 2.0 clients is now 5.1.6.
|
|
129
137
|
|
|
130
138
|
## 2.0.0-internal.6.4.0
|
|
131
139
|
|
|
@@ -147,9 +155,9 @@ Dependency updates only.
|
|
|
147
155
|
|
|
148
156
|
### Major Changes
|
|
149
157
|
|
|
150
|
-
-
|
|
158
|
+
- Upgraded typescript transpilation target to ES2020 [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
|
|
151
159
|
|
|
152
|
-
|
|
160
|
+
Upgraded typescript transpilation target to ES2020. This is done in order to decrease the bundle sizes of Fluid Framework packages. This has provided size improvements across the board for ex. Loader, Driver, Runtime etc. Reduced bundle sizes helps to load lesser code in apps and hence also helps to improve the perf.If any app wants to target any older versions of browsers with which this target version is not compatible, then they can use packages like babel to transpile to a older target.
|
|
153
161
|
|
|
154
162
|
## 2.0.0-internal.5.4.0
|
|
155
163
|
|
package/lib/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-experimental/dds-interceptions",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.31.0",
|
|
4
4
|
"description": "Distributed Data Structures that support an interception callback",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -49,22 +49,22 @@
|
|
|
49
49
|
"temp-directory": "nyc/.nyc_output"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@fluidframework/core-utils": "~2.
|
|
53
|
-
"@fluidframework/map": "~2.
|
|
54
|
-
"@fluidframework/merge-tree": "~2.
|
|
55
|
-
"@fluidframework/runtime-definitions": "~2.
|
|
56
|
-
"@fluidframework/sequence": "~2.
|
|
52
|
+
"@fluidframework/core-utils": "~2.31.0",
|
|
53
|
+
"@fluidframework/map": "~2.31.0",
|
|
54
|
+
"@fluidframework/merge-tree": "~2.31.0",
|
|
55
|
+
"@fluidframework/runtime-definitions": "~2.31.0",
|
|
56
|
+
"@fluidframework/sequence": "~2.31.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
60
60
|
"@biomejs/biome": "~1.9.3",
|
|
61
|
-
"@fluid-internal/mocha-test-setup": "~2.
|
|
61
|
+
"@fluid-internal/mocha-test-setup": "~2.31.0",
|
|
62
62
|
"@fluid-tools/build-cli": "^0.54.0",
|
|
63
63
|
"@fluidframework/build-common": "^2.0.3",
|
|
64
64
|
"@fluidframework/build-tools": "^0.54.0",
|
|
65
65
|
"@fluidframework/eslint-config-fluid": "^5.7.3",
|
|
66
|
-
"@fluidframework/test-runtime-utils": "~2.
|
|
67
|
-
"@microsoft/api-extractor": "7.
|
|
66
|
+
"@fluidframework/test-runtime-utils": "~2.31.0",
|
|
67
|
+
"@microsoft/api-extractor": "7.50.1",
|
|
68
68
|
"@types/diff": "^3.5.1",
|
|
69
69
|
"@types/mocha": "^10.0.10",
|
|
70
70
|
"@types/node": "^18.19.0",
|
|
@@ -74,10 +74,9 @@
|
|
|
74
74
|
"cross-env": "^7.0.3",
|
|
75
75
|
"diff": "^3.5.0",
|
|
76
76
|
"eslint": "~8.55.0",
|
|
77
|
-
"mocha": "^10.2
|
|
77
|
+
"mocha": "^10.8.2",
|
|
78
78
|
"mocha-multi-reporters": "^1.5.1",
|
|
79
79
|
"moment": "^2.21.0",
|
|
80
|
-
"prettier": "~3.0.3",
|
|
81
80
|
"rimraf": "^4.4.0",
|
|
82
81
|
"typescript": "~5.4.5"
|
|
83
82
|
},
|
|
@@ -103,14 +102,12 @@
|
|
|
103
102
|
"check:exports:cjs:index": "api-extractor run --config api-extractor/api-extractor-lint-index.cjs.json",
|
|
104
103
|
"check:exports:esm:index": "api-extractor run --config api-extractor/api-extractor-lint-index.esm.json",
|
|
105
104
|
"check:format": "npm run check:biome",
|
|
106
|
-
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
|
107
105
|
"ci:build:docs": "api-extractor run",
|
|
108
106
|
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc",
|
|
109
107
|
"eslint": "eslint --format stylish src",
|
|
110
108
|
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
111
109
|
"format": "npm run format:biome",
|
|
112
110
|
"format:biome": "biome check . --write",
|
|
113
|
-
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
|
114
111
|
"lint": "fluid-build . --task lint",
|
|
115
112
|
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
|
116
113
|
"test": "npm run test:mocha",
|