@fluidframework/debugger 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 +1 -1
- package/CHANGELOG.md +4 -4
- package/package.json +9 -9
package/.eslintrc.cjs
CHANGED
|
@@ -12,7 +12,7 @@ module.exports = {
|
|
|
12
12
|
"@typescript-eslint/no-non-null-assertion": "off",
|
|
13
13
|
"@typescript-eslint/no-use-before-define": "off",
|
|
14
14
|
"@typescript-eslint/strict-boolean-expressions": "off",
|
|
15
|
-
"import/no-nodejs-modules": "off",
|
|
15
|
+
"import-x/no-nodejs-modules": "off",
|
|
16
16
|
"no-inner-declarations": "off",
|
|
17
17
|
},
|
|
18
18
|
};
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# @fluidframework/debugger
|
|
2
2
|
|
|
3
|
+
## 2.72.0
|
|
4
|
+
|
|
5
|
+
Dependency updates only.
|
|
6
|
+
|
|
3
7
|
## 2.71.0
|
|
4
8
|
|
|
5
9
|
Dependency updates only.
|
|
@@ -151,7 +155,6 @@ Dependency updates only.
|
|
|
151
155
|
TypeScript types and implementation code.
|
|
152
156
|
|
|
153
157
|
This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
|
|
154
|
-
|
|
155
158
|
- `"moduleResolution": "Node16"` with `"module": "Node16"`
|
|
156
159
|
- `"moduleResolution": "Bundler"` with `"module": "ESNext"`
|
|
157
160
|
|
|
@@ -178,7 +181,6 @@ Dependency updates only.
|
|
|
178
181
|
- Updated server dependencies ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
|
|
179
182
|
|
|
180
183
|
The following Fluid server dependencies have been updated to the latest version, 3.0.0. [See the full changelog.](https://github.com/microsoft/FluidFramework/releases/tag/server_v3.0.0)
|
|
181
|
-
|
|
182
184
|
- @fluidframework/gitresources
|
|
183
185
|
- @fluidframework/server-kafka-orderer
|
|
184
186
|
- @fluidframework/server-lambdas
|
|
@@ -232,7 +234,6 @@ Dependency updates only.
|
|
|
232
234
|
- Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
233
235
|
|
|
234
236
|
This included the following changes from the protocol-definitions release:
|
|
235
|
-
|
|
236
237
|
- Updating signal interfaces for some planned improvements. The intention is split the interface between signals
|
|
237
238
|
submitted by clients to the server and the resulting signals sent from the server to clients.
|
|
238
239
|
- A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
|
|
@@ -243,7 +244,6 @@ Dependency updates only.
|
|
|
243
244
|
- Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
244
245
|
|
|
245
246
|
Dependencies on the following Fluid server package have been updated to version 2.0.1:
|
|
246
|
-
|
|
247
247
|
- @fluidframework/gitresources: 2.0.1
|
|
248
248
|
- @fluidframework/server-kafka-orderer: 2.0.1
|
|
249
249
|
- @fluidframework/server-lambdas: 2.0.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/debugger",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.72.0",
|
|
4
4
|
"description": "Fluid Debugger - a tool to play through history of a file",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -47,20 +47,20 @@
|
|
|
47
47
|
"main": "lib/index.js",
|
|
48
48
|
"types": "lib/public.d.ts",
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@fluidframework/core-utils": "~2.
|
|
51
|
-
"@fluidframework/driver-definitions": "~2.
|
|
52
|
-
"@fluidframework/driver-utils": "~2.
|
|
53
|
-
"@fluidframework/replay-driver": "~2.
|
|
50
|
+
"@fluidframework/core-utils": "~2.72.0",
|
|
51
|
+
"@fluidframework/driver-definitions": "~2.72.0",
|
|
52
|
+
"@fluidframework/driver-utils": "~2.72.0",
|
|
53
|
+
"@fluidframework/replay-driver": "~2.72.0",
|
|
54
54
|
"jsonschema": "^1.2.6"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
58
58
|
"@biomejs/biome": "~1.9.3",
|
|
59
|
-
"@fluid-tools/build-cli": "^0.
|
|
59
|
+
"@fluid-tools/build-cli": "^0.60.0",
|
|
60
60
|
"@fluidframework/build-common": "^2.0.3",
|
|
61
|
-
"@fluidframework/build-tools": "^0.
|
|
62
|
-
"@fluidframework/debugger-previous": "npm:@fluidframework/debugger@2.
|
|
63
|
-
"@fluidframework/eslint-config-fluid": "
|
|
61
|
+
"@fluidframework/build-tools": "^0.60.0",
|
|
62
|
+
"@fluidframework/debugger-previous": "npm:@fluidframework/debugger@2.71.0",
|
|
63
|
+
"@fluidframework/eslint-config-fluid": "~2.72.0",
|
|
64
64
|
"@microsoft/api-extractor": "7.52.11",
|
|
65
65
|
"@types/node": "^18.19.0",
|
|
66
66
|
"concurrently": "^8.2.1",
|