Skip to content

Commit cdc22c5

Browse files
chore: version packages (#10041)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 35e8019 commit cdc22c5

File tree

35 files changed

+196
-72
lines changed

35 files changed

+196
-72
lines changed

.changeset/fix-google-reasoning-effort-case.md

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

.changeset/odd-mugs-tease.md

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

.changeset/rich-games-eat.md

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

.changeset/std-exceptions-namespace-branding.md

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

.changeset/tasty-penguins-rest.md

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

libs/langchain-classic/CHANGELOG.md

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

3+
## 1.0.18
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`05396f7`](https://github.com/langchain-ai/langchainjs/commit/05396f7ce0a91c49a3bae4bbcd3dbdd6cbd18089), [`5a6f26b`](https://github.com/langchain-ai/langchainjs/commit/5a6f26bbaed80195dc538c538b96219a8b03f38f), [`7be50a7`](https://github.com/langchain-ai/langchainjs/commit/7be50a7014d7622e0ab8d303dfc9c633ebc96333)]:
8+
- @langchain/openai@1.2.8
9+
310
## 1.0.17
411

512
### Patch Changes

libs/langchain-classic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@langchain/classic",
3-
"version": "1.0.17",
3+
"version": "1.0.18",
44
"description": "Old abstractions from LangChain.js",
55
"author": "LangChain",
66
"license": "MIT",

libs/langchain-community/CHANGELOG.md

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

3+
## 1.1.16
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`27186c5`](https://github.com/langchain-ai/langchainjs/commit/27186c54884cfe7c2522fa50b42c3ca0ccaefdba), [`05396f7`](https://github.com/langchain-ai/langchainjs/commit/05396f7ce0a91c49a3bae4bbcd3dbdd6cbd18089), [`5a6f26b`](https://github.com/langchain-ai/langchainjs/commit/5a6f26bbaed80195dc538c538b96219a8b03f38f), [`7be50a7`](https://github.com/langchain-ai/langchainjs/commit/7be50a7014d7622e0ab8d303dfc9c633ebc96333)]:
8+
- @langchain/core@1.1.25
9+
- @langchain/openai@1.2.8
10+
- @langchain/classic@1.0.18
11+
312
## 1.1.15
413

514
### Patch Changes

libs/langchain-community/package.json

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

libs/langchain-core/CHANGELOG.md

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

3+
## 1.1.25
4+
5+
### Patch Changes
6+
7+
- [#10002](https://github.com/langchain-ai/langchainjs/pull/10002) [`27186c5`](https://github.com/langchain-ai/langchainjs/commit/27186c54884cfe7c2522fa50b42c3ca0ccaefdba) Thanks [@aditya-gg04](https://github.com/aditya-gg04)! - fix(core): support reasoning/thinking blocks in StringOutputParser
8+
9+
- [#10077](https://github.com/langchain-ai/langchainjs/pull/10077) [`05396f7`](https://github.com/langchain-ai/langchainjs/commit/05396f7ce0a91c49a3bae4bbcd3dbdd6cbd18089) Thanks [@christian-bromann](https://github.com/christian-bromann)! - feat(core): add ContextOverflowError, raise in anthropic and openai
10+
11+
- [#10081](https://github.com/langchain-ai/langchainjs/pull/10081) [`5a6f26b`](https://github.com/langchain-ai/langchainjs/commit/5a6f26bbaed80195dc538c538b96219a8b03f38f) Thanks [@hntrl](https://github.com/hntrl)! - feat(core): add namespace-based symbol branding for error class hierarchies
12+
13+
Introduces `createNamespace` utility for hierarchical symbol-based branding of class hierarchies.
14+
All LangChain error classes now use this pattern, replacing hand-rolled duck-type `isInstance` checks
15+
with reliable cross-realm `Symbol.for`-based identity.
16+
- New `LangChainError` base class that all LangChain errors extend
17+
- New `createNamespace` / `Namespace` API in `@langchain/core/utils/namespace`
18+
- Refactored `ModelAbortError`, `ContextOverflowError` to use namespace branding
19+
- Added `ContextOverflowError.fromError()` static factory method
20+
- Deprecated `addLangChainErrorFields` in favor of `LangChainError` subclasses
21+
- Migrated Google provider errors (`GoogleError`, `ConfigurationError`, etc.) to namespace branding
22+
- Updated Anthropic and OpenAI providers to use `ContextOverflowError.fromError()`
23+
324
## 1.1.24
425

526
### Patch Changes

0 commit comments

Comments
 (0)