@fluidframework/container-definitions 2.74.0-368706 → 2.74.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 +13 -0
- package/eslint.config.mts +30 -0
- package/package.json +7 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @fluidframework/container-definitions
|
|
2
2
|
|
|
3
|
+
## 2.74.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Some keys in IFluidCodeDetailsConfig are now reserved for Fluid Framework use ([#25641](https://github.com/microsoft/FluidFramework/pull/25641)) [1eaf526c813](https://github.com/microsoft/FluidFramework/commit/1eaf526c813c8e36fc0ad52649b80e2b0c055853)
|
|
8
|
+
|
|
9
|
+
The keys of [`IFluidCodeDetailsConfig`](https://fluidframework.com/docs/api/container-definitions/ifluidcodedetailsconfig-interface)
|
|
10
|
+
(the [type of the `config` property on `IFluidCodeDetails`](https://fluidframework.com/docs/api/container-definitions/ifluidcodedetails-interface#config-propertysignature))
|
|
11
|
+
used to be entirely free for consumer use.
|
|
12
|
+
Going forward, keys with the `"FluidFramework."` prefix are reserved for Fluid Framework's internal use.
|
|
13
|
+
|
|
14
|
+
We do not expect this to affect any consumers.
|
|
15
|
+
|
|
3
16
|
## 2.73.0
|
|
4
17
|
|
|
5
18
|
Dependency updates only.
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/**
|
|
3
|
+
* GENERATED FILE - DO NOT EDIT DIRECTLY.
|
|
4
|
+
* To regenerate: pnpm tsx scripts/generate-flat-eslint-configs.ts --typescript
|
|
5
|
+
*/
|
|
6
|
+
import type { Linter } from "eslint";
|
|
7
|
+
import { strict } from "../../../common/build/eslint-config-fluid/flat.mts";
|
|
8
|
+
|
|
9
|
+
const config: Linter.Config[] = [
|
|
10
|
+
...strict,
|
|
11
|
+
{
|
|
12
|
+
rules: {
|
|
13
|
+
"@typescript-eslint/consistent-indexed-object-style": "off",
|
|
14
|
+
"@typescript-eslint/unbound-method": "off",
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
files: ["*.spec.ts", "src/test/**"],
|
|
19
|
+
rules: {
|
|
20
|
+
"import-x/no-nodejs-modules": [
|
|
21
|
+
"error",
|
|
22
|
+
{
|
|
23
|
+
"allow": ["assert"],
|
|
24
|
+
},
|
|
25
|
+
],
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
];
|
|
29
|
+
|
|
30
|
+
export default config;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/container-definitions",
|
|
3
|
-
"version": "2.74.0
|
|
3
|
+
"version": "2.74.0",
|
|
4
4
|
"description": "Fluid container definitions",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -47,21 +47,22 @@
|
|
|
47
47
|
"main": "lib/index.js",
|
|
48
48
|
"types": "lib/public.d.ts",
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@fluidframework/core-interfaces": "2.74.0
|
|
51
|
-
"@fluidframework/driver-definitions": "2.74.0
|
|
50
|
+
"@fluidframework/core-interfaces": "~2.74.0",
|
|
51
|
+
"@fluidframework/driver-definitions": "~2.74.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
55
55
|
"@biomejs/biome": "~1.9.3",
|
|
56
|
-
"@fluid-tools/build-cli": "^0.
|
|
56
|
+
"@fluid-tools/build-cli": "^0.61.0",
|
|
57
57
|
"@fluidframework/build-common": "^2.0.3",
|
|
58
|
-
"@fluidframework/build-tools": "^0.
|
|
58
|
+
"@fluidframework/build-tools": "^0.61.0",
|
|
59
59
|
"@fluidframework/container-definitions-previous": "npm:@fluidframework/container-definitions@2.73.0",
|
|
60
|
-
"@fluidframework/eslint-config-fluid": "2.74.0
|
|
60
|
+
"@fluidframework/eslint-config-fluid": "~2.74.0",
|
|
61
61
|
"@microsoft/api-extractor": "7.52.11",
|
|
62
62
|
"concurrently": "^8.2.1",
|
|
63
63
|
"copyfiles": "^2.4.1",
|
|
64
64
|
"eslint": "~8.57.1",
|
|
65
|
+
"jiti": "^2.6.1",
|
|
65
66
|
"rimraf": "^4.4.0",
|
|
66
67
|
"typescript": "~5.4.5"
|
|
67
68
|
},
|