@fluidframework/devtools 2.71.0 → 2.73.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,13 @@
1
1
  # @fluidframework/devtools
2
2
 
3
+ ## 2.73.0
4
+
5
+ Dependency updates only.
6
+
7
+ ## 2.72.0
8
+
9
+ Dependency updates only.
10
+
3
11
  ## 2.71.0
4
12
 
5
13
  Dependency updates only.
@@ -104,12 +112,10 @@ Dependency updates only.
104
112
 
105
113
  APIs that were never intended for direct consumer use have been marked as `@system`.
106
114
  These are:
107
-
108
115
  - HasContainerKey
109
116
 
110
117
  APIs that were not intended to be extended by consumers have been marked as `@sealed`.
111
118
  These are:
112
-
113
119
  - ContainerDevtoolsProps
114
120
  - DevtoolsProps
115
121
  - HasContainerKey
@@ -164,7 +170,6 @@ Dependency updates only.
164
170
  TypeScript types and implementation code.
165
171
 
166
172
  This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
167
-
168
173
  - `"moduleResolution": "Node16"` with `"module": "Node16"`
169
174
  - `"moduleResolution": "Bundler"` with `"module": "ESNext"`
170
175
 
@@ -197,7 +202,6 @@ Dependency updates only.
197
202
  Several FluidStatic classes were unnecessarily exposed. They have been replaced with creation functions. This helps us
198
203
  keep implementations decoupled from usage which is easier to maintain and extend. It has very minimal impact on the
199
204
  public surface area of downstream packages. The deprecated classes are as follows:
200
-
201
205
  - `AzureAudience` (use `IAzureAudience` instead)
202
206
  - `TinyliciousAudience` (use `ITinyliciousAudience` instead)
203
207
  - `DOProviderContainerRuntimeFactory`
@@ -240,7 +244,6 @@ Dependency updates only.
240
244
 
241
245
  The **@fluidframework/common-definitions** package is being deprecated, so the following interfaces and types are now
242
246
  imported from the **@fluidframework/core-interfaces** package:
243
-
244
247
  - interface IDisposable
245
248
  - interface IErrorEvent
246
249
  - 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.73.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.73.0",
81
+ "@fluidframework/core-interfaces": "~2.73.0",
82
+ "@fluidframework/devtools-core": "~2.73.0",
83
+ "@fluidframework/fluid-static": "~2.73.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.73.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.73.0",
94
94
  "@microsoft/api-extractor": "7.52.11",
95
95
  "@types/mocha": "^10.0.10",
96
96
  "c8": "^10.1.3",