@fluidframework/tree-agent-langchain 2.92.0 → 2.100.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 +12 -0
- package/eslint.config.mts +1 -1
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @fluidframework/tree-agent-langchain
|
|
2
2
|
|
|
3
|
+
## 2.100.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Node 22 is now the minimum supported Node.js version ([#27116](https://github.com/microsoft/FluidFramework/pull/27116)) [e8214d29663](https://github.com/microsoft/FluidFramework/commit/e8214d29663f5ee98d737daed82506a25d8de8d0)
|
|
8
|
+
|
|
9
|
+
All Fluid Framework client packages now require Node.js 22 or later. This aligns with the standing Node upgrade policy as Node 20 reaches end-of-life on April 30, 2026.
|
|
10
|
+
|
|
11
|
+
## 2.93.0
|
|
12
|
+
|
|
13
|
+
Dependency updates only.
|
|
14
|
+
|
|
3
15
|
## 2.92.0
|
|
4
16
|
|
|
5
17
|
Dependency updates only.
|
package/eslint.config.mts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/tree-agent-langchain",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.100.0",
|
|
4
4
|
"description": "LangChain integration helpers for @fluidframework/tree-agent",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -69,27 +69,28 @@
|
|
|
69
69
|
"temp-directory": "nyc/.nyc_output"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@fluidframework/telemetry-utils": "~2.
|
|
73
|
-
"@fluidframework/tree-agent": "~2.
|
|
72
|
+
"@fluidframework/telemetry-utils": "~2.100.0",
|
|
73
|
+
"@fluidframework/tree-agent": "~2.100.0",
|
|
74
|
+
"@fluidframework/type-factory": "~2.100.0",
|
|
74
75
|
"@langchain/core": "^0.3.80"
|
|
75
76
|
},
|
|
76
77
|
"devDependencies": {
|
|
77
78
|
"@arethetypeswrong/cli": "^0.18.2",
|
|
78
79
|
"@biomejs/biome": "~2.4.5",
|
|
79
|
-
"@fluid-internal/mocha-test-setup": "~2.
|
|
80
|
-
"@fluid-tools/build-cli": "^0.
|
|
80
|
+
"@fluid-internal/mocha-test-setup": "~2.100.0",
|
|
81
|
+
"@fluid-tools/build-cli": "^0.65.0",
|
|
81
82
|
"@fluidframework/build-common": "^2.0.3",
|
|
82
|
-
"@fluidframework/build-tools": "^0.
|
|
83
|
-
"@fluidframework/core-utils": "~2.
|
|
83
|
+
"@fluidframework/build-tools": "^0.65.0",
|
|
84
|
+
"@fluidframework/core-utils": "~2.100.0",
|
|
84
85
|
"@fluidframework/eslint-config-fluid": "^9.0.0",
|
|
85
|
-
"@fluidframework/runtime-utils": "~2.
|
|
86
|
-
"@fluidframework/tree": "~2.
|
|
86
|
+
"@fluidframework/runtime-utils": "~2.100.0",
|
|
87
|
+
"@fluidframework/tree": "~2.100.0",
|
|
87
88
|
"@langchain/anthropic": "^0.3.24",
|
|
88
89
|
"@langchain/google-genai": "^0.2.16",
|
|
89
90
|
"@langchain/openai": "^0.6.12",
|
|
90
|
-
"@microsoft/api-extractor": "7.
|
|
91
|
+
"@microsoft/api-extractor": "7.58.1",
|
|
91
92
|
"@types/mocha": "^10.0.10",
|
|
92
|
-
"@types/node": "~
|
|
93
|
+
"@types/node": "~22.19.17",
|
|
93
94
|
"c8": "^10.1.3",
|
|
94
95
|
"concurrently": "^9.2.1",
|
|
95
96
|
"copyfiles": "^2.4.1",
|
|
@@ -144,7 +145,6 @@
|
|
|
144
145
|
"test:mocha:esm": "mocha",
|
|
145
146
|
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
|
|
146
147
|
"tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../common/build/build-common/src/cjs/package.json ./dist",
|
|
147
|
-
"typetests:gen": "flub generate typetests --dir . -v"
|
|
148
|
-
"typetests:prepare": "flub typetests --dir . --reset --previous --normalize"
|
|
148
|
+
"typetests:gen": "flub generate typetests --dir . -v"
|
|
149
149
|
}
|
|
150
150
|
}
|