@fluidframework/odsp-client 2.30.0 → 2.31.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 +53 -49
- package/lib/tsdoc-metadata.json +1 -1
- package/package.json +15 -18
- package/prettier.config.cjs +0 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# @fluid-experimental/odsp-client
|
|
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,45 +64,45 @@ Dependency updates only.
|
|
|
60
64
|
|
|
61
65
|
### Minor Changes
|
|
62
66
|
|
|
63
|
-
-
|
|
67
|
+
- odsp-client: Move odsp-client out of experimental ([#21024](https://github.com/microsoft/FluidFramework/pull/21024)) [8461a406f3](https://github.com/microsoft/FluidFramework/commit/8461a406f3086ced7e38a19f70d71cca72667333)
|
|
64
68
|
|
|
65
|
-
|
|
69
|
+
The scope of the odsp-client package is changed from `@fluid-experimental/odsp-client` to `@fluidframework/odsp-client`.
|
|
66
70
|
|
|
67
|
-
-
|
|
71
|
+
- Update to TypeScript 5.4 ([#21214](https://github.com/microsoft/FluidFramework/pull/21214)) [0e6256c722](https://github.com/microsoft/FluidFramework/commit/0e6256c722d8bf024f4325bf02547daeeb18bfa6)
|
|
68
72
|
|
|
69
|
-
|
|
73
|
+
Update package implementations to use TypeScript 5.4.5.
|
|
70
74
|
|
|
71
75
|
## 2.0.0-rc.4.0.0
|
|
72
76
|
|
|
73
77
|
### Minor Changes
|
|
74
78
|
|
|
75
|
-
-
|
|
79
|
+
- Rename `AzureMember.userName` to `AzureMember.name` and `IMember.userId` to `IMember.id` [96872186d0](https://github.com/microsoft/FluidFramework/commit/96872186d0d0f245c1fece7d19b3743e501679b6)
|
|
76
80
|
|
|
77
|
-
|
|
78
|
-
|
|
81
|
+
1. Renamed `AzureMember.userName` to `AzureMember.name` to establish uniform naming across odsp-client and azure-client.
|
|
82
|
+
2. Renamed `IMember.userId` to `IMember.id` to align with the properties received from AFR.
|
|
79
83
|
|
|
80
84
|
## 2.0.0-rc.3.0.0
|
|
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,35 +112,35 @@ 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
|
|
package/lib/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/odsp-client",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.31.1",
|
|
4
4
|
"description": "A tool to enable creation and loading of Fluid containers using the ODSP service",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -69,29 +69,29 @@
|
|
|
69
69
|
"temp-directory": "nyc/.nyc_output"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@fluidframework/container-definitions": "~2.
|
|
73
|
-
"@fluidframework/container-loader": "~2.
|
|
74
|
-
"@fluidframework/core-interfaces": "~2.
|
|
75
|
-
"@fluidframework/core-utils": "~2.
|
|
76
|
-
"@fluidframework/driver-definitions": "~2.
|
|
77
|
-
"@fluidframework/fluid-static": "~2.
|
|
78
|
-
"@fluidframework/map": "~2.
|
|
79
|
-
"@fluidframework/odsp-doclib-utils": "~2.
|
|
80
|
-
"@fluidframework/odsp-driver": "~2.
|
|
81
|
-
"@fluidframework/odsp-driver-definitions": "~2.
|
|
82
|
-
"@fluidframework/telemetry-utils": "~2.
|
|
72
|
+
"@fluidframework/container-definitions": "~2.31.1",
|
|
73
|
+
"@fluidframework/container-loader": "~2.31.1",
|
|
74
|
+
"@fluidframework/core-interfaces": "~2.31.1",
|
|
75
|
+
"@fluidframework/core-utils": "~2.31.1",
|
|
76
|
+
"@fluidframework/driver-definitions": "~2.31.1",
|
|
77
|
+
"@fluidframework/fluid-static": "~2.31.1",
|
|
78
|
+
"@fluidframework/map": "~2.31.1",
|
|
79
|
+
"@fluidframework/odsp-doclib-utils": "~2.31.1",
|
|
80
|
+
"@fluidframework/odsp-driver": "~2.31.1",
|
|
81
|
+
"@fluidframework/odsp-driver-definitions": "~2.31.1",
|
|
82
|
+
"@fluidframework/telemetry-utils": "~2.31.1",
|
|
83
83
|
"uuid": "^9.0.0"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
86
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
87
87
|
"@biomejs/biome": "~1.9.3",
|
|
88
|
-
"@fluid-internal/mocha-test-setup": "~2.
|
|
88
|
+
"@fluid-internal/mocha-test-setup": "~2.31.1",
|
|
89
89
|
"@fluid-tools/build-cli": "^0.54.0",
|
|
90
90
|
"@fluidframework/build-common": "^2.0.3",
|
|
91
91
|
"@fluidframework/build-tools": "^0.54.0",
|
|
92
92
|
"@fluidframework/eslint-config-fluid": "^5.7.3",
|
|
93
|
-
"@fluidframework/test-utils": "~2.
|
|
94
|
-
"@microsoft/api-extractor": "7.
|
|
93
|
+
"@fluidframework/test-utils": "~2.31.1",
|
|
94
|
+
"@microsoft/api-extractor": "7.50.1",
|
|
95
95
|
"@types/mocha": "^10.0.10",
|
|
96
96
|
"@types/node": "^18.19.0",
|
|
97
97
|
"@types/uuid": "^9.0.2",
|
|
@@ -101,7 +101,6 @@
|
|
|
101
101
|
"cross-env": "^7.0.3",
|
|
102
102
|
"eslint": "~8.55.0",
|
|
103
103
|
"mocha": "^10.8.2",
|
|
104
|
-
"prettier": "~3.0.3",
|
|
105
104
|
"rimraf": "^4.4.0",
|
|
106
105
|
"typescript": "~5.4.5"
|
|
107
106
|
},
|
|
@@ -131,14 +130,12 @@
|
|
|
131
130
|
"check:exports:esm:beta": "api-extractor run --config api-extractor/api-extractor-lint-beta.esm.json",
|
|
132
131
|
"check:exports:esm:public": "api-extractor run --config api-extractor/api-extractor-lint-public.esm.json",
|
|
133
132
|
"check:format": "npm run check:biome",
|
|
134
|
-
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
|
135
133
|
"ci:build:docs": "api-extractor run",
|
|
136
134
|
"clean": "rimraf --glob dist lib {alpha,beta,internal,legacy}.d.ts \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc",
|
|
137
135
|
"eslint": "eslint --format stylish src",
|
|
138
136
|
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
139
137
|
"format": "npm run format:biome",
|
|
140
138
|
"format:biome": "biome check . --write",
|
|
141
|
-
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
|
142
139
|
"lint": "fluid-build . --task lint",
|
|
143
140
|
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
|
144
141
|
"test": "npm run test:mocha",
|