Skip to content

Commit 33532a9

Browse files
chore: version packages
1 parent 005d4a1 commit 33532a9

File tree

11 files changed

+34
-33
lines changed

11 files changed

+34
-33
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.

.changeset/tough-facts-cough.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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
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+
10+
- [#10493](https://github.com/langchain-ai/langchainjs/pull/10493) [`63b7268`](https://github.com/langchain-ai/langchainjs/commit/63b72689a1f245037aaa7d910ea4b881ead84856) Thanks [@afirstenberg](https://github.com/afirstenberg)! - Undo regression introduced in [#10397](https://github.com/langchain-ai/langchainjs/issues/10397) in legacy content processing path.
11+
Fixes issues with a false duplicate functionCall sent in response ([#10474](https://github.com/langchain-ai/langchainjs/issues/10474)).
12+
313
## 0.1.7
414

515
### Patch Changes

0 commit comments

Comments
 (0)