Skip to content

Commit c546ae4

Browse files
chore: version packages
1 parent 75e9d56 commit c546ae4

File tree

10 files changed

+31
-27
lines changed

10 files changed

+31
-27
lines changed

.changeset/fix-zod-oom.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/nasty-cars-fold.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/spotty-cows-float.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/swift-rice-hug.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

libs/langchain-core/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @langchain/core
22

3+
## 1.1.35
4+
5+
### Patch Changes
6+
7+
- [#10327](https://github.com/langchain-ai/langchainjs/pull/10327) [`5dc11b5`](https://github.com/langchain-ai/langchainjs/commit/5dc11b55cccfe35e4dad910a33e904cf49b3088a) Thanks [@hntrl](https://github.com/hntrl)! - fix(core): replace exported zod type references with structural duck-type interfaces to fix TypeScript OOM
8+
9+
Replaces all exported Zod type references (`z3.ZodType`, `z4.$ZodType`, etc.) in `@langchain/core`'s public API with minimal structural ("duck-type") interfaces. This prevents TypeScript from performing expensive deep structural comparisons (~3,400+ lines of mutually recursive generics) when downstream packages resolve a different Zod version than `@langchain/core`, which was causing OOM crashes and unresponsive language servers in monorepo setups.
10+
11+
- [#10433](https://github.com/langchain-ai/langchainjs/pull/10433) [`7af0b65`](https://github.com/langchain-ai/langchainjs/commit/7af0b65d5ab9a173b528d6a821d269a79fbabdc6) Thanks [@tanushree-sharma](https://github.com/tanushree-sharma)! - feat: Add LangSmith integration metadata to createAgent and initChatModel
12+
313
## 1.1.34
414

515
### Patch Changes

libs/langchain-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@langchain/core",
3-
"version": "1.1.34",
3+
"version": "1.1.35",
44
"description": "Core LangChain.js abstractions and schemas",
55
"type": "module",
66
"engines": {

libs/langchain/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# langchain
22

3+
## 1.2.36
4+
5+
### Patch Changes
6+
7+
- [#10489](https://github.com/langchain-ai/langchainjs/pull/10489) [`21094f3`](https://github.com/langchain-ai/langchainjs/commit/21094f31d99e30a9c8433072523cb08b8539c1ab) Thanks [@maahir30](https://github.com/maahir30)! - support structured output (providerStrategy) for Google Gemini models in createAgent
8+
9+
- [#10433](https://github.com/langchain-ai/langchainjs/pull/10433) [`7af0b65`](https://github.com/langchain-ai/langchainjs/commit/7af0b65d5ab9a173b528d6a821d269a79fbabdc6) Thanks [@tanushree-sharma](https://github.com/tanushree-sharma)! - feat: Add LangSmith integration metadata to createAgent and initChatModel
10+
11+
- Updated dependencies [[`5dc11b5`](https://github.com/langchain-ai/langchainjs/commit/5dc11b55cccfe35e4dad910a33e904cf49b3088a), [`7af0b65`](https://github.com/langchain-ai/langchainjs/commit/7af0b65d5ab9a173b528d6a821d269a79fbabdc6)]:
12+
- @langchain/core@1.1.35
13+
314
## 1.2.35
415

516
### Patch Changes

libs/langchain/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "langchain",
3-
"version": "1.2.35",
3+
"version": "1.2.36",
44
"description": "Typescript bindings for langchain",
55
"author": "LangChain",
66
"license": "MIT",

libs/providers/langchain-google/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @langchain/google
22

3+
## 0.1.8
4+
5+
### Patch Changes
6+
7+
- [#10471](https://github.com/langchain-ai/langchainjs/pull/10471) [`8f15dd1`](https://github.com/langchain-ai/langchainjs/commit/8f15dd13256647f6c0f40abf6ee7ed949492bd4f) Thanks [@pawel-twardziak](https://github.com/pawel-twardziak)! - fix(@langchain/google): pass abort signal to fetch in non-streaming invoke
8+
- Added `signal: options.signal` to the `Request` constructor in `_generate`'s non-streaming branch, mirroring what `_streamResponseChunks` already does
9+
310
## 0.1.7
411

512
### Patch Changes

libs/providers/langchain-google/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@langchain/google",
3-
"version": "0.1.7",
3+
"version": "0.1.8",
44
"description": "Google integrations for LangChain.js",
55
"author": "LangChain",
66
"license": "MIT",

0 commit comments

Comments
 (0)