@fluid-experimental/odsp-end-to-end-tests 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 +22 -18
- package/package.json +17 -20
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# @fluid-experimental/odsp-end-to-end-tests
|
|
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,41 +64,41 @@ Dependency updates only.
|
|
|
60
64
|
|
|
61
65
|
### Minor Changes
|
|
62
66
|
|
|
63
|
-
-
|
|
67
|
+
- Update to TypeScript 5.4 ([#21214](https://github.com/microsoft/FluidFramework/pull/21214)) [0e6256c722](https://github.com/microsoft/FluidFramework/commit/0e6256c722d8bf024f4325bf02547daeeb18bfa6)
|
|
64
68
|
|
|
65
|
-
|
|
69
|
+
Update package implementations to use TypeScript 5.4.5.
|
|
66
70
|
|
|
67
71
|
## 2.0.0-rc.4.0.0
|
|
68
72
|
|
|
69
73
|
### Minor Changes
|
|
70
74
|
|
|
71
|
-
-
|
|
75
|
+
- Rename `AzureMember.userName` to `AzureMember.name` and `IMember.userId` to `IMember.id` [96872186d0](https://github.com/microsoft/FluidFramework/commit/96872186d0d0f245c1fece7d19b3743e501679b6)
|
|
72
76
|
|
|
73
|
-
|
|
74
|
-
|
|
77
|
+
1. Renamed `AzureMember.userName` to `AzureMember.name` to establish uniform naming across odsp-client and azure-client.
|
|
78
|
+
2. Renamed `IMember.userId` to `IMember.id` to align with the properties received from AFR.
|
|
75
79
|
|
|
76
80
|
## 2.0.0-rc.3.0.0
|
|
77
81
|
|
|
78
82
|
### Major Changes
|
|
79
83
|
|
|
80
|
-
-
|
|
84
|
+
- Packages now use package.json "exports" and require modern module resolution [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
|
|
81
85
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
86
|
+
Fluid Framework packages have been updated to use the [package.json "exports"
|
|
87
|
+
field](https://nodejs.org/docs/latest-v18.x/api/packages.html#exports) to define explicit entry points for both
|
|
88
|
+
TypeScript types and implementation code.
|
|
85
89
|
|
|
86
|
-
|
|
90
|
+
This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
|
|
87
91
|
|
|
88
|
-
|
|
89
|
-
|
|
92
|
+
- `"moduleResolution": "Node16"` with `"module": "Node16"`
|
|
93
|
+
- `"moduleResolution": "Bundler"` with `"module": "ESNext"`
|
|
90
94
|
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
+
We recommend using Node16/Node16 unless absolutely necessary. That will produce transpiled JavaScript that is suitable
|
|
96
|
+
for use with modern versions of Node.js _and_ Bundlers.
|
|
97
|
+
[See the TypeScript documentation](https://www.typescriptlang.org/tsconfig#moduleResolution) for more information
|
|
98
|
+
regarding the module and moduleResolution options.
|
|
95
99
|
|
|
96
|
-
|
|
97
|
-
|
|
100
|
+
**Node10 moduleResolution is not supported; it does not support Fluid Framework's API structuring pattern that is used
|
|
101
|
+
to distinguish stable APIs from those that are in development.**
|
|
98
102
|
|
|
99
103
|
## 2.0.0-rc.2.0.0
|
|
100
104
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-experimental/odsp-end-to-end-tests",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.31.0",
|
|
4
4
|
"description": "Odsp client end to end tests",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -33,22 +33,22 @@
|
|
|
33
33
|
"temp-directory": "nyc/.nyc_output"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@fluid-internal/mocha-test-setup": "~2.
|
|
37
|
-
"@fluid-private/test-version-utils": "~2.
|
|
38
|
-
"@fluidframework/aqueduct": "~2.
|
|
39
|
-
"@fluidframework/container-definitions": "~2.
|
|
40
|
-
"@fluidframework/container-loader": "~2.
|
|
41
|
-
"@fluidframework/core-interfaces": "~2.
|
|
42
|
-
"@fluidframework/counter": "~2.
|
|
43
|
-
"@fluidframework/fluid-static": "~2.
|
|
44
|
-
"@fluidframework/map": "~2.
|
|
45
|
-
"@fluidframework/matrix": "~2.
|
|
46
|
-
"@fluidframework/odsp-client": "~2.
|
|
47
|
-
"@fluidframework/odsp-doclib-utils": "~2.
|
|
48
|
-
"@fluidframework/odsp-driver-definitions": "~2.
|
|
49
|
-
"@fluidframework/sequence": "~2.
|
|
50
|
-
"@fluidframework/telemetry-utils": "~2.
|
|
51
|
-
"@fluidframework/test-utils": "~2.
|
|
36
|
+
"@fluid-internal/mocha-test-setup": "~2.31.0",
|
|
37
|
+
"@fluid-private/test-version-utils": "~2.31.0",
|
|
38
|
+
"@fluidframework/aqueduct": "~2.31.0",
|
|
39
|
+
"@fluidframework/container-definitions": "~2.31.0",
|
|
40
|
+
"@fluidframework/container-loader": "~2.31.0",
|
|
41
|
+
"@fluidframework/core-interfaces": "~2.31.0",
|
|
42
|
+
"@fluidframework/counter": "~2.31.0",
|
|
43
|
+
"@fluidframework/fluid-static": "~2.31.0",
|
|
44
|
+
"@fluidframework/map": "~2.31.0",
|
|
45
|
+
"@fluidframework/matrix": "~2.31.0",
|
|
46
|
+
"@fluidframework/odsp-client": "~2.31.0",
|
|
47
|
+
"@fluidframework/odsp-doclib-utils": "~2.31.0",
|
|
48
|
+
"@fluidframework/odsp-driver-definitions": "~2.31.0",
|
|
49
|
+
"@fluidframework/sequence": "~2.31.0",
|
|
50
|
+
"@fluidframework/telemetry-utils": "~2.31.0",
|
|
51
|
+
"@fluidframework/test-utils": "~2.31.0",
|
|
52
52
|
"@types/sinon": "^17.0.3",
|
|
53
53
|
"mocha": "^10.8.2",
|
|
54
54
|
"mocha-multi-reporters": "^1.5.1",
|
|
@@ -69,7 +69,6 @@
|
|
|
69
69
|
"cross-env": "^7.0.3",
|
|
70
70
|
"eslint": "~8.55.0",
|
|
71
71
|
"nock": "^13.3.3",
|
|
72
|
-
"prettier": "~3.0.3",
|
|
73
72
|
"rimraf": "^4.4.0",
|
|
74
73
|
"typescript": "~5.4.5"
|
|
75
74
|
},
|
|
@@ -93,13 +92,11 @@
|
|
|
93
92
|
"build:test": "tsc --project ./src/test/tsconfig.json",
|
|
94
93
|
"check:biome": "biome check .",
|
|
95
94
|
"check:format": "npm run check:biome",
|
|
96
|
-
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
|
97
95
|
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
|
98
96
|
"eslint": "eslint --format stylish src",
|
|
99
97
|
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
100
98
|
"format": "npm run format:biome",
|
|
101
99
|
"format:biome": "biome check . --write",
|
|
102
|
-
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
|
103
100
|
"lint": "fluid-build . --task lint",
|
|
104
101
|
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
|
105
102
|
"test": "npm run test:realsvc:odsp:run",
|