fluid-framework 2.0.0-internal.8.0.1 → 2.0.0-rc.1.0.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 CHANGED
@@ -1,5 +1,9 @@
1
1
  # fluid-framework
2
2
 
3
+ ## 2.0.0-rc.1.0.0
4
+
5
+ Dependency updates only.
6
+
3
7
  ## 2.0.0-internal.8.0.0
4
8
 
5
9
  ### Major Changes
package/README.md CHANGED
@@ -1,6 +1,23 @@
1
- # fluid-framework
1
+ # @fluidframework/cell
2
2
 
3
- The `fluid-framework` package bundles a collection of Fluid Framework client packages for easy use when paired with a corresponding service client package (ex. `@fluidframework/azure-client` & `@fluidframework/tinylicious-client`).
3
+ The `SharedCell` Distributed Data Structure (DDS) stores a single, shared value that can be edited or deleted.
4
+
5
+ <!-- AUTO-GENERATED-CONTENT:START (README_INSTALLATION_SECTION:includeHeading=TRUE) -->
6
+
7
+ <!-- prettier-ignore-start -->
8
+ <!-- NOTE: This section is automatically generated using @fluid-tools/markdown-magic. Do not update these generated contents directly. -->
9
+
10
+ ## Installation
11
+
12
+ To get started, install the package by running the following command:
13
+
14
+ ```bash
15
+ npm i fluid-framework
16
+ ```
17
+
18
+ <!-- prettier-ignore-end -->
19
+
20
+ <!-- AUTO-GENERATED-CONTENT:END -->
4
21
 
5
22
  <!-- AUTO-GENERATED-CONTENT:START (README_DEPENDENCY_GUIDELINES_SECTION:includeHeading=TRUE) -->
6
23
 
@@ -13,35 +30,69 @@ When taking a dependency on a Fluid Framework library, we recommend using a `^`
13
30
  While Fluid Framework libraries may use different ranges with interdependencies between other Fluid Framework libraries,
14
31
  library consumers should always prefer `^`.
15
32
 
16
- Note that when depending on a library version of the form `2.0.0-internal.x.y.z`, called the Fluid internal version scheme,
17
- you must use a `>= <` dependency range (such as `>=2.0.0-internal.x.y.z <2.0.0-internal.w.0.0` where `w` is `x+1`).
18
- Standard `^` and `~` ranges will not work as expected.
19
- See the [@fluid-tools/version-tools](https://github.com/microsoft/FluidFramework/blob/main/build-tools/packages/version-tools/README.md)
20
- package for more information including tools to convert between version schemes.
33
+ <!-- prettier-ignore-end -->
34
+
35
+ <!-- AUTO-GENERATED-CONTENT:END -->
36
+
37
+ <!-- AUTO-GENERATED-CONTENT:START (README_API_DOCS_SECTION:includeHeading=TRUE) -->
38
+
39
+ <!-- prettier-ignore-start -->
40
+
41
+ <!-- This section is automatically generated. To update it, make the appropriate changes to docs/md-magic.config.js or the embedded content, then run 'npm run build:md-magic' in the docs folder. -->
42
+
43
+ ## API Documentation
44
+
45
+ API documentation for **@fluidframework/cell** is available at <https://fluidframework.com/docs/api/v1/cell>.
21
46
 
22
47
  <!-- prettier-ignore-end -->
23
48
 
24
49
  <!-- AUTO-GENERATED-CONTENT:END -->
25
50
 
26
- ## Contents
51
+ <!-- AUTO-GENERATED-CONTENT:START (README_CONTRIBUTION_GUIDELINES_SECTION:includeHeading=TRUE) -->
27
52
 
28
- The `fluid-framework` package consists primarily of two portions: the `IFluidContainer` and a selection of distributed data structures (DDSes).
53
+ <!-- prettier-ignore-start -->
54
+ <!-- NOTE: This section is automatically generated using @fluid-tools/markdown-magic. Do not update these generated contents directly. -->
55
+
56
+ ## Contribution Guidelines
57
+
58
+ There are many ways to [contribute](https://github.com/microsoft/FluidFramework/blob/main/CONTRIBUTING.md) to Fluid.
59
+
60
+ - Participate in Q&A in our [GitHub Discussions](https://github.com/microsoft/FluidFramework/discussions).
61
+ - [Submit bugs](https://github.com/microsoft/FluidFramework/issues) and help us verify fixes as they are checked in.
62
+ - Review the [source code changes](https://github.com/microsoft/FluidFramework/pulls).
63
+ - [Contribute bug fixes](https://github.com/microsoft/FluidFramework/blob/main/CONTRIBUTING.md).
64
+
65
+ Detailed instructions for working in the repo can be found in the [Wiki](https://github.com/microsoft/FluidFramework/wiki).
66
+
67
+ This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
68
+ For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
69
+
70
+ This project may contain Microsoft trademarks or logos for Microsoft projects, products, or services.
71
+ Use of these trademarks or logos must follow Microsoft’s [Trademark & Brand Guidelines](https://www.microsoft.com/trademarks).
72
+ Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
73
+
74
+ <!-- prettier-ignore-end -->
75
+
76
+ <!-- AUTO-GENERATED-CONTENT:END -->
29
77
 
30
- ### IFluidContainer
78
+ <!-- AUTO-GENERATED-CONTENT:START (README_HELP_SECTION:includeHeading=TRUE) -->
79
+
80
+ <!-- prettier-ignore-start -->
81
+ <!-- NOTE: This section is automatically generated using @fluid-tools/markdown-magic. Do not update these generated contents directly. -->
31
82
 
32
- The **[IFluidContainer][]** interface is the one of the types returned by calls to `createContainer()` and `getContainer()` on the service clients such as `AzureClient`. It includes functionality to retrieve the Fluid data contained within, as well as to inspect the state of the collaboration session connection.
83
+ ## Help
33
84
 
34
- ### DDS packages
85
+ Not finding what you're looking for in this README? Check out our [GitHub
86
+ Wiki](https://github.com/microsoft/FluidFramework/wiki) or [fluidframework.com](https://fluidframework.com/docs/).
35
87
 
36
- You'll use one or more DDS data structures in your container to model your collaborative data. The `fluid-framework` package comes with three data structures that cover a broad range of scenarios:
88
+ Still not finding what you're looking for? Please [file an
89
+ issue](https://github.com/microsoft/FluidFramework/wiki/Submitting-Bugs-and-Feature-Requests).
37
90
 
38
- 1. **[SharedMap][]**, a map-like data structure for storing key/value pair data
39
- 2. **[SharedDirectory][]**, a map-like data structure with ability to organize keys into subdirectories
40
- 3. **[SharedString][]**, a data structure for string data
91
+ Thank you!
41
92
 
42
- ## Tutorial
93
+ <!-- prettier-ignore-end -->
43
94
 
44
- Check out the Hello World tutorial using the `fluid-framework` package [here](https://fluidframework.com/docs/start/tutorial/).
95
+ <!-- AUTO-GENERATED-CONTENT:END -->
45
96
 
46
97
  <!-- AUTO-GENERATED-CONTENT:START (README_TRADEMARK_SECTION:includeHeading=TRUE) -->
47
98
 
@@ -59,10 +110,3 @@ Use of Microsoft trademarks or logos in modified versions of this project must n
59
110
  <!-- prettier-ignore-end -->
60
111
 
61
112
  <!-- AUTO-GENERATED-CONTENT:END -->
62
-
63
- <!-- Links -->
64
-
65
- [ifluidcontainer]: https://fluidframework.com/docs/apis/fluid-static/ifluidcontainer/
66
- [sharedmap]: https://fluidframework.com/docs/apis/map/sharedmap/
67
- [shareddirectory]: https://fluidframework.com/docs/apis/map/shareddirectory/
68
- [sharedstring]: https://fluidframework.com/docs/apis/sequence/sharedstring/
@@ -0,0 +1,4 @@
1
+ {
2
+ "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
3
+ "extends": "../../../common/build/build-common/api-extractor-base-esm.json"
4
+ }
@@ -1,13 +1,4 @@
1
1
  {
2
2
  "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
3
- "extends": "../../../common/build/build-common/api-extractor-lint.json",
4
- "messages": {
5
- "extractorMessageReporting": {
6
- // TODO: remove once base config has this enabled as an error
7
- "ae-incompatible-release-tags": {
8
- "logLevel": "error",
9
- "addToApiReportFile": false
10
- }
11
- }
12
- }
3
+ "extends": "../../../common/build/build-common/api-extractor-lint.json"
13
4
  }
@@ -1,4 +1,13 @@
1
1
  {
2
2
  "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
3
- "extends": "../../../common/build/build-common/api-extractor-base.json"
3
+ "extends": "../../../common/build/build-common/api-extractor-base.json",
4
+ "bundledPackages": ["@fluidframework/map", "@fluidframework/tree"],
5
+ "messages": {
6
+ "extractorMessageReporting": {
7
+ // TODO: Add missing documentation and remove this rule override
8
+ "ae-undocumented": {
9
+ "logLevel": "none"
10
+ }
11
+ }
12
+ }
4
13
  }