@fluidframework/file-driver 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 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,13 @@
1
1
  # @fluidframework/file-driver
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.
@@ -147,7 +155,6 @@ Dependency updates only.
147
155
  TypeScript types and implementation code.
148
156
 
149
157
  This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
150
-
151
158
  - `"moduleResolution": "Node16"` with `"module": "Node16"`
152
159
  - `"moduleResolution": "Bundler"` with `"module": "ESNext"`
153
160
 
@@ -186,7 +193,6 @@ Dependency updates only.
186
193
  - Updated server dependencies ([#19122](https://github.com/microsoft/FluidFramework/issues/19122)) [25366b4229](https://github.com/microsoft/FluidFramework/commits/25366b422918cb43685c5f328b50450749592902)
187
194
 
188
195
  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
196
  - @fluidframework/gitresources
191
197
  - @fluidframework/server-kafka-orderer
192
198
  - @fluidframework/server-lambdas
@@ -240,7 +246,6 @@ Dependency updates only.
240
246
  - Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
241
247
 
242
248
  This included the following changes from the protocol-definitions release:
243
-
244
249
  - Updating signal interfaces for some planned improvements. The intention is split the interface between signals
245
250
  submitted by clients to the server and the resulting signals sent from the server to clients.
246
251
  - A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
@@ -251,7 +256,6 @@ Dependency updates only.
251
256
  - Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
252
257
 
253
258
  Dependencies on the following Fluid server package have been updated to version 2.0.1:
254
-
255
259
  - @fluidframework/gitresources: 2.0.1
256
260
  - @fluidframework/server-kafka-orderer: 2.0.1
257
261
  - @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.73.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.73.0",
41
+ "@fluidframework/core-interfaces": "~2.73.0",
42
+ "@fluidframework/core-utils": "~2.73.0",
43
+ "@fluidframework/driver-definitions": "~2.73.0",
44
+ "@fluidframework/driver-utils": "~2.73.0",
45
+ "@fluidframework/replay-driver": "~2.73.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.73.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",