@fluidframework/runtime-definitions 2.20.0 → 2.21.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
@@ -8,5 +8,4 @@ module.exports = {
8
8
  project: ["./tsconfig.json", "./src/test/tsconfig.json"],
9
9
  },
10
10
  extends: ["@fluidframework/eslint-config-fluid", "prettier"],
11
- plugins: ["deprecation"],
12
11
  };
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @fluidframework/runtime-definitions
2
2
 
3
+ ## 2.21.0
4
+
5
+ Dependency updates only.
6
+
3
7
  ## 2.20.0
4
8
 
5
9
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/runtime-definitions",
3
- "version": "2.20.0",
3
+ "version": "2.21.0",
4
4
  "description": "Fluid Runtime definitions",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -47,11 +47,11 @@
47
47
  "main": "lib/index.js",
48
48
  "types": "lib/public.d.ts",
49
49
  "dependencies": {
50
- "@fluidframework/container-definitions": "~2.20.0",
51
- "@fluidframework/core-interfaces": "~2.20.0",
52
- "@fluidframework/driver-definitions": "~2.20.0",
53
- "@fluidframework/id-compressor": "~2.20.0",
54
- "@fluidframework/telemetry-utils": "~2.20.0"
50
+ "@fluidframework/container-definitions": "~2.21.0",
51
+ "@fluidframework/core-interfaces": "~2.21.0",
52
+ "@fluidframework/driver-definitions": "~2.21.0",
53
+ "@fluidframework/id-compressor": "~2.21.0",
54
+ "@fluidframework/telemetry-utils": "~2.21.0"
55
55
  },
56
56
  "devDependencies": {
57
57
  "@arethetypeswrong/cli": "^0.17.1",
@@ -59,32 +59,18 @@
59
59
  "@fluid-tools/build-cli": "^0.51.0",
60
60
  "@fluidframework/build-common": "^2.0.3",
61
61
  "@fluidframework/build-tools": "^0.51.0",
62
- "@fluidframework/eslint-config-fluid": "^5.6.0",
63
- "@fluidframework/runtime-definitions-previous": "npm:@fluidframework/runtime-definitions@2.13.0",
62
+ "@fluidframework/eslint-config-fluid": "^5.7.3",
63
+ "@fluidframework/runtime-definitions-previous": "npm:@fluidframework/runtime-definitions@2.20.0",
64
64
  "@microsoft/api-extractor": "7.47.8",
65
65
  "concurrently": "^8.2.1",
66
66
  "copyfiles": "^2.4.1",
67
67
  "eslint": "~8.55.0",
68
- "eslint-plugin-deprecation": "~2.0.0",
69
68
  "prettier": "~3.0.3",
70
69
  "rimraf": "^4.4.0",
71
70
  "typescript": "~5.4.5"
72
71
  },
73
72
  "typeValidation": {
74
- "broken": {
75
- "Interface_IContainerRuntimeBase": {
76
- "backCompat": false
77
- },
78
- "Interface_IFluidDataStoreContext": {
79
- "backCompat": false
80
- },
81
- "Interface_IFluidDataStoreContextDetached": {
82
- "backCompat": false
83
- },
84
- "Interface_IFluidParentContext": {
85
- "backCompat": false
86
- }
87
- },
73
+ "broken": {},
88
74
  "entrypoint": "legacy"
89
75
  },
90
76
  "scripts": {
@@ -115,7 +101,7 @@
115
101
  "ci:build:api-reports:current": "api-extractor run --config api-extractor/api-extractor.current.json",
116
102
  "ci:build:api-reports:legacy": "api-extractor run --config api-extractor/api-extractor.legacy.json",
117
103
  "ci:build:docs": "api-extractor run",
118
- "clean": "rimraf --glob dist lib \"*.d.ts\" \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp",
104
+ "clean": "rimraf --glob dist lib {alpha,beta,internal,legacy}.d.ts \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp",
119
105
  "eslint": "eslint --format stylish src",
120
106
  "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
121
107
  "format": "npm run format:biome",