@fluidframework/file-driver 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 CHANGED
@@ -10,6 +10,6 @@ module.exports = {
10
10
  ],
11
11
  rules: {
12
12
  "@typescript-eslint/strict-boolean-expressions": "off",
13
- "import/no-nodejs-modules": ["error", { allow: ["fs"] }],
13
+ "import-x/no-nodejs-modules": ["error", { allow: ["fs"] }],
14
14
  },
15
15
  };
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @fluidframework/file-driver
2
2
 
3
+ ## 2.72.0
4
+
5
+ Dependency updates only.
6
+
3
7
  ## 2.71.0
4
8
 
5
9
  Dependency updates only.
@@ -147,7 +151,6 @@ Dependency updates only.
147
151
  TypeScript types and implementation code.
148
152
 
149
153
  This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
150
-
151
154
  - `"moduleResolution": "Node16"` with `"module": "Node16"`
152
155
  - `"moduleResolution": "Bundler"` with `"module": "ESNext"`
153
156
 
@@ -186,7 +189,6 @@ Dependency updates only.
186
189
  - Updated server dependencies ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
187
190
 
188
191
  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)
189
-
190
192
  - @fluidframework/gitresources
191
193
  - @fluidframework/server-kafka-orderer
192
194
  - @fluidframework/server-lambdas
@@ -240,7 +242,6 @@ Dependency updates only.
240
242
  - Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
241
243
 
242
244
  This included the following changes from the protocol-definitions release:
243
-
244
245
  - Updating signal interfaces for some planned improvements. The intention is split the interface between signals
245
246
  submitted by clients to the server and the resulting signals sent from the server to clients.
246
247
  - A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
@@ -251,7 +252,6 @@ Dependency updates only.
251
252
  - Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
252
253
 
253
254
  Dependencies on the following Fluid server package have been updated to version 2.0.1:
254
-
255
255
  - @fluidframework/gitresources: 2.0.1
256
256
  - @fluidframework/server-kafka-orderer: 2.0.1
257
257
  - @fluidframework/server-lambdas: 2.0.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/file-driver",
3
- "version": "2.71.0",
3
+ "version": "2.72.0",
4
4
  "description": "A driver that reads/write from/to local file storage.",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -37,21 +37,21 @@
37
37
  "main": "lib/index.js",
38
38
  "types": "lib/public.d.ts",
39
39
  "dependencies": {
40
- "@fluid-internal/client-utils": "~2.71.0",
41
- "@fluidframework/core-interfaces": "~2.71.0",
42
- "@fluidframework/core-utils": "~2.71.0",
43
- "@fluidframework/driver-definitions": "~2.71.0",
44
- "@fluidframework/driver-utils": "~2.71.0",
45
- "@fluidframework/replay-driver": "~2.71.0"
40
+ "@fluid-internal/client-utils": "~2.72.0",
41
+ "@fluidframework/core-interfaces": "~2.72.0",
42
+ "@fluidframework/core-utils": "~2.72.0",
43
+ "@fluidframework/driver-definitions": "~2.72.0",
44
+ "@fluidframework/driver-utils": "~2.72.0",
45
+ "@fluidframework/replay-driver": "~2.72.0"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@arethetypeswrong/cli": "^0.17.1",
49
49
  "@biomejs/biome": "~1.9.3",
50
- "@fluid-tools/build-cli": "^0.58.3",
50
+ "@fluid-tools/build-cli": "^0.60.0",
51
51
  "@fluidframework/build-common": "^2.0.3",
52
- "@fluidframework/build-tools": "^0.58.3",
53
- "@fluidframework/eslint-config-fluid": "^7.0.0",
54
- "@fluidframework/file-driver-previous": "npm:@fluidframework/file-driver@2.70.0",
52
+ "@fluidframework/build-tools": "^0.60.0",
53
+ "@fluidframework/eslint-config-fluid": "~2.72.0",
54
+ "@fluidframework/file-driver-previous": "npm:@fluidframework/file-driver@2.71.0",
55
55
  "@microsoft/api-extractor": "7.52.11",
56
56
  "@types/node": "^18.19.0",
57
57
  "concurrently": "^8.2.1",