-
Notifications
You must be signed in to change notification settings - Fork 949
1.1 release notes #1555
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
1.1 release notes #1555
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,68 @@ | ||||||
| --- | ||||||
| title: What's new in v1.1 | ||||||
| sidebarTitle: v1.1 Release notes | ||||||
| --- | ||||||
|
|
||||||
| **LangChain v1.1 focuses on improving agent reliability and flexibility.** This release introduces model profiles, new middleware capabilities, and enhanced type safety for custom middleware implementations. | ||||||
|
|
||||||
| To upgrade, | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
|
||||||
| <CodeGroup> | ||||||
| ```bash npm | ||||||
| npm install @langchain/core @langchain/langgraph | ||||||
| ``` | ||||||
| ```bash pnpm | ||||||
| pnpm add @langchain/core @langchain/langgraph | ||||||
| ``` | ||||||
| ```bash yarn | ||||||
| yarn add @langchain/core @langchain/langgraph | ||||||
| ``` | ||||||
| ```bash bun | ||||||
| bun add @langchain/core @langchain/langgraph | ||||||
| ``` | ||||||
| </CodeGroup> | ||||||
|
|
||||||
| ## Model profiles | ||||||
|
|
||||||
| Model profiles allow you to configure how agents interact with specific models by defining capabilities, context handling, and structured output behavior. | ||||||
|
|
||||||
| ### Summarization middleware | ||||||
|
|
||||||
| ### Structured output for agents | ||||||
|
|
||||||
| ## Model retry middleware | ||||||
|
|
||||||
| ## Misc | ||||||
|
|
||||||
| ### New middleware docs | ||||||
|
|
||||||
| ### Type safety improvements for custom middlewares | ||||||
|
|
||||||
| ## Reporting issues | ||||||
|
|
||||||
| Please report any issues discovered with v1.1 on [GitHub](https://github.com/langchain-ai/langchainjs/issues) using the [`'v1.1'` label](https://github.com/langchain-ai/langchainjs/issues?q=state%3Aopen%20label%3Av1.1). | ||||||
|
|
||||||
| ## Additional resources | ||||||
|
|
||||||
| <CardGroup cols={3}> | ||||||
| <Card title="Agents" icon="robot" href="/oss/langchain/agents" arrow> | ||||||
| Learn about building agents with LangChain | ||||||
| </Card> | ||||||
| <Card title="Middleware" icon="layer-group" href="/oss/langchain/middleware/overview" arrow> | ||||||
| Deep dive into middleware concepts | ||||||
| </Card> | ||||||
| <Card title="Tools" icon="wrench" href="/oss/langchain/tools" arrow> | ||||||
| Working with tools in agents | ||||||
| </Card> | ||||||
| <Card title="Migration guide" icon="arrow-right-arrow-left" href="/oss/migrate/langchain-v1" arrow> | ||||||
| How to migrate to LangChain v1 | ||||||
| </Card> | ||||||
| <Card title="GitHub" icon="github" href="https://github.com/langchain-ai/langchainjs"> | ||||||
| Report issues or contribute | ||||||
| </Card> | ||||||
| </CardGroup> | ||||||
|
|
||||||
| ## See also | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. combine with additional resources section? |
||||||
|
|
||||||
| - [Versioning](/oss/javascript/versioning) - Understanding version numbers | ||||||
| - [Release policy](/oss/javascript/release-policy) - Detailed release policies | ||||||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,62 @@ | ||||||
| --- | ||||||
| title: What's new in v1.1 | ||||||
| sidebarTitle: v1.1 Release notes | ||||||
| --- | ||||||
|
|
||||||
| **LangChain v1.1 focuses on improving agent reliability and flexibility.** This release introduces model profiles, new middleware capabilities, and enhanced type safety for custom middleware implementations. | ||||||
|
|
||||||
| To upgrade, | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think we need to spell out installation instructions for every minor release. |
||||||
|
|
||||||
| <CodeGroup> | ||||||
| ```bash pip | ||||||
| pip install -U langchain | ||||||
| ``` | ||||||
| ```bash uv | ||||||
| uv add langchain | ||||||
| ``` | ||||||
| </CodeGroup> | ||||||
|
|
||||||
| ## Model profiles | ||||||
|
|
||||||
| Model profiles allow you to configure how agents interact with specific models by defining capabilities, context handling, and structured output behavior. | ||||||
|
|
||||||
| ### Summarization middleware | ||||||
|
|
||||||
| ### Structured output for agents | ||||||
|
|
||||||
| ## Model retry middleware | ||||||
|
|
||||||
| ## Misc | ||||||
|
|
||||||
| ### New middleware docs | ||||||
|
|
||||||
| ### Type safety improvements for custom middlewares | ||||||
|
|
||||||
| ## Reporting issues | ||||||
|
|
||||||
| Please report any issues discovered with v1.1 on [GitHub](https://github.com/langchain-ai/langchain/issues) using the [`'v1.1'` label](https://github.com/langchain-ai/langchain/issues?q=state%3Aopen%20label%3Av1.1). | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. personal opinion / feeling but I don't feel the need to ask people to label all their issues with the corresponding version— don't we ask for this information in the issue template? |
||||||
|
|
||||||
| ## Additional resources | ||||||
|
|
||||||
| <CardGroup cols={3}> | ||||||
| <Card title="Agents" icon="robot" href="/oss/langchain/agents" arrow> | ||||||
| Learn about building agents with LangChain | ||||||
| </Card> | ||||||
| <Card title="Middleware" icon="layer-group" href="/oss/langchain/middleware/overview" arrow> | ||||||
| Deep dive into middleware concepts | ||||||
| </Card> | ||||||
| <Card title="Tools" icon="wrench" href="/oss/langchain/tools" arrow> | ||||||
| Working with tools in agents | ||||||
| </Card> | ||||||
| <Card title="Migration guide" icon="arrow-right-arrow-left" href="/oss/migrate/langchain-v1" arrow> | ||||||
| How to migrate to LangChain v1 | ||||||
| </Card> | ||||||
| <Card title="GitHub" icon="github" href="https://github.com/langchain-ai/langchain"> | ||||||
| Report issues or contribute | ||||||
| </Card> | ||||||
| </CardGroup> | ||||||
|
|
||||||
| ## See also | ||||||
|
|
||||||
| - [Versioning](/oss/python/versioning) - Understanding version numbers | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. maybe these should be combined w the "Additional resources" section? |
||||||
| - [Release policy](/oss/python/release-policy) - Detailed release policies | ||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's order this newest to oldest
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also, can you remove the /releases/langchain-v1 from the langchain tab?
i think the release notes should live in the Reference tab and we can keep the migration guide on the main tab