@fluid-experimental/property-dds 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 +117 -113
- package/lib/tsdoc-metadata.json +1 -1
- package/package.json +21 -24
- package/prettier.config.cjs +0 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# @fluid-experimental/property-dds
|
|
2
2
|
|
|
3
|
+
## 2.31.0
|
|
4
|
+
|
|
5
|
+
Dependency updates only.
|
|
6
|
+
|
|
3
7
|
## 2.30.0
|
|
4
8
|
|
|
5
9
|
Dependency updates only.
|
|
@@ -60,34 +64,34 @@ Dependency updates only.
|
|
|
60
64
|
|
|
61
65
|
### Minor Changes
|
|
62
66
|
|
|
63
|
-
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
-
|
|
89
|
-
|
|
90
|
-
|
|
67
|
+
- Updated server dependencies ([#21514](https://github.com/microsoft/FluidFramework/pull/21514)) [9629f1d93a](https://github.com/microsoft/FluidFramework/commit/9629f1d93a7e412c0cb2f65cc21da0c95ff8981d)
|
|
68
|
+
|
|
69
|
+
The following Fluid server dependencies have been updated to the latest version, 5.0.0. [See the full changelog.](https://github.com/microsoft/FluidFramework/blob/main/server/routerlicious/RELEASE_NOTES/5.0.0.md)
|
|
70
|
+
|
|
71
|
+
- @fluidframework/gitresources
|
|
72
|
+
- @fluidframework/server-kafka-orderer
|
|
73
|
+
- @fluidframework/server-lambdas
|
|
74
|
+
- @fluidframework/server-lambdas-driver
|
|
75
|
+
- @fluidframework/server-local-server
|
|
76
|
+
- @fluidframework/server-memory-orderer
|
|
77
|
+
- @fluidframework/protocol-base
|
|
78
|
+
- @fluidframework/server-routerlicious
|
|
79
|
+
- @fluidframework/server-routerlicious-base
|
|
80
|
+
- @fluidframework/server-services
|
|
81
|
+
- @fluidframework/server-services-client
|
|
82
|
+
- @fluidframework/server-services-core
|
|
83
|
+
- @fluidframework/server-services-ordering-kafkanode
|
|
84
|
+
- @fluidframework/server-services-ordering-rdkafka
|
|
85
|
+
- @fluidframework/server-services-ordering-zookeeper
|
|
86
|
+
- @fluidframework/server-services-shared
|
|
87
|
+
- @fluidframework/server-services-telemetry
|
|
88
|
+
- @fluidframework/server-services-utils
|
|
89
|
+
- @fluidframework/server-test-utils
|
|
90
|
+
- tinylicious
|
|
91
|
+
|
|
92
|
+
- Update to TypeScript 5.4 ([#21214](https://github.com/microsoft/FluidFramework/pull/21214)) [0e6256c722](https://github.com/microsoft/FluidFramework/commit/0e6256c722d8bf024f4325bf02547daeeb18bfa6)
|
|
93
|
+
|
|
94
|
+
Update package implementations to use TypeScript 5.4.5.
|
|
91
95
|
|
|
92
96
|
## 2.0.0-rc.4.0.0
|
|
93
97
|
|
|
@@ -97,66 +101,66 @@ Dependency updates only.
|
|
|
97
101
|
|
|
98
102
|
### Major Changes
|
|
99
103
|
|
|
100
|
-
-
|
|
104
|
+
- Packages now use package.json "exports" and require modern module resolution [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
|
|
101
105
|
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
106
|
+
Fluid Framework packages have been updated to use the [package.json "exports"
|
|
107
|
+
field](https://nodejs.org/docs/latest-v18.x/api/packages.html#exports) to define explicit entry points for both
|
|
108
|
+
TypeScript types and implementation code.
|
|
105
109
|
|
|
106
|
-
|
|
110
|
+
This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
|
|
107
111
|
|
|
108
|
-
|
|
109
|
-
|
|
112
|
+
- `"moduleResolution": "Node16"` with `"module": "Node16"`
|
|
113
|
+
- `"moduleResolution": "Bundler"` with `"module": "ESNext"`
|
|
110
114
|
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
+
We recommend using Node16/Node16 unless absolutely necessary. That will produce transpiled JavaScript that is suitable
|
|
116
|
+
for use with modern versions of Node.js _and_ Bundlers.
|
|
117
|
+
[See the TypeScript documentation](https://www.typescriptlang.org/tsconfig#moduleResolution) for more information
|
|
118
|
+
regarding the module and moduleResolution options.
|
|
115
119
|
|
|
116
|
-
|
|
117
|
-
|
|
120
|
+
**Node10 moduleResolution is not supported; it does not support Fluid Framework's API structuring pattern that is used
|
|
121
|
+
to distinguish stable APIs from those that are in development.**
|
|
118
122
|
|
|
119
123
|
## 2.0.0-rc.2.0.0
|
|
120
124
|
|
|
121
125
|
### Minor Changes
|
|
122
126
|
|
|
123
|
-
-
|
|
127
|
+
- Resolved URLs no longer use non-standard protocols ([#19840](https://github.com/microsoft/FluidFramework/issues/19840)) [9d3d185183](https://github.com/microsoft/FluidFramework/commits/9d3d1851830d953792a6dfad60dde6f1c59480de)
|
|
124
128
|
|
|
125
|
-
|
|
129
|
+
Previously, `IResolvedUrl.url` could use a non-standard protocol like `fluid://`, `fluid-odsp://`, or `fluid-test://`. These have been replaced with `https://` to permit standards-compliant URL parsing.
|
|
126
130
|
|
|
127
131
|
## 2.0.0-rc.1.0.0
|
|
128
132
|
|
|
129
133
|
### Minor Changes
|
|
130
134
|
|
|
131
|
-
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
135
|
+
- Updated server dependencies ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
|
|
136
|
+
|
|
137
|
+
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)
|
|
138
|
+
|
|
139
|
+
- @fluidframework/gitresources
|
|
140
|
+
- @fluidframework/server-kafka-orderer
|
|
141
|
+
- @fluidframework/server-lambdas
|
|
142
|
+
- @fluidframework/server-lambdas-driver
|
|
143
|
+
- @fluidframework/server-local-server
|
|
144
|
+
- @fluidframework/server-memory-orderer
|
|
145
|
+
- @fluidframework/protocol-base
|
|
146
|
+
- @fluidframework/server-routerlicious
|
|
147
|
+
- @fluidframework/server-routerlicious-base
|
|
148
|
+
- @fluidframework/server-services
|
|
149
|
+
- @fluidframework/server-services-client
|
|
150
|
+
- @fluidframework/server-services-core
|
|
151
|
+
- @fluidframework/server-services-ordering-kafkanode
|
|
152
|
+
- @fluidframework/server-services-ordering-rdkafka
|
|
153
|
+
- @fluidframework/server-services-ordering-zookeeper
|
|
154
|
+
- @fluidframework/server-services-shared
|
|
155
|
+
- @fluidframework/server-services-telemetry
|
|
156
|
+
- @fluidframework/server-services-utils
|
|
157
|
+
- @fluidframework/server-test-utils
|
|
158
|
+
- tinylicious
|
|
159
|
+
|
|
160
|
+
- Updated @fluidframework/protocol-definitions ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
|
|
161
|
+
|
|
162
|
+
The @fluidframework/protocol-definitions dependency has been upgraded to v3.1.0. [See the full
|
|
163
|
+
changelog.](https://github.com/microsoft/FluidFramework/blob/main/common/lib/protocol-definitions/CHANGELOG.md#310)
|
|
160
164
|
|
|
161
165
|
## 2.0.0-internal.8.0.0
|
|
162
166
|
|
|
@@ -182,45 +186,45 @@ Dependency updates only.
|
|
|
182
186
|
|
|
183
187
|
### Major Changes
|
|
184
188
|
|
|
185
|
-
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
-
|
|
222
|
-
|
|
223
|
-
|
|
189
|
+
- Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
190
|
+
|
|
191
|
+
This included the following changes from the protocol-definitions release:
|
|
192
|
+
|
|
193
|
+
- Updating signal interfaces for some planned improvements. The intention is split the interface between signals
|
|
194
|
+
submitted by clients to the server and the resulting signals sent from the server to clients.
|
|
195
|
+
- A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
|
|
196
|
+
been added, which will be the typing for signals sent from the client to the server. Both extend a new
|
|
197
|
+
ISignalMessageBase interface that contains common members.
|
|
198
|
+
- The @fluidframework/common-definitions package dependency has been updated to version 1.0.0.
|
|
199
|
+
|
|
200
|
+
- Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
201
|
+
|
|
202
|
+
Dependencies on the following Fluid server package have been updated to version 2.0.1:
|
|
203
|
+
|
|
204
|
+
- @fluidframework/gitresources: 2.0.1
|
|
205
|
+
- @fluidframework/server-kafka-orderer: 2.0.1
|
|
206
|
+
- @fluidframework/server-lambdas: 2.0.1
|
|
207
|
+
- @fluidframework/server-lambdas-driver: 2.0.1
|
|
208
|
+
- @fluidframework/server-local-server: 2.0.1
|
|
209
|
+
- @fluidframework/server-memory-orderer: 2.0.1
|
|
210
|
+
- @fluidframework/protocol-base: 2.0.1
|
|
211
|
+
- @fluidframework/server-routerlicious: 2.0.1
|
|
212
|
+
- @fluidframework/server-routerlicious-base: 2.0.1
|
|
213
|
+
- @fluidframework/server-services: 2.0.1
|
|
214
|
+
- @fluidframework/server-services-client: 2.0.1
|
|
215
|
+
- @fluidframework/server-services-core: 2.0.1
|
|
216
|
+
- @fluidframework/server-services-ordering-kafkanode: 2.0.1
|
|
217
|
+
- @fluidframework/server-services-ordering-rdkafka: 2.0.1
|
|
218
|
+
- @fluidframework/server-services-ordering-zookeeper: 2.0.1
|
|
219
|
+
- @fluidframework/server-services-shared: 2.0.1
|
|
220
|
+
- @fluidframework/server-services-telemetry: 2.0.1
|
|
221
|
+
- @fluidframework/server-services-utils: 2.0.1
|
|
222
|
+
- @fluidframework/server-test-utils: 2.0.1
|
|
223
|
+
- tinylicious: 2.0.1
|
|
224
|
+
|
|
225
|
+
- Minimum TypeScript version now 5.1.6 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
226
|
+
|
|
227
|
+
The minimum supported TypeScript version for Fluid 2.0 clients is now 5.1.6.
|
|
224
228
|
|
|
225
229
|
## 2.0.0-internal.6.4.0
|
|
226
230
|
|
|
@@ -242,9 +246,9 @@ Dependency updates only.
|
|
|
242
246
|
|
|
243
247
|
### Major Changes
|
|
244
248
|
|
|
245
|
-
-
|
|
249
|
+
- Upgraded typescript transpilation target to ES2020 [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
|
|
246
250
|
|
|
247
|
-
|
|
251
|
+
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.
|
|
248
252
|
|
|
249
253
|
## 2.0.0-internal.5.4.0
|
|
250
254
|
|
package/lib/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-experimental/property-dds",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.31.0",
|
|
4
4
|
"description": "definition of the property distributed data store",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -27,16 +27,16 @@
|
|
|
27
27
|
"main": "lib/index.js",
|
|
28
28
|
"types": "lib/index.d.ts",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@fluid-experimental/property-changeset": "~2.
|
|
31
|
-
"@fluid-experimental/property-properties": "~2.
|
|
32
|
-
"@fluid-internal/client-utils": "~2.
|
|
33
|
-
"@fluidframework/container-definitions": "~2.
|
|
34
|
-
"@fluidframework/core-interfaces": "~2.
|
|
35
|
-
"@fluidframework/datastore-definitions": "~2.
|
|
36
|
-
"@fluidframework/driver-definitions": "~2.
|
|
37
|
-
"@fluidframework/runtime-definitions": "~2.
|
|
38
|
-
"@fluidframework/runtime-utils": "~2.
|
|
39
|
-
"@fluidframework/shared-object-base": "~2.
|
|
30
|
+
"@fluid-experimental/property-changeset": "~2.31.0",
|
|
31
|
+
"@fluid-experimental/property-properties": "~2.31.0",
|
|
32
|
+
"@fluid-internal/client-utils": "~2.31.0",
|
|
33
|
+
"@fluidframework/container-definitions": "~2.31.0",
|
|
34
|
+
"@fluidframework/core-interfaces": "~2.31.0",
|
|
35
|
+
"@fluidframework/datastore-definitions": "~2.31.0",
|
|
36
|
+
"@fluidframework/driver-definitions": "~2.31.0",
|
|
37
|
+
"@fluidframework/runtime-definitions": "~2.31.0",
|
|
38
|
+
"@fluidframework/runtime-utils": "~2.31.0",
|
|
39
|
+
"@fluidframework/shared-object-base": "~2.31.0",
|
|
40
40
|
"axios": "^1.7.7",
|
|
41
41
|
"buffer": "^6.0.3",
|
|
42
42
|
"lodash": "^4.17.21",
|
|
@@ -48,21 +48,21 @@
|
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
50
50
|
"@biomejs/biome": "~1.9.3",
|
|
51
|
-
"@fluid-experimental/property-common": "~2.
|
|
52
|
-
"@fluid-internal/mocha-test-setup": "~2.
|
|
53
|
-
"@fluid-private/test-drivers": "~2.
|
|
51
|
+
"@fluid-experimental/property-common": "~2.31.0",
|
|
52
|
+
"@fluid-internal/mocha-test-setup": "~2.31.0",
|
|
53
|
+
"@fluid-private/test-drivers": "~2.31.0",
|
|
54
54
|
"@fluid-tools/build-cli": "^0.54.0",
|
|
55
55
|
"@fluidframework/build-common": "^2.0.3",
|
|
56
56
|
"@fluidframework/build-tools": "^0.54.0",
|
|
57
|
-
"@fluidframework/container-loader": "~2.
|
|
58
|
-
"@fluidframework/container-runtime": "~2.
|
|
57
|
+
"@fluidframework/container-loader": "~2.31.0",
|
|
58
|
+
"@fluidframework/container-runtime": "~2.31.0",
|
|
59
59
|
"@fluidframework/eslint-config-fluid": "^5.7.3",
|
|
60
|
-
"@fluidframework/local-driver": "~2.
|
|
61
|
-
"@fluidframework/sequence": "~2.
|
|
60
|
+
"@fluidframework/local-driver": "~2.31.0",
|
|
61
|
+
"@fluidframework/sequence": "~2.31.0",
|
|
62
62
|
"@fluidframework/server-local-server": "^5.0.0",
|
|
63
|
-
"@fluidframework/test-runtime-utils": "~2.
|
|
64
|
-
"@fluidframework/test-utils": "~2.
|
|
65
|
-
"@microsoft/api-extractor": "7.
|
|
63
|
+
"@fluidframework/test-runtime-utils": "~2.31.0",
|
|
64
|
+
"@fluidframework/test-utils": "~2.31.0",
|
|
65
|
+
"@microsoft/api-extractor": "7.50.1",
|
|
66
66
|
"@types/lodash": "^4.14.118",
|
|
67
67
|
"@types/mocha": "^10.0.10",
|
|
68
68
|
"@types/node": "^18.19.0",
|
|
@@ -76,7 +76,6 @@
|
|
|
76
76
|
"mocha": "^10.8.2",
|
|
77
77
|
"mocha-multi-reporters": "^1.5.1",
|
|
78
78
|
"moment": "^2.21.0",
|
|
79
|
-
"prettier": "~3.0.3",
|
|
80
79
|
"rimraf": "^4.4.0",
|
|
81
80
|
"typescript": "~5.4.5"
|
|
82
81
|
},
|
|
@@ -96,7 +95,6 @@
|
|
|
96
95
|
"check:are-the-types-wrong": "attw --pack .",
|
|
97
96
|
"check:biome": "biome check .",
|
|
98
97
|
"check:format": "npm run check:biome",
|
|
99
|
-
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
|
100
98
|
"check:release-tags": "api-extractor run --local --config ./api-extractor-lint.json",
|
|
101
99
|
"ci:build:docs": "api-extractor run",
|
|
102
100
|
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc",
|
|
@@ -104,7 +102,6 @@
|
|
|
104
102
|
"eslint:fix": "eslint src --fix",
|
|
105
103
|
"format": "npm run format:biome",
|
|
106
104
|
"format:biome": "biome check . --write",
|
|
107
|
-
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
|
108
105
|
"lint": "fluid-build . --task lint",
|
|
109
106
|
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
|
110
107
|
"test": "npm run test:mocha",
|