langchain 1.1.0 → 1.1.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/package.json +6 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # langchain
2
2
 
3
+ ## 1.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`636b994`](https://github.com/langchain-ai/langchainjs/commit/636b99459bf843362298866211c63a7a15c2a319), [`38f0162`](https://github.com/langchain-ai/langchainjs/commit/38f0162b7b2db2be2c3a75ae468728adcb49fdfb)]:
8
+ - @langchain/core@1.1.1
9
+
10
+ ## 1.1.1
11
+
12
+ ### Patch Changes
13
+
14
+ - [#9487](https://github.com/langchain-ai/langchainjs/pull/9487) [`4827945`](https://github.com/langchain-ai/langchainjs/commit/48279457ee44f36cdde175a537e2b12f5866627f) Thanks [@hntrl](https://github.com/hntrl)! - constrain lower bound core peer dep
15
+
3
16
  ## 1.1.0
4
17
 
5
18
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "langchain",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "Typescript bindings for langchain",
5
5
  "author": "LangChain",
6
6
  "license": "MIT",
@@ -48,18 +48,19 @@
48
48
  "reflect-metadata": "^0.2.2",
49
49
  "rimraf": "^5.0.1",
50
50
  "rollup": "^3.19.1",
51
+ "tinybench": "^5.1.0",
51
52
  "typeorm": "^0.3.26",
52
53
  "typescript": "~5.8.3",
53
54
  "vitest": "^3.2.4",
54
55
  "yaml": "^2.8.1",
55
- "@langchain/anthropic": "1.1.2",
56
+ "@langchain/anthropic": "1.2.0",
56
57
  "@langchain/cohere": "1.0.1",
57
- "@langchain/core": "1.1.0",
58
+ "@langchain/core": "1.1.1",
58
59
  "@langchain/eslint": "0.1.1",
59
60
  "@langchain/openai": "1.1.3"
60
61
  },
61
62
  "peerDependencies": {
62
- "@langchain/core": "^1.0.5"
63
+ "@langchain/core": "1.1.1"
63
64
  },
64
65
  "dependencies": {
65
66
  "@langchain/langgraph": "^1.0.0",
@@ -201,6 +202,7 @@
201
202
  "clean": "rm -rf .turbo dist/",
202
203
  "test": "vitest run",
203
204
  "test:watch": "vitest --watch",
205
+ "test:bench": "vitest --mode bench --run",
204
206
  "test:integration": "vitest --mode int",
205
207
  "format": "prettier --config .prettierrc --write \"src\"",
206
208
  "format:check": "prettier --config .prettierrc --check \"src\""