@fluidframework/debugger 2.0.0-rc.3.0.2 → 2.0.0-rc.4.0.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 CHANGED
@@ -1,5 +1,9 @@
1
1
  # @fluidframework/debugger
2
2
 
3
+ ## 2.0.0-rc.4.0.0
4
+
5
+ Dependency updates only.
6
+
3
7
  ## 2.0.0-rc.3.0.0
4
8
 
5
9
  ### Major Changes
package/dist/legacy.d.ts CHANGED
@@ -9,6 +9,6 @@
9
9
  */
10
10
 
11
11
  export {
12
- // alpha APIs
12
+ // @alpha APIs
13
13
  FluidDebugger
14
14
  } from "./index.js";
package/lib/legacy.d.ts CHANGED
@@ -9,6 +9,6 @@
9
9
  */
10
10
 
11
11
  export {
12
- // alpha APIs
12
+ // @alpha APIs
13
13
  FluidDebugger
14
14
  } from "./index.js";
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.42.3"
8
+ "packageVersion": "7.43.1"
9
9
  }
10
10
  ]
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/debugger",
3
- "version": "2.0.0-rc.3.0.2",
3
+ "version": "2.0.0-rc.4.0.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,22 +47,22 @@
47
47
  "main": "lib/index.js",
48
48
  "types": "lib/public.d.ts",
49
49
  "dependencies": {
50
- "@fluidframework/core-utils": ">=2.0.0-rc.3.0.2 <2.0.0-rc.3.1.0",
51
- "@fluidframework/driver-definitions": ">=2.0.0-rc.3.0.2 <2.0.0-rc.3.1.0",
52
- "@fluidframework/driver-utils": ">=2.0.0-rc.3.0.2 <2.0.0-rc.3.1.0",
50
+ "@fluidframework/core-utils": ">=2.0.0-rc.4.0.0 <2.0.0-rc.4.1.0",
51
+ "@fluidframework/driver-definitions": ">=2.0.0-rc.4.0.0 <2.0.0-rc.4.1.0",
52
+ "@fluidframework/driver-utils": ">=2.0.0-rc.4.0.0 <2.0.0-rc.4.1.0",
53
53
  "@fluidframework/protocol-definitions": "^3.2.0",
54
- "@fluidframework/replay-driver": ">=2.0.0-rc.3.0.2 <2.0.0-rc.3.1.0",
54
+ "@fluidframework/replay-driver": ">=2.0.0-rc.4.0.0 <2.0.0-rc.4.1.0",
55
55
  "jsonschema": "^1.2.6"
56
56
  },
57
57
  "devDependencies": {
58
58
  "@arethetypeswrong/cli": "^0.15.2",
59
59
  "@biomejs/biome": "^1.6.2",
60
- "@fluid-tools/build-cli": "^0.37.0",
60
+ "@fluid-tools/build-cli": "^0.38.0",
61
61
  "@fluidframework/build-common": "^2.0.3",
62
- "@fluidframework/build-tools": "^0.37.0",
63
- "@fluidframework/debugger-previous": "npm:@fluidframework/debugger@2.0.0-internal.8.0.0",
62
+ "@fluidframework/build-tools": "^0.38.0",
63
+ "@fluidframework/debugger-previous": "npm:@fluidframework/debugger@2.0.0-rc.3.0.0",
64
64
  "@fluidframework/eslint-config-fluid": "^5.1.0",
65
- "@microsoft/api-extractor": "^7.42.3",
65
+ "@microsoft/api-extractor": "^7.43.1",
66
66
  "@types/node": "^18.19.0",
67
67
  "copyfiles": "^2.4.1",
68
68
  "eslint": "~8.55.0",
@@ -73,17 +73,12 @@
73
73
  "fluidBuild": {
74
74
  "tasks": {
75
75
  "tsc": [
76
- "...",
77
76
  "typetests:gen"
78
77
  ]
79
78
  }
80
79
  },
81
80
  "typeValidation": {
82
- "broken": {
83
- "ClassDeclaration_DebugReplayController": {
84
- "backCompat": false
85
- }
86
- }
81
+ "broken": {}
87
82
  },
88
83
  "scripts": {
89
84
  "api": "fluid-build . --task api",
@@ -105,7 +100,7 @@
105
100
  "lint": "fluid-build . --task lint",
106
101
  "lint:fix": "fluid-build . --task eslint:fix --task format",
107
102
  "tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../common/build/build-common/src/cjs/package.json ./dist",
108
- "typetests:gen": "fluid-type-test-generator",
103
+ "typetests:gen": "flub generate typetests --dir . -v --publicFallback",
109
104
  "typetests:prepare": "flub typetests --dir . --reset --previous --normalize"
110
105
  }
111
106
  }