@fluidframework/aqueduct 2.91.0 → 2.93.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,33 @@
1
1
  # @fluidframework/aqueduct
2
2
 
3
+ ## 2.93.0
4
+
5
+ ### Minor Changes
6
+
7
+ - minVersionForCollab is now non-optional ([#25331](https://github.com/microsoft/FluidFramework/pull/25331)) [9a0d0272df](https://github.com/microsoft/FluidFramework/commit/9a0d0272df6ae1a521cff00292dd159ea3b5e270)
8
+
9
+ This change is a follow-up for [pull request 25130](https://github.com/microsoft/FluidFramework/pull/25130)
10
+ which was released as part of [2.61.0](https://github.com/microsoft/FluidFramework/releases/tag/client_v2.61.0).
11
+
12
+ The `minVersionForCollab` property has been made non-optional in the following `@beta` `@legacy` interfaces in the Runtime layer:
13
+ - `IFluidParentContext.minVersionForCollab` in `@fluidframework/runtime-definitions`.
14
+ - `IFluidDataStoreContext.minVersionForCollab` in `@fluidframework/runtime-definitions`.
15
+ - `IFluidDataStoreContextDetached.minVersionForCollab` in `@fluidframework/runtime-definitions`.
16
+
17
+ Consumers of Fluid aren't expected to implement these interfaces directly, so no impact is expected.
18
+
19
+ Additionally the following properties now always return a value, rather than possibly returning `undefined`:
20
+ - `FluidDataStoreRuntime.minVersionForCollab` in `@fluidframework/datastore`.
21
+ Note that API Extractor shows this as a breaking change since FluidDataStoreRuntime is beta + legacy and non-sealed.
22
+ However, FluidDataStoreRuntime is not intended to be extended directly outside of a known legacy use-case.
23
+ - `IDataObjectProps.context.minVersionForCollab` in `@fluidframework/aqueduct`.
24
+ - `ITestFluidObject.context.minVersionForCollab` in `@fluidframework/test-utils`
25
+ - `IProvideTestFluidObject.ITestFluidObject.context.minVersionForCollab` in `@fluidframework/test-utils`
26
+
27
+ ## 2.92.0
28
+
29
+ Dependency updates only.
30
+
3
31
  ## 2.91.0
4
32
 
5
33
  Dependency updates only.
package/README.md CHANGED
@@ -249,7 +249,7 @@ When making such a request please include if the configuration already works (an
249
249
 
250
250
  ### Supported Runtimes
251
251
 
252
- - NodeJs ^20.10.0 except that we will drop support for it [when NodeJs 20 loses its upstream support on 2026-04-30](https://github.com/nodejs/release#release-schedule), and will support a newer LTS version of NodeJS (22) at least 1 year before 20 is end-of-life. This same policy applies to NodeJS 22 when it is end of life (2027-04-30).
252
+ - NodeJs ^22.22.2 except that we will drop support for it [when NodeJs 22 loses its upstream support on 2027-04-30](https://github.com/nodejs/release#release-schedule), and will support a newer LTS version of NodeJS at least 1 year before 22 is end-of-life.
253
253
  - Running Fluid in a Node.js environment with the `--no-experimental-fetch` flag is not supported.
254
254
  - Modern browsers supporting the es2022 standard library: in response to asks we can add explicit support for using babel to polyfill to target specific standards or runtimes (meaning we can avoid/remove use of things that don't polyfill robustly, but otherwise target modern standards).
255
255
 
package/dist/legacy.d.ts CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  /*
7
7
  * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
8
- * Generated by "flub generate entrypoints" in @fluid-tools/build-cli.
8
+ * Generated by "flub generate entrypoints --resolutionConditions require --outFileLegacyBeta legacy --outDir ./dist" in @fluid-tools/build-cli.
9
9
  */
10
10
 
11
11
  /**
package/dist/public.d.ts CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  /*
7
7
  * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
8
- * Generated by "flub generate entrypoints" in @fluid-tools/build-cli.
8
+ * Generated by "flub generate entrypoints --resolutionConditions require --outFileLegacyBeta legacy --outDir ./dist" in @fluid-tools/build-cli.
9
9
  */
10
10
 
11
11
  /**
package/eslint.config.mts CHANGED
@@ -4,7 +4,7 @@
4
4
  */
5
5
 
6
6
  import type { Linter } from "eslint";
7
- import { strict } from "../../../common/build/eslint-config-fluid/flat.mts";
7
+ import { strict } from "@fluidframework/eslint-config-fluid/flat.mts";
8
8
 
9
9
  const config: Linter.Config[] = [
10
10
  ...strict,
package/internal.d.ts CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  /*
7
7
  * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
8
- * Generated by "flub generate entrypoints" in @fluid-tools/build-cli.
8
+ * Generated by "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat" in @fluid-tools/build-cli.
9
9
  */
10
10
 
11
11
  export * from "./lib/index.js";
package/legacy.d.ts CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  /*
7
7
  * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
8
- * Generated by "flub generate entrypoints" in @fluid-tools/build-cli.
8
+ * Generated by "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat" in @fluid-tools/build-cli.
9
9
  */
10
10
 
11
11
  export * from "./lib/legacy.js";
package/lib/legacy.d.ts CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  /*
7
7
  * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
8
- * Generated by "flub generate entrypoints" in @fluid-tools/build-cli.
8
+ * Generated by "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat" in @fluid-tools/build-cli.
9
9
  */
10
10
 
11
11
  /**
package/lib/public.d.ts CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  /*
7
7
  * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
8
- * Generated by "flub generate entrypoints" in @fluid-tools/build-cli.
8
+ * Generated by "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat" in @fluid-tools/build-cli.
9
9
  */
10
10
 
11
11
  /**
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.52.11"
8
+ "packageVersion": "7.58.1"
9
9
  }
10
10
  ]
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/aqueduct",
3
- "version": "2.91.0",
3
+ "version": "2.93.0",
4
4
  "description": "A set of implementations for Fluid Framework interfaces.",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -69,35 +69,35 @@
69
69
  "temp-directory": "nyc/.nyc_output"
70
70
  },
71
71
  "dependencies": {
72
- "@fluid-internal/client-utils": "~2.91.0",
73
- "@fluidframework/container-definitions": "~2.91.0",
74
- "@fluidframework/container-runtime": "~2.91.0",
75
- "@fluidframework/container-runtime-definitions": "~2.91.0",
76
- "@fluidframework/core-interfaces": "~2.91.0",
77
- "@fluidframework/core-utils": "~2.91.0",
78
- "@fluidframework/datastore": "~2.91.0",
79
- "@fluidframework/datastore-definitions": "~2.91.0",
80
- "@fluidframework/map": "~2.91.0",
81
- "@fluidframework/request-handler": "~2.91.0",
82
- "@fluidframework/runtime-definitions": "~2.91.0",
83
- "@fluidframework/runtime-utils": "~2.91.0",
84
- "@fluidframework/shared-object-base": "~2.91.0",
85
- "@fluidframework/synthesize": "~2.91.0",
86
- "@fluidframework/telemetry-utils": "~2.91.0",
87
- "@fluidframework/tree": "~2.91.0"
72
+ "@fluid-internal/client-utils": "~2.93.0",
73
+ "@fluidframework/container-definitions": "~2.93.0",
74
+ "@fluidframework/container-runtime": "~2.93.0",
75
+ "@fluidframework/container-runtime-definitions": "~2.93.0",
76
+ "@fluidframework/core-interfaces": "~2.93.0",
77
+ "@fluidframework/core-utils": "~2.93.0",
78
+ "@fluidframework/datastore": "~2.93.0",
79
+ "@fluidframework/datastore-definitions": "~2.93.0",
80
+ "@fluidframework/map": "~2.93.0",
81
+ "@fluidframework/request-handler": "~2.93.0",
82
+ "@fluidframework/runtime-definitions": "~2.93.0",
83
+ "@fluidframework/runtime-utils": "~2.93.0",
84
+ "@fluidframework/shared-object-base": "~2.93.0",
85
+ "@fluidframework/synthesize": "~2.93.0",
86
+ "@fluidframework/telemetry-utils": "~2.93.0",
87
+ "@fluidframework/tree": "~2.93.0"
88
88
  },
89
89
  "devDependencies": {
90
90
  "@arethetypeswrong/cli": "^0.18.2",
91
91
  "@biomejs/biome": "~2.4.5",
92
- "@fluid-internal/mocha-test-setup": "~2.91.0",
93
- "@fluid-tools/build-cli": "^0.63.0",
94
- "@fluidframework/aqueduct-previous": "npm:@fluidframework/aqueduct@2.83.0",
92
+ "@fluid-internal/mocha-test-setup": "~2.93.0",
93
+ "@fluid-tools/build-cli": "^0.64.0",
94
+ "@fluidframework/aqueduct-previous": "npm:@fluidframework/aqueduct@2.92.0",
95
95
  "@fluidframework/build-common": "^2.0.3",
96
- "@fluidframework/build-tools": "^0.63.0",
97
- "@fluidframework/eslint-config-fluid": "~2.91.0",
98
- "@microsoft/api-extractor": "7.52.11",
96
+ "@fluidframework/build-tools": "^0.64.0",
97
+ "@fluidframework/eslint-config-fluid": "^9.0.0",
98
+ "@microsoft/api-extractor": "7.58.1",
99
99
  "@types/mocha": "^10.0.10",
100
- "@types/node": "~20.19.30",
100
+ "@types/node": "~22.19.17",
101
101
  "c8": "^10.1.3",
102
102
  "concurrently": "^9.2.1",
103
103
  "copyfiles": "^2.4.1",
@@ -110,12 +110,19 @@
110
110
  "typescript": "~5.4.5"
111
111
  },
112
112
  "typeValidation": {
113
- "broken": {},
113
+ "broken": {
114
+ "Interface_IDataObjectProps": {
115
+ "forwardCompat": false
116
+ },
117
+ "Interface_DataObjectFactoryProps": {
118
+ "forwardCompat": false
119
+ }
120
+ },
114
121
  "entrypoint": "legacy"
115
122
  },
116
123
  "scripts": {
117
124
  "api": "fluid-build . --task api",
118
- "api-extractor:commonjs": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./dist",
125
+ "api-extractor:commonjs": "flub generate entrypoints --resolutionConditions require --outFileLegacyBeta legacy --outDir ./dist",
119
126
  "api-extractor:esnext": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat",
120
127
  "build": "fluid-build . --task build",
121
128
  "build:api-reports": "concurrently \"npm:build:api-reports:*\"",
@@ -155,7 +162,6 @@
155
162
  "test:mocha:esm": "mocha",
156
163
  "test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
157
164
  "tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../common/build/build-common/src/cjs/package.json ./dist",
158
- "typetests:gen": "flub generate typetests --dir . -v",
159
- "typetests:prepare": "flub typetests --dir . --reset --previous --normalize"
165
+ "typetests:gen": "flub generate typetests --dir . -v"
160
166
  }
161
167
  }