@fluidframework/routerlicious-driver 3.0.1 → 3.1.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 +4 -0
- package/README.md +30 -34
- package/dist/packageVersion.d.ts +1 -1
- package/dist/packageVersion.js +1 -1
- package/dist/packageVersion.js.map +1 -1
- package/lib/packageVersion.d.ts +1 -1
- package/lib/packageVersion.js +1 -1
- package/lib/packageVersion.js.map +1 -1
- package/package.json +9 -9
- package/src/packageVersion.ts +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -4,8 +4,7 @@ This is an implementation of a driver which provides a DocumentService which use
|
|
|
4
4
|
with different endpoints like Document Storage, Delta Storage and Delta stream.
|
|
5
5
|
It also provides implementation of Document Storage, Delta Storage and Delta stream.
|
|
6
6
|
|
|
7
|
-
<!--
|
|
8
|
-
|
|
7
|
+
<!-- markdown-magic:begin {"transform":"library-readme-header","headingLevel":2} -->
|
|
9
8
|
<!-- prettier-ignore-start -->
|
|
10
9
|
<!-- NOTE: This section is automatically generated using @fluid-tools/markdown-magic. Do not update these generated contents directly. -->
|
|
11
10
|
|
|
@@ -39,11 +38,9 @@ Import the `legacy` APIs from `@fluidframework/routerlicious-driver/legacy`.
|
|
|
39
38
|
Read the **@fluidframework/routerlicious-driver** API documentation at <https://fluidframework.com/docs/apis/routerlicious-driver>.
|
|
40
39
|
|
|
41
40
|
<!-- prettier-ignore-end -->
|
|
41
|
+
<!-- markdown-magic:end -->
|
|
42
42
|
|
|
43
|
-
<!--
|
|
44
|
-
|
|
45
|
-
<!-- AUTO-GENERATED-CONTENT:START (README_FOOTER) -->
|
|
46
|
-
|
|
43
|
+
<!-- markdown-magic:begin {"transform":"readme-footer","headingLevel":2} -->
|
|
47
44
|
<!-- prettier-ignore-start -->
|
|
48
45
|
<!-- NOTE: This section is automatically generated using @fluid-tools/markdown-magic. Do not update these generated contents directly. -->
|
|
49
46
|
|
|
@@ -60,29 +57,29 @@ To request support for a configuration that is not listed, file an issue.
|
|
|
60
57
|
The product team will evaluate your request.
|
|
61
58
|
In the issue, specify the current status of the configuration:
|
|
62
59
|
|
|
63
|
-
-
|
|
64
|
-
-
|
|
60
|
+
- The configuration works but needs official support.
|
|
61
|
+
- The configuration does not work and requires changes.
|
|
65
62
|
|
|
66
63
|
### Supported Runtimes
|
|
67
64
|
|
|
68
|
-
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
-
|
|
65
|
+
- Fluid Framework supports Node.js versions 22 and 24 while they receive [upstream support](https://nodejs.org/en/about/previous-releases).
|
|
66
|
+
- Fluid Framework will stop support for version 22 [when upstream support ends on 2027-04-30](https://github.com/nodejs/release#release-schedule).
|
|
67
|
+
- Fluid Framework does not support Node.js with the `--no-experimental-fetch` flag.
|
|
68
|
+
- Fluid Framework supports modern browsers that support the ES2022 standard library.
|
|
72
69
|
|
|
73
70
|
### Supported Tools
|
|
74
71
|
|
|
75
|
-
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
-
|
|
84
|
-
|
|
85
|
-
|
|
72
|
+
- [TypeScript 6.0](https://typescriptdocs.com/release-notes/TypeScript%206.0):
|
|
73
|
+
- Fluid Framework supports all [`strict`](https://www.typescriptlang.org/tsconfig) options.
|
|
74
|
+
- Set the build targets (`lib`, `target`) to `ES2022` or later.
|
|
75
|
+
- Enable [`strictNullChecks`](https://www.typescriptlang.org/tsconfig).
|
|
76
|
+
- Fluid Framework does not support [configuration options deprecated in TypeScript 6.0](https://typescriptdocs.com/release-notes/TypeScript%206.0#breaking-changes-and-deprecations-in-typescript-6-0).
|
|
77
|
+
- Fluid Framework does not fully support `exactOptionalPropertyTypes`.
|
|
78
|
+
If you enable this option, do not use `in`, `Reflect.has`, `Object.hasOwn`, or `Object.prototype.hasOwnProperty` to narrow members of Fluid Framework types.
|
|
79
|
+
These methods can incorrectly exclude `undefined` from the possible values.
|
|
80
|
+
- [webpack](https://webpack.js.org/) 5
|
|
81
|
+
- We do not require a specific bundler.
|
|
82
|
+
Other bundlers that handle ES Modules can work, but we actively test only webpack.
|
|
86
83
|
|
|
87
84
|
### Module Resolution
|
|
88
85
|
|
|
@@ -93,25 +90,25 @@ Do not use `Node10` module resolution.
|
|
|
93
90
|
|
|
94
91
|
### Module Formats
|
|
95
92
|
|
|
96
|
-
-
|
|
97
|
-
|
|
98
|
-
-
|
|
99
|
-
|
|
93
|
+
- ES Modules:
|
|
94
|
+
Use ES Modules to consume Fluid Framework client packages, including in Node.js.
|
|
95
|
+
- CommonJS:
|
|
96
|
+
Fluid Framework does not officially support CommonJS in version 3.0 or later.
|
|
100
97
|
|
|
101
98
|
## Contribution Guidelines
|
|
102
99
|
|
|
103
100
|
You can [contribute](https://github.com/microsoft/FluidFramework/blob/main/CONTRIBUTING.md) to Fluid Framework in these ways:
|
|
104
101
|
|
|
105
|
-
-
|
|
106
|
-
-
|
|
107
|
-
-
|
|
108
|
-
-
|
|
102
|
+
- Answer questions in [GitHub Discussions](https://github.com/microsoft/FluidFramework/discussions).
|
|
103
|
+
- [Submit bug reports](https://github.com/microsoft/FluidFramework/issues) and help verify fixes.
|
|
104
|
+
- Review [source code changes](https://github.com/microsoft/FluidFramework/pulls).
|
|
105
|
+
- [Contribute bug fixes](https://github.com/microsoft/FluidFramework/blob/main/CONTRIBUTING.md).
|
|
109
106
|
|
|
110
107
|
For detailed instructions, read the [repo documentation](https://github.com/microsoft/FluidFramework/blob/main/docs/content/Home.md).
|
|
111
108
|
|
|
112
109
|
This project follows the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
|
|
113
110
|
For more information, read the [Code of Conduct frequently asked questions](https://opensource.microsoft.com/codeofconduct/faq/).
|
|
114
|
-
For questions or comments, contact
|
|
111
|
+
For questions or comments, contact <opencode@microsoft.com>.
|
|
115
112
|
|
|
116
113
|
This project may contain Microsoft trademarks or logos for Microsoft projects, products, or services.
|
|
117
114
|
Use of these trademarks or logos must follow Microsoft’s [Trademark & Brand Guidelines](https://www.microsoft.com/trademarks).
|
|
@@ -132,5 +129,4 @@ Use of these trademarks or logos must follow Microsoft's [Trademark & Brand Guid
|
|
|
132
129
|
Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
|
|
133
130
|
|
|
134
131
|
<!-- prettier-ignore-end -->
|
|
135
|
-
|
|
136
|
-
<!-- AUTO-GENERATED-CONTENT:END -->
|
|
132
|
+
<!-- markdown-magic:end -->
|
package/dist/packageVersion.d.ts
CHANGED
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY
|
|
6
6
|
*/
|
|
7
7
|
export declare const pkgName = "@fluidframework/routerlicious-driver";
|
|
8
|
-
export declare const pkgVersion = "3.0
|
|
8
|
+
export declare const pkgVersion = "3.1.0";
|
|
9
9
|
//# sourceMappingURL=packageVersion.d.ts.map
|
package/dist/packageVersion.js
CHANGED
|
@@ -8,5 +8,5 @@
|
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
9
|
exports.pkgVersion = exports.pkgName = void 0;
|
|
10
10
|
exports.pkgName = "@fluidframework/routerlicious-driver";
|
|
11
|
-
exports.pkgVersion = "3.0
|
|
11
|
+
exports.pkgVersion = "3.1.0";
|
|
12
12
|
//# sourceMappingURL=packageVersion.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,sCAAsC,CAAC;AACjD,QAAA,UAAU,GAAG,OAAO,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/routerlicious-driver\";\nexport const pkgVersion = \"3.0
|
|
1
|
+
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,sCAAsC,CAAC;AACjD,QAAA,UAAU,GAAG,OAAO,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/routerlicious-driver\";\nexport const pkgVersion = \"3.1.0\";\n"]}
|
package/lib/packageVersion.d.ts
CHANGED
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY
|
|
6
6
|
*/
|
|
7
7
|
export declare const pkgName = "@fluidframework/routerlicious-driver";
|
|
8
|
-
export declare const pkgVersion = "3.0
|
|
8
|
+
export declare const pkgVersion = "3.1.0";
|
|
9
9
|
//# sourceMappingURL=packageVersion.d.ts.map
|
package/lib/packageVersion.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,sCAAsC,CAAC;AAC9D,MAAM,CAAC,MAAM,UAAU,GAAG,OAAO,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/routerlicious-driver\";\nexport const pkgVersion = \"3.0
|
|
1
|
+
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,sCAAsC,CAAC;AAC9D,MAAM,CAAC,MAAM,UAAU,GAAG,OAAO,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/routerlicious-driver\";\nexport const pkgVersion = \"3.1.0\";\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/routerlicious-driver",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"description": "Socket.IO + Git implementation of Fluid service API",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -55,21 +55,21 @@
|
|
|
55
55
|
"temp-directory": "nyc/.nyc_output"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@fluid-internal/client-utils": "~3.0
|
|
59
|
-
"@fluidframework/core-interfaces": "~3.0
|
|
60
|
-
"@fluidframework/core-utils": "~3.0
|
|
61
|
-
"@fluidframework/driver-base": "~3.0
|
|
62
|
-
"@fluidframework/driver-definitions": "~3.0
|
|
63
|
-
"@fluidframework/driver-utils": "~3.0
|
|
58
|
+
"@fluid-internal/client-utils": "~3.1.0",
|
|
59
|
+
"@fluidframework/core-interfaces": "~3.1.0",
|
|
60
|
+
"@fluidframework/core-utils": "~3.1.0",
|
|
61
|
+
"@fluidframework/driver-base": "~3.1.0",
|
|
62
|
+
"@fluidframework/driver-definitions": "~3.1.0",
|
|
63
|
+
"@fluidframework/driver-utils": "~3.1.0",
|
|
64
64
|
"@fluidframework/server-services-client": "^7.0.1",
|
|
65
|
-
"@fluidframework/telemetry-utils": "~3.0
|
|
65
|
+
"@fluidframework/telemetry-utils": "~3.1.0",
|
|
66
66
|
"json-stringify-safe": "5.0.1",
|
|
67
67
|
"socket.io-client": "^4.8.3"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
70
|
"@arethetypeswrong/cli": "^0.18.5",
|
|
71
71
|
"@biomejs/biome": "~2.4.5",
|
|
72
|
-
"@fluid-internal/mocha-test-setup": "~3.0
|
|
72
|
+
"@fluid-internal/mocha-test-setup": "~3.1.0",
|
|
73
73
|
"@fluid-tools/build-cli": "^0.67.0",
|
|
74
74
|
"@fluidframework/build-common": "^2.0.3",
|
|
75
75
|
"@fluidframework/build-tools": "^0.67.0",
|
package/src/packageVersion.ts
CHANGED