@fluidframework/devtools 2.71.0 → 2.72.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/.eslintrc.cjs CHANGED
@@ -20,7 +20,7 @@ module.exports = {
20
20
  // Overrides for test files
21
21
  files: ["*.spec.ts", "*.test.ts", "src/test/**"],
22
22
  rules: {
23
- "import/no-nodejs-modules": "off",
23
+ "import-x/no-nodejs-modules": "off",
24
24
  "unicorn/prefer-module": "off",
25
25
  },
26
26
  },
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @fluidframework/devtools
2
2
 
3
+ ## 2.72.0
4
+
5
+ Dependency updates only.
6
+
3
7
  ## 2.71.0
4
8
 
5
9
  Dependency updates only.
@@ -104,12 +108,10 @@ Dependency updates only.
104
108
 
105
109
  APIs that were never intended for direct consumer use have been marked as `@system`.
106
110
  These are:
107
-
108
111
  - HasContainerKey
109
112
 
110
113
  APIs that were not intended to be extended by consumers have been marked as `@sealed`.
111
114
  These are:
112
-
113
115
  - ContainerDevtoolsProps
114
116
  - DevtoolsProps
115
117
  - HasContainerKey
@@ -164,7 +166,6 @@ Dependency updates only.
164
166
  TypeScript types and implementation code.
165
167
 
166
168
  This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
167
-
168
169
  - `"moduleResolution": "Node16"` with `"module": "Node16"`
169
170
  - `"moduleResolution": "Bundler"` with `"module": "ESNext"`
170
171
 
@@ -197,7 +198,6 @@ Dependency updates only.
197
198
  Several FluidStatic classes were unnecessarily exposed. They have been replaced with creation functions. This helps us
198
199
  keep implementations decoupled from usage which is easier to maintain and extend. It has very minimal impact on the
199
200
  public surface area of downstream packages. The deprecated classes are as follows:
200
-
201
201
  - `AzureAudience` (use `IAzureAudience` instead)
202
202
  - `TinyliciousAudience` (use `ITinyliciousAudience` instead)
203
203
  - `DOProviderContainerRuntimeFactory`
@@ -240,7 +240,6 @@ Dependency updates only.
240
240
 
241
241
  The **@fluidframework/common-definitions** package is being deprecated, so the following interfaces and types are now
242
242
  imported from the **@fluidframework/core-interfaces** package:
243
-
244
243
  - interface IDisposable
245
244
  - interface IErrorEvent
246
245
  - interface IErrorEvent
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/devtools",
3
- "version": "2.71.0",
3
+ "version": "2.72.0",
4
4
  "description": "Fluid Framework developer tools",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -77,20 +77,20 @@
77
77
  "temp-directory": "nyc/.nyc_output"
78
78
  },
79
79
  "dependencies": {
80
- "@fluidframework/container-definitions": "~2.71.0",
81
- "@fluidframework/core-interfaces": "~2.71.0",
82
- "@fluidframework/devtools-core": "~2.71.0",
83
- "@fluidframework/fluid-static": "~2.71.0"
80
+ "@fluidframework/container-definitions": "~2.72.0",
81
+ "@fluidframework/core-interfaces": "~2.72.0",
82
+ "@fluidframework/devtools-core": "~2.72.0",
83
+ "@fluidframework/fluid-static": "~2.72.0"
84
84
  },
85
85
  "devDependencies": {
86
86
  "@arethetypeswrong/cli": "^0.17.1",
87
87
  "@biomejs/biome": "~1.9.3",
88
- "@fluid-internal/mocha-test-setup": "~2.71.0",
89
- "@fluid-tools/build-cli": "^0.58.3",
88
+ "@fluid-internal/mocha-test-setup": "~2.72.0",
89
+ "@fluid-tools/build-cli": "^0.60.0",
90
90
  "@fluidframework/build-common": "^2.0.3",
91
- "@fluidframework/build-tools": "^0.58.3",
92
- "@fluidframework/devtools-previous": "npm:@fluidframework/devtools@2.70.0",
93
- "@fluidframework/eslint-config-fluid": "^7.0.0",
91
+ "@fluidframework/build-tools": "^0.60.0",
92
+ "@fluidframework/devtools-previous": "npm:@fluidframework/devtools@2.71.0",
93
+ "@fluidframework/eslint-config-fluid": "~2.72.0",
94
94
  "@microsoft/api-extractor": "7.52.11",
95
95
  "@types/mocha": "^10.0.10",
96
96
  "c8": "^10.1.3",