@fluidframework/debugger 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 +1 -1
- package/CHANGELOG.md +8 -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,13 @@
|
|
|
1
1
|
# @fluidframework/debugger
|
|
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.
|
|
@@ -151,7 +159,6 @@ Dependency updates only.
|
|
|
151
159
|
TypeScript types and implementation code.
|
|
152
160
|
|
|
153
161
|
This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
|
|
154
|
-
|
|
155
162
|
- `"moduleResolution": "Node16"` with `"module": "Node16"`
|
|
156
163
|
- `"moduleResolution": "Bundler"` with `"module": "ESNext"`
|
|
157
164
|
|
|
@@ -178,7 +185,6 @@ Dependency updates only.
|
|
|
178
185
|
- Updated server dependencies ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
|
|
179
186
|
|
|
180
187
|
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
188
|
- @fluidframework/gitresources
|
|
183
189
|
- @fluidframework/server-kafka-orderer
|
|
184
190
|
- @fluidframework/server-lambdas
|
|
@@ -232,7 +238,6 @@ Dependency updates only.
|
|
|
232
238
|
- Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
233
239
|
|
|
234
240
|
This included the following changes from the protocol-definitions release:
|
|
235
|
-
|
|
236
241
|
- Updating signal interfaces for some planned improvements. The intention is split the interface between signals
|
|
237
242
|
submitted by clients to the server and the resulting signals sent from the server to clients.
|
|
238
243
|
- A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
|
|
@@ -243,7 +248,6 @@ Dependency updates only.
|
|
|
243
248
|
- Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
|
|
244
249
|
|
|
245
250
|
Dependencies on the following Fluid server package have been updated to version 2.0.1:
|
|
246
|
-
|
|
247
251
|
- @fluidframework/gitresources: 2.0.1
|
|
248
252
|
- @fluidframework/server-kafka-orderer: 2.0.1
|
|
249
253
|
- @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.73.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.73.0",
|
|
51
|
+
"@fluidframework/driver-definitions": "~2.73.0",
|
|
52
|
+
"@fluidframework/driver-utils": "~2.73.0",
|
|
53
|
+
"@fluidframework/replay-driver": "~2.73.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.73.0",
|
|
64
64
|
"@microsoft/api-extractor": "7.52.11",
|
|
65
65
|
"@types/node": "^18.19.0",
|
|
66
66
|
"concurrently": "^8.2.1",
|