@fluidframework/cell 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 CHANGED
@@ -1,5 +1,9 @@
1
1
  # @fluidframework/cell
2
2
 
3
+ ## 3.1.0
4
+
5
+ Dependency updates only.
6
+
3
7
  ## 3.0.0
4
8
 
5
9
  ### Minor Changes
package/README.md CHANGED
@@ -5,8 +5,7 @@ The `SharedCell` Distributed Data Structure (DDS) stores a single, shared value
5
5
  This package is primarily intended as a minimal example of how distributed data structures work.
6
6
  For real-world scenarios, we recommend using one of our other DDSs, like [SharedTree](https://fluidframework.com./docs/data-structures/tree/).
7
7
 
8
- <!-- AUTO-GENERATED-CONTENT:START (LIBRARY_README_HEADER:) -->
9
-
8
+ <!-- markdown-magic:begin {"transform":"library-readme-header","headingLevel":2} -->
10
9
  <!-- prettier-ignore-start -->
11
10
  <!-- NOTE: This section is automatically generated using @fluid-tools/markdown-magic. Do not update these generated contents directly. -->
12
11
 
@@ -31,11 +30,9 @@ npm i @fluidframework/cell
31
30
  Read the **@fluidframework/cell** API documentation at <https://fluidframework.com/docs/apis/cell>.
32
31
 
33
32
  <!-- prettier-ignore-end -->
33
+ <!-- markdown-magic:end -->
34
34
 
35
- <!-- AUTO-GENERATED-CONTENT:END -->
36
-
37
- <!-- AUTO-GENERATED-CONTENT:START (README_FOOTER:) -->
38
-
35
+ <!-- markdown-magic:begin {"transform":"readme-footer","headingLevel":2} -->
39
36
  <!-- prettier-ignore-start -->
40
37
  <!-- NOTE: This section is automatically generated using @fluid-tools/markdown-magic. Do not update these generated contents directly. -->
41
38
 
@@ -52,29 +49,29 @@ To request support for a configuration that is not listed, file an issue.
52
49
  The product team will evaluate your request.
53
50
  In the issue, specify the current status of the configuration:
54
51
 
55
- - The configuration works but needs official support.
56
- - The configuration does not work and requires changes.
52
+ - The configuration works but needs official support.
53
+ - The configuration does not work and requires changes.
57
54
 
58
55
  ### Supported Runtimes
59
56
 
60
- - Fluid Framework supports Node.js versions 22 and 24 while they receive [upstream support](https://nodejs.org/en/about/previous-releases).
61
- - Fluid Framework will stop support for version 22 [when upstream support ends on 2027-04-30](https://github.com/nodejs/release#release-schedule).
62
- - Fluid Framework does not support Node.js with the `--no-experimental-fetch` flag.
63
- - Fluid Framework supports modern browsers that support the ES2022 standard library.
57
+ - Fluid Framework supports Node.js versions 22 and 24 while they receive [upstream support](https://nodejs.org/en/about/previous-releases).
58
+ - Fluid Framework will stop support for version 22 [when upstream support ends on 2027-04-30](https://github.com/nodejs/release#release-schedule).
59
+ - Fluid Framework does not support Node.js with the `--no-experimental-fetch` flag.
60
+ - Fluid Framework supports modern browsers that support the ES2022 standard library.
64
61
 
65
62
  ### Supported Tools
66
63
 
67
- - [TypeScript 6.0](https://typescriptdocs.com/release-notes/TypeScript%206.0):
68
- - Fluid Framework supports all [`strict`](https://www.typescriptlang.org/tsconfig) options.
69
- - Set the build targets (`lib`, `target`) to `ES2022` or later.
70
- - Enable [`strictNullChecks`](https://www.typescriptlang.org/tsconfig).
71
- - 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).
72
- - Fluid Framework does not fully support `exactOptionalPropertyTypes`.
73
- If you enable this option, do not use `in`, `Reflect.has`, `Object.hasOwn`, or `Object.prototype.hasOwnProperty` to narrow members of Fluid Framework types.
74
- These methods can incorrectly exclude `undefined` from the possible values.
75
- - [webpack](https://webpack.js.org/) 5
76
- - We do not require a specific bundler.
77
- Other bundlers that handle ES Modules can work, but we actively test only webpack.
64
+ - [TypeScript 6.0](https://typescriptdocs.com/release-notes/TypeScript%206.0):
65
+ - Fluid Framework supports all [`strict`](https://www.typescriptlang.org/tsconfig) options.
66
+ - Set the build targets (`lib`, `target`) to `ES2022` or later.
67
+ - Enable [`strictNullChecks`](https://www.typescriptlang.org/tsconfig).
68
+ - 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).
69
+ - Fluid Framework does not fully support `exactOptionalPropertyTypes`.
70
+ If you enable this option, do not use `in`, `Reflect.has`, `Object.hasOwn`, or `Object.prototype.hasOwnProperty` to narrow members of Fluid Framework types.
71
+ These methods can incorrectly exclude `undefined` from the possible values.
72
+ - [webpack](https://webpack.js.org/) 5
73
+ - We do not require a specific bundler.
74
+ Other bundlers that handle ES Modules can work, but we actively test only webpack.
78
75
 
79
76
  ### Module Resolution
80
77
 
@@ -85,25 +82,25 @@ Do not use `Node10` module resolution.
85
82
 
86
83
  ### Module Formats
87
84
 
88
- - ES Modules:
89
- Use ES Modules to consume Fluid Framework client packages, including in Node.js.
90
- - CommonJS:
91
- Fluid Framework does not officially support CommonJS in version 3.0 or later.
85
+ - ES Modules:
86
+ Use ES Modules to consume Fluid Framework client packages, including in Node.js.
87
+ - CommonJS:
88
+ Fluid Framework does not officially support CommonJS in version 3.0 or later.
92
89
 
93
90
  ## Contribution Guidelines
94
91
 
95
92
  You can [contribute](https://github.com/microsoft/FluidFramework/blob/main/CONTRIBUTING.md) to Fluid Framework in these ways:
96
93
 
97
- - Answer questions in [GitHub Discussions](https://github.com/microsoft/FluidFramework/discussions).
98
- - [Submit bug reports](https://github.com/microsoft/FluidFramework/issues) and help verify fixes.
99
- - Review [source code changes](https://github.com/microsoft/FluidFramework/pulls).
100
- - [Contribute bug fixes](https://github.com/microsoft/FluidFramework/blob/main/CONTRIBUTING.md).
94
+ - Answer questions in [GitHub Discussions](https://github.com/microsoft/FluidFramework/discussions).
95
+ - [Submit bug reports](https://github.com/microsoft/FluidFramework/issues) and help verify fixes.
96
+ - Review [source code changes](https://github.com/microsoft/FluidFramework/pulls).
97
+ - [Contribute bug fixes](https://github.com/microsoft/FluidFramework/blob/main/CONTRIBUTING.md).
101
98
 
102
99
  For detailed instructions, read the [repo documentation](https://github.com/microsoft/FluidFramework/blob/main/docs/content/Home.md).
103
100
 
104
101
  This project follows the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
105
102
  For more information, read the [Code of Conduct frequently asked questions](https://opensource.microsoft.com/codeofconduct/faq/).
106
- For questions or comments, contact [opencode@microsoft.com](mailto:opencode@microsoft.com).
103
+ For questions or comments, contact <opencode@microsoft.com>.
107
104
 
108
105
  This project may contain Microsoft trademarks or logos for Microsoft projects, products, or services.
109
106
  Use of these trademarks or logos must follow Microsoft’s [Trademark & Brand Guidelines](https://www.microsoft.com/trademarks).
@@ -124,5 +121,4 @@ Use of these trademarks or logos must follow Microsoft's [Trademark & Brand Guid
124
121
  Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
125
122
 
126
123
  <!-- prettier-ignore-end -->
127
-
128
- <!-- AUTO-GENERATED-CONTENT:END -->
124
+ <!-- markdown-magic:end -->
@@ -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/cell";
8
- export declare const pkgVersion = "3.0.1";
8
+ export declare const pkgVersion = "3.1.0";
9
9
  //# sourceMappingURL=packageVersion.d.ts.map
@@ -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/cell";
11
- exports.pkgVersion = "3.0.1";
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,sBAAsB,CAAC;AACjC,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/cell\";\nexport const pkgVersion = \"3.0.1\";\n"]}
1
+ {"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,sBAAsB,CAAC;AACjC,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/cell\";\nexport const pkgVersion = \"3.1.0\";\n"]}
@@ -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/cell";
8
- export declare const pkgVersion = "3.0.1";
8
+ export declare const pkgVersion = "3.1.0";
9
9
  //# sourceMappingURL=packageVersion.d.ts.map
@@ -5,5 +5,5 @@
5
5
  * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY
6
6
  */
7
7
  export const pkgName = "@fluidframework/cell";
8
- export const pkgVersion = "3.0.1";
8
+ export const pkgVersion = "3.1.0";
9
9
  //# sourceMappingURL=packageVersion.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,sBAAsB,CAAC;AAC9C,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/cell\";\nexport const pkgVersion = \"3.0.1\";\n"]}
1
+ {"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,sBAAsB,CAAC;AAC9C,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/cell\";\nexport const pkgVersion = \"3.1.0\";\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/cell",
3
- "version": "3.0.1",
3
+ "version": "3.1.0",
4
4
  "description": "Distributed data structure for a single value",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -48,26 +48,26 @@
48
48
  "temp-directory": "nyc/.nyc_output"
49
49
  },
50
50
  "dependencies": {
51
- "@fluidframework/core-interfaces": "~3.0.1",
52
- "@fluidframework/core-utils": "~3.0.1",
53
- "@fluidframework/datastore-definitions": "~3.0.1",
54
- "@fluidframework/driver-definitions": "~3.0.1",
55
- "@fluidframework/driver-utils": "~3.0.1",
56
- "@fluidframework/runtime-definitions": "~3.0.1",
57
- "@fluidframework/shared-object-base": "~3.0.1"
51
+ "@fluidframework/core-interfaces": "~3.1.0",
52
+ "@fluidframework/core-utils": "~3.1.0",
53
+ "@fluidframework/datastore-definitions": "~3.1.0",
54
+ "@fluidframework/driver-definitions": "~3.1.0",
55
+ "@fluidframework/driver-utils": "~3.1.0",
56
+ "@fluidframework/runtime-definitions": "~3.1.0",
57
+ "@fluidframework/shared-object-base": "~3.1.0"
58
58
  },
59
59
  "devDependencies": {
60
60
  "@arethetypeswrong/cli": "^0.18.5",
61
61
  "@biomejs/biome": "~2.4.5",
62
- "@fluid-internal/mocha-test-setup": "~3.0.1",
63
- "@fluid-private/test-dds-utils": "~3.0.1",
62
+ "@fluid-internal/mocha-test-setup": "~3.1.0",
63
+ "@fluid-private/test-dds-utils": "~3.1.0",
64
64
  "@fluid-tools/build-cli": "^0.67.0",
65
65
  "@fluidframework/build-common": "^2.0.3",
66
66
  "@fluidframework/build-tools": "^0.67.0",
67
67
  "@fluidframework/cell-previous": "npm:@fluidframework/cell@2.116.0",
68
- "@fluidframework/container-definitions": "~3.0.1",
68
+ "@fluidframework/container-definitions": "~3.1.0",
69
69
  "@fluidframework/eslint-config-fluid": "^14.0.0",
70
- "@fluidframework/test-runtime-utils": "~3.0.1",
70
+ "@fluidframework/test-runtime-utils": "~3.1.0",
71
71
  "@microsoft/api-extractor": "7.58.1",
72
72
  "@types/mocha": "^10.0.10",
73
73
  "@types/node": "~22.19.17",
@@ -6,4 +6,4 @@
6
6
  */
7
7
 
8
8
  export const pkgName = "@fluidframework/cell";
9
- export const pkgVersion = "3.0.1";
9
+ export const pkgVersion = "3.1.0";