@fluid-experimental/attributor 2.30.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 +98 -94
- package/lib/tsdoc-metadata.json +1 -1
- package/package.json +19 -22
- package/prettier.config.cjs +0 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# @fluid-experimental/attributor
|
|
2
2
|
|
|
3
|
+
## 2.31.0
|
|
4
|
+
|
|
5
|
+
Dependency updates only.
|
|
6
|
+
|
|
3
7
|
## 2.30.0
|
|
4
8
|
|
|
5
9
|
Dependency updates only.
|
|
@@ -20,14 +24,14 @@ Dependency updates only.
|
|
|
20
24
|
|
|
21
25
|
### Minor Changes
|
|
22
26
|
|
|
23
|
-
-
|
|
27
|
+
- The ContainerRuntime class has been removed ([#23341](https://github.com/microsoft/FluidFramework/pull/23341)) [61ba06aa98](https://github.com/microsoft/FluidFramework/commit/61ba06aa9881c30ffeeedcaaede9c5a1a0c81abd)
|
|
24
28
|
|
|
25
|
-
|
|
26
|
-
|
|
29
|
+
The `ContainerRuntime` class was [deprecated in version 2.12.0](https://github.com/microsoft/FluidFramework/releases/tag/client_v2.12.0#user-content-the-containerruntime-class-is-now-deprecated-23331) and has been removed.
|
|
30
|
+
Use `IContainerRuntime` to replace type usages and use the free function `loadContainerRuntime` to replace usages of the static method `ContainerRuntime.loadRuntime`.
|
|
27
31
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
32
|
+
See the [deprecation
|
|
33
|
+
announcement](https://github.com/microsoft/FluidFramework/releases/tag/client_v2.12.0#user-content-the-containerruntime-class-is-now-deprecated-23331)
|
|
34
|
+
for more details about how to update existing code.
|
|
31
35
|
|
|
32
36
|
## 2.13.0
|
|
33
37
|
|
|
@@ -69,9 +73,9 @@ Dependency updates only.
|
|
|
69
73
|
|
|
70
74
|
### Minor Changes
|
|
71
75
|
|
|
72
|
-
-
|
|
76
|
+
- Update to TypeScript 5.4 ([#21214](https://github.com/microsoft/FluidFramework/pull/21214)) [0e6256c722](https://github.com/microsoft/FluidFramework/commit/0e6256c722d8bf024f4325bf02547daeeb18bfa6)
|
|
73
77
|
|
|
74
|
-
|
|
78
|
+
Update package implementations to use TypeScript 5.4.5.
|
|
75
79
|
|
|
76
80
|
## 2.0.0-rc.4.0.0
|
|
77
81
|
|
|
@@ -81,24 +85,24 @@ Dependency updates only.
|
|
|
81
85
|
|
|
82
86
|
### Major Changes
|
|
83
87
|
|
|
84
|
-
-
|
|
88
|
+
- Packages now use package.json "exports" and require modern module resolution [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
|
|
85
89
|
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
90
|
+
Fluid Framework packages have been updated to use the [package.json "exports"
|
|
91
|
+
field](https://nodejs.org/docs/latest-v18.x/api/packages.html#exports) to define explicit entry points for both
|
|
92
|
+
TypeScript types and implementation code.
|
|
89
93
|
|
|
90
|
-
|
|
94
|
+
This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
|
|
91
95
|
|
|
92
|
-
|
|
93
|
-
|
|
96
|
+
- `"moduleResolution": "Node16"` with `"module": "Node16"`
|
|
97
|
+
- `"moduleResolution": "Bundler"` with `"module": "ESNext"`
|
|
94
98
|
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
+
We recommend using Node16/Node16 unless absolutely necessary. That will produce transpiled JavaScript that is suitable
|
|
100
|
+
for use with modern versions of Node.js _and_ Bundlers.
|
|
101
|
+
[See the TypeScript documentation](https://www.typescriptlang.org/tsconfig#moduleResolution) for more information
|
|
102
|
+
regarding the module and moduleResolution options.
|
|
99
103
|
|
|
100
|
-
|
|
101
|
-
|
|
104
|
+
**Node10 moduleResolution is not supported; it does not support Fluid Framework's API structuring pattern that is used
|
|
105
|
+
to distinguish stable APIs from those that are in development.**
|
|
102
106
|
|
|
103
107
|
## 2.0.0-rc.2.0.0
|
|
104
108
|
|
|
@@ -108,44 +112,44 @@ Dependency updates only.
|
|
|
108
112
|
|
|
109
113
|
### Minor Changes
|
|
110
114
|
|
|
111
|
-
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
115
|
+
- Updated server dependencies ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
|
|
116
|
+
|
|
117
|
+
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)
|
|
118
|
+
|
|
119
|
+
- @fluidframework/gitresources
|
|
120
|
+
- @fluidframework/server-kafka-orderer
|
|
121
|
+
- @fluidframework/server-lambdas
|
|
122
|
+
- @fluidframework/server-lambdas-driver
|
|
123
|
+
- @fluidframework/server-local-server
|
|
124
|
+
- @fluidframework/server-memory-orderer
|
|
125
|
+
- @fluidframework/protocol-base
|
|
126
|
+
- @fluidframework/server-routerlicious
|
|
127
|
+
- @fluidframework/server-routerlicious-base
|
|
128
|
+
- @fluidframework/server-services
|
|
129
|
+
- @fluidframework/server-services-client
|
|
130
|
+
- @fluidframework/server-services-core
|
|
131
|
+
- @fluidframework/server-services-ordering-kafkanode
|
|
132
|
+
- @fluidframework/server-services-ordering-rdkafka
|
|
133
|
+
- @fluidframework/server-services-ordering-zookeeper
|
|
134
|
+
- @fluidframework/server-services-shared
|
|
135
|
+
- @fluidframework/server-services-telemetry
|
|
136
|
+
- @fluidframework/server-services-utils
|
|
137
|
+
- @fluidframework/server-test-utils
|
|
138
|
+
- tinylicious
|
|
139
|
+
|
|
140
|
+
- Updated @fluidframework/protocol-definitions ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
|
|
141
|
+
|
|
142
|
+
The @fluidframework/protocol-definitions dependency has been upgraded to v3.1.0. [See the full
|
|
143
|
+
changelog.](https://github.com/microsoft/FluidFramework/blob/main/common/lib/protocol-definitions/CHANGELOG.md#310)
|
|
140
144
|
|
|
141
145
|
## 2.0.0-internal.8.0.0
|
|
142
146
|
|
|
143
147
|
### Major Changes
|
|
144
148
|
|
|
145
|
-
-
|
|
149
|
+
- container-runtime: Removed `ContainerRuntime.load(...)` [9a451d4946](https://github.com/microsoft/FluidFramework/commits/9a451d4946b5c51a52e4d1ab5bf51e7b285b0d74)
|
|
146
150
|
|
|
147
|
-
|
|
148
|
-
|
|
151
|
+
The static method `ContainerRuntime.load(...)` has been removed. Please migrate all usage of this method to
|
|
152
|
+
`ContainerRuntime.loadRuntime(...)`.
|
|
149
153
|
|
|
150
154
|
## 2.0.0-internal.7.4.0
|
|
151
155
|
|
|
@@ -167,45 +171,45 @@ Dependency updates only.
|
|
|
167
171
|
|
|
168
172
|
### Major Changes
|
|
169
173
|
|
|
170
|
-
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
-
|
|
207
|
-
|
|
208
|
-
|
|
174
|
+
- Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
175
|
+
|
|
176
|
+
This included the following changes from the protocol-definitions release:
|
|
177
|
+
|
|
178
|
+
- Updating signal interfaces for some planned improvements. The intention is split the interface between signals
|
|
179
|
+
submitted by clients to the server and the resulting signals sent from the server to clients.
|
|
180
|
+
- A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
|
|
181
|
+
been added, which will be the typing for signals sent from the client to the server. Both extend a new
|
|
182
|
+
ISignalMessageBase interface that contains common members.
|
|
183
|
+
- The @fluidframework/common-definitions package dependency has been updated to version 1.0.0.
|
|
184
|
+
|
|
185
|
+
- Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
186
|
+
|
|
187
|
+
Dependencies on the following Fluid server package have been updated to version 2.0.1:
|
|
188
|
+
|
|
189
|
+
- @fluidframework/gitresources: 2.0.1
|
|
190
|
+
- @fluidframework/server-kafka-orderer: 2.0.1
|
|
191
|
+
- @fluidframework/server-lambdas: 2.0.1
|
|
192
|
+
- @fluidframework/server-lambdas-driver: 2.0.1
|
|
193
|
+
- @fluidframework/server-local-server: 2.0.1
|
|
194
|
+
- @fluidframework/server-memory-orderer: 2.0.1
|
|
195
|
+
- @fluidframework/protocol-base: 2.0.1
|
|
196
|
+
- @fluidframework/server-routerlicious: 2.0.1
|
|
197
|
+
- @fluidframework/server-routerlicious-base: 2.0.1
|
|
198
|
+
- @fluidframework/server-services: 2.0.1
|
|
199
|
+
- @fluidframework/server-services-client: 2.0.1
|
|
200
|
+
- @fluidframework/server-services-core: 2.0.1
|
|
201
|
+
- @fluidframework/server-services-ordering-kafkanode: 2.0.1
|
|
202
|
+
- @fluidframework/server-services-ordering-rdkafka: 2.0.1
|
|
203
|
+
- @fluidframework/server-services-ordering-zookeeper: 2.0.1
|
|
204
|
+
- @fluidframework/server-services-shared: 2.0.1
|
|
205
|
+
- @fluidframework/server-services-telemetry: 2.0.1
|
|
206
|
+
- @fluidframework/server-services-utils: 2.0.1
|
|
207
|
+
- @fluidframework/server-test-utils: 2.0.1
|
|
208
|
+
- tinylicious: 2.0.1
|
|
209
|
+
|
|
210
|
+
- Minimum TypeScript version now 5.1.6 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
211
|
+
|
|
212
|
+
The minimum supported TypeScript version for Fluid 2.0 clients is now 5.1.6.
|
|
209
213
|
|
|
210
214
|
## 2.0.0-internal.6.4.0
|
|
211
215
|
|
|
@@ -227,9 +231,9 @@ Dependency updates only.
|
|
|
227
231
|
|
|
228
232
|
### Major Changes
|
|
229
233
|
|
|
230
|
-
-
|
|
234
|
+
- Upgraded typescript transpilation target to ES2020 [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
|
|
231
235
|
|
|
232
|
-
|
|
236
|
+
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.
|
|
233
237
|
|
|
234
238
|
## 2.0.0-internal.5.4.0
|
|
235
239
|
|
package/lib/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-experimental/attributor",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.31.0",
|
|
4
4
|
"description": "Operation attributor",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -49,33 +49,33 @@
|
|
|
49
49
|
"temp-directory": "nyc/.nyc_output"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@fluid-internal/client-utils": "~2.
|
|
53
|
-
"@fluidframework/container-definitions": "~2.
|
|
54
|
-
"@fluidframework/container-runtime": "~2.
|
|
55
|
-
"@fluidframework/container-runtime-definitions": "~2.
|
|
56
|
-
"@fluidframework/core-interfaces": "~2.
|
|
57
|
-
"@fluidframework/core-utils": "~2.
|
|
58
|
-
"@fluidframework/datastore": "~2.
|
|
59
|
-
"@fluidframework/datastore-definitions": "~2.
|
|
60
|
-
"@fluidframework/driver-definitions": "~2.
|
|
61
|
-
"@fluidframework/runtime-definitions": "~2.
|
|
62
|
-
"@fluidframework/runtime-utils": "~2.
|
|
63
|
-
"@fluidframework/telemetry-utils": "~2.
|
|
52
|
+
"@fluid-internal/client-utils": "~2.31.0",
|
|
53
|
+
"@fluidframework/container-definitions": "~2.31.0",
|
|
54
|
+
"@fluidframework/container-runtime": "~2.31.0",
|
|
55
|
+
"@fluidframework/container-runtime-definitions": "~2.31.0",
|
|
56
|
+
"@fluidframework/core-interfaces": "~2.31.0",
|
|
57
|
+
"@fluidframework/core-utils": "~2.31.0",
|
|
58
|
+
"@fluidframework/datastore": "~2.31.0",
|
|
59
|
+
"@fluidframework/datastore-definitions": "~2.31.0",
|
|
60
|
+
"@fluidframework/driver-definitions": "~2.31.0",
|
|
61
|
+
"@fluidframework/runtime-definitions": "~2.31.0",
|
|
62
|
+
"@fluidframework/runtime-utils": "~2.31.0",
|
|
63
|
+
"@fluidframework/telemetry-utils": "~2.31.0",
|
|
64
64
|
"lz4js": "^0.2.0"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
68
68
|
"@biomejs/biome": "~1.9.3",
|
|
69
|
-
"@fluid-internal/mocha-test-setup": "~2.
|
|
70
|
-
"@fluid-private/stochastic-test-utils": "~2.
|
|
69
|
+
"@fluid-internal/mocha-test-setup": "~2.31.0",
|
|
70
|
+
"@fluid-private/stochastic-test-utils": "~2.31.0",
|
|
71
71
|
"@fluid-tools/build-cli": "^0.54.0",
|
|
72
72
|
"@fluidframework/build-common": "^2.0.3",
|
|
73
73
|
"@fluidframework/build-tools": "^0.54.0",
|
|
74
74
|
"@fluidframework/eslint-config-fluid": "^5.7.3",
|
|
75
|
-
"@fluidframework/merge-tree": "~2.
|
|
76
|
-
"@fluidframework/sequence": "~2.
|
|
77
|
-
"@fluidframework/test-runtime-utils": "~2.
|
|
78
|
-
"@microsoft/api-extractor": "7.
|
|
75
|
+
"@fluidframework/merge-tree": "~2.31.0",
|
|
76
|
+
"@fluidframework/sequence": "~2.31.0",
|
|
77
|
+
"@fluidframework/test-runtime-utils": "~2.31.0",
|
|
78
|
+
"@microsoft/api-extractor": "7.50.1",
|
|
79
79
|
"@types/mocha": "^10.0.10",
|
|
80
80
|
"@types/node": "^18.19.0",
|
|
81
81
|
"c8": "^8.0.1",
|
|
@@ -86,7 +86,6 @@
|
|
|
86
86
|
"mocha": "^10.8.2",
|
|
87
87
|
"mocha-multi-reporters": "^1.5.1",
|
|
88
88
|
"moment": "^2.21.0",
|
|
89
|
-
"prettier": "~3.0.3",
|
|
90
89
|
"rimraf": "^4.4.0",
|
|
91
90
|
"typescript": "~5.4.5"
|
|
92
91
|
},
|
|
@@ -111,14 +110,12 @@
|
|
|
111
110
|
"check:exports:cjs:index": "api-extractor run --config api-extractor/api-extractor-lint-index.cjs.json",
|
|
112
111
|
"check:exports:esm:index": "api-extractor run --config api-extractor/api-extractor-lint-index.esm.json",
|
|
113
112
|
"check:format": "npm run check:biome",
|
|
114
|
-
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
|
115
113
|
"ci:build:docs": "api-extractor run",
|
|
116
114
|
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc",
|
|
117
115
|
"eslint": "eslint --format stylish src",
|
|
118
116
|
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
119
117
|
"format": "npm run format:biome",
|
|
120
118
|
"format:biome": "biome check . --write",
|
|
121
|
-
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
|
122
119
|
"lint": "fluid-build . --task lint",
|
|
123
120
|
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
|
124
121
|
"test": "npm run test:mocha",
|