Heads up This site is currently under heavy development.
Subscribe Get it delivered — the daily firehose, filtered to the tools you run, plus the documentation changes vendors never announce. Compare plans →

The AI Toolchain — issue -368, March 31, 2025

THE AI TOOLCHAIN NO. -368
Tail
THE DAILY RELEASE FIREHOSE
PUBLISHED MARCH 31, 2025 · EVERY WEEKDAY
EDITIONS tail grep head diff uniq

The daily firehose — everything the toolchain shipped today, already filtered.

// HOW THIS ISSUE IS MADE

We read every release from the 174 tools on our watchlist at the source — GitHub and GitLab release notes, vendor release pages and changelogs, project blogs and feeds, vendor press releases, and the source code behind the tag. Bug-fix-only releases and non-product newsroom noise are dropped; what's left is summarized down to the new capability, how to try it, and any screenshots or videos the release itself published. Every entry links to the sources it was built from.

VIEW
ISSUE VIEW full issue
Do you prefer this view?
$ tct list   # 36 tools matched
AI & LLM Tooling
◆  AI Agent Frameworks

Agno (formerly Phidata)

Sources Release notes → v1.2.5 13 RELEASES · 2025-03-03 → 2025-03-27 NOTES STABLE

Agno v1.2.5 adds E2B sandbox code execution, MCP tool filtering, async @tool() decorator, and team-leader tool support.

└──▷ GET THIS VERSION
$ git clone --branch v1.2.5 https://github.com/agno-agi/agno.git
# already have the repo? check out this version:
$ git checkout v1.2.5
└──▷ USE IT
Limit an MCP server's exposed tools to a safe subset — useful when a server offers many tools but you only want the model to access a few.
python
MCPTools(include_tools=['read_file', 'list_dir'])
Equip a team leader with its own tools and cap how many tool calls it can make per run.
python
Team(members=[...], tools=[my_tool], tool_call_limit=5)
Define an async tool with a post-hook to run non-blocking I/O after each tool call.
python
@tool(post_hook=async_post_hook)
async def fetch_data(url: str) -> str:
    async with aiohttp.ClientSession() as session:
        async with session.get(url) as resp:
            return await resp.text()
  • Adds tools and tool_call_limit parameters to Team, allowing the team leader itself to be equipped with tools and act as an agent.
  • Expands MCPTools with include/exclude filtering so you can restrict which tools from an MCP server the model can access.
  • The @tool() decorator now supports async functions, including async pre- and post-hooks.
  • Adds E2BTools to run code inside an E2B Sandbox.
12 more releases in this issue · 2025-03-03 → 2025-03-27
v1.2.4 NOTES STABLE

Agno v1.2.4 makes tool_choice configurable on Teams and adds Teams playground endpoints.

└──▷ GET THIS VERSION
$ git clone --branch v1.2.4 https://github.com/agno-agi/agno.git
# already have the repo? check out this version:
$ git checkout v1.2.4
  • Adds tool_choice configuration support to Teams, enabling control over tool selection behavior at the team level.
  • Adds Teams playground endpoints for interacting with multi-agent teams via the playground interface.
v1.2.2 NOTES STABLE

Agno v1.2.2 adds tool call visibility for Teams.

└──▷ GET THIS VERSION
$ git clone --branch v1.2.2 https://github.com/agno-agi/agno.git
# already have the repo? check out this version:
$ git checkout v1.2.2
  • Adds support for showing tool calls in Teams, making agent collaboration steps visible during multi-agent workflows.
v1.2.0 NOTES STABLE

Agno v1.2.0 adds Financial Datasets and Docker tool integrations, plus reasoning for Teams and simplified MCPTools creation.

└──▷ GET THIS VERSION
$ git clone --branch v1.2.0 https://github.com/agno-agi/agno.git
# already have the repo? check out this version:
$ git checkout v1.2.0
  • Simplifies creation of MCPTools for connecting agents to external MCP servers.
  • Adds FinancialDatasetsTools for accessing data from financialdatasets.ai.
  • Adds Docker tools for managing local Docker environments from within an agent.
  • Enables reasoning support for Teams.
v1.1.16 NOTES STABLE

Agno v1.1.16 adds async Qdrant VectorDB support and a Claude Think Tool integration.

└──▷ GET THIS VERSION
$ git clone --branch v1.1.16 https://github.com/agno-agi/agno.git
# already have the repo? check out this version:
$ git checkout v1.1.16
  • Adds async support for Qdrant VectorDB, enabling non-blocking vector database operations for improved performance and efficiency.
  • Introduces the Claude Think Tool, implementing Anthropic's 'think tool' pattern to give Claude agents an explicit reasoning step before responding.
v1.1.15 NOTES STABLE

Agno v1.1.15 adds function result caching for 9 tool classes and improves tool-call display in print_response.

└──▷ GET THIS VERSION
$ git clone --branch v1.1.15 https://github.com/agno-agi/agno.git
# already have the repo? check out this version:
$ git checkout v1.1.15
  • Adds result caching to DuckDuckGoTools, ExaTools, FirecrawlTools, GoogleSearchtools, HackernewsTools, NewspaperTools, Newspaper4kTools, Websitetools, and YFinanceTools to speed up iteration, avoid rate limits, and reduce costs during agent testing.
  • Tool calls are now rendered in a separate panel from the response panel when using print_response and aprint_response, including when combined with response_model.
v1.1.14 NOTES STABLE

Agno v1.1.14 ships Teams 2.0 with three coordination modes, LiteLLM support, and a new use_json_mode parameter.

└──▷ GET THIS VERSION
$ git clone --branch v1.1.14 https://github.com/agno-agi/agno.git
# already have the repo? check out this version:
$ git checkout v1.1.14
└──▷ USE IT
Stand up a routing team that directs queries to specialised member agents and returns structured output.
python
from agno.team import Team
from agno.agent import Agent

research_agent = Agent(name='Researcher', ...)
writer_agent = Agent(name='Writer', ...)

team = Team(
    mode='route',
    members=[research_agent, writer_agent],
    response_model=MyOutputModel,
    debug_mode=True,
)
team.print_response('Summarise the latest AI papers')
Force JSON-mode output from an agent when the target model does not support native structured output.
python
from agno.agent import Agent
from pydantic import BaseModel

class Report(BaseModel):
    title: str
    summary: str

agent = Agent(
    response_model=Report,
    use_json_mode=True,
)
agent.print_response('Generate a threat report')
  • Adds Team class supporting three modes — 'collaborate', 'coordinate', and 'route' — replacing the old Agent(team=[]) pattern with a dedicated first-class teams implementation.
  • Adds use_json_mode: bool = False parameter to Agent and Team; when combined with response_model=YourModel, forces JSON-mode output instead of the new default of native structured output — making response_model the only setting required for structured output.
  • Adds debug_mode=True on Agent/Team and team.print_response(...) to surface revamped debug logs for both agents and teams.
  • Adds LiteLLM support as a native model implementation and via the existing OpenAILike interface.
  • Enables WebsiteTools to update combined knowledgebases alongside standard knowledgebases.
+2 moreshow less
  • Adds agentic shared context between team members and sharing of individual team member responses across the team.
  • Supports passing images, audio, and video to member agents in team workflows, and enables structured output returns from member agents in 'route' mode.
└──▷ BREAKING ON UPGRADE
  • !Agent.structured_output is replaced by Agent.use_json_mode; the old parameter is deprecated and will be removed in a future major version.
  • !Agent.team is deprecated with the release of the new Team implementation and will be removed in a future major version; migrate to the Team class.
v.1.1.13 NOTES STABLE

Agno v1.1.13 adds OpenAI File Search, web/document citations, and Cohere Command A support

└──▷ GET THIS VERSION
$ git clone --branch v.1.1.13 https://github.com/agno-agi/agno.git
# already have the repo? check out this version:
$ git checkout v.1.1.13
  • Adds support for OpenAI's built-in File Search tool in OpenAIResponses, automatically uploading File objects attached to agent prompts.
  • Adds extraction of URL citations from OpenAI's built-in Web Search tool responses via OpenAIResponses.
  • Adds extraction of document citations from Claude responses when File objects are attached to agent prompts via Anthropic.
  • Adds support and examples for Cohere's new flagship model Command A.
v1.1.12 NOTES STABLE

Agno v1.1.12 adds improved citation capture and storage with Gemini and Perplexity integration.

└──▷ GET THIS VERSION
$ git clone --branch v1.1.12 https://github.com/agno-agi/agno.git
# already have the repo? check out this version:
$ git checkout v1.1.12
  • Improves support for capturing, displaying, and storing citations from models, with integration for Gemini and Perplexity.
v1.1.11 NOTES STABLE

Agno v1.1.11 adds OpenAI Responses API support with web search, an OpenWeather tool, and Reddit reply actions.

└──▷ GET THIS VERSION
$ git clone --branch v1.1.11 https://github.com/agno-agi/agno.git
# already have the repo? check out this version:
$ git checkout v1.1.11
  • Adds a new model implementation for OpenAI's Responses API, including support for the built-in websearch tool.
  • Adds an OpenWeather API tool for retrieving real-time weather information.
  • Adds post reply and comment reply actions to the Reddit tool.
v1.1.10 NOTES STABLE

Agno v1.1.10 adds File prompts, LMStudio provider, AgentQL/Browserbase tools, a custom API tool, and Cohere vision support.

└──▷ GET THIS VERSION
$ git clone --branch v1.1.10 https://github.com/agno-agi/agno.git
# already have the repo? check out this version:
$ git checkout v1.1.10
  • Introduces a new File type that can be added to prompts and passed to model providers (Gemini and Anthropic Claude supported).
  • Adds LMStudio as a model provider.
  • Adds an AgentQL toolkit for connecting agents to websites for scraping and interaction.
  • Adds a Browserbase tool for browser automation.
  • Adds a custom API tool that can call any arbitrary API endpoint.
+1 moreshow less
  • Adds image understanding support for Cohere models (vision).
v1.1.9 NOTES STABLE

Agno v1.1.9 adds IBM WatsonX and DeepInfra model providers plus MCP tool support for agents.

└──▷ GET THIS VERSION
$ git clone --branch v1.1.9 https://github.com/agno-agi/agno.git
# already have the repo? check out this version:
$ git checkout v1.1.9
  • Adds MCPTools class to integrate Model Context Protocol (MCP) servers with Agno agents.
  • Adds IBM WatsonX as a model provider via a new WatsonX integration.
  • Adds DeepInfra as a model provider, including reasoning support for OpenAI-compatible DeepSeek models.
  • Updates knowledgebase, vector DB, and reader interfaces with async support.
v1.1.8 NOTES STABLE

Agno v1.1.8 adds video file upload support in Playground for Gemini models and a base_url property for AzureOpenAI.

└──▷ GET THIS VERSION
$ git clone --branch v1.1.8 https://github.com/agno-agi/agno.git
# already have the repo? check out this version:
$ git checkout v1.1.8
  • Adds base_url property to AzureOpenAI to support non-default Azure endpoint URLs.
  • Enables video file upload in the Playground UI, allowing compatible Gemini models to interpret uploaded video content.
Was this useful?

AutoGPT

Sources Release notes → autogpt-platform-beta-v0.6.1 4 RELEASES · 2025-03-06 → 2025-03-26 NOTES STABLE

AutoGPT Platform beta v0.6.1 adds store listing submissions, agent input block subtypes, and usage-based billing by block execution count.

└──▷ GET THIS VERSION
$ git clone --branch autogpt-platform-beta-v0.6.1 https://github.com/Significant-Gravitas/AutoGPT.git
# already have the repo? check out this version:
$ git checkout autogpt-platform-beta-v0.6.1
  • Adds backend support for store listing submissions, enabling agents to be submitted to the AutoGPT store.
  • Adds agent input block subtypes, allowing finer-grained classification of agent input blocks.
  • Adds capability to charge based on block execution count, enabling usage-based billing tied to individual block runs.
  • Adds an admin agent review table for operators to review and manage agent submissions.
  • Adds onboarding updates to improve the new-user setup flow.
+1 moreshow less
  • Adds a toast notification when an agent execution request fails, surfacing errors directly in the UI.
3 more releases in this issue · 2025-03-06 → 2025-03-26
autogpt-platform-beta-v0.6.0 NOTES STABLE

AutoGPT Platform v0.6.0 adds agent export/import with sub-agent support and a Supabase volume migration.

└──▷ GET THIS VERSION
$ git clone --branch autogpt-platform-beta-v0.6.0 https://github.com/Significant-Gravitas/AutoGPT.git
# already have the repo? check out this version:
$ git checkout autogpt-platform-beta-v0.6.0
  • Adds 'Export agent to file' action, enabling agents to be saved and shared as files.
  • Supports sub-agents in the export/import agent feature, preserving nested agent structures across environments.
  • Makes agent input fields expandable in the UI for easier editing of longer inputs.
  • Improves agent I/O rendering in the UI for clearer run output display.
└──▷ BREAKING ON UPGRADE
  • !The Supabase docker-compose setup is now locked to the repository (no longer loaded as a git submodule), and uses a different database volume location — existing database content will not carry over automatically. To preserve existing data, run cp -r supabase/docker/volumes/db/data db/docker/volumes/db/data inside the autogpt_platform folder before upgrading.
autogpt-platform-beta-v0.5.1 NOTES STABLE

AutoGPT Platform beta v0.5.1 adds one-click email unsubscribe, self-loop list input, and baseline summary processing.

└──▷ GET THIS VERSION
$ git clone --branch autogpt-platform-beta-v0.5.1 https://github.com/Significant-Gravitas/AutoGPT.git
# already have the repo? check out this version:
$ git checkout autogpt-platform-beta-v0.5.1
  • Adds support for undefined self-loop link to list input pin on AddToListBlock, enabling a block to feed its own output back into a list without an explicit loopback connection.
  • Adds one-click unsubscribe functionality for platform emails.
  • Implements baseline summary processing for agent runs.
  • Makes the database configurable with a connection limit and timeout, reducing excessive application logging.
autogpt-platform-beta-v0.5.0 NOTES STABLE

AutoGPT Platform v0.5.0 adds a Smart Decision Maker block, redesigned Agent Library, onboarding flow, and safe URL redirect enforcement for web blocks.

└──▷ GET THIS VERSION
$ git clone --branch autogpt-platform-beta-v0.5.0 https://github.com/Significant-Gravitas/AutoGPT.git
# already have the repo? check out this version:
$ git checkout autogpt-platform-beta-v0.5.0
  • Enables safe URL redirect validation on web requests for blocks, preventing open-redirect abuse at the block execution layer.
  • Adds a Smart Decision Maker block with Anthropic support, tool execution responses, conversation history output, and an agent-loop capability — giving automation builders an LLM-driven branching primitive.
  • Adds low-balance notifications to alert users before credit exhaustion interrupts agent runs.
  • Adds cost indication (credit usage) on agent runs, backed by per-node and per-graph execution cost tracking in the backend.
  • Adds 'Stop' and 'Delete' controls for individual agent runs, and a 'Delete' action for library agents.
+5 moreshow less
  • Integrates Ideogram to auto-generate thumbnail images for newly created agents.
  • Adds GitHub 'list comments' and 'update comment' blocks.
  • Adds an onboarding flow (frontend UI + backend) to guide new users through the platform.
  • Replaces the Pyro RPC layer with a FastAPI-based HTTP RPC for microservice communication.
  • Redesigns the Agent Library (v2) with improved status visibility and run output display.
Was this useful?

CrewAI

Sources Release notes → 0.108.0 2 RELEASES · 2025-03-09 → 2025-03-17 NOTES STABLE

Framework for orchestrating role-playing, autonomous AI agents. By fostering collaborative intelligence, CrewAI empowers agents to work together seamlessly, tackling complex tasks.

CrewAI 0.108.0 adds agent fingerprints, richer event listener visualization, and improved LLM streaming event handling.

└──▷ GET THIS VERSION
$ git clone --branch 0.108.0 https://github.com/crewAIInc/crewAI.git
# already have the repo? check out this version:
$ git checkout 0.108.0
  • Adds fingerprints to agents/tasks for unique identity tracking across runs.
  • Enhances LLM streaming response handling with an improved event system for real-time observability.
  • Enriches the event listener with rich visualization and improved logging output.
  • Includes model_name in relevant model representations for better introspection.
1 more release in this issue · 2025-03-09 → 2025-03-17
0.105.0 NOTES STABLE

CrewAI 0.105.0 adds Flow state export, an event emitter for LLM observability, multi-router support, and Python 3.10 compatibility.

└──▷ GET THIS VERSION
$ git clone --branch 0.105.0 https://github.com/crewAIInc/crewAI.git
# already have the repo? check out this version:
$ git checkout 0.105.0
  • Adds Flow state export and improved state utilities for inspecting and persisting Flow execution state.
  • Introduces an event emitter for observability, enabling tracking of LLM calls and agent events.
  • Supports multiple router calls within a single Flow, enabling more complex routing logic.
  • Adds support for Python 3.10.
  • Adds ChatOllama integration via langchain_ollama for local LLM usage.
+3 moreshow less
  • Adds context window size support for the o3-mini model.
  • Enhances agent knowledge setup with an optional crew-level embedder configuration.
  • Adds QdrantVectorSearchTool guide and event listener usage documentation.
Was this useful?

Stanford NLP DSPy

Sources Release notes → 2.6.16 8 RELEASES · 2025-03-03 → 2025-03-28 NOTES STABLE

DSPy 2.6.16 adds usage tracking and SIMBA trial logs.

└──▷ GET THIS VERSION
$ git clone --branch 2.6.16 https://github.com/stanfordnlp/dspy.git
# already have the repo? check out this version:
$ git checkout 2.6.16
  • Adds trial logs to the SIMBA optimizer, surfacing per-trial diagnostic information during optimization runs.
  • Adds usage tracking to monitor LLM call statistics across DSPy programs.
7 more releases in this issue · 2025-03-03 → 2025-03-28
2.6.15 NOTES STABLE

DSPy 2.6.15 ships the experimental SIMBA optimizer, more customizable ChainOfThought, and multi-output ProgramOfThought.

└──▷ GET THIS VERSION
$ git clone --branch 2.6.15 https://github.com/stanfordnlp/dspy.git
# already have the repo? check out this version:
$ git checkout 2.6.15
  • Adds experimental dspy.SIMBA optimizer with an accompanying Tool-Use Tutorial.
  • Allows dspy.ChainOfThought to be more customizable.
  • Allows dspy.ProgramOfThought to accept multiple output fields.
2.6.14 NOTES STABLE

DSPy 2.6.14 adds context-manager protocol support to PythonInterpreter and a new construct_result_table method on Evaluate.

└──▷ GET THIS VERSION
$ git clone --branch 2.6.14 https://github.com/stanfordnlp/dspy.git
# already have the repo? check out this version:
$ git checkout 2.6.14
└──▷ USE IT
Use PythonInterpreter as a context manager to ensure proper cleanup after sandboxed code execution.
python
from dspy.predict.python_interpreter import PythonInterpreter

with PythonInterpreter() as interpreter:
    result = interpreter("output = 2 + 2")
    print(result)
  • Adds context-manager protocol (with statement) support to PythonInterpreter, enabling cleaner resource management when executing sandboxed Python code.
  • Introduces construct_result_table method on the Evaluate class, exposing structured result tables from evaluation runs.
2.6.13 NOTES STABLE

DSPy 2.6.13 adds image support to JSONAdapter, Pydantic field constraints in adapters, and extensible BaseLM.

└──▷ GET THIS VERSION
$ git clone --branch 2.6.13 https://github.com/stanfordnlp/dspy.git
# already have the repo? check out this version:
$ git checkout 2.6.13
└──▷ USE IT
Send an image input through the JSON adapter for multimodal LM tasks.
python
import dspy

lm = dspy.LM('openai/gpt-4o')
dspy.configure(lm=lm, adapter=dspy.JSONAdapter())

class DescribeImage(dspy.Signature):
    image: dspy.Image = dspy.InputField()
    description: str = dspy.OutputField()

predictor = dspy.Predict(DescribeImage)
result = predictor(image=dspy.Image.from_url('https://example.com/chart.png'))
print(result.description)
  • Adds image support to dspy.JSONAdapter, enabling multimodal inputs through the JSON adapter alongside the existing chat adapter.
  • Supports Pydantic field constraints in DSPy adapters, allowing typed output fields to carry validation rules (e.g. min/max length, numeric bounds).
  • Makes dspy.BaseLM extensible, allowing custom LM subclasses to override and extend base behavior.
  • Adds compile and get_params methods to the Teleprompter base class, standardizing the optimizer interface.
  • Allows dspy.ChatAdapter parser to accept field headers and content on the same line, broadening the range of parseable model outputs.
+1 moreshow less
  • Improves dspy.BestOfN with enhanced error handling.
2.6.12 NOTES STABLE

DSPy 2.6.12 adds callback_metadata to evaluate and simplifies dspy.LM

└──▷ GET THIS VERSION
$ git clone --branch 2.6.12 https://github.com/stanfordnlp/dspy.git
# already have the repo? check out this version:
$ git checkout 2.6.12
  • Adds callback_metadata parameter to the evaluate function, enabling richer context to be passed through evaluation callbacks.
  • Simplifies the dspy.LM interface.
2.6.11 NOTES STABLE

DSPy 2.6.11 adds Python 3.13 support and timeout-based straggler resubmission in ParallelExecutor.

└──▷ GET THIS VERSION
$ git clone --branch 2.6.11 https://github.com/stanfordnlp/dspy.git
# already have the repo? check out this version:
$ git checkout 2.6.11
  • Adds timeout-based straggler resubmission in ParallelExecutor, preventing slow tasks from blocking parallel evaluation runs.
  • Supports Python 3.13, unblocking use of DSPy on the latest Python release.
  • Reduces memory usage at import dspy startup.
2.6.10 NOTES STABLE

DSPy 2.6.10 adds support for non-image MIME types in image_url content fields.

└──▷ GET THIS VERSION
$ git clone --branch 2.6.10 https://github.com/stanfordnlp/dspy.git
# already have the repo? check out this version:
$ git checkout 2.6.10
  • Supports non-image MIME types in image_url content, enabling multimodal inputs beyond images.
2.6.9 NOTES STABLE

DSPy 2.6.9 adds multi-turn history support, an evaluate callback, and a provide_traceback option for MIPRO.

└──▷ GET THIS VERSION
$ git clone --branch 2.6.9 https://github.com/stanfordnlp/dspy.git
# already have the repo? check out this version:
$ git checkout 2.6.9
  • Allows passing provide_traceback to MIPRO optimizer runs to surface full tracebacks during optimization.
  • Adds evaluate callback support, enabling hooks into the evaluation lifecycle.
  • Supports multi-turn conversation history in DSPy modules.
Was this useful?

deepset Haystack

Sources Release notes → v2.11.0 NOTES

Haystack v2.11.0 adds async run to all core chat generators and retrievers, a new MSGToDocument component, and ONNX/OpenVINO backend support for Sentence Transformers.

└──▷ GET THIS VERSION
$ git clone --branch v2.11.0 https://github.com/deepset-ai/haystack.git
# already have the repo? check out this version:
$ git checkout v2.11.0
└──▷ USE IT
Convert an Outlook email (with attachments) into Haystack Documents for ingestion into a pipeline.
python
from haystack.components.converters import MSGToDocument

converter = MSGToDocument()
result = converter.run(sources=["email.msg"])
print(result["documents"][0].meta)  # sender, recipients, subject, etc.
print(result["bytestream_outputs"])  # attachments as ByteStream objects
Disable connection type validation when prototyping a pipeline that mixes Optional and non-Optional socket types.
python
from haystack import Pipeline

pipeline = Pipeline(connection_type_validation=False)
# Now connect Optional[str] -> str without a TypeError
pipeline.connect("component_a.optional_output", "component_b.str_input")
Run an async pipeline using OpenAIChatGenerator's new run_async method for concurrent throughput.
python
import asyncio
from haystack import AsyncPipeline
from haystack.components.generators.chat import OpenAIChatGenerator
from haystack.dataclasses import ChatMessage

pipeline = AsyncPipeline()
pipeline.add_component("llm", OpenAIChatGenerator(model="gpt-4o"))

async def main():
    result = await pipeline.run({"llm": {"messages": [ChatMessage.from_user("Hello")]}})
    print(result)

asyncio.run(main())
  • Adds connection_type_validation parameter to Pipeline.__init__() (set to False to bypass type-checking on pipeline connections, e.g. connecting Optional[str] output to str input).
  • Adds run_async method to OpenAIChatGenerator, AzureOpenAIChatGenerator, HuggingFaceAPIChatGenerator, and HuggingFaceLocalChatGenerator, enabling native async chat completion inside an AsyncPipeline.
  • Adds run_async method to DocumentWriter, delegating to write_documents_async on the backing document store.
  • Adds async support to InMemoryDocumentStore, InMemoryBM25Retriever, and InMemoryEmbeddingRetriever.
  • Adds backend parameter to Sentence Transformers components supporting torch (default), onnx, and openvino inference backends.
+10 moreshow less
  • New MSGToDocument component converts Microsoft Outlook .msg files into Haystack Document objects, extracting sender, recipients, CC, BCC, and subject metadata and exposing attachments as ByteStream objects.
  • Adds store_full_path init variable to XLSXToDocument to control whether the full source file path is stored in document metadata (defaults to False).
  • Exposes a configurable timeout parameter on Pipeline.show and Pipeline.draw methods (default raised to 30 seconds) for the Mermaid rendering server.
  • EvaluationRunResult can now export results as JSON, a pandas DataFrame, or a CSV file.
  • Updates ListJoiner so that list_type is now optional, defaulting to List[Any] to combine any incoming lists without requiring strict type annotation.
  • Haystack now officially supports Python 3.13.
  • Lazy importing reduces import haystack CPU time to 2–5% of its previous cost and cuts per-component import CPU time by ~50%.
  • FileTypeRouter now explicitly classifies .msg files with MIME type application/vnd.ms-outlook.
  • PDFMinerToDocument now detects and reports undecoded CID characters in extracted PDF text, flagging potential quality issues with non-standard fonts.
  • Deserialization now accepts standard typing shorthand without the typing. prefix (e.g., List[str] instead of typing.List[str]).
└──▷ BREAKING ON UPGRADE
  • !The ExtractedTableAnswer dataclass and the dataframe field on the Document dataclass (deprecated in 2.10.0) have been removed; pandas is no longer a required Haystack dependency.
  • !AzureOCRDocumentConverter no longer produces Document objects with a dataframe field; detected tables are now represented as CSV-formatted text in the content field instead.
  • !Python 3.8 is no longer supported.
Was this useful?

LangChain

Sources Release notes → langchain-openai==0.3.11 18 RELEASES · 2025-03-04 → 2025-03-26 NOTES STABLE

langchain-openai 0.3.11 adds streaming token count support in AzureChatOpenAI

└──▷ GET THIS VERSION
$ git clone --branch langchain-openai==0.3.11 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-openai==0.3.11
  • Adds streaming token count support to AzureChatOpenAI, enabling token usage tracking during streamed responses.
17 more releases in this issue · 2025-03-04 → 2025-03-26
langchain-core==0.3.49 NOTES STABLE

langchain-core 0.3.49 adds a token-counting callback handler and stores model names on usage tracking.

└──▷ GET THIS VERSION
$ git clone --branch langchain-core==0.3.49 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-core==0.3.49
  • Adds a token-counting callback handler for tracking token usage across LLM calls (marked beta).
  • Stores model names on the usage callback handler, enabling per-model token attribution.
langchain-openai==0.3.10 NOTES STABLE

langchain-openai 0.3.10 adds multi-turn computer use support and traces strict in structured output kwargs.

└──▷ GET THIS VERSION
$ git clone --branch langchain-openai==0.3.10 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-openai==0.3.10
  • Traces strict in structured_output_kwargs so structured-output strictness mode is now visible in LangChain traces.
  • Supports multi-turn computer use interactions with OpenAI models.
langchain-core==0.3.48 NOTES STABLE

langchain-core 0.3.48 adds tool_call exclusion to filter_messages and greater Mermaid diagram customization.

└──▷ GET THIS VERSION
$ git clone --branch langchain-core==0.3.48 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-core==0.3.48
  • Adds tool_call exclusion support to filter_messages, letting callers strip tool-call messages from a message list.
  • Allows greater customization of Mermaid graph rendering for LangChain runnables.
langchain-deepseek==0.1.3 NOTES STABLE

LangChain DeepSeek 0.1.3 adds strict and method parameters to with_structured_output and fixes OpenRouter reasoning responses.

└──▷ GET THIS VERSION
$ git clone --branch langchain-deepseek==0.1.3 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-deepseek==0.1.3
└──▷ USE IT
Use strict mode with a chosen method when extracting structured output from DeepSeek to enforce schema compliance.
python
from langchain_deepseek import ChatDeepSeek
from pydantic import BaseModel

class Answer(BaseModel):
    result: str
    confidence: float

llm = ChatDeepSeek(model="deepseek-chat")
structured_llm = llm.with_structured_output(Answer, strict=True, method="function_calling")
response = structured_llm.invoke("What is 2+2?")
  • Adds strict and method parameters to with_structured_output for ChatDeepSeek, enabling finer control over structured output validation and extraction method.
langchain-ollama==0.3.0 NOTES STABLE

langchain-ollama 0.3.0 defaults structured output to json_schema, adds DeepSeek reasoning parsing and keep_alive for embeddings.

└──▷ GET THIS VERSION
$ git clone --branch langchain-ollama==0.3.0 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-ollama==0.3.0
└──▷ USE IT
Restore the previous tool-calling behavior for structured output after upgrading, to avoid breakage in pipelines that depend on function-calling semantics.
python
llm = ChatOllama(model="llama3").with_structured_output(schema, method="function_calling")
Extract chain-of-thought reasoning from a DeepSeek model response, useful for auditing or displaying intermediate thinking steps.
python
llm = ChatOllama(model="deepseek-r1:1.5b", extract_reasoning=True)
result = llm.invoke("What is 3^3?")
print(result.content)
print(result.additional_kwargs["reasoning_content"])
  • Changes the default with_structured_output method to method="json_schema", using Ollama's native structured output feature instead of tool-calling.
  • Adds extract_reasoning=True parameter to ChatOllama to parse reasoning content from DeepSeek models, exposing it via additional_kwargs["reasoning_content"].
  • Adds keep_alive support to the Ollama embeddings integration.
└──▷ BREAKING ON UPGRADE
  • !with_structured_output now defaults to method="json_schema" instead of method="function_calling"; existing code relying on the tool-calling path must explicitly pass method="function_calling" to restore prior behavior.
langchain-xai==0.2.2 NOTES STABLE

langchain-xai 0.2.2 adds strict and method parameters to with_structured_output and a new BaseMessage.text() method.

└──▷ GET THIS VERSION
$ git clone --branch langchain-xai==0.2.2 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-xai==0.2.2
  • Adds strict and method parameters to with_structured_output in the xai integration, giving finer control over structured output behavior.
  • Adds BaseMessage.text() method to core for extracting text content from a message object.
langchain-fireworks==0.2.8 NOTES STABLE

langchain-fireworks 0.2.8 adds strict and method parameters to with_structured_output

└──▷ GET THIS VERSION
$ git clone --branch langchain-fireworks==0.2.8 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-fireworks==0.2.8
  • Adds strict and method parameters to with_structured_output for finer control over structured output parsing with Fireworks models.
langchain-tests==0.3.15 NOTES STABLE

langchain-tests 0.3.15 adds strict and method support in with_structured_output, subclass test extension, and agent loop testing.

└──▷ GET THIS VERSION
$ git clone --branch langchain-tests==0.3.15 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-tests==0.3.15
  • Adds strict and method parameters to with_structured_output across multiple integrations, enabling finer control over structured output behavior.
  • Enforces standards on tool_choice across multiple integrations.
  • Allows subclasses to add additional, non-standard tests in the standard test suite.
  • Adds a standard test for a simple agent loop.
  • Image message tests now skip instead of passing when unsupported, giving more accurate test results.
langchain-core==0.3.46 NOTES STABLE

LangChain Core 0.3.46 adds a utility for approximate token counting.

└──▷ GET THIS VERSION
$ git clone --branch langchain-core==0.3.46 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-core==0.3.46
  • Adds a utility for approximate token counting.
langchain-community==0.3.20 NOTES STABLE

langchain-community 0.3.20 adds FireCrawl extract mode, Jieba link extraction, in-memory audio parsing, and DashScope partial mode.

└──▷ GET THIS VERSION
$ git clone --branch langchain-community==0.3.20 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-community==0.3.20
└──▷ USE IT
Extract structured data from a URL using FireCrawlLoader's new extract mode instead of scraping raw content.
python
from langchain_community.document_loaders import FireCrawlLoader

loader = FireCrawlLoader(url="https://example.com", mode="extract")
docs = loader.load()
Parse audio from in-memory bytes without writing a temporary file to disk.
python
from langchain_community.document_loaders.blob_loaders import Blob
from langchain_community.document_loaders.parsers.audio import FasterWhisperParser

with open("audio.mp3", "rb") as f:
    data = f.read()

blob = Blob.from_data(data, mime_type="audio/mpeg")
parser = FasterWhisperParser()
docs = list(parser.lazy_parse(blob))
  • Adds 'extract' mode to FireCrawlLoader for structured data extraction from web pages.
  • Adds Blob.from_data support for in-memory data across all audio parsers, enabling audio parsing without a file on disk.
  • Adds JiebaLinkExtractor for extracting links from Chinese-language documents.
  • Adds request_id field to the Tongyi model integration to improve request tracking and debugging.
  • Adds ChatPerplexity usage metadata tracking.
+3 moreshow less
  • Supports Partial Mode for text continuation in DashScope models.
  • Removes the system message count limit for ChatTongyi.
  • Supports returning reasoning content for models like QwQ in the DashScope integration.
langchain-text-splitters==0.3.7 NOTES STABLE

langchain-text-splitters 0.3.7 adds JSFrameworkTextSplitter for parsing JavaScript framework code.

└──▷ GET THIS VERSION
$ git clone --branch langchain-text-splitters==0.3.7 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-text-splitters==0.3.7
└──▷ USE IT
Split a JavaScript framework source file into semantically meaningful chunks for embedding or retrieval.
python
from langchain_text_splitters import JSFrameworkTextSplitter

splitter = JSFrameworkTextSplitter()
chunks = splitter.split_text(js_framework_source_code)
for chunk in chunks:
    print(chunk)
  • Adds JSFrameworkTextSplitter class for splitting JavaScript framework code (e.g. React, Vue, Angular components) as a structured unit rather than plain text.
langchain-openai==0.3.9 NOTES STABLE

langchain-openai 0.3.9 adds support for the OpenAI Responses API via use_responses_api init param and automatic routing.

└──▷ GET THIS VERSION
$ git clone --branch langchain-openai==0.3.9 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-openai==0.3.9
└──▷ USE IT
Use a Responses-API-only tool (e.g., web search) to trigger automatic routing without setting use_responses_api explicitly.
python
from langchain_openai import ChatOpenAI

llm = ChatOpenAI(model="gpt-4o-mini")

response = llm.invoke(
    "What was a positive news story from today?",
    tools=[{"type": "web_search_preview"}],
)
print(response.content)
  • Adds use_responses_api=True init param to ChatOpenAI to explicitly route calls through the OpenAI Responses API.
  • Adds automatic routing of ChatOpenAI calls through the Responses API when a Responses-API-specific feature is used, such as the {'type': 'web_search_preview'} tool.
  • Adds structured output support via the OpenAI Responses API in ChatOpenAI.
langchain-anthropic==0.3.10 NOTES STABLE

langchain-anthropic 0.3.10 adds support for Anthropic built-in tools.

└──▷ GET THIS VERSION
$ git clone --branch langchain-anthropic==0.3.10 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-anthropic==0.3.10
  • Adds support for Anthropic built-in tools in the ChatAnthropic integration.
langchain-mistralai==0.2.8 NOTES STABLE

langchain-mistralai 0.2.8 adds model_kwargs support and returns model_name in response metadata.

└──▷ GET THIS VERSION
$ git clone --branch langchain-mistralai==0.2.8 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-mistralai==0.2.8
  • Adds model_kwargs support to pass additional keyword arguments to Mistral models.
  • Returns model_name in response metadata from Mistral chat completions.
langchain-cli==0.0.36 NOTES STABLE

LangChain CLI 0.0.36 adds ChatDeepSeek integration and renames LANGCHAIN_ env vars to LANGSMITH_.

└──▷ GET THIS VERSION
$ git clone --branch langchain-cli==0.0.36 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-cli==0.0.36
  • Renames all LANGCHAIN_ environment variable flags to LANGSMITH_ flags across the library.
  • Adds ChatDeepSeek integration for DeepSeek models.
  • Adds BaseMessage.text() method to the core library.
  • Adds a minimal starter vector store template to the CLI.
└──▷ BREAKING ON UPGRADE
  • !All LANGCHAIN_ environment variable flags are replaced with LANGSMITH_ flags — any working setup that sets LANGCHAIN_* variables will need to rename them to LANGSMITH_* on upgrade.
langchain-community==0.3.19 NOTES STABLE

langchain-community 0.3.19 adds async generation, MMR for OLAP vector stores, Tavily result enrichment, and a Confluence attachment filter.

└──▷ GET THIS VERSION
$ git clone --branch langchain-community==0.3.19 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-community==0.3.19
  • Adds title, score, and raw_content fields to Tavily search results, surfacing richer metadata per result.
  • Adds a filter method to ConfluenceLoader for controlling which attachments are loaded.
  • Implements the MMR (Maximal Marginal Relevance) algorithm for OLAP vector storage, enabling diversity-aware retrieval.
  • Adds an asynchronous generate interface to the community layer.
  • Adds cost data for the anthropic.claude-3-7 model on AWS Bedrock.
+1 moreshow less
  • Makes certain Jira fields optional so the Jira agent works without requiring previously mandatory values.
langchain-anthropic==0.3.9 NOTES STABLE

langchain-anthropic 0.3.9 adds structured output support with thinking enabled and returns model_name in response metadata.

└──▷ GET THIS VERSION
$ git clone --branch langchain-anthropic==0.3.9 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-anthropic==0.3.9
  • Returns model_name in response metadata for Anthropic chat model responses.
  • Supports structured output (.with_structured_output()) when Anthropic extended thinking is enabled.
Was this useful?

LangChain LangGraph

Sources Release notes → cli==0.1.81 29 RELEASES · 2025-03-04 → 2025-03-28 NOTES STABLE

Build resilient agents.

LangGraph CLI 0.1.81 adds ui_config parameter to customize the LangGraph UI via configuration.

└──▷ GET THIS VERSION
$ git clone --branch cli==0.1.81 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout cli==0.1.81
  • Adds ui_config parameter to the LangGraph configuration for customizing the LangGraph UI.
  • Exposes LANGGRAPH_UI_CONFIG Docker environment variable when UI configurations are provided, enabling container-level UI customization.
28 more releases in this issue · 2025-03-04 → 2025-03-28
sdk==0.1.60 NOTES STABLE

LangGraph SDK 0.1.60 adds dictionary-like access to the auth user object — index, check, and iterate over user properties.

└──▷ GET THIS VERSION
$ git clone --branch sdk==0.1.60 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout sdk==0.1.60
└──▷ USE IT
Access, check, and iterate over user properties inside a LangGraph auth handler without calling getattr.
python
from langgraph_sdk.auth import Auth

auth = Auth()

@auth.authenticate
async def authenticate(headers: dict) -> Auth.types.MinimalUserDict:
    # ... token validation ...
    return {"identity": "user-123", "role": "admin"}

@auth.on
async def handle(ctx, value):
    user = ctx.user
    role = user["role"]          # __getitem__
    if "role" in user:           # __contains__
        for key in user:         # __iter__
            print(key, user[key])
  • Adds __getitem__ to the auth user object, enabling dictionary-style property access (e.g., user["sub"]).
  • Adds __contains__ to the auth user object so you can check property existence with the in operator.
  • Adds __iter__ to the auth user object, allowing iteration over all user properties in auth handlers.
cli==0.1.80 NOTES STABLE

LangGraph CLI now reads package.json metadata to auto-detect Yarn, pnpm, or Bun when no lock file is present.

└──▷ GET THIS VERSION
$ git clone --branch cli==0.1.80 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout cli==0.1.80
  • Adds get_pkg_manager_name() helper that reads packageManager or devEngines.packageManager.name from package.json to detect the correct package manager (Yarn, pnpm, Bun, or npm) even when no lock file exists.
sdk==0.1.59 NOTES STABLE

LangGraph SDK 0.1.59 adds per-request custom HTTP headers across all API client methods.

└──▷ GET THIS VERSION
$ git clone --branch sdk==0.1.59 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout sdk==0.1.59
└──▷ USE IT
Pass a correlation or tenant-tracking header on a per-run basis without modifying the global client config.
python
run = await client.runs.create(
    thread_id="<thread_id>",
    assistant_id="<assistant_id>",
    headers={"X-Tenant-ID": "org-42", "X-Request-ID": "req-abc123"}
)
Inject a per-request auth token when streaming a run, e.g. for short-lived credentials that differ from the client's default.
python
async for chunk in client.runs.stream(
    thread_id="<thread_id>",
    assistant_id="<assistant_id>",
    headers={"Authorization": "Bearer <ephemeral_token>"}
):
    print(chunk)
  • Adds an optional headers parameter to all HTTP methods (get, post, put, patch, delete, stream) on HttpClient and SyncHttpClient, merging custom headers with existing request headers.
  • Adds optional headers parameter to all methods on AssistantsClient and SyncAssistantsClient (including get, create, update, delete, search).
  • Adds optional headers parameter to all thread-related methods on ThreadsClient and SyncThreadsClient, including state management, history, and creation.
  • Adds optional headers parameter to all run methods on RunsClient and SyncRunsClient, covering create, stream, wait, and management operations.
  • Adds optional headers parameter to all cron job methods on CronClient and SyncCronClient (create, search, delete).
+1 moreshow less
  • Adds optional headers parameter to all store operations on StoreClient and SyncStoreClient, including item storage, retrieval, and namespace management.
checkpoint==2.0.22 NOTES STABLE

langgraph-checkpoint 2.0.22 adds blob storage for InMemorySaver, upgrades to ormsgpack, and supports custom serialization hooks.

└──▷ GET THIS VERSION
$ git clone --branch checkpoint==2.0.22 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout checkpoint==2.0.22
  • Adds dedicated blob storage system to InMemorySaver for more efficient, lower-memory channel value management via a new blobs store and _load_blobs method.
  • Bumps checkpoint format to LATEST_VERSION = 2, adopted by empty_checkpoint() and create_checkpoint(), to support the new storage layout.
  • Replaces msgpack with ormsgpack in JsonPlusSerializer for faster serialization, including new bytearray support and optimized serialization options.
  • Adds customizable JsonPlusSerializer.__init__ accepting an optional custom unpacking hook, plus _msgpack_ext_hook_to_json for better MessagePack-to-JSON type translation.
0.3.19 NOTES STABLE

LangGraph 0.3.19 adds dependency-aware node scheduling and XXH3-based task ID hashing for faster graph execution.

└──▷ GET THIS VERSION
$ git clone --branch 0.3.19 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout 0.3.19
└──▷ USE IT
Explicitly declare that a callable node accepts the LangChain config, avoiding runtime parameter inspection overhead.
python
from langgraph.utils.runnable import RunnableCallable

def my_node(state, config):
    # config is available here
    return {"result": config["configurable"].get("user_id")}

node = RunnableCallable(my_node, func_accepts_config=True)
Attach a subgraph directly to a PregelNode without wrapping it in a bound runnable — useful when composing graphs programmatically.
python
from langgraph.pregel.read import PregelNode

child_graph = build_child_graph()  # returns a compiled Pregel
node = PregelNode(
    channels=["input"],
    triggers=["input"],
    mapper=None,
    subgraphs=[child_graph],
)
  • Adds dependency-aware node scheduling: only nodes whose trigger channels were updated in the previous step are evaluated, reducing unnecessary work in large graphs.
  • Adds trigger_to_nodes property on Pregel to expose the mapping from channel triggers to dependent nodes.
  • Adds subgraphs parameter on PregelNode to directly specify subgraphs instead of extracting them from a bound runnable.
  • Adds func_accepts_config parameter on RunnableCallable to explicitly control whether a wrapped function receives the LangChain config argument.
  • Switches task ID generation to the XXH3 hash algorithm (via _xxhash_str) for newer checkpoint versions, replacing the slower SHA-1 implementation.
cli==0.1.78 NOTES STABLE

LangGraph CLI dev command gains --studio_url option to connect to custom Studio instances.

└──▷ GET THIS VERSION
$ git clone --branch cli==0.1.78 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout cli==0.1.78
└──▷ TRY IT
Point the local dev server at a self-hosted or staging LangGraph Studio instance instead of the default smith.langchain.com.
$ langgraph dev --studio_url https://studio.internal.example.com
  • Adds --studio_url option to the dev command, enabling connection to a custom LangGraph Studio instance instead of the default https://smith.langchain.com.
sdk==0.1.58 NOTES STABLE

LangGraph SDK 0.1.58 adds supersteps and graph_id parameters to thread creation for cross-deployment thread copying.

└──▷ GET THIS VERSION
$ git clone --branch sdk==0.1.58 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout sdk==0.1.58
└──▷ USE IT
Copy a thread from one deployment to another by replaying its supersteps at creation time.
python
thread = await client.threads.create(
    supersteps=source_supersteps,
    graph_id="my-graph",
    metadata={"copied_from": source_thread_id}
)
  • Adds supersteps parameter to sync and async ThreadsClient.create(), enabling a sequence of state updates to be applied at thread creation — useful for copying threads between deployments.
  • Adds graph_id parameter to ThreadsClient.create() to associate a new thread with a specific graph at creation time.
0.3.17 NOTES STABLE

LangGraph 0.3.17 adds bulk state update methods for efficient sequential graph state mutations.

└──▷ GET THIS VERSION
$ git clone --branch 0.3.17 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout 0.3.17
└──▷ USE IT
Apply several state patches at once during human-in-the-loop correction instead of calling update_state repeatedly.
python
from langgraph.types import StateUpdate

# graph is a compiled Pregel graph, config identifies the thread
updates = [
    StateUpdate(values={"status": "reviewed"}, as_node="reviewer"),
    StateUpdate(values={"score": 0.95}, as_node="scorer"),
]
graph.bulk_update_state(config, updates)
Same workflow in an async context — use abulk_update_state inside an async agent loop to batch corrections without blocking.
python
from langgraph.types import StateUpdate

updates = [
    StateUpdate(values={"approved": True}, as_node="approver"),
    StateUpdate(values={"notes": "LGTM"}, as_node="annotator"),
]
await graph.abulk_update_state(config, updates)
  • Adds bulk_update_state and abulk_update_state methods to Pregel for applying multiple state updates to a graph in a single sequential operation.
  • Introduces StateUpdate NamedTuple (fields: values, as_node) as a structured type for representing individual state updates passed to bulk operations.
0.3.15 NOTES STABLE

LangGraph 0.3.15 adds is_available() channel introspection and improves Pregel task execution performance.

└──▷ GET THIS VERSION
$ git clone --branch 0.3.15 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout 0.3.15
└──▷ USE IT
Check whether a channel holds a value before reading it, avoiding try/except boilerplate in custom channel logic.
python
if channel.is_available():
    value = channel.get()
  • Adds is_available() method to all channel types (AnyValue, BinaryOperatorAggregate, DynamicBarrierValue, EphemeralValue, LastValue, NamedBarrierValue, Topic, UntrackedValue) for exception-free channel state checks.
  • Changes PregelExecutableTask.triggers type from list[str] to Sequence[str] for more flexible and performant trigger handling.
└──▷ BREAKING ON UPGRADE
  • !The return_exception parameter is removed from read_channel() in langgraph.pregel.io; code passing that argument will break.
0.3.13 NOTES STABLE

LangGraph 0.3.13 adds RemoteGraph visualization support and improves handling of multiple concurrent interrupts.

└──▷ GET THIS VERSION
$ git clone --branch 0.3.13 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout 0.3.13
└──▷ USE IT
Visualize a graph that includes RemoteGraph nodes — now renders correctly instead of being skipped.
python
await compiled_graph.aget_graph(xray=True)
  • Adds support for visualizing RemoteGraph instances in both sync and async graph drawing methods.
  • Enables parallel traversal of subgraphs during async graph visualization via asyncio.gather(), speeding up rendering of complex graphs.
  • Enhances multiple concurrent interrupt handling by collecting and combining them into a single interrupt for cleaner propagation.
checkpoint==2.0.21 NOTES STABLE

LangGraph checkpoint adds EncryptedSerializer and CipherProtocol for at-rest encryption of checkpoint data.

└──▷ GET THIS VERSION
$ git clone --branch checkpoint==2.0.21 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout checkpoint==2.0.21
└──▷ USE IT
Encrypt all checkpoint data at rest using AES — useful when storing sensitive agent state in a shared or cloud-backed checkpointer.
python
from langgraph.checkpoint.serde.encrypted import EncryptedSerializer

# Key can also be supplied via LANGGRAPH_AES_KEY env var
serializer = EncryptedSerializer.from_pycryptodome_aes(key=b"your-32-byte-aes-key-here!!!!!")

# Pass the serializer to your checkpointer of choice
from langgraph.checkpoint.memory import MemorySaver
checkpointer = MemorySaver(serde=serializer)
Implement a custom cipher (e.g., a KMS-backed one) by conforming to CipherProtocol instead of using the built-in AES factory.
python
from langgraph.checkpoint.serde.base import CipherProtocol
from langgraph.checkpoint.serde.encrypted import EncryptedSerializer

class MyKMSCipher(CipherProtocol):
    def encrypt(self, plaintext: bytes) -> bytes:
        ...  # call your KMS
    def decrypt(self, ciphertext: bytes) -> bytes:
        ...  # call your KMS

serializer = EncryptedSerializer(cipher=MyKMSCipher())
  • New CipherProtocol interface defines encrypt/decrypt contract for pluggable cipher implementations.
  • New EncryptedSerializer class wraps any underlying serializer (defaults to JsonPlusSerializer) to transparently encrypt and decrypt checkpoint data.
  • Factory method EncryptedSerializer.from_pycryptodome_aes enables AES-encrypted checkpoints via the pycryptodome library with minimal setup.
  • Supports AES key supply via LANGGRAPH_AES_KEY environment variable or direct key passing, and is backward-compatible with existing unencrypted checkpoint data.
checkpointpostgres==2.0.17 NOTES STABLE

langgraph-checkpoint-postgres 2.0.17 adds TTL support for Postgres store items with automatic background expiry sweeping.

└──▷ GET THIS VERSION
$ git clone --branch checkpointpostgres==2.0.17 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout checkpointpostgres==2.0.17
└──▷ USE IT
Automatically expire agent memory store entries after 60 minutes, with a background sweeper running every 30 seconds.
python
from langgraph.store.postgres import PostgresStore

store = PostgresStore.from_conn_string(
    "postgresql://user:pass@localhost/mydb",
    ttl={"default_ttl": 60, "sweep_interval_minutes": 0.5},
)
store.start_ttl_sweeper()

# ... use store in your LangGraph app ...

store.stop_ttl_sweeper()
Use the async store with TTL in an async LangGraph application, ensuring cleanup on shutdown.
python
from langgraph.store.postgres.aio import AsyncPostgresStore

async with AsyncPostgresStore.from_conn_string(
    "postgresql://user:pass@localhost/mydb",
    ttl={"default_ttl": 120},
) as store:
    await store.start_ttl_sweeper()
    # ... use store in your async LangGraph app ...
    await store.stop_ttl_sweeper()
Manually trigger a TTL sweep on demand, e.g. as part of a scheduled maintenance job.
python
from langgraph.store.postgres import PostgresStore

store = PostgresStore.from_conn_string("postgresql://user:pass@localhost/mydb")
deleted_count = store.sweep_ttl()
print(f"Swept {deleted_count} expired items")
  • Adds ttl parameter to PostgresStore and AsyncPostgresStore constructors to configure Time To Live behavior for store items.
  • Adds start_ttl_sweeper() and stop_ttl_sweeper() methods to manage a background thread/task that automatically deletes expired items.
  • Adds sweep_ttl() method (sync and async) for on-demand manual deletion of expired store items.
  • Supports TTL configuration via from_conn_string() for both sync and async store classes.
  • Adds expires_at and ttl_minutes columns plus an index on expires_at to the store table via new database migrations.
+1 moreshow less
  • Enables TTL refresh on GET and SEARCH operations so item lifetimes can be extended on access.
checkpoint==2.0.20 NOTES STABLE

LangGraph checkpoint 2.0.20 adds configurable TTL sweep intervals for automatic expiry cleanup in stores.

└──▷ GET THIS VERSION
$ git clone --branch checkpoint==2.0.20 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout checkpoint==2.0.20
└──▷ USE IT
Enable background TTL sweeping so expired store entries are deleted automatically every N minutes without manual intervention.
python
from langgraph.store.base import TTLConfig

ttl_config = TTLConfig(
    sweep_interval_minutes=30
)
  • Adds sweep_interval_minutes field to TTLConfig to schedule automatic periodic deletion of expired store items.
cli==0.1.77 NOTES STABLE

LangGraph CLI 0.1.77 adds automatic TTL sweeping via new sweep_interval_minutes config option.

└──▷ GET THIS VERSION
$ git clone --branch cli==0.1.77 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout cli==0.1.77
└──▷ USE IT
Enable automatic TTL sweeping every 10 minutes so expired store entries are cleaned up without manual intervention.
python
ttl_config = TTLConfig(
    sweep_interval_minutes=10
)
  • Adds sweep_interval_minutes to TTLConfig, enabling the store to periodically delete expired items automatically; omitting it preserves the previous no-sweep behavior.
0.3.10 NOTES STABLE

LangGraph 0.3.10 adds env-var recursion control, cached schema coercion, and flexible task return types.

└──▷ GET THIS VERSION
$ git clone --branch 0.3.10 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout 0.3.10
└──▷ TRY IT
Override the default recursion limit for all graphs in a deployment without changing application code — useful in long-chain agentic workflows.
$ export LANGGRAPH_DEFAULT_RECURSION_LIMIT=100
  • New SchemaCoercionMapper class provides cached schema coercion supporting Pydantic v1/v2, nested lists, dicts, tuples, and unions.
  • Configures graph recursion limit via the LANGGRAPH_DEFAULT_RECURSION_LIMIT environment variable (default: 25), removing the need for per-run config.
  • Expands PregelTask.result field to accept Any type, enabling flexible non-dict return values from tasks.
└──▷ BREAKING ON UPGRADE
  • !The require_at_least_one_of parameter is removed from ChannelWrite; code that passes this parameter will break on upgrade.
sdk==0.1.57 NOTES STABLE

LangGraph SDK adds stream_mode filtering and cancel_on_disconnect to join_stream for precise run output control.

└──▷ GET THIS VERSION
$ git clone --branch sdk==0.1.57 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout sdk==0.1.57
└──▷ USE IT
Filter a joined run stream to only receive graph state values and debug events, reducing noise in long-running pipelines.
python
async for chunk in client.runs.join_stream(thread_id, run_id, stream_mode=["values", "debug"]):
    print(chunk)
Use cancel_on_disconnect in the sync client so a stalled run is automatically cancelled when your process disconnects.
python
for chunk in client.runs.join_stream(thread_id, run_id, stream_mode=["values"], cancel_on_disconnect=True):
    print(chunk)
  • Adds stream_mode parameter to both sync and async RunClient.join_stream, enabling filtering of streamed run output by mode (e.g. "values", "debug").
  • Adds cancel_on_disconnect parameter to the sync RunClient.join_stream, reaching feature parity with the async version.
prebuilt==0.1.3 NOTES STABLE

LangGraph prebuilt 0.1.3 adds Pydantic agent state models and Callable tool support in create_react_agent.

└──▷ GET THIS VERSION
$ git clone --branch prebuilt==0.1.3 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout prebuilt==0.1.3
└──▷ USE IT
Use a plain Python callable as a tool in a ReAct agent — no need to wrap it in a BaseTool subclass.
python
from langgraph.prebuilt import create_react_agent

def lookup_user(user_id: str) -> str:
    """Look up a user by ID."""
    return f"User {user_id}: Alice"

agent = create_react_agent(model, tools=[lookup_user])
Use Pydantic-based agent state for strict type validation and serialization in a ReAct agent.
python
from langgraph.prebuilt import create_react_agent
from langgraph.prebuilt.chat_agent_executor import AgentStatePydantic

agent = create_react_agent(model, tools=[...], state_schema=AgentStatePydantic)
  • Adds AgentStatePydantic and AgentStateWithStructuredResponsePydantic Pydantic models for representing agent state with messages, remaining steps, and structured responses.
  • Enables create_react_agent to accept plain Callable objects as tools, in addition to BaseTool instances.
  • Supports both TypedDict and Pydantic models interchangeably for agent state schema via updated StateSchemaType.
checkpoint==2.0.19 NOTES STABLE

LangGraph Checkpoint 2.0.19 adds TTL configuration support for stores with default TTL values and refresh-on-read control.

└──▷ GET THIS VERSION
$ git clone --branch checkpoint==2.0.19 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout checkpoint==2.0.19
└──▷ USE IT
Set a store-wide default TTL and enable automatic TTL refresh on reads so cached items stay alive while actively used.
python
from langgraph.store.base import TTLConfig

# When constructing your store implementation
store = MyStore(
    ttl_config=TTLConfig(
        default_ttl=60,          # minutes; applied to put/aput when no TTL is specified
        refresh_on_read=True     # extends TTL whenever an item is fetched
    )
)
  • Adds TTLConfig TypedDict to configure Time-To-Live behavior at the store level, including default_ttl (in minutes) and refresh_on_read options.
  • Adds ttl_config property to BaseStore so TTL policy is set once and applied automatically to get, search, put, and their async counterparts.
  • Adds NotProvided sentinel class and NOT_PROVIDED constant to distinguish between explicitly passing ttl=None and omitting a TTL value entirely.
└──▷ BREAKING ON UPGRADE
  • !The refresh_ttl parameter on get, search, and async counterparts now defaults to None (inherit store's TTL configuration) instead of True; stores that relied on TTLs being refreshed on every read will no longer do so unless TTLConfig(refresh_on_read=True) is set or refresh_ttl=True is passed explicitly.
cli==0.1.76 NOTES STABLE

LangGraph CLI 0.1.76 adds TTL configuration for stores, enabling automatic expiration of stored items.

└──▷ GET THIS VERSION
$ git clone --branch cli==0.1.76 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout cli==0.1.76
└──▷ USE IT
Expire store entries after 60 minutes and keep them alive as long as they're being read — useful for session-scoped memory that should age out when users go idle.
python
from langgraph.config import StoreConfig, TTLConfig

store_cfg = StoreConfig(
    ttl=TTLConfig(
        default_ttl=60,        # minutes until a new item expires
        refresh_on_read=True,  # reset the clock whenever the item is read
    )
)
  • Adds TTLConfig TypedDict to control automatic expiration of store items, with per-read TTL refresh and a configurable default TTL in minutes.
  • Extends StoreConfig with an optional ttl field to attach TTL settings to any store definition.
0.3.7 NOTES STABLE

LangGraph 0.3.7 adds Pydantic v1/v2 model validation for graph inputs via input_model support.

└──▷ GET THIS VERSION
$ git clone --branch 0.3.7 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout 0.3.7
└──▷ USE IT
Enforce structured, validated inputs on a compiled state graph by passing a Pydantic model as input_model so invalid payloads are caught before execution begins.
python
from pydantic import BaseModel
from langgraph.graph.state import StateGraph

class MyInput(BaseModel):
    query: str
    max_results: int = 5

builder = StateGraph(MyInput)
# ... add nodes and edges ...
graph = builder.compile()

# Pydantic validation now runs automatically on invoke
result = graph.invoke({"query": "threat actors targeting finance", "max_results": 10})
  • Adds input_model support to Pregel for validating graph inputs against Pydantic v1 and v2 models, using construct/model_construct respectively.
  • Extends get_input_schema to prioritize the input_model when available, surfacing typed input schemas for state graphs.
  • Introduces _pick_mapper function in StateGraph/CompiledStateGraph to correctly handle Pydantic and non-Pydantic schema types during state coercion.
0.3.6 NOTES STABLE

LangGraph 0.3.6 adds input schema inference for conditional edges and a dedicated Branch module with a new from_path factory method.

└──▷ GET THIS VERSION
$ git clone --branch 0.3.6 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout 0.3.6
└──▷ USE IT
Use Branch.from_path to build a conditional edge with automatic input schema inference, so the router function only receives the fields it declares rather than the full graph state.
python
from langgraph.graph.branch import Branch

branch = Branch.from_path(
    path=my_router_fn,
    path_map={"yes": "node_a", "no": "node_b"},
    # input_schema is inferred automatically from my_router_fn's signature
)
graph.add_conditional_edges("entry", branch)
  • Adds input_schema field to Branch for automatic schema inference on conditional edges in StateGraph.
  • New Branch.from_path factory method handles path_map conversion and optionally infers input schema.
  • Extends StateGraph.add_conditional_edges with schema inference, improving type safety for branch routing.
  • Improves type annotations on the task decorator to consistently prioritize async functions in Union types.
checkpointpostgres==2.0.16 NOTES STABLE

LangGraph Postgres checkpoint store exposes PLACEHOLDER and get_distance_operator as public API

└──▷ GET THIS VERSION
$ git clone --branch checkpointpostgres==2.0.16 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout checkpointpostgres==2.0.16
└──▷ USE IT
Reference the now-public PLACEHOLDER constant when building custom batch queries against the Postgres store.
python
from langgraph.store.postgres.base import PLACEHOLDER
  • Exposes PLACEHOLDER constant (formerly _PLACEHOLDER) as a public symbol in langgraph.store.postgres.base for use in external code.
  • Exposes get_distance_operator function (formerly _get_distance_operator) as a public API in langgraph.store.postgres.base for custom vector-distance logic.
└──▷ BREAKING ON UPGRADE
  • !The _PLACEHOLDER constant is renamed to PLACEHOLDER; any code importing _PLACEHOLDER directly will break.
  • !The _get_distance_operator function is renamed to get_distance_operator; any code importing or calling _get_distance_operator directly will break.
checkpoint==2.0.18 NOTES STABLE

LangGraph checkpoint 2.0.18 lets BaseStore operations accept non-string keys with automatic conversion.

└──▷ GET THIS VERSION
$ git clone --branch checkpoint==2.0.18 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout checkpoint==2.0.18
└──▷ USE IT
Use integer or other non-string keys directly in store put/get calls without manually casting to str first.
python
store.put(("namespace",), 42, {"value": "data"})
result = store.get(("namespace",), 42)
  • Enables non-string keys (integers, tuples, etc.) in all BaseStore operations (get, put, delete, and async variants) by automatically converting them to strings before storage.
sdk==0.1.55 NOTES STABLE

LangGraph SDK 0.1.55 adds TTL support to the store API, enabling automatic expiration and refresh of stored items.

└──▷ GET THIS VERSION
$ git clone --branch sdk==0.1.55 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout sdk==0.1.55
└──▷ USE IT
Store a short-lived session token that auto-expires after 30 minutes, so stale credentials are never returned.
python
await client.store.put_item(namespace, key="session:user123", value={"token": "abc"}, ttl=30)
Retrieve a cached item and slide its expiration window forward so active users stay authenticated without a re-login.
python
item = await client.store.get_item(namespace, key="session:user123", refresh_ttl=True)
  • Adds ttl parameter to put_item to set item expiration time (in minutes) in the store API.
  • Adds refresh_ttl parameter to get_item to control whether an item's TTL is refreshed on read.
  • Adds refresh_ttl parameter to search_items to control TTL refresh for items returned by search.
checkpoint==2.0.17 NOTES STABLE

LangGraph Checkpoint 2.0.17 adds TTL support for store items, enabling automatic expiration of stored data.

└──▷ GET THIS VERSION
$ git clone --branch checkpoint==2.0.17 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout checkpoint==2.0.17
  • Adds TTL (time-to-live) support to BaseStore via a supports_ttl flag, letting store implementations enable automatic expiration of stored items.
  • Adds ttl: Optional[float] = None parameter to PutOp to set per-item expiration time in minutes when writing to the store.
  • Adds refresh_ttl: bool = True parameter to GetOp and SearchOp to control whether TTLs are refreshed on retrieval or search.
cli==0.1.75 NOTES STABLE

LangGraph CLI 0.1.75 adds IDE schema validation for langgraph.json and UI component configuration support.

└──▷ GET THIS VERSION
$ git clone --branch cli==0.1.75 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout cli==0.1.75
└──▷ USE IT
Declare UI components for an agent in langgraph.json using the new ui configuration key.
json
{
  "graphs": {
    "my_agent": "./agent.py:graph"
  },
  "ui": {
    "my_agent": "./ui/MyAgentComponent.tsx"
  }
}
  • Adds JSON schema files (schema.json and schema.v0.json) referenceable in langgraph.json to enable IDE autocompletion and validation of LangGraph configuration.
  • Adds a new ui configuration option to the Config class for defining UI components associated with agents.
  • Supports setting the LANGGRAPH_UI environment variable in Docker deployments to configure UI components.
└──▷ BREAKING ON UPGRADE
  • !StoreConfig.embed is renamed to StoreConfig.index — any langgraph.json or code referencing StoreConfig.embed will break on upgrade.
prebuilt==0.1.2 NOTES STABLE

LangGraph prebuilt 0.1.2 lets create_react_agent accept a RunnableSequence as its model argument.

└──▷ GET THIS VERSION
$ git clone --branch prebuilt==0.1.2 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout prebuilt==0.1.2
└──▷ USE IT
Use a prompt-plus-model RunnableSequence as the agent's model so a fixed system prompt is baked into the chain rather than managed separately.
python
from langchain_core.prompts import ChatPromptTemplate
from langchain_openai import ChatOpenAI
from langgraph.prebuilt import create_react_agent

prompt = ChatPromptTemplate.from_messages([
    ("system", "You are a helpful security analyst."),
    ("placeholder", "{messages}"),
])
llm = ChatOpenAI(model="gpt-4o")

# Pass the RunnableSequence (prompt | llm) directly as the model
agent = create_react_agent(model=prompt | llm, tools=[my_tool])
  • Supports passing a RunnableSequence as the model to create_react_agent, enabling prompt-chained pipelines to be used directly as the agent's LLM backbone.
0.3.4 NOTES STABLE

LangGraph 0.3.4 adds config_schema and get_config_jsonschema methods to Pregel, plus a new Pydantic-support utility.

└──▷ GET THIS VERSION
$ git clone --branch 0.3.4 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout 0.3.4
└──▷ USE IT
Expose a graph's configuration schema as JSON Schema for tooling, validation, or documentation.
python
schema = graph.get_config_jsonschema()
print(schema)
Check whether a custom config type will be handled natively by Pydantic before wiring it into a Pregel graph.
python
from langgraph.utils.pydantic import is_supported_by_pydantic
from typing import TypedDict

class MyConfig(TypedDict):
    temperature: float
    max_tokens: int

if is_supported_by_pydantic(MyConfig):
    print("Safe to use as a Pregel config type")
  • Adds config_schema method to Pregel for proper configuration schema generation when the config type is a TypedDict, dataclass, or Pydantic model.
  • Adds get_config_jsonschema method to Pregel for converting config schemas to JSON Schema format, consistent with existing get_input_jsonschema/get_output_jsonschema.
  • Adds is_supported_by_pydantic utility function to detect whether a type (dataclass, Pydantic model, or TypedDict, including Python 3.12+) is directly supported by Pydantic.
Was this useful?

Letta (formerly MemGPT)

Sources Release notes → 0.6.46 3 RELEASES · 2025-03-13 → 2025-03-30 NOTES STABLE

Letta 0.6.46 lets conversation search find messages sent by the agent itself.

└──▷ GET THIS VERSION
$ git clone --branch 0.6.46 https://github.com/letta-ai/letta.git
# already have the repo? check out this version:
$ git checkout 0.6.46
  • Conversation search now finds an agent's own messages, not just user messages.
2 more releases in this issue · 2025-03-13 → 2025-03-30
0.6.41 NOTES STABLE

Letta 0.6.41 bakes the OpenTelemetry collector into the Letta container image.

└──▷ GET THIS VERSION
$ git clone --branch 0.6.41 https://github.com/letta-ai/letta.git
# already have the repo? check out this version:
$ git checkout 0.6.41
  • Bundles the OpenTelemetry (OTEL) collector directly into the Letta Docker image, enabling telemetry collection without a separate sidecar or external collector deployment.
0.6.39 NOTES STABLE

Letta 0.6.39 adds MCP (Model Context Protocol) support and latest Anthropic model tags.

└──▷ GET THIS VERSION
$ git clone --branch 0.6.39 https://github.com/letta-ai/letta.git
# already have the repo? check out this version:
$ git checkout 0.6.39
  • Adds MCP (Model Context Protocol) support, enabling agents to connect to MCP-compatible tool servers.
  • Adds latest-version tags for Anthropic models, allowing configurations to track current Claude releases without pinning exact versions.
Was this useful?

Microsoft AutoGen

Sources Release notes → autogenstudio-v0.4.2 3 RELEASES · 2025-03-04 → 2025-03-17 NOTES STABLE

AutoGen Studio 0.4.2 adds component validation, LLM observability, token streaming, session comparison, Anthropic support, and experimental GitHub auth.

└──▷ GET THIS VERSION
$ git clone --branch autogenstudio-v0.4.2 https://github.com/microsoft/autogen.git
# already have the repo? check out this version:
$ git checkout autogenstudio-v0.4.2
└──▷ HOW TO FIND IT
Enable LLM call observability to inspect every LLMCallEvent during agent runs — useful for debugging prompt/response chains.
📍In AutoGen Studio, click the cog icon (Settings) in the lower-left corner and enable the LLM Call Observability option.
Stream tokens in real time for an agent to get immediate feedback during long LLM responses.
json
{
  "provider": "autogen_agentchat.agents.AssistantAgent",
  "config": {
    "name": "my_agent",
    "stream_model_client": true,
    "model_client": { ... }
  }
}
  • Adds Component Validation API: all component schemas (teams, agents, models, tools, termination conditions) are automatically validated on save in the team builder, surfacing configuration errors early.
  • Adds a Test button for model clients in the team builder UI to verify model configuration by running a live LLM query and displaying results.
  • Adds LLM Call Observability: view all LLMCallEvents in AutoGen Studio via the Settings panel (cog icon, lower left).
  • Adds token streaming in the AGS UI for agents where stream_model_client is set to true, displaying tokens as they are generated.
  • Adds side-by-side Session Comparison in the playground: select multiple sessions and interact with them simultaneously to compare agent outputs.
+4 moreshow less
  • Adds Anthropic model support in AutoGen Studio.
  • Improves Gallery editing UI so teams, agents, models, tools, and termination conditions can be modified independently without requiring raw JSON review; Gallery is now persisted in a database rather than local storage.
  • Adds experimental GitHub authentication support: pass an authentication configuration YAML file to enable user-scoped login and per-user session isolation.
  • Adds experimental local Python code execution tool in AutoGen Studio.
└──▷ BREAKING ON UPGRADE
  • !The Gallery is now persisted in a database rather than local storage, which may require migration of existing locally stored Gallery data.
2 more releases in this issue · 2025-03-04 → 2025-03-17
python-v0.4.9 NOTES STABLE

AutoGen v0.4.9 adds Anthropic & LlamaCpp model clients, task-centric memory, PowerShell execution, and pause/resume for agent teams.

└──▷ GET THIS VERSION
$ git clone --branch python-v0.4.9 https://github.com/microsoft/autogen.git
# already have the repo? check out this version:
$ git checkout python-v0.4.9
└──▷ USE IT
Run a local GGUF model or pull directly from Hugging Face for offline/private inference.
python
from autogen_ext.models.llama_cpp import LlamaCppChatCompletionClient
from autogen_core.models import UserMessage
import asyncio

async def main():
    client = LlamaCppChatCompletionClient(
        repo_id="unsloth/phi-4-GGUF", filename="phi-4-Q2_K_L.gguf",
        n_gpu_layers=-1, seed=1337, n_ctx=5000
    )
    result = await client.create([UserMessage(content="Summarize this report", source="user")])
    print(result)

asyncio.run(main())
Give an AssistantAgent persistent memory so it learns corrections and guidance across conversations.
python
from autogen_agentchat.agents import AssistantAgent
from autogen_ext.models.openai import OpenAIChatCompletionClient
from autogen_ext.experimental.task_centric_memory import MemoryController
from autogen_ext.experimental.task_centric_memory.utils import Teachability

client = OpenAIChatCompletionClient(model="gpt-4o-2024-08-06")
memory_controller = MemoryController(reset=False, client=client)
teachability = Teachability(memory_controller=memory_controller)

agent = AssistantAgent(
    name="teachable_agent",
    model_client=client,
    memory=[teachability],
)
  • Adds AnthropicChatCompletionClient for native Anthropic model support, following the same interface as OpenAIChatCompletionClient.
  • Adds LlamaCppChatCompletionClient for running local GGUF models or Hugging Face models via the llama-cpp SDK.
  • Introduces experimental Task-Centric Memory (MemoryController, Teachability) enabling agents to learn from user teaching, self-improve, and persist knowledge beyond context-window limits.
  • Adds LLMStreamStartEvent and LLMStreamEndEvent tracing events for LLM streaming.
  • Adds ToolCallEvent logged from all built-in tools for richer tracing.
+6 moreshow less
  • Supports tracing via context provider.
  • Adds PowerShell support to LocalCommandLineCodeExecutor.
  • Adds Pause and Resume capability for AgentChat Teams and Agents.
  • Adds optional base path configuration to FileSurfer.
  • Adds support for external agent runtime in AgentChat.
  • Introduces Gitty, an experimental sample application that auto-replies to GitHub issues.
└──▷ BREAKING ON UPGRADE
  • !Team state now uses the agent name as the key instead of the agent ID, and the team_id field is removed from serialized state; states saved with the old format may not be compatible with the new format.
python-v0.4.8 NOTES STABLE

AutoGen v0.4.8 adds an Ollama chat client, ThoughtEvent streaming, new termination conditions, and a metadata field for AgentChat messages.

└──▷ GET THIS VERSION
$ git clone --branch python-v0.4.8 https://github.com/microsoft/autogen.git
# already have the repo? check out this version:
$ git checkout python-v0.4.8
└──▷ USE IT
Run inference against a local Ollama model instead of a cloud API — useful for air-gapped environments or cost control.
python
from autogen_ext.models.ollama import OllamaChatCompletionClient
from autogen_core.models import UserMessage

ollama_client = OllamaChatCompletionClient(model="llama3")
result = await ollama_client.create([UserMessage(content="Summarize this CVE.", source="user")])
print(result)
Get structured, schema-validated output from a local Ollama model — ideal for parsing threat intel or tool results into typed objects.
python
from autogen_ext.models.ollama import OllamaChatCompletionClient
from autogen_core.models import UserMessage
from pydantic import BaseModel

class ThreatActor(BaseModel):
    name: str
    country: str

ollama_client = OllamaChatCompletionClient(model="llama3", response_format=ThreatActor)
result = await ollama_client.create([UserMessage(content="Identify the threat actor in this report.", source="user")])
print(result)
  • New OllamaChatCompletionClient enables local LLM inference via Ollama, with support for structured output and component-config loading.
  • New thought field in CreateResult surfaces chain-of-thought text from tool calls; AssistantAgent emits it as a ThoughtEvent in the message stream (currently supported by OpenAIChatCompletionClient).
  • New metadata field on AgentChat message base types lets applications attach custom key/value content to messages.
  • New TextMessageTerminationCondition termination condition for halting single-agent teams based on text message content.
  • New FunctionCallTermination termination condition for stopping a team when a specific function call is made.
+4 moreshow less
  • Adds ChromaDBVectorMemory to the extensions package for vector-backed agent memory.
  • Adds native Anthropic model client support via extensions.
  • FileSurfer and CodeExecAgent are now declarative (support component config).
  • Unhandled exceptions inside AgentChat agents (e.g., AssistantAgent) now propagate as fatal errors instead of silently stopping the team.
└──▷ BREAKING ON UPGRADE
  • !The name field is now required in FunctionExecutionResult; existing code constructing FunctionExecutionResult without name will raise an error.
Was this useful?

OpenAI Agents SDK

Sources Release notes → v0.0.7 4 RELEASES · 2025-03-13 → 2025-03-26 NOTES STABLE

OpenAI Agents SDK v0.0.7 adds MCP server support, Graphviz agent visualization, and configurable tool-choice reset behavior.

└──▷ GET THIS VERSION
$ git clone --branch v0.0.7 https://github.com/openai/openai-agents-python.git
# already have the repo? check out this version:
$ git checkout v0.0.7
  • Adds MCP (Model Context Protocol) types to the SDK, enabling agents to connect to MCP servers as tool sources.
  • Adds MCP support to the Runner, allowing agents to invoke tools served over MCP stdio transports.
  • Adds MCP tracing so MCP tool calls appear as spans in the existing tracing pipeline.
  • Adds Graphviz-based agent visualization functionality to graph agent topology.
  • Makes the tool-use reset behavior configurable when tool_choice is set, giving callers control over how the SDK handles repeated tool-call loops.
3 more releases in this issue · 2025-03-13 → 2025-03-26
v0.0.6 NOTES STABLE

OpenAI Agents SDK v0.0.6 adds voice pipeline support to the Python library.

└──▷ GET THIS VERSION
$ git clone --branch v0.0.6 https://github.com/openai/openai-agents-python.git
# already have the repo? check out this version:
$ git checkout v0.0.6
  • Adds voice pipeline support, enabling agents to process and respond to audio input/output within the SDK.
v0.0.5 NOTES STABLE

Adds tool_use_behavior on agents and strict_mode on function tools, plus TracingProcessor public export

└──▷ GET THIS VERSION
$ git clone --branch v0.0.5 https://github.com/openai/openai-agents-python.git
# already have the repo? check out this version:
$ git checkout v0.0.5
└──▷ USE IT
Enforce strict JSON schema validation on a function tool to catch malformed tool calls at the schema level.
python
@function_tool(strict_mode=True)
def lookup_order(order_id: str) -> str:
    return fetch_order(order_id)
Control agent behavior after tool execution — e.g. stop running the model again and return the tool result directly.
python
from agents import Agent

agent = Agent(
    name="Order Assistant",
    tools=[lookup_order],
    tool_use_behavior="stop_on_first_tool",
)
  • Adds strict_mode option to function_schema and function_tool to control strict JSON schema enforcement on tool inputs.
  • Introduces tool_use_behavior field on agents to configure how the agent responds when tools are used.
  • Exports TracingProcessor from the top-level __init__.py, making it directly importable as a public API.
  • Pretty-prints result classes for improved readability during development and debugging.
v0.0.4 NOTES STABLE

v0.0.4 adds max_tokens to model settings, request ID tracking, and Keywords AI and Scorecard as external trace processors.

└──▷ GET THIS VERSION
$ git clone --branch v0.0.4 https://github.com/openai/openai-agents-python.git
# already have the repo? check out this version:
$ git checkout v0.0.4
  • Adds max_tokens field to ModelSettings to cap token usage per model call.
  • Adds request ID tracking to model responses, enabling correlation of SDK calls to upstream API requests.
  • Adds Keywords AI as a supported external trace processor for agent observability pipelines.
  • Adds Scorecard as a supported external trace processor for agent observability pipelines.
  • Adds examples and documentation for using custom model providers with the SDK.
Was this useful?

PydanticAI

Sources Release notes → v0.0.48 17 RELEASES · 2025-03-03 → 2025-03-31 NOTES STABLE

PydanticAI v0.0.48 adds support for the OpenAI Responses API.

└──▷ GET THIS VERSION
$ git clone --branch v0.0.48 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v0.0.48
  • Adds support for the OpenAI Responses API, enabling PydanticAI agents to use OpenAI's newer stateful response interface.
16 more releases in this issue · 2025-03-03 → 2025-03-31
v0.0.47 NOTES STABLE

PydanticAI v0.0.47 ships the new pydantic-evals package, read/connect timeouts for Bedrock, and OpenTelemetry spans around tool calls.

└──▷ GET THIS VERSION
$ git clone --branch v0.0.47 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v0.0.47
  • Adds read_timeout and connect_timeout settings to the Bedrock provider for finer-grained network control.
  • Introduces the pydantic-evals package, a new library for evaluating AI agent outputs.
  • Wraps every tool call in an OpenTelemetry span for deeper observability into agent execution.
  • Supports passing a plain str as the model argument, broadening how models can be specified at call sites.
  • Allows running under PYTHONOPTIMIZE=1 (stripped assertions) without errors.
v0.0.46 NOTES STABLE

PydanticAI v0.0.46 adds headers, timeout, and SSE read timeout to MCPServerHTTP

└──▷ GET THIS VERSION
$ git clone --branch v0.0.46 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v0.0.46
└──▷ USE IT
Connect to an authenticated MCP server over HTTP with custom timeouts and authorization headers.
python
MCPServerHTTP(
    url='https://mcp.example.com/sse',
    headers={'Authorization': 'Bearer <token>'},
    timeout=30,
    sse_read_timeout=60
)
  • Adds headers, timeout, and sse_read_timeout parameters to MCPServerHTTP for fine-grained control over HTTP MCP server connections.
  • Uses different HTTP clients based on providers, enabling provider-specific HTTP client behaviour.
v0.0.45 NOTES STABLE

PydanticAI v0.0.45 adds user mapping support in OpenAI chat completion requests.

└──▷ GET THIS VERSION
$ git clone --branch v0.0.45 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v0.0.45
  • Adds user mapping in OpenAI chat completion requests, allowing callers to pass a user identifier through to the OpenAI API.
v0.0.44 NOTES STABLE

PydanticAI v0.0.44 adds a Cohere provider, exposes tool definitions on chat spans, and drops the system parameter from OpenAIModel.

└──▷ GET THIS VERSION
$ git clone --branch v0.0.44 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v0.0.44
  • Adds model_request_parameters attribute (containing tool definitions) to chat spans, making tool configurations observable in traces.
  • Adds a Cohere provider class for inference, enabling PydanticAI agents to target Cohere models via the provider pattern.
  • Migrates OpenAI models from max_tokens to max_completion_tokens in requests.
  • Adds function return docstrings to the generated tool description passed to models.
└──▷ BREAKING ON UPGRADE
  • !The system parameter is removed from OpenAIModel; code that passes system= to OpenAIModel will break on upgrade.
v0.0.43 NOTES STABLE

PydanticAI v0.0.43 adds a timestamp field to SystemPromptPart and auto-refreshes Google Vertex tokens on 401.

└──▷ GET THIS VERSION
$ git clone --branch v0.0.43 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v0.0.43
  • Adds timestamp field to SystemPromptPart, enabling precise tracking of when system prompts were created.
  • Automatically recreates the access token on HTTP 401 responses for the Google Vertex provider, enabling uninterrupted long-running sessions.
v0.0.42 NOTES STABLE

PydanticAI v0.0.42 adds MCP server support, a Python sandbox MCP server, and customizable tool JSON schema generation.

└──▷ GET THIS VERSION
$ git clone --branch v0.0.42 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v0.0.42
  • Renames MCPServerSSE to MCPServerHTTP for connecting agents to MCP servers over HTTP (see breaking changes).
  • Adds support for MCP (Model Context Protocol) servers, allowing agents to connect to and use tools exposed via MCP.
  • Adds a built-in MCP server for running Python code in a sandbox environment.
  • Enables overriding JSON schema generation for tools, giving developers control over how tool parameters are described to the model.
└──▷ BREAKING ON UPGRADE
  • !MCPServerSSE is renamed to MCPServerHTTP; any code referencing MCPServerSSE will break on upgrade.
v0.0.41 NOTES STABLE

PydanticAI v0.0.41 adds Anthropic and Mistral provider classes.

└──▷ GET THIS VERSION
$ git clone --branch v0.0.41 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v0.0.41
  • Adds Anthropic provider classes for direct integration with Anthropic models.
  • Adds Mistral provider classes for direct integration with Mistral models.
v0.0.40 NOTES STABLE

PydanticAI v0.0.40 adds AzureProvider, env-var base URL for OpenAIProvider, state persistence, and Anthropic PDF support.

└──▷ GET THIS VERSION
$ git clone --branch v0.0.40 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v0.0.40
  • Adds AzureProvider class for connecting PydanticAI agents to Azure-hosted OpenAI deployments.
  • Adds environment variable support for base URL configuration in OpenAIProvider, removing the need to hard-code endpoints.
  • Adds state persistence support, enabling agents to save and restore conversational state across runs.
  • Adds PDF document support to the Anthropic provider, allowing PDF content to be passed as model input.
v0.0.39 NOTES STABLE

PydanticAI v0.0.39 adds Groq provider classes for LLM integration.

└──▷ GET THIS VERSION
$ git clone --branch v0.0.39 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v0.0.39
  • Adds Groq provider classes, enabling Groq-hosted models as a PydanticAI LLM backend.
v0.0.38 NOTES STABLE

PydanticAI v0.0.38 adds DocumentUrl and BinaryContent document support for passing documents to models.

└──▷ GET THIS VERSION
$ git clone --branch v0.0.38 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v0.0.38
  • Adds DocumentUrl class to pass documents to models by URL.
  • Adds document support via BinaryContent for passing raw binary document data to models.
v0.0.37 NOTES STABLE

PydanticAI v0.0.37 adds base_url to models, tool name override on decorators, and VertexAI pre-loaded service account support.

└──▷ GET THIS VERSION
$ git clone --branch v0.0.37 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v0.0.37
  • Adds base_url parameter to models, and populates server.address and server.port fields in OpenTelemetry spans for tracing.
  • Allows specifying a custom tool name when registering a function with the tool decorator.
  • Supports pre-loaded VertexAI service account info, removing the need to read credentials from disk at runtime.
  • Serializes bytes values as base64 automatically when converting to JSON.
v0.0.36 NOTES STABLE

PydanticAI v0.0.36 adds AWS Bedrock Converse API support and expands VertexAI region coverage.

└──▷ GET THIS VERSION
$ git clone --branch v0.0.36 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v0.0.36
  • Adds support for the AWS Bedrock Converse API as a new model backend.
  • Expands VertexAIRegion Literal with updated region URLs for broader Vertex AI regional coverage.
v0.0.34 NOTES STABLE

PydanticAI v0.0.34 adds Agent.instrument_all(), a pai CLI, and tool names in response events.

└──▷ GET THIS VERSION
$ git clone --branch v0.0.34 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v0.0.34
└──▷ USE IT
Instrument every agent in your application at startup without modifying each agent definition.
python
from pydantic_ai import Agent

Agent.instrument_all()
  • Adds Agent.instrument_all() class method to instrument all agents globally by default, without configuring each agent individually.
  • Adds pai CLI for interacting with PydanticAI from the command line.
  • Adds tool name to tool response events, making it easier to identify which tool produced a given response in streaming or event-driven workflows.
v0.0.33 NOTES STABLE

PydanticAI v0.0.33 introduces a new Providers API for configuring model backends.

└──▷ GET THIS VERSION
$ git clone --branch v0.0.33 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v0.0.33
  • Adds a Providers API for configuring and supplying model backends to agents.
v0.0.32 NOTES STABLE

PydanticAI v0.0.32 adds an instrument param to Agent, supports Claude Sonnet 3.7 and Gemini 2.0 Pro Exp.

└──▷ GET THIS VERSION
$ git clone --branch v0.0.32 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v0.0.32
└──▷ USE IT
Re-enable OpenTelemetry tracing for an agent after the default changed to off.
python
agent = Agent('openai:gpt-4o', instrument=True)
  • Adds instrument param to Agent to opt into OpenTelemetry tracing explicitly, replacing the previous always-on auto-instrumentation.
  • Adds support for claude-sonnet-3-7 model.
  • Adds support for gemini-2.0-pro-exp-02-05 model.
└──▷ BREAKING ON UPGRADE
  • !OpenTelemetry instrumentation is now DISABLED by default; agents that relied on automatic tracing must now pass instrument=True to Agent(...) explicitly to restore telemetry.
v0.0.31 NOTES STABLE

PydanticAI v0.0.31 adds recursive return types, async graph iteration, and improved OpenTelemetry instrumentation.

└──▷ GET THIS VERSION
$ git clone --branch v0.0.31 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v0.0.31
└──▷ USE IT
Iterate over graph execution asynchronously using the new async Graph.iter context manager.
python
async with my_graph.iter(initial_state) as graph_run:
    async for node in graph_run:
        print(node)
  • Supports recursive objects in return_type, enabling agents to return self-referential data structures.
  • Makes Graph.iter an async context manager, enabling asynchronous iteration over graph execution.
  • Replaces the model request span with InstrumentedModel for more structured OpenTelemetry tracing.
  • Replaces all_messages in the agent span with all_messages_events, aligning its format with the InstrumentedModel span.
└──▷ BREAKING ON UPGRADE
  • !HandleResponseNode is renamed to CallToolsNode — any code referencing HandleResponseNode by name will break.
  • !Graph.iter is now an async context manager — code using it as a sync context manager will break.
  • !The model request span is replaced by InstrumentedModel — any telemetry pipelines filtering on the model request span name will no longer receive it.
  • !The all_messages field in the agent span is replaced by all_messages_events — any telemetry pipelines reading all_messages from agent spans will no longer find it.
Was this useful?

Microsoft Semantic Kernel

Sources Release notes → python-1.26.1 8 RELEASES · 2025-03-06 → 2025-03-25 NOTES STABLE

Semantic Kernel Python 1.26.1 introduces a unified agent invocation API with AgentThread and AgentResponseItem across all agent types.

└──▷ GET THIS VERSION
$ git clone --branch python-1.26.1 https://github.com/microsoft/semantic-kernel.git
# already have the repo? check out this version:
$ git checkout python-1.26.1
  • Adds AgentThread base class with create() and delete() methods to manage conversation thread lifecycle across all agent types (AzureAIAgent, ChatCompletionAgent, OpenAIAssistantAgent, AzureAssistantAgent, BedrockAgent, AutoGenConversableAgent).
  • Agent methods get_response(...), invoke(...), and invoke_stream(...) now return AgentResponseItem[ChatMessageContent], exposing a message attribute (type TMessage) and a thread attribute (type AgentThread).
  • Renames the message keyword argument on get_response(...), invoke(...), and invoke_stream(...) to messages, now accepting str | ChatMessageContent | list[str | ChatMessageContent].
  • Consolidates all agent import paths under semantic_kernel.agents, enabling a single from semantic_kernel.agents import AzureAIAgent, ChatCompletionAgent, OpenAIAssistantAgent, AzureAssistantAgent, BedrockAgent, AutoGenConversableAgent import.
  • Adds Copilot Studio Agents and Copilot Studio Skill demos.
└──▷ BREAKING ON UPGRADE
  • !The message keyword argument on get_response(...), invoke(...), and invoke_stream(...) is renamed to messages; existing call sites using message= will break.
  • !Agent response objects are now AgentResponseItem[ChatMessageContent] instead of plain ChatMessageContent; code that unpacks or type-checks the return value directly will break.
7 more releases in this issue · 2025-03-06 → 2025-03-25
dotnet-1.43.0 NOTES STABLE

Semantic Kernel .NET 1.43.0 adds Aspire integration for agents, a Structured Data Plugin, web search in OpenAI settings, and Ollama vision support.

└──▷ GET THIS VERSION
$ git clone --branch dotnet-1.43.0 https://github.com/microsoft/semantic-kernel.git
# already have the repo? check out this version:
$ git checkout dotnet-1.43.0
└──▷ USE IT
Enable web search on an OpenAI chat completion call so the model can retrieve live information.
csharp
var settings = new OpenAIPromptExecutionSettings
{
    WebSearchEnabled = true
};
var result = await kernel.InvokePromptAsync("What happened in the news today?", new(settings));
  • Adds WebSearchEnabled (and related options) to OpenAIPromptExecutionSettings to enable web search support for OpenAI-backed prompts.
  • Adds a Structured Data Plugin supporting query and CRUD operations against structured data sources.
  • Ports the Pinecone connector to use the Pinecone.Client library in the Memory/Embedding Vector Database (MEVD) layer.
  • Adds support for configuring embedding dimensions in Google AI embeddings generation.
  • Integrates the Agent Framework with .NET Aspire for agent observability and orchestration.
+1 moreshow less
  • Adds an Ollama ChatCompletion with Vision sample demonstrating multimodal input via Ollama.
python-1.25.0 NOTES STABLE

Semantic Kernel Python 1.25.0 adds an NVIDIA embedding connector for vector generation.

└──▷ GET THIS VERSION
$ git clone --branch python-1.25.0 https://github.com/microsoft/semantic-kernel.git
# already have the repo? check out this version:
$ git checkout python-1.25.0
  • Adds an NVIDIA Embedding Connector, enabling NVIDIA-hosted embedding models as a vector generation backend in Semantic Kernel pipelines.
dotnet-1.42.0 NOTES STABLE

Semantic Kernel .NET 1.42.0 adds YAML plugin import, Mistral document passing, HuggingFace batch embeddings, and more connector enhancements.

└──▷ GET THIS VERSION
$ git clone --branch dotnet-1.42.0 https://github.com/microsoft/semantic-kernel.git
# already have the repo? check out this version:
$ git checkout dotnet-1.42.0
└──▷ USE IT
Use the SQL Server vector store with a connection string for safe concurrent access across threads.
csharp
var vectorStore = new SqlServerVectorStore("Server=myserver;Database=mydb;Trusted_Connection=True;");
  • Adds SqlServerVectorStore support for accepting a connection string directly, enabling thread-safe usage of the SQL Server vector store connector.
  • Adds functionality to create and import plugins with YAML-defined functions.
  • Adds support for passing a document to Mistral AI chat model requests.
  • Adds batch embedding generation support to the HuggingFace connector.
  • Allows an HttpClient instance to be passed in when building an AzureOpenAI client from a service collection.
+4 moreshow less
  • Promotes several OpenAPI APIs out of experimental status.
  • Adds step uninitialization hooks for Steps in the Processes Local Runtime.
  • Switches Postgres and SQL Server vector store packages to preview, and moves experimental designation to memory-store-only artifacts.
  • Unifies collection deletion and creation APIs across MEVD (Memory and Embedding Vector Database) connectors.
└──▷ BREAKING ON UPGRADE
  • !The KernelAIFunction name separator is reverted to use a dash, which may affect existing code relying on the previous separator.
python-1.24.1 NOTES STABLE

Semantic Kernel Python 1.24.1 adds a Pinecone vector store connector.

└──▷ GET THIS VERSION
$ git clone --branch python-1.24.1 https://github.com/microsoft/semantic-kernel.git
# already have the repo? check out this version:
$ git checkout python-1.24.1
  • Adds a Pinecone connector for vector store integration.
python-1.24.0 NOTES STABLE

Semantic Kernel Python 1.24.0 adds a Faiss vector store connector and agent_id support for AzureAIAgent.

└──▷ GET THIS VERSION
$ git clone --branch python-1.24.0 https://github.com/microsoft/semantic-kernel.git
# already have the repo? check out this version:
$ git checkout python-1.24.0
  • Supports agent_id as an identifier for AzureAIAgent in addition to assistant_id, enabling retrieval of existing Azure AI agents by their agent ID.
  • Introduces the Faiss Connector for vector similarity search via the semantic-kernel Python library, adding FAISS as a supported vector store backend.
dotnet-1.41.0 NOTES STABLE

Semantic Kernel .NET 1.41.0 adds AWS Bedrock text embeddings, HTTP request option access, Cloud Events abstractions, and public Bedrock agent clients.

└──▷ GET THIS VERSION
$ git clone --branch dotnet-1.41.0 https://github.com/microsoft/semantic-kernel.git
# already have the repo? check out this version:
$ git checkout dotnet-1.41.0
  • Adds mechanism to access HTTP request options, exposing lower-level control over outbound calls made by the kernel.
  • Implements text embedding generation support for AWS Bedrock, extending the Bedrock connector beyond inference to embeddings.
  • Makes Bedrock agent clients required and public, enabling direct programmatic access to the underlying AWS Bedrock agent client objects.
  • Publishes Cloud Events abstractions for processing and publishing events, introducing a new eventing surface to the .NET SDK.
  • Adds missing Ollama Connector Aspire-friendly extensions, enabling Aspire-integrated registration of the Ollama connector.
+4 moreshow less
  • Applies a JSON converter for exceptions when serializing chat history, improving structured serialization of ChatHistory containing exception data.
  • Exposes ChatMessageContent.Content property by removing EditorBrowsable(EditorBrowsableState.Never), making it fully accessible in IDE tooling.
  • March 2025 VectorData updates bring new capabilities to the vector data layer.
  • Adds .NET 9 formatting support across the SDK.
python-1.23.0 NOTES STABLE

Semantic Kernel Python adds experimental RealtimeClients for OpenAI WebSockets, WebRTC, and Azure OpenAI WebSockets.

└──▷ GET THIS VERSION
$ git clone --branch python-1.23.0 https://github.com/microsoft/semantic-kernel.git
# already have the repo? check out this version:
$ git checkout python-1.23.0
  • Introduces experimental RealtimeClients for OpenAI over WebSockets and WebRTC, and for Azure OpenAI over WebSockets, enabling low-latency real-time AI interactions from Python.
Was this useful?

camel-ai

Sources Release notes → v0.2.38 14 RELEASES · 2025-03-09 → 2025-03-28 NOTES STABLE

camel-ai v0.2.38 adds Evol-Instruct datagen, TiDB vector storage, SearXNG toolkit, OpenAI Responses API, and model request timeouts

└──▷ GET THIS VERSION
$ git clone --branch v0.2.38 https://github.com/camel-ai/camel.git
# already have the repo? check out this version:
$ git checkout v0.2.38
  • Adds timeout support for the base model backend, enabling callers to bound inference request duration.
  • Adds SearXNG toolkit for privacy-respecting federated web search inside agent workflows.
  • Adds OpenAI Responses API support to the model backend.
  • Adds Evol-Instruct-style data augmentation methods to camel/datagen for synthetic instruction generation.
  • Adds browser toolkit support with pre-defined dynamic channel routing.
13 more releases in this issue · 2025-03-09 → 2025-03-28
v0.2.37 NOTES STABLE

camel-ai v0.2.37 adds a Think Toolkit, a GitHub repo query agent, and Gemini 2.5 Pro support.

└──▷ GET THIS VERSION
$ git clone --branch v0.2.37 https://github.com/camel-ai/camel.git
# already have the repo? check out this version:
$ git checkout v0.2.37
  • Adds ThinkToolkit for structured reasoning steps within agent workflows.
  • Adds a new agent for processing queries grounded in GitHub repositories.
  • Adds support for Gemini 2.5 Pro as a model backend.
v0.2.36 NOTES STABLE

camel-ai v0.2.36 adds Mem0 memory integration, OpenRouter support, browser downloads, and MCP toolkit header acceptance.

└──▷ GET THIS VERSION
$ git clone --branch v0.2.36 https://github.com/camel-ai/camel.git
# already have the repo? check out this version:
$ git checkout v0.2.36
  • Adds accepting header support in MCP toolkits, enabling custom HTTP headers when connecting to MCP tool servers.
  • Integrates Mem0 as a memory backend, giving agents persistent, external memory via the Mem0 service.
  • Adds OpenRouter as a supported model provider, expanding the set of LLM backends available to agents.
  • Adds browser download capability to the browser toolkit, allowing agents to trigger and handle file downloads.
v0.2.35 NOTES STABLE

camel-ai v0.2.35 adds persistent agent memory by ID and a pluggable chunker module for custom chunking strategies.

└──▷ GET THIS VERSION
$ git clone --branch v0.2.35 https://github.com/camel-ai/camel.git
# already have the repo? check out this version:
$ git checkout v0.2.35
  • Adds a chunker module enabling custom chunking strategies for document processing pipelines.
  • Links memory to agents by ID, enabling persistent and retrievable memory scoped to individual agent instances.
v0.2.34 NOTES STABLE

camel-ai v0.2.34 adds JSONL-based StaticDataset initialization and enhances FewShotGenerator

└──▷ GET THIS VERSION
$ git clone --branch v0.2.34 https://github.com/camel-ai/camel.git
# already have the repo? check out this version:
$ git checkout v0.2.34
  • Adds JSONL initialization support to StaticDataset, enabling datasets to be loaded directly from JSONL files.
  • Enhances FewShotGenerator with new capabilities for few-shot example generation.
v0.2.31 NOTES STABLE

camel-ai v0.2.31 adds Bing Search integration

└──▷ GET THIS VERSION
$ git clone --branch v0.2.31 https://github.com/camel-ai/camel.git
# already have the repo? check out this version:
$ git checkout v0.2.31
  • Adds Bing Search as a new search backend
v0.2.30 NOTES STABLE

camel-ai v0.2.30 adds Baidu search integration, enhanced BrowserToolkit, file logging output, and refactored environment types.

└──▷ GET THIS VERSION
$ git clone --branch v0.2.30 https://github.com/camel-ai/camel.git
# already have the repo? check out this version:
$ git checkout v0.2.30
  • Adds Baidu search as a new search integration via feat: add baidu search.
  • Enhances BrowserToolkit with new capabilities for browser-based agent workflows.
  • Adds file output support for logging, enabling log persistence to disk.
  • Refactors BaseEnvironment into distinct SingleStep and MultiStep environment classes for cleaner agent environment modeling.
└──▷ BREAKING ON UPGRADE
  • !BaseEnvironment has been refactored into SingleStep and MultiStep environment classes — code importing or subclassing BaseEnvironment directly will break on upgrade.
v0.2.29 NOTES STABLE

camel-ai v0.2.29 splits datasets into StaticDataset and GenerativeDataset and adds agent tool call try/except handling.

└──▷ GET THIS VERSION
$ git clone --branch v0.2.29 https://github.com/camel-ai/camel.git
# already have the repo? check out this version:
$ git checkout v0.2.29
  • Introduces StaticDataset and GenerativeDataset as distinct classes, replacing the previous unified dataset abstraction.
  • Adds try/except error handling for agent tool calls, plus updated image logging support.
v0.2.28 NOTES STABLE

camel-ai v0.2.28 adds MCPToolkitManager for orchestrating multiple MCPToolkits in a single agent.

└──▷ GET THIS VERSION
$ git clone --branch v0.2.28 https://github.com/camel-ai/camel.git
# already have the repo? check out this version:
$ git checkout v0.2.28
  • Adds MCPToolkitManager class to manage multiple MCPToolkit instances together, simplifying multi-toolkit agent setups.
v0.2.27 NOTES STABLE

camel-ai v0.2.27 adds Volcano Engine model integration and Bocha search to the search toolkit.

└──▷ GET THIS VERSION
$ git clone --branch v0.2.27 https://github.com/camel-ai/camel.git
# already have the repo? check out this version:
$ git checkout v0.2.27
  • Adds Bocha search as a new provider in the search toolkit.
  • Adds Volcano Engine integration support for model backends.
v0.2.26 NOTES STABLE

camel-ai v0.2.26 adds Claude tool calling, PubMed toolkit, and dynamic graph support via Neo4j

└──▷ GET THIS VERSION
$ git clone --branch v0.2.26 https://github.com/camel-ai/camel.git
# already have the repo? check out this version:
$ git checkout v0.2.26
  • Adds Claude tool calling support, enabling Anthropic Claude models to invoke tools through the camel-ai agent framework.
  • Adds PubMedToolkit to the toolkit collection, allowing agents to query PubMed biomedical literature.
  • Supports dynamic graph construction via Neo4j, enabling agents to build and query knowledge graphs at runtime.
  • Refactors SeedDataset to improve compatibility and simplify usage when constructing training datasets.
v0.2.25 NOTES STABLE

camel-ai v0.2.25 adds function call support in SGLang.

└──▷ GET THIS VERSION
$ git clone --branch v0.2.25 https://github.com/camel-ai/camel.git
# already have the repo? check out this version:
$ git checkout v0.2.25
  • Adds function call support in SGLang.
v0.2.24 NOTES STABLE

camel-ai v0.2.24 adds Terminal, File Write, and MCP Client toolkits plus Claude 3.7 and async RolePlaying support.

└──▷ GET THIS VERSION
$ git clone --branch v0.2.24 https://github.com/camel-ai/camel.git
# already have the repo? check out this version:
$ git checkout v0.2.24
└──▷ USE IT
Give an agent the ability to run shell commands and write files in a single session.
python
from camel.toolkits import TerminalToolkit, FileWriteToolkit

terminal = TerminalToolkit()
file_writer = FileWriteToolkit()

# Pass both toolkits to your agent
tools = terminal.get_tools() + file_writer.get_tools()
  • Adds TerminalToolkit for agent-driven shell command execution.
  • Adds FileWriteToolkit for agent-driven file write operations.
  • Integrates MCP (Model Context Protocol) client as a callable Toolkit, enabling agents to connect to MCP servers.
  • Adds Claude 3.7 model support via updated Anthropic model config.
  • Enables RolePlaying to run asynchronously with async support.
v0.2.23 NOTES STABLE

camel-ai v0.2.23 adds new toolkits (Excel, audio, web, image analysis, Zapier), hybrid retrieval, verifiers, and data-gen pipeline improvements.

└──▷ GET THIS VERSION
$ git clone --branch v0.2.23 https://github.com/camel-ai/camel.git
# already have the repo? check out this version:
$ git checkout v0.2.23
└──▷ USE IT
Equip an agent with the ExcelToolkit to read and manipulate spreadsheets during a task.
python
from camel.toolkits import ExcelToolkit
from camel.agents import ChatAgent

toolkit = ExcelToolkit()
agent = ChatAgent(tools=toolkit.get_tools())
agent.step('Summarize the data in report.xlsx')
  • Adds stop_on_first_failure option to InstructionFilter in the datagen module to halt pipelines on the first failed instruction.
  • Adds ensure_ascii option to SelfImprovingCoTPipeline JSON output for non-ASCII character handling in generated datasets.
  • Adds timestamp to VectorDBMemory to prevent data retrieval order confusion.
  • Adds ExcelToolkit for agent interaction with Excel files.
  • Adds WebToolkit (ported from owl project) for web interaction capabilities.
+15 moreshow less
  • Adds audio toolkit (ported from owl project) for audio processing in agents.
  • Adds image analysis toolkit for visual analysis tasks.
  • Integrates Zapier AI as a new toolkit, enabling agents to trigger Zapier workflows.
  • Adds reasoning_parameter integration for model calls, exposing reasoning configuration to agents.
  • Introduces BaseVerifier and PythonVerifier for verifying agent-generated code and outputs.
  • Implements KnowNo for agent uncertainty quantification and conformal prediction.
  • Adds hybrid retrieval support, combining multiple retrieval strategies in the RAG pipeline.
  • Integrates NetworkX for graph-based reasoning and data representation.
  • Adds custom prompt support in the graph agent.
  • Adds new timeout functionality across all toolkits, enabling per-toolkit execution time limits.
  • Adds support for the gpt-4.5 model.
  • Adds Ollama multimodal model support.
  • Adds rejection sampling data generation pipeline with SelfImprovingCoT pipeline.
  • Adds logging for error handling and instruction generation progress in datagen pipelines.
  • Switches dependency management to uv.
Was this useful?

holmesgpt

Sources Release notes → 0.10.5 NOTES

SRE Agent - CNCF Sandbox Project

HolmesGPT 0.10.5 adds Kafka, Coralogix, and Prometheus graph toolsets plus multi-cluster OpenSearch/Kafka support and streaming responses.

└──▷ GET THIS VERSION
$ git clone --branch 0.10.5 https://github.com/HolmesGPT/holmesgpt.git
# already have the repo? check out this version:
$ git checkout 0.10.5
  • Adds Kafka toolset (kafka) for querying Kafka clusters, with support for multiple Kafka clusters in a single configuration.
  • Adds initial Coralogix toolset (coralogix) for querying Coralogix logs, with prompt tuning for log retrieval.
  • Adds Prometheus graph-generating capability to the prometheus toolset, enabling the LLM to render metric graphs during investigations.
  • Adds support for multiple OpenSearch clusters in the opensearch toolset configuration.
  • Promotes Loki to a full-fledged log provider toolset (loki), replacing the previous limited integration.
+9 moreshow less
  • Improves the Grafana Tempo toolset with enhanced trace querying capabilities.
  • Adds OpenSearch logs and traces support, expanding OpenSearch toolset coverage beyond search.
  • Adds streaming responses (ROB-717) so Holmes can stream answers to the CLI in real time.
  • Adds auth improvements for internet, notion, and llm toolsets.
  • Adds priorityClassName support to the Helm chart, allowing users to set the priority class name for Holmes pods.
  • Adds node selector support to the Helm chart for pod scheduling control.
  • Enables pod reloading when values.toolsets is updated via helm upgrade, so toolset config changes take effect without manual restarts.
  • Improves fetch_url tool to work with GitHub Pages sources.
  • Improves token counter performance via caching, reducing overhead on large investigations.
Was this useful?

Hugging Face smolagents

Sources Release notes → v1.12.0 3 RELEASES · 2025-03-05 → 2025-03-20 NOTES STABLE

smolagents v1.12.0 adds MCP SSE server support and cuts planning step model calls in half.

└──▷ GET THIS VERSION
$ git clone --branch v1.12.0 https://github.com/huggingface/smolagents.git
# already have the repo? check out this version:
$ git checkout v1.12.0
  • Adds support for MCP SSE servers, enabling agents to connect to Server-Sent Events-based Model Context Protocol tool servers.
  • Reduces model calls in planning_step from 2 to 1, halving LLM API usage per planning cycle.
2 more releases in this issue · 2025-03-05 → 2025-03-20
v1.11.0 NOTES STABLE

smolagents v1.11.0 adds VLLMModel, tightens sandbox security with module whitelisting, and expands E2B and OpenAI server options.

└──▷ GET THIS VERSION
$ git clone --branch v1.11.0 https://github.com/huggingface/smolagents.git
# already have the repo? check out this version:
$ git checkout v1.11.0
└──▷ USE IT
Run an agent backed by a locally-served vLLM endpoint without leaving the smolagents API.
python
from smolagents import CodeAgent, VLLMModel

model = VLLMModel(model_id="meta-llama/Llama-3.1-8B-Instruct")
agent = CodeAgent(tools=[], model=model)
agent.run("Summarize the OWASP Top 10 for 2024.")
  • Adds VLLMModel class for running inference against vLLM-served models directly from smolagents.
  • Adds flatten_messages_as_text kwarg support to OpenAIServerModel for controlling message serialization behavior.
  • Supports passing arbitrary kwargs to E2BExecutor Sandbox constructor, unlocking full E2B sandbox configuration from the agent layer.
  • Forbids all modules by default in the local executor except those explicitly listed in authorized_imports, hardening sandboxed code execution.
  • Forbids access to all dunder attributes by default in the local executor, closing a class of sandbox escape vectors.
+4 moreshow less
  • Switches dangerous-code detection from pattern matching to module-level checking, improving accuracy of sandbox security enforcement.
  • Adds mlx-lm to the all extras group, making Apple Silicon local inference available via a single install target.
  • Raises agent generation errors as exceptions instead of silently swallowing them, making failure modes visible to callers.
  • Logs agent thoughts when verbosity_level is set to high, giving practitioners full reasoning traces during debugging.
└──▷ BREAKING ON UPGRADE
  • !Default model_id is removed from all model classes — callers that previously relied on the default must now pass an explicit model_id.
  • !All modules are now forbidden in the local executor by default; only those in authorized_imports are allowed — existing agents that imported modules without declaring them in authorized_imports will break.
v1.10.0 NOTES STABLE

smolagents v1.10.0 adds a Docker sandbox executor, Serper search support, custom final-answer handling, and --api-base/--api-key CLI arguments.

└──▷ GET THIS VERSION
$ git clone --branch v1.10.0 https://github.com/huggingface/smolagents.git
# already have the repo? check out this version:
$ git checkout v1.10.0
└──▷ USE IT
Run an agent in a Docker sandbox to isolate arbitrary code execution from the host environment.
python
from smolagents import CodeAgent, HfApiModel

agent = CodeAgent(tools=[], model=HfApiModel(), executor="docker")
agent.run("List all files in /tmp and return their sizes.")
Point the smolagents CLI at a self-hosted or third-party OpenAI-compatible endpoint without editing config files.
$ smolagents --api-base https://my-llm-proxy.example.com/v1 --api-key $MY_API_KEY 'Summarize the latest news on AI safety'
  • Adds executor="docker" argument to agent initialization, running generated code inside a Docker sandbox for isolated execution.
  • Adds --api-base and --api-key arguments to the CLI for configuring model endpoints directly from the command line.
  • Adds support for Serper as a search backend, expanding the available web-search tools.
  • Enables custom final_answer handling in CodeAgent and via agent __init__, letting callers override how the agent surfaces its final result.
  • Hardens the local Python interpreter by blocking access to builtins and dangerous modules at return time, reducing sandbox-escape risk without additional configuration.
+1 moreshow less
  • Supports running an Open DeepResearch demo, including compatibility with models beyond o1 and Python ≥ 3.13 dependencies.
Was this useful?
◆  AI Coding Agents

Aider

Sources Release notes → v0.80.0 6 RELEASES · 2025-03-04 → 2025-03-31 NOTES STABLE

Aider v0.80.0 adds OpenRouter OAuth, Ctrl-X Ctrl-E editor keybinding, Scala repomap support, and smarter model defaults.

└──▷ GET THIS VERSION
$ git clone --branch v0.80.0 https://github.com/Aider-AI/aider.git
# already have the repo? check out this version:
$ git checkout v0.80.0
└──▷ TRY IT
Edit a long, complex prompt in your preferred terminal editor mid-session instead of typing it inline.
$ # While in an aider session, press Ctrl-X Ctrl-E to open the current input buffer in $EDITOR
  • Adds OpenRouter OAuth flow: prompts to authenticate via OAuth when no model or API keys are provided, and auto-selects a default OpenRouter model based on free/paid tier status when OPENROUTER_API_KEY is set.
  • Prioritizes gemini/gemini-2.5-pro-exp-03-25 when GEMINI_API_KEY is set, and vertex_ai/gemini-2.5-pro-exp-03-25 when VERTEXAI_PROJECT is set, as the default model.
  • Adds Ctrl-X Ctrl-E keybinding to open the current input buffer in an external editor.
  • Adds repomap support for the Scala language.
  • Boosts repomap ranking for files whose path components match identifiers mentioned in chat, improving context relevance.
+6 moreshow less
  • Validates user-configured color settings on startup, warning and disabling invalid ones.
  • Warns at startup when --stream and --cache-prompts are used together, since cost estimates may be inaccurate in that combination.
  • Changes web scraping timeout from a hard error to a warning, allowing scraping to continue with partial content.
  • Left-aligns markdown headings in terminal output for improved readability.
  • Updates edit format to the new model's default when switching models with /model, if the user was using the previous model's default format.
  • Adds the openrouter/deepseek-chat-v3-0324:free model.
5 more releases in this issue · 2025-03-04 → 2025-03-31
v0.79.0 NOTES STABLE

Aider v0.79.0 adds Gemini 2.5 Pro and DeepSeek V3 support plus a new /context command for automatic file scoping.

└──▷ GET THIS VERSION
$ git clone --branch v0.79.0 https://github.com/Aider-AI/aider.git
# already have the repo? check out this version:
$ git checkout v0.79.0
└──▷ TRY IT
Let Aider automatically determine which files are relevant before making a change, instead of manually adding them to context.
$ /context add authentication middleware to validate JWT tokens on all API routes
  • Adds support for SOTA Gemini 2.5 Pro model.
  • Adds support for DeepSeek V3 0324 model.
  • New /context command automatically identifies which files need to be edited for a given request.
  • Adds /edit as an alias for the /editor command.
  • New "overeager" mode for Claude 3.7 Sonnet models to constrain it to the requested scope.
v0.78.0 NOTES STABLE

Aider v0.78.0 adds thinking-token support for OpenRouter Sonnet 3.7, new model-switching commands, AWS profile auth for Bedrock, and git hook control.

└──▷ GET THIS VERSION
$ git clone --branch v0.78.0 https://github.com/Aider-AI/aider.git
# already have the repo? check out this version:
$ git checkout v0.78.0
└──▷ TRY IT
Preserve your repo's pre-commit hooks (e.g. linters, secret scanners) so Aider commits pass through them normally.
$ aider --git-commit-verify true
Use a named AWS profile for Bedrock authentication without hardcoding credentials.
$ AWS_PROFILE=my-security-profile aider --model bedrock/anthropic.claude-3-5-sonnet-20241022-v2:0
Force reasoning-effort settings onto a model that doesn't advertise support, bypassing validation.
$ aider --check-model-accepts-settings false --reasoning-effort high --model openrouter/google/gemma-3-27b-it
  • Adds thinking-token support for OpenRouter Sonnet 3.7 models.
  • New /editor-model and /weak-model commands let you switch model roles interactively mid-session.
  • New --git-commit-verify flag (default: false) controls whether git commit hooks are bypassed on Aider commits.
  • New --check-model-accepts-settings flag (default: true) validates --reasoning-effort and --thinking-tokens against model capabilities, ignoring unsupported settings — or force them through by setting the flag to false.
  • Adds AWS_PROFILE support for Bedrock models, enabling named AWS profile auth instead of explicit credentials.
+2 moreshow less
  • Adds support for the openrouter/google/gemma-3-27b-it model.
  • Improves code block rendering in markdown output with better padding via NoInsetMarkdown.
v0.77.0 NOTES STABLE

Aider v0.77.0 adds 150 new tree-sitter languages, in-session reasoning controls, and an auto-accept architect flag.

└──▷ GET THIS VERSION
$ git clone --branch v0.77.0 https://github.com/Aider-AI/aider.git
# already have the repo? check out this version:
$ git checkout v0.77.0
└──▷ TRY IT
Cap reasoning token spend during a session to control cost when using extended-thinking models.
$ /think-tokens 8k
Run an architect-mode session that automatically applies proposed changes without manual confirmation prompts.
$ aider --architect --auto-accept-architect <file>
  • Adds support for 130 new languages with linter support and 20 new languages with repo-map support via tree-sitter-language-pack.
  • New /think-tokens command sets thinking token budget mid-session using human-readable formats (e.g., 8k, 10.5k, 0.5M); displays current setting when called with no arguments.
  • New /reasoning-effort command controls model reasoning level interactively; displays current setting when called with no arguments.
  • New --auto-accept-architect flag (default: true) skips confirmation prompts when accepting changes from the architect coder format.
  • Adds ignore_permission_denied option to the file watcher to silently skip restricted files instead of erroring.
+3 moreshow less
  • Adds model support for cohere_chat/command-a-03-2025 and gemini/gemma-3-27b-it.
  • The bare /drop command now preserves original read-only files supplied via --read.
  • --thinking-tokens argument now accepts human-readable string values (e.g., 8k, 0.5M).
v0.76.0 NOTES STABLE

Aider v0.76.0 adds thinking-token budgets, desktop notifications, and broader model support including Claude 3.7 Sonnet and GPT-4.5-preview.

└──▷ GET THIS VERSION
$ git clone --branch v0.76.0 https://github.com/Aider-AI/aider.git
# already have the repo? check out this version:
$ git checkout v0.76.0
└──▷ TRY IT
Get a desktop ping when Aider finishes a slow LLM call so you can stay focused on other work.
$ aider --notifications --notifications-command 'notify-send "Aider" "Response ready"'
Use the free DeepSeek V3 model via OpenRouter for cost-free AI-assisted coding.
$ aider --model openrouter/deepseek/deepseek-chat:free
  • Adds --thinking-tokens flag to control the token budget for thinking/reasoning models that support it.
  • Displays thinking/reasoning content returned by LLMs inline in the session.
  • Adds --notifications flag to trigger desktop alerts when an LLM response is ready and awaiting input.
  • Adds --notifications-command to specify a custom desktop notification command.
  • Adds support for QWQ 32B model.
+6 moreshow less
  • Adds support for DeepSeek V3 free tier via OpenRouter (openrouter/deepseek/deepseek-chat:free).
  • Adds support for Claude 3.7 Sonnet on OpenRouter, Bedrock, and Vertex AI (including :beta variant).
  • Updates default OpenRouter model to Claude 3.7 Sonnet.
  • Adds support for GPT-4.5-preview model.
  • Offers to install dependencies automatically for Bedrock and Vertex AI models.
  • Switches tree-sitter support to tree-sitter-language-pack.
└──▷ BREAKING ON UPGRADE
  • !The remove_reasoning setting is deprecated and replaced by reasoning_tag; existing configs using remove_reasoning will trigger a deprecation warning.
  • !Model shortcut args such as --4o and --opus are deprecated in favor of --model.
v0.75.0 NOTES STABLE

Aider v0.75.0 adds Claude 3.7 Sonnet, HCL/Terraform syntax, tree-sitter language pack, and o1/o3-mini markdown generation.

└──▷ GET THIS VERSION
$ git clone --branch v0.75.0 https://github.com/Aider-AI/aider.git
# already have the repo? check out this version:
$ git checkout v0.75.0
└──▷ TRY IT
Switch to the new Claude 3.7 Sonnet model for an Aider session.
$ aider --model sonnet
  • Adds basic support for Claude 3.7 Sonnet via --model sonnet.
  • Adds HCL (Terraform) syntax support for infrastructure-as-code workflows.
  • Adds support for the tree-sitter language pack, expanding language parsing coverage.
  • Adds openrouter/o3-mini-high model configuration.
  • Adds build.gradle.kts as a recognized special file for Kotlin project support.
+1 moreshow less
  • Enables markdown output for o1 and o3-mini models by sending the 'Formatting re-enabled.' string.
Was this useful?

Cline

Sources Release notes → v3.8.4 8 RELEASES · 2025-03-01 → 2025-03-28 NOTES STABLE

Autonomous coding agent as an SDK, IDE extension, or CLI assistant.

Cline v3.8.4 adds SambaNova DeepSeek-V3-0324 model and cost tracking for LiteLLM provider.

└──▷ GET THIS VERSION
$ git clone --branch v3.8.4 https://github.com/cline/cline.git
# already have the repo? check out this version:
$ git checkout v3.8.4
  • Adds SambaNova DeepSeek-V3-0324 as a supported model.
  • Adds cost calculation support for the LiteLLM provider.
7 more releases in this issue · 2025-03-01 → 2025-03-28
v3.8.3 NOTES STABLE

Cline v3.8.3 adds SambaNova QwQ-32B, Gemini 2.5 Pro, Amazon Nova, and chatgpt-4o-latest model support.

└──▷ GET THIS VERSION
$ git clone --branch v3.8.3 https://github.com/cline/cline.git
# already have the repo? check out this version:
$ git checkout v3.8.3
  • Adds SambaNova QwQ-32B as a supported model.
  • Adds OpenAI dynamic model chatgpt-4o-latest for always-current GPT-4o access.
  • Adds Amazon Nova models via AWS Bedrock integration.
  • Adds Gemini 2.5 Pro to the Google AI Studio model list.
v3.8.0 NOTES STABLE

Cline v3.8.0 adds right-click context actions, a Fix with Cline code action, account billing view, and OpenRouter provider routing controls.

└──▷ GET THIS VERSION
$ git clone --branch v3.8.0 https://github.com/cline/cline.git
# already have the repo? check out this version:
$ git checkout v3.8.0
  • Adds Add to Cline right-click context menu option for selected text in files or the terminal to quickly inject context into the current task.
  • Adds Fix with Cline code action accessible via the editor lightbulb or Quick Fix (CMD + .) menu to send code and associated errors directly to Cline.
  • Adds Account view showing billing credits used and transaction history for Cline account users.
  • Adds 'Sort underlying provider routing' setting for Cline/OpenRouter to sort by throughput, price, latency, or default (price + uptime combination).
  • Adds OpenRouter usage_details feature integration for more reliable cost reporting.
+4 moreshow less
  • Enhances MCP rich display with dynamic image loading and GIF support.
  • Adds 'Documentation' menu item for quick access to Cline docs.
  • Displays total disk space used by Cline next to the 'Delete all Tasks' button in History view.
  • Adds button to delete MCP servers stuck in a failure state.
v3.7.0 NOTES STABLE

Cline v3.7.0 adds selectable response options, multi-file .clinerules/, SambaNova provider, and AWS Bedrock VPC + DeepSeek-R1 support.

└──▷ GET THIS VERSION
$ git clone --branch v3.7.0 https://github.com/cline/cline.git
# already have the repo? check out this version:
$ git checkout v3.7.0
└──▷ TRY IT
Load multiple project-specific rule files at once instead of a single .clinerules file.
$ mkdir .clinerules && echo 'No hardcoded secrets.' > .clinerules/security.md && echo 'Use TypeScript strict mode.' > .clinerules/typescript.md
  • Adds selectable UI options when Cline asks questions or presents a plan, eliminating manual text responses.
  • Supports a .clinerules/ directory so multiple rules files are loaded at once.
  • Adds SambaNova as a new API provider.
  • Adds VPC endpoint option for AWS Bedrock profiles.
  • Adds DeepSeek-R1 model to AWS Bedrock provider.
v3.6.9 NOTES STABLE

Cline v3.6.9 adds Kotlin parsing, temperature control for OpenAI-compatible models, and bulk task history deletion.

└──▷ GET THIS VERSION
$ git clone --branch v3.6.9 https://github.com/cline/cline.git
# already have the repo? check out this version:
$ git checkout v3.6.9
  • Adds 'Delete all Task History' button to the History view for bulk cleanup.
  • Adds a toggle in Settings to disable automatic model switching between Plan/Act modes (disabled by default for new users).
  • Adds temperature option for OpenAI Compatible provider configurations.
  • Adds Kotlin support to the tree-sitter parser for improved code analysis.
  • Improves QwQ model support for Alibaba and OpenRouter providers.
v3.6.0 NOTES STABLE

Cline v3.6.0 adds a free Cline API provider, faster checkpoints, and new Gemini/Claude model support.

└──▷ GET THIS VERSION
$ git clone --branch v3.6.0 https://github.com/cline/cline.git
# already have the repo? check out this version:
$ git checkout v3.6.0
  • Adds Cline API as a built-in provider option, letting new users sign up and start for free without a third-party API key.
  • Optimizes checkpoints with a branch-per-task strategy, reducing storage footprint and cutting first-task load times.
  • Adds new Gemini models to GCP Vertex and Claude models to AskSage.
  • Improves error reporting for OpenRouter and Cline API calls.
v3.5.1 NOTES STABLE

Cline v3.5.1 adds MCP server timeouts, AskSage provider, Bedrock prompt caching, and Gemini Flash on Vertex.

└──▷ GET THIS VERSION
$ git clone --branch v3.5.1 https://github.com/cline/cline.git
# already have the repo? check out this version:
$ git checkout v3.5.1
  • Adds configurable timeout option for MCP servers.
  • Adds Gemini Flash models to the Vertex AI provider.
  • Adds prompt caching support for the AWS Bedrock provider.
  • Adds AskSage as a new AI provider.
v3.5.0 NOTES STABLE

Cline v3.5.0 adds extended thinking for Claude 3.7, rich MCP response previews, and xAI/Grok provider support.

└──▷ GET THIS VERSION
$ git clone --branch v3.5.0 https://github.com/cline/cline.git
# already have the repo? check out this version:
$ git checkout v3.5.0
  • Adds 'Enable extended thinking' option for Claude 3.7 Sonnet, with separate token budget controls for Plan and Act modes.
  • Adds rich MCP response rendering with automatic image previews, website thumbnails, and WolframAlpha visualizations.
  • Adds language preference option in Advanced Settings.
  • Adds xAI provider integration with support for all Grok models.
Was this useful?

Continue

Sources Release notes → v1.0.5-vscode 3 RELEASES · 2025-03-07 → 2025-03-27 NOTES STABLE

Continue v1.0.5 adds tools support for custom LLMs and fireworks.ai, Anthropic extended thinking, MCP text resources, AWS credential auto-retrieval, and more.

└──▷ GET THIS VERSION
$ git clone --branch v1.0.5-vscode https://github.com/continuedev/continue.git
# already have the repo? check out this version:
$ git checkout v1.0.5-vscode
└──▷ USE IT
Cap Jira issues returned as context to avoid overwhelming the model with large backlogs.
json
{
  "name": "jira",
  "params": {
    "domain": "https://your-org.atlassian.net",
    "token": "<your-token>",
    "maxResults": 20
  }
}
Add authenticated headers to an HTTP context provider so it can reach a protected internal API.
json
{
  "name": "http",
  "params": {
    "url": "https://internal.corp/context",
    "headers": {
      "Authorization": "Bearer <token>",
      "X-Team": "security"
    }
  }
}
Set a context-length cap on a custom LLM so Continue does not exceed the model's window.
json
{
  "title": "My Custom LLM",
  "provider": "openai",
  "model": "my-fine-tuned-model",
  "contextLength": 16384
}
  • Adds contextLength attribute to LLMOptions for custom LLM configurations.
  • Adds maxResults attribute to the Jira context provider to cap the number of returned issues.
  • Adds headers support to the HTTP context provider for authenticated requests.
  • Adds tools (function calling) support for custom LLMs.
  • Adds tools support for fireworks.ai models.
+19 moreshow less
  • Adds function calling support to the VertexAI provider.
  • Adds watsonx reranker integration for codebase retrieval.
  • Enables retrieval of AWS credentials from environment variables and ECS/EC2 instance metadata.
  • Supports MCP text resources, allowing MCP servers to expose readable text content.
  • Surfaces tool call arguments in the chat UI so users can inspect what the model is invoking.
  • Displays citations in the output for Perplexity Sonar research models.
  • Processes and streams Anthropic extended thinking blocks, showing them in the output tab — supported on both direct Anthropic and AWS Bedrock providers.
  • Adds instant apply for unified diff format.
  • Adds up/down arrow key history navigation in the editor's edit-mode input.
  • Supports pulling missing Ollama models on demand.
  • Adds new Gemini models to config_schema.json.
  • Adds new DeepSeek models to the config schema.
  • Chunks user queries before embedding to improve codebase retrieval quality.
  • Implements walkdir caching to speed up file-tree traversal.
  • Batches URIs for snippets queries, reducing retrieval overhead.
  • Adds a schema: v1 declaration for YAML configuration.
  • Adds YAML-based model capability configuration.
  • Adds an 'Explore Hub' onboarding card in both VS Code and JetBrains IDEs.
  • Removes unused MCP connections on config reload to reduce resource usage.
2 more releases in this issue · 2025-03-07 → 2025-03-27
v1.0.4-vscode NOTES STABLE

Continue v1.0.4 adds AWS Bedrock tool use with Claude 3.7, Gemini 2.0 Flash support, proxy tool support, and inline keyboard shortcuts.

└──▷ GET THIS VERSION
$ git clone --branch v1.0.4-vscode https://github.com/continuedev/continue.git
# already have the repo? check out this version:
$ git checkout v1.0.4-vscode
  • Adds AWS Bedrock tool use support, including tools support for Claude 3.7 on Bedrock.
  • Adds Gemini 2.0 Flash to the model selection GUI and to @continuedev/llm-info.
  • Adds proxy tool support.
  • Adds a shortcuts component for inline keyboard shortcuts in the UI.
  • Adds VSCode URI query param handling.
+2 moreshow less
  • Filters global Prompt Files to only show files ending with .prompt.
  • Adds JetBrains cross-environment support for Continue Enterprise (CE).
v1.0.3-vscode NOTES STABLE

Continue v1.0.3 adds session tabs, Claude 3.7 Sonnet support, and a profiles refresh button.

└──▷ GET THIS VERSION
$ git clone --branch v1.0.3-vscode https://github.com/continuedev/continue.git
# already have the repo? check out this version:
$ git checkout v1.0.3-vscode
  • Adds Claude 3.7 Sonnet to config_schema.json and enables tool support for Claude 3.7 in toolSupport.ts.
  • Introduces a Tabs feature for managing multiple chat sessions within the extension.
  • Adds a shared config toggle for session tabs, letting users control whether tabs share or isolate configuration.
  • Adds a Refresh Profiles button to reload available profiles without restarting the extension.
Was this useful?

Block Goose

Sources Release notes → v1.0.16 6 RELEASES · 2025-03-04 → 2025-03-26 NOTES STABLE

an open source, extensible AI agent that goes beyond code suggestions - install, execute, edit, and test with any LLM

Goose v1.0.16 adds PDF reading, shareable bots, a /plan command, Databricks+Claude 3.7, custom OpenAI headers, and Java/JDK MCP support.

└──▷ GET THIS VERSION
$ git clone --branch v1.0.16 https://github.com/block/goose.git
# already have the repo? check out this version:
$ git checkout v1.0.16
└──▷ TRY IT
Generate a structured plan for a complex task before letting Goose execute it — useful for long-horizon or multi-step agentic sessions.
$ goose /plan "Set up a Python project with CI, linting, and tests"
  • Adds --plan command in CLI to invoke a reasoner with a plan system prompt.
  • Adds PDF reader capability, enabling Goose to ingest PDF files directly.
  • Supports custom HTTP headers for the OpenAI provider.
  • Exports Azure API version as a configurable parameter.
  • Adds Databricks model format with support for Claude 3.7 with extended thinking.
+16 moreshow less
  • Allows setting the OpenAI request timeout from config.
  • Adds retry logic for the Google provider.
  • Adds Java/JDK support for MCP servers running via extensions.
  • Adds a noop tool to the tool shim for testing/passthrough scenarios.
  • Introduces shareable Goose bots for sharing configured assistant profiles.
  • Improves extension security via an environment variable denylist.
  • Supports deep-link extension installs directly from settings.
  • Expands Google Drive integration with comments, replies, folders, shortcuts, and file moves.
  • Adds read and write support for Google Sheets.
  • Adds a description field to the extension configuration and modal.
  • Enables extensions to be turned on automatically at startup.
  • Adds a models dropdown to the UI for switching models inline.
  • Adds a new configure provider flow in the UI.
  • Adds in-app log viewer to the desktop UI.
  • Introduces new toast notifications for system events.
  • Surfaces StdioProcessError messages in the UI for better MCP debugging.
5 more releases in this issue · 2025-03-04 → 2025-03-26
v1.0.15 NOTES STABLE

Goose v1.0.15 adds Google Drive write/comment support, AWS Bedrock in desktop, and a new CLI workflow builder.

└──▷ GET THIS VERSION
$ git clone --branch v1.0.15 https://github.com/block/goose.git
# already have the repo? check out this version:
$ git checkout v1.0.15
  • Adds Google Drive write tools and comment-read capability, enabling agents to read comments and write files in Drive.
  • Adds image resizing logic for Google Drive with Content::Image support for richer document handling.
  • Adds PKCE-based OAuth2 flow for Google Drive with generic token storage, improving authentication security.
  • Unifies Google Drive read/write scope across all commands so a single token covers all operations.
  • Adds basic AWS Bedrock support to the Goose desktop app as a new model provider.
+3 moreshow less
  • Introduces a CLI workflow build command for constructing and running agent workflows from the command line.
  • Adds a new extensions modal in the UI with auto-start on add and reorganized extensions settings.
  • Adds default metrics for core evaluations to standardize eval measurement.
v1.0.14 NOTES STABLE

Goose v1.0.14 adds session listing, write-approve mode, Google Sheets, Ollama tool shim, and stdin CLI support.

└──▷ GET THIS VERSION
$ git clone --branch v1.0.14 https://github.com/block/goose.git
# already have the repo? check out this version:
$ git checkout v1.0.14
└──▷ TRY IT
List all past Goose sessions to review or resume previous work.
$ goose session list
Pipe a prompt directly into Goose from another command without an interactive session.
$ echo 'Summarize the files in this directory' | goose -i -
  • Adds session list command to the CLI for viewing past sessions.
  • Adds Google Sheets support in the Google Drive built-in MCP server.
  • Adds Ollama tool shim, enabling tool-call support for Ollama-backed models.
  • Supports stdin input in the CLI via -i - or with no arguments for piped/scripted workflows.
  • Moves Google Drive credentials into the system keychain with an optional fallback.
+2 moreshow less
  • Extensions now read from config and load in the background with a visible pending state.
  • Adds a copy-to-clipboard button for error messages in toast notifications.
v1.0.13 NOTES STABLE

Goose v1.0.13 adds smart-approve mode, memory condensation, PDF/Office file support, a --debug flag, and a full benchmarking framework.

└──▷ GET THIS VERSION
$ git clone --branch v1.0.13 https://github.com/block/goose.git
# already have the repo? check out this version:
$ git checkout v1.0.13
└──▷ TRY IT
Capture verbose agent activity to diagnose tool call failures or unexpected model behaviour during a session.
$ goose session --debug
Run a one-shot task with full debug output to trace exactly what the agent does at each step.
$ goose run --debug --instructions 'Summarise the quarterly report' report.pdf
  • Enables smart-approve mode by default, allowing the agent to automatically approve low-risk tool calls without user interruption.
  • Adds memory condensation for longer-context sessions, keeping conversations coherent beyond normal context limits.
  • Supports reading PDFs natively, plus .doc/.xls and simple HTML files, broadening the range of documents Goose can process.
  • Adds --debug flag to goose session and goose run for verbose diagnostic output during CLI sessions.
  • Implements a tool permission store for persistent tracking of approved/denied tool permissions across sessions.
+12 moreshow less
  • Introduces the Goose Bench framework for functional and regression testing of agent behaviour, including parallel processing in approve mode and eval result writing to an eval directory.
  • Adds an image tool to the developer MCP, enabling Goose to capture and process screenshots (including macOS screenshots).
  • Adds Ctrl/Cmd + ↑/↓ keyboard shortcut to navigate message history in the CLI.
  • Supports Databricks OAuth refresh tokens via the Databricks API integration.
  • Adds copy message content action to the UI for quick clipboard access to any message.
  • Adds mode completion (tab-complete for modes) in the CLI.
  • Updates config endpoints for use with providers, improving provider configuration flexibility.
  • Enables building Goose inside a Docker container for portable, reproducible deployments.
  • Adds auto-including directories in binary/bench working-dir for the bench framework.
  • Splits required_extensions in bench configuration into builtin and external categories for finer control.
  • Adds UI setting configuration panel for managing settings directly from the desktop interface.
  • Retains session state through view changes in the desktop UI.
v1.0.12 NOTES STABLE

Goose v1.0.12 adds global prompt templates at startup, form injection for provider modals, and extension management in Settings v2.

└──▷ GET THIS VERSION
$ git clone --branch v1.0.12 https://github.com/block/goose.git
# already have the repo? check out this version:
$ git checkout v1.0.12
  • Loads global prompts at startup using the minijinja templating engine, enabling reusable prompt templates across sessions.
  • Introduces form injection for provider modals in the UI, streamlining provider configuration.
  • Adds extension add and edit functionality in the Settings v2 UI.
v1.0.11 NOTES STABLE

Goose v1.0.11 adds GCP Vertex AI, Claude 3.7 Sonnet with extended thinking, sessions API, .gooseignore support, and tab-based slash command completion.

└──▷ GET THIS VERSION
$ git clone --branch v1.0.11 https://github.com/block/goose.git
# already have the repo? check out this version:
$ git checkout v1.0.11
└──▷ TRY IT
Use tab completion for slash commands and MCP prompts in an interactive Goose CLI session.
$ goose
# Inside the session, type '/' then press Tab to browse available slash commands and MCP prompts
  • Adds GCP Vertex AI as a supported provider platform.
  • Adds Claude 3.7 Sonnet with extended thinking via Anthropic provider.
  • New sessions API enabling viewing and resuming previous sessions.
  • Adds .gooseignore support to restrict Goose's access to specified files or directories.
  • Adds tab-based slash command completion and prompt info completion in the CLI.
+16 moreshow less
  • Adds MCP prompt support via slash commands in the CLI.
  • Implements global command history storage.
  • Supports customizing extension timeout.
  • Supports arbitrary path for sessions in the CLI.
  • Adds goose mode to the chat window with full UI support.
  • Adds context window limit for OpenAI reasoning models.
  • Adds ability for users to turn off smart approve.
  • Builds native Intel Mac app.
  • Adds view and edit support for .goosehints file in the desktop UI.
  • Moves configure goosehints into the MoreMenu for easier access.
  • Adds extensions install link generator.
  • Adds a tutorial built-in extension for the app.
  • Improves CLI default behavior when no command is provided.
  • Installs Python 3.10 in the uvx shim before uv for better compatibility.
  • Keyboard shortcut Command/Ctrl + Comma navigates to Settings view in the desktop UI.
  • Improves the allow-tool UI.
Was this useful?

All Hands AI OpenHands

Sources Release notes → 0.30.1 5 RELEASES · 2025-03-07 → 2025-03-27 NOTES STABLE

OpenHands: AI-Driven Development

OpenHands 0.30.1 adds trajectory replay in the web app and raises the default max iterations to 250.

└──▷ GET THIS VERSION
$ git clone --branch 0.30.1 https://github.com/All-Hands-AI/OpenHands.git
# already have the repo? check out this version:
$ git checkout 0.30.1
  • Adds trajectory replay support in the web app, enabled via the FEATURE_TRAJECTORY_REPLAY feature flag.
  • Tracks accumulated token usage across a session instead of per-request token usage, giving a running total.
  • Raises the default max iterations from the previous limit to 250, allowing agents to tackle longer tasks out of the box.
  • Improves the startup experience for the VSCode extension integration.
4 more releases in this issue · 2025-03-07 → 2025-03-27
0.30.0 NOTES STABLE

OpenHands 0.30.0 adds live API cost/token display, web screenshots in headless trajectories, and auto-generated conversation titles.

└──▷ GET THIS VERSION
$ git clone --branch 0.30.0 https://github.com/All-Hands-AI/OpenHands.git
# already have the repo? check out this version:
$ git checkout 0.30.0
  • Displays API cost and token usage live in the frontend during agent sessions.
  • Adds a headless-mode config option to include web screenshots in trajectories for richer audit trails.
  • Auto-generates conversation titles from the first user message.
  • Improved UI for interactive browser action view.
  • Updated file explorer styles for a cleaner workspace experience.
└──▷ BREAKING ON UPGRADE
  • !Download workspace and download files buttons are removed; users are redirected to VS Code instead.
  • !File upload functionality is removed from the UI; users are redirected to VS Code instead.
  • !The continue button is removed from the UI.
  • !Bash SOFT timeout is reduced from 30 to 10 seconds, which may cause previously passing long-running bash commands to time out.
0.29.1 NOTES STABLE

OpenHands 0.29.1 adds a dedicated security microagent for security-focused autonomous tasks.

└──▷ GET THIS VERSION
$ git clone --branch 0.29.1 https://github.com/All-Hands-AI/OpenHands.git
# already have the repo? check out this version:
$ git checkout 0.29.1
  • Adds a security microagent, enabling OpenHands to apply security-specific reasoning and guidance during autonomous coding sessions.
0.29.0 NOTES STABLE

OpenHands 0.29.0 adds Swift Linux microagent support and exposes microagent recall observations to the UI and LLM.

└──▷ GET THIS VERSION
$ git clone --branch 0.29.0 https://github.com/All-Hands-AI/OpenHands.git
# already have the repo? check out this version:
$ git checkout 0.29.0
  • Adds a Swift Linux Installation Microagent for automated Swift environment setup on Linux.
  • Makes microagents available in the event stream as recall observations, accessible from both the UI and the LLM.
  • Adds TestGenEval benchmark support for evaluating test generation capabilities.
0.28.0 NOTES STABLE

OpenHands 0.28 adds Docker-in-runtime, Kubernetes cluster support, a CodeAct thinking tool, microagent templates, and JSON structured logging.

└──▷ GET THIS VERSION
$ git clone --branch 0.28.0 https://github.com/All-Hands-AI/OpenHands.git
# already have the repo? check out this version:
$ git checkout 0.28.0
└──▷ TRY IT
Enable structured JSON logs so your SIEM or log aggregator can parse OpenHands output without custom parsers.
$ LOG_JSON=true docker run --rm -e LOG_JSON=true ghcr.io/all-hands-ai/openhands:0.28.0
  • Adds sound and browser notifications for agent state changes, so practitioners are alerted when long-running tasks complete.
  • New microagent template system lets users create properly structured domain-specific agents.
  • Adds a 'thinking' tool to the CodeAct agent, enabling explicit reasoning steps during task execution.
  • Enables OpenHands to run Docker inside its own runtime, unlocking containerized workflows within the agent sandbox.
  • Enables OpenHands to start a Kubernetes cluster from within its runtime, supporting cluster-level automation tasks.
+1 moreshow less
  • Adds structured JSON logging via the LOG_JSON environment variable for improved observability and log ingestion.
└──▷ BREAKING ON UPGRADE
  • !The default Claude model is now claude-3-7-sonnet-20250219 (previously an older version), which may affect costs, behavior, or rate-limit quotas for deployments that rely on the default.
Was this useful?

Zed

Sources Release notes → v0.179.2 5 RELEASES · 2025-03-03 → 2025-03-26 NOTES STABLE

Zed v0.179.2 adds subtle Edit Prediction mode, word completions, custom Git hosting, Vim global marks, and more.

└──▷ GET THIS VERSION
$ git clone --branch v0.179.2 https://github.com/zed-industries/zed.git
# already have the repo? check out this version:
$ git checkout v0.179.2
└──▷ USE IT
Enable the subtle Edit Prediction mode so AI completions stay out of the way until you need them.
json
{
  "edit_predictions": {
    "mode": "subtle"
  }
}
Use Zed's own in-window dialogs instead of macOS system prompts for confirmations.
json
{
  "use_system_prompts": false
}
  • Adds "edit_predictions": { "mode": "subtle" } to settings.json to hide predicted text by default, revealing it only while holding a modifier key; also togglable via the Edit Prediction status bar menu.
  • Adds editor: show word completions action for word-based completion suggestions.
  • Adds git_hosting_providers setting for configuring custom Git hosting providers.
  • Adds use_system_prompts setting (macOS); set to false to use Zed's in-window confirmation dialogs instead of system dialogs.
  • Adds SelectRepo Git action that opens the repository selector in a modal.
+9 moreshow less
  • Enables toggling Edit Prediction display modes (eager or subtle) directly from the status bar menu UI.
  • Adds Vim global marks '[A-Z] with persistence across workspace sessions.
  • Adds Vim sentence marks '( and ')'.
  • Allows signing into Copilot from assistant settings independently of the edit_prediction_provider setting, enabling Copilot chat with a different prediction provider.
  • Supports reading from anonymous file descriptors (e.g., process substitution) on macOS and Linux.
  • Improves SSH connection string handling for multiple @ characters, better supporting JumpServer jump hosts (e.g., ssh jim.lv@[email protected]@11.239.1.231).
  • Adds filtering of the extensions list by category.
  • Adds fallback colors for version_control.<variant> theme properties.
  • Adds support for extended keyboard keys on Mac (F20–F35).
└──▷ BREAKING ON UPGRADE
  • !The copilot key under features in settings is removed; use edit_prediction_provider instead.
4 more releases in this issue · 2025-03-03 → 2025-03-26
v0.178.4 NOTES STABLE

Zed v0.178.4 adds git.hunk_style staged-hunk visibility, new language servers, JSX auto-close, and Vim :reg support.

└──▷ GET THIS VERSION
$ git clone --branch v0.178.4 https://github.com/zed-industries/zed.git
# already have the repo? check out this version:
$ git checkout v0.178.4
└──▷ TRY IT
Inspect all current Vim register contents mid-session without leaving the editor.
$ :reg
  • Adds git.hunk_style setting to control whether staged or unstaged hunks are rendered as hollow in the gutter.
  • Gutter diff hunks now visually indicate whether a hunk is staged or unstaged.
  • Adds alt-shift-enter keybinding mapped to toast::RunAction to interact with buttons on status toasts.
  • Adds a 'secondary' meta key to the keystroke parser, mapping to cmd on macOS and ctrl on all other platforms — enabling cross-platform keybinding definitions.
  • Adds vtsls and typescript-language-server to the list of available language servers.
+12 moreshow less
  • Adds support for clangd's inactiveRegions extension for C/C++ files.
  • Adds Open Remote... entry to the File menu.
  • Adds a Copilot sign-out button in Assistant settings.
  • Adds support for the workspace/executeCommand LSP request for actions' data.
  • Adds support for auto-closing of JSX tags.
  • Adds Vim :reg[isters] command to display current register values.
  • Adds Vim <count>% motion.
  • Adds Vim ctrl-a/ctrl-x support for toggling boolean values.
  • Supports opening folders in Zed from third-party macOS file managers (e.g. Path Finder, Super Charge) via their 'Open With' menu.
  • User and global .npmrc configuration is now respected when running user-provided NPM binaries (also applied automatically when npm from PATH is newer than 18.0.0).
  • Enables soft-wrap by default in Markdown files.
  • Linux: ctrl-o (nano save) now works by default in the terminal.
└──▷ BREAKING ON UPGRADE
  • !The vim::Backspace and vim::Space actions are renamed to vim::WrappingLeft and vim::WrappingRight respectively. The old names remain available but are deprecated.
v0.177.9 NOTES STABLE

Zed v0.177.9 adds multibuffer navigation actions and a new multibuffer key context for keybindings.

└──▷ GET THIS VERSION
$ git clone --branch v0.177.9 https://github.com/zed-industries/zed.git
# already have the repo? check out this version:
$ git checkout v0.177.9
  • Adds multibuffer key context, enabling keybindings scoped specifically to multibuffer editors.
  • Adds editor::MoveToStartOfNextExcerpt and editor::MoveToEndOfPreviousExcerpt actions for navigating between excerpts in multibuffers.
  • On macOS, cmd-down and cmd-shift-down now move to the start of the next excerpt in multibuffers (and to the end of the last line in singleton buffers).
  • Git on macOS now uses the system Git binary to create commits, enabling compatibility with pre-commit hooks.
└──▷ BREAKING ON UPGRADE
  • !On macOS, committing from Zed now requires Git to be installed on the system; the previously bundled Git binary is no longer used for commits.
v0.177.7 NOTES STABLE

Zed v0.177.7 adds built-in Git support, editor::OrganizeImports, inlay-hint modifier toggles, and SSH config-file connections.

└──▷ GET THIS VERSION
$ git clone --branch v0.177.7 https://github.com/zed-industries/zed.git
# already have the repo? check out this version:
$ git checkout v0.177.7
└──▷ USE IT
Toggle inlay hints by holding Alt while editing, without permanently enabling them.
json
"inlay_hints": {
  "toggle_on_modifiers_press": {
    "control": false,
    "shift": false,
    "alt": true,
    "platform": false,
    "function": false
  }
}
Suppress edit predictions in all TypeScript test files using an absolute glob.
json
"edit_predictions": {
  "disabled_globs": [
    "/home/user/projects/**/*.test.ts"
  ]
}
  • Adds toggle_on_modifiers_press keys (control, shift, alt, platform, function) inside the inlay_hints config block to show/hide inlay hints by holding modifier keys.
  • Adds enabled_in_assistant setting under Edit Predictions to control whether edit predictions are active inside the AI assistant.
  • Adds support for absolute globs in edit_predictions.disabled_globs for finer-grained prediction suppression.
  • SSH: Adds support for specifying ssh_config files via ssh -F ssh_config in the remote connection string.
  • Changes the always_show_close_button config key to show_close_button and introduces a new hidden value to permanently suppress the tab close button.
+10 moreshow less
  • Adds stop_at_indent support to Editor::DeleteToBeginningOfLine for indent-aware line deletion.
  • Adds the editor::OrganizeImports action (default binding alt-shift-o) to sort imports and remove unused ones via the active LSP.
  • Adds Vim git keyboard shortcuts: d u/d U to stage/unstage in the project diff view, d o/d O to show/toggle staged in the editor, and d p to restore a hunk.
  • Adds ability to set the default Vim mode via configuration.
  • Adds copy permalink action for self-hosted GitHub Enterprise instances.
  • Adds support for unfolding multibuffer excerpts when editing their contents.
  • Adds clickable file paths in the Odin language diagnostic format.
  • SSH: Adds support for downloading zed-remote-server via busybox wget (Alpine Linux and similar).
  • Built-in Git support: view diffs, stage changes, commit, and push without leaving the editor.
  • Improves performance of rendering multibuffers with very large numbers of buffers.
└──▷ BREAKING ON UPGRADE
  • !The always_show_close_button config key is renamed to show_close_button; existing configs using the old key must be updated.
  • !Several keymap actions are renamed for consistency (e.g., GoToPrevHunkGoToPreviousHunk, TabPrevBacktab); use 'Backup and Update' in the keymap file to migrate.
v0.176.1 NOTES STABLE

Zed v0.176.1 adds AWS Bedrock AI support, inline diagnostics, allow_rewrap/on_last_window_closed settings, and enhanced Git integrations beta.

└──▷ GET THIS VERSION
$ git clone --branch v0.176.1 https://github.com/zed-industries/zed.git
# already have the repo? check out this version:
$ git checkout v0.176.1
└──▷ USE IT
Prevent editor::Rewrap from reflowing text in Markdown files where manual line breaks are intentional.
json
{
  "languages": {
    "Markdown": {
      "allow_rewrap": false
    }
  }
}
  • Adds allow_rewrap setting to control editor::Rewrap behavior on a per-language basis.
  • Adds on_last_window_closed setting to quit the app when the last window is closed.
  • Adds stop_at_indent option for MoveToBeginningOfLine and SelectToBeginningOfLine actions.
  • Adds --target-dir support for Rust tasks via the task runner.
  • Supports edit_prediction_provider set to none to immediately disable Edit Predictions.
+20 moreshow less
  • Adds AWS Bedrock as a provider for the Zed Assistant.
  • Adds initial inline diagnostics support in the editor.
  • Adds support for package-version-server discovery on $PATH for version-aware completions.
  • Adds support for repositories hosted on chromium.googlesource.com for Git blames and permalinks.
  • Adds ability to specify an HTTP/HTTPS proxy for Copilot.
  • Adds support for tcsh/csh shells as login shell when loading environment variables.
  • Adds support for doc tests in tasks for Rust.
  • Adds syntax scopes to themes, enabling finer-grained token theming.
  • Adds vim-exchange implementation for Vim mode, enabling text region swapping.
  • Adds default key binding grr for Vim::CurrentLine in replace-with-register mode.
  • Adds Emacs keybinding for alt-m (back-to-indentation).
  • Adds Emacs keybindings alt-{ and alt-} for paragraph navigation.
  • Adds support for the 'menu' key on Windows.
  • Supports selecting the commit message text in the git commit UI.
  • Launches private beta for enhanced Git integrations (invite-only via waitlist).
  • Improves language server fallback handling: when the first configured server cannot handle Rename, Document Highlights, Find All References, Go to Definition, Go to Declaration, Go to Implementation, or Go to Type Definition, Zed now tries the next capable server.
  • Edit Predictions no longer require a modifier key when indentation matches the surrounding block.
  • Edit Predictions disable the 'This Buffer' option when predictions are turned off for that language.
  • Improves project panel performance in large Git repositories.
  • On Mac, cmd-up now navigates to the previous multibuffer excerpt start and cmd-down to the next multibuffer excerpt end in the default keymap.
└──▷ BREAKING ON UPGRADE
  • !editor::RevertSelectedHunks is renamed to git::Restore; update any custom keybindings or action references.
  • !editor::RevertFile is renamed to git::RestoreFile; update any custom keybindings or action references.
  • !editor::ExpandAllHunkDiffs is renamed to editor::ExpandAllDiffHunks; update any custom keybindings or action references.
Was this useful?
◆  Local LLM Runtimes

Jan AI Jan

Sources Release notes → v0.5.16 NOTES

Jan v0.5.16 adds API token rotation, Cortex API authorization, Model Hub filters, and preserves token speed in threads.

└──▷ GET THIS VERSION
$ git clone --branch v0.5.16 https://github.com/janhq/jan.git
# already have the repo? check out this version:
$ git checkout v0.5.16
  • Adds Cortex API Authorization, rotating the API token on each run for improved credential hygiene.
  • Adds filter options and responsive layout to the Jan Model Hub, with a sticky filter panel and tooltip filters for max model size and search results.
  • Adds a manual refresh control so users can pull an updated list of cloud models on demand.
  • Preserves and displays token generation speed within chat threads.
  • Adds OpenAI GPT-4.5 preview and Anthropic Claude 3.7 Sonnet to the built-in model list.
+5 moreshow less
  • Adds a checkmark indicator on the currently selected model in the model list.
  • Adds a 'recommended' label to highlight engine variants in the engine selection UI.
  • Keeps the Jan Model Hub model list automatically up to date without requiring a manual refresh.
  • Adds scrollbar visibility/style options in Settings.
  • Integrates PostHog analytics into Jan Web.
Was this useful?

KoboldCpp

Sources Release notes → v1.86.2 2 RELEASES · 2025-03-01 → 2025-03-14 NOTES STABLE

KoboldCpp v1.86.2 adds Gemma3 vision support, quantized KV with context shift, and new CLI flags --defaultgenamt and --nobostoken.

└──▷ GET THIS VERSION
$ git clone --branch v1.86.2 https://github.com/LostRuins/koboldcpp.git
# already have the repo? check out this version:
$ git checkout v1.86.2
└──▷ TRY IT
Cap default token output for third-party clients that omit a generation length, preventing runaway generation in API-driven workflows.
$ koboldcpp.exe --model mymodel.gguf --defaultgenamt 512
Run Gemma3 with vision support by loading the base GGUF and its mmproj projection file together.
$ koboldcpp.exe --model gemma-3-4b-it-Q4_K_M.gguf --mmproj mmproj-gemma-3-4b-it.gguf
  • Adds --defaultgenamt option to control the maximum number of tokens generated by default when a third-party client (e.g. via chat completions API) does not specify a value.
  • Adds --nobostoken option to prevent BOS tokens from being automatically prepended at generation start.
  • Allows --quantkv (quantized KV cache) to be used together with context shift — the only remaining requirement is flash attention enabled.
  • Exposes speculative decoding success rate information in the /api/extra/perf/ endpoint.
  • Adds instruct preset KoboldCppAutomatic in Kobold Lite, which automatically retrieves the instruct template from KoboldCpp.
+6 moreshow less
  • Integrates Gemma3 support including vision (mmproj) — load a Gemma3 GGUF alongside its mmproj file; inline images work via the Chat Completions API (e.g. in SillyTavern).
  • Allows admin mode to runtime-swap between GGUF model files in addition to swapping between .kcpps configs, with automatic GPU layer selection.
  • Adds support for downloading Image Generation LoRAs from URL via launch arguments.
  • Embeds Image Generation parameter metadata into generated images.
  • Re-enables CUDA compute capability 3.7 (K80) support.
  • Adds option to save stories to Google Drive when running in Colab.
1 more release in this issue · 2025-03-01 → 2025-03-14
v1.85.1 NOTES STABLE

KoboldCpp v1.85.1 adds networked save slots, Top-N Sigma sampling, and CLI config export flags.

└──▷ GET THIS VERSION
$ git clone --branch v1.85.1 https://github.com/LostRuins/koboldcpp.git
# already have the repo? check out this version:
$ git checkout v1.85.1
└──▷ TRY IT
Host a persistent story server so any connected device can save and load stories, protected by an API key.
$ koboldcpp.exe --model mymodel.gguf --savedatafile stories.db --password mysecretkey
Snapshot your current launch configuration to a reusable .kcpps file for later use or admin-mode model switching.
$ koboldcpp.exe --model mymodel.gguf --contextsize 4096 --gpulayers 32 --exportconfig myconfig.kcpps
  • Adds --savedatafile <path> flag to enable server-sided networked save slots, allowing persistent story save/load over the network from any browser or device; combine with --password to require an API key for save/load access.
  • Adds --exportconfig and --exporttemplate CLI flags to export any set of launch arguments as a .kcpps or .kcppt config file from the command line, usable for model switching in admin mode.
  • Adds Top-N Sigma sampler (combinable with Top-K, Temperature, and XTC only) with UI support in Kobold Lite.
  • Adds Side Panel Mode for KoboldAI Lite.
  • Adds improved thinking support in Kobold Lite, including display, forced injection of <think> tokens in AI replies, and filtering of old thoughts in subsequent generations.
+3 moreshow less
  • Adds customization options for assistant jailbreak prompt in Kobold Lite.
  • Reworks load/save UI in Kobold Lite with 2 extra local slots and 8 extra remote save slots.
  • Adds Granite model support and Vulkan/CUDA enhancements via upstream merge.
Was this useful?

LocalAI

Sources Release notes → v2.27.0 NOTES

LocalAI v2.27.0 ships a full WebUI redesign, vLLM config additions, GGUF auto context detection, and reply-prefix support.

└──▷ GET THIS VERSION
$ git clone --branch v2.27.0 https://github.com/mudler/LocalAI.git
# already have the repo? check out this version:
$ git checkout v2.27.0
  • Adds vLLM config options to disable logging, set dtype, and enforce per-prompt media limits.
  • Adds GGUF auto-detection of default context size from file, removing the need to set it manually.
  • Adds reply prefix support, allowing a custom prefix to be specified for model replies.
  • Supports new model architectures: Gemma 3, Mistral, and Deepseek.
  • Complete WebUI redesign with modernised navigation, chat interface, Talk, Audio Generation, Image Generation, Models Overview, API Overview, Login, and Swarm/P2P dashboard screens.
+3 moreshow less
  • WebUI model gallery gains pagination and filtering, including separate filtering for text, TTS, and image models.
  • WebUI chat interface automatically detects model usage type and surfaces a link to relevant model documentation.
  • AIO (All-in-One) images updated: CPU AIO ships llama3.1 (text), granite-embeddings (embeddings), minicpm (vision); GPU AIO ships localai-functioncall-qwen2.5-7b-v0.5 (text), granite-embeddings (embeddings), minicpm (vision).
Was this useful?

SGLang

Sources Release notes → v0.4.4 NOTES

SGLang v0.4.4 adds FlashInfer MLA with radix cache, DeepGEMM via SGL_ENABLE_JIT_DEEPGEMM, INT8 DeepSeek R1, hierarchical caching, and SageMaker support.

└──▷ GET THIS VERSION
$ git clone --branch v0.4.4 https://github.com/sgl-project/sglang.git
# already have the repo? check out this version:
$ git checkout v0.4.4
└──▷ TRY IT
Enable FlashInfer MLA with radix cache and chunked prefill for faster DeepSeek V3/R1 prefill on NVIDIA hardware.
$ python -m sglang.launch_server --model-path deepseek-ai/DeepSeek-R1 --enable-flashinfer-mla
Activate DeepGEMM JIT compilation for NVIDIA Hopper (H100/H200) to maximize DeepSeek inference throughput.
$ export SGL_ENABLE_JIT_DEEPGEMM=1
python -m sglang.launch_server --model-path deepseek-ai/DeepSeek-R1 --enable-flashinfer-mla
  • Enables FlashInfer MLA support — fully compatible with radix cache, chunked prefill, and MTP — via --enable-flashinfer-mla.
  • Integrates DeepGEMM for NVIDIA Hopper architectures, enabled by setting export SGL_ENABLE_JIT_DEEPGEMM=1.
  • Adds Multi-Token Prediction (MTP) speculative decoding for DeepSeek-V3/R1 with both Triton and FlashInfer backends, compatible with radix cache and chunked prefill.
  • Adds hierarchical caching support for SGLang.
  • Adds SageMaker support.
+11 moreshow less
  • Adds support for OpenAI API o1 model.
  • Adds support for Qwen 2.5 VL (vision-language) model.
  • Adds support for Qwen reward model (Qwen RM).
  • Adds INT8 quantization support for DeepSeek R1 models (meituan/DeepSeek-R1-Channel-INT8 and meituan/DeepSeek-R1-Block-INT8).
  • Adds Blackwell architecture Block Scale FP8 GEMM support.
  • Adds support for page size greater than 1.
  • Adds nvidia modelopt FP8 KV cache support.
  • Adds support for RDMA in Docker deployments.
  • Adds multi-node inference deployment via the LWS method in Kubernetes clusters.
  • Adds enhanced distributed parallelism support (e.g., two-node configurations with DP 2, TP 16).
  • Delivers optimized W8A8 FP8 implementation with 15%+ performance improvement on sm89, with gains across sm80, sm89, and sm90 architectures.
Was this useful?

oobabooga's Text Generation WebUI (textgen)

Sources Release notes → v2.6 NOTES

oobabooga text-gen v2.6 adds a top N-sigma sampler, SuperboogaV2 GPU/date-time upgrades, and a refreshed Perplexity Colors extension.

└──▷ GET THIS VERSION
$ git clone --branch v2.6 https://github.com/oobabooga/textgen.git
# already have the repo? check out this version:
$ git checkout v2.6
  • Adds the top N-sigma sampler for token sampling.
  • Improves SuperboogaV2 with Date/Time Embeddings, GPU support, and multiple file format handling.
  • Updates the Perplexity Colors extension to v2 with additional improvements.
Was this useful?

vLLM

Sources Release notes → v0.8.2 3 RELEASES · 2025-03-18 → 2025-03-23 NOTES STABLE

vLLM v0.8.2 adds FP8 KV cache, guidance structured output backend, spec decode for top-p/k, and --disable-uvicorn-access-log to the V1 engine.

└──▷ GET THIS VERSION
$ git clone --branch v0.8.2 https://github.com/vllm-project/vllm.git
# already have the repo? check out this version:
$ git checkout v0.8.2
└──▷ TRY IT
Suppress verbose per-request access logs in production deployments to reduce log noise.
$ vllm serve meta-llama/Llama-3.1-8B-Instruct --disable-uvicorn-access-log
  • Adds --disable-any-whitespace option for xgrammar structured output in the V1 engine.
  • Adds --disable-uvicorn-access-log parameter to suppress access log output.
  • Adds a flag to disable cascade attention in the V1 engine.
  • Supports FP8 KV cache in the V1 engine (including FA3 support).
  • Integrates fastsafetensors loader for faster model weight loading.
+10 moreshow less
  • Enables speculative decoding for top-p and top-k sampling in the V1 engine.
  • Supports tool calling and reasoning parser on the frontend.
  • Supports reset of prefix cache by specified device.
  • Adds pipeline parallel support to TransformersModel.
  • Enables CUDA graph support for Llama 3.2 Vision.
  • Enables Triton (ROCm) attention backend for Nvidia GPUs in the V1 engine.
  • Adds TPU MHA Pallas backend for the V1 engine.
  • Adds tensor parallel multiprocessing support for TPU in the V1 engine.
  • Supports the Tele-FLM model.
  • Adds a Kubernetes deployment guide with CPU support.
└──▷ BREAKING ON UPGRADE
  • !OpenVINO support has been removed from core vLLM in favor of an external plugin.
2 more releases in this issue · 2025-03-18 → 2025-03-23
v0.8.1 NOTES STABLE

vLLM v0.8.1 adds Zamba2 model support and LoRA for embedding models alongside V1 engine fixes.

└──▷ GET THIS VERSION
$ git clone --branch v0.8.1 https://github.com/vllm-project/vllm.git
# already have the repo? check out this version:
$ git checkout v0.8.1
  • Adds support for Zamba2 models.
  • Enables LoRA support for embedding models.
  • Optimizes the V1 Rejection Sampler using Triton Kernels for speculative decoding.
  • Re-enables Gemma3 model support on the V1 engine.
v0.8.0 NOTES STABLE

vLLM v0.8.0 enables the V1 engine by default, adds new API endpoints, DeepSeek/MLA improvements, new models, and Blackwell GPU support.

└──▷ GET THIS VERSION
$ git clone --branch v0.8.0 https://github.com/vllm-project/vllm.git
# already have the repo? check out this version:
$ git checkout v0.8.0
└──▷ TRY IT
Force the legacy V0 engine when your model or workflow is not yet compatible with the new V1 default.
$ VLLM_USE_V1=0 vllm serve meta-llama/Llama-3-8B-Instruct
Check server load statistics from the new /load endpoint to inform autoscaling decisions.
$ curl http://localhost:8000/load
  • V1 engine is now enabled by default; disable with VLLM_USE_V1=0 environment variable.
  • New /load API endpoint exposes load statistics from the API server.
  • New /is_sleeping API endpoint for checking server sleep state.
  • Enables /score endpoint for embedding models.
  • Adds return_tokens_as_token_ids as a request parameter to the API server.
+33 moreshow less
  • Adds enable_expert_parallel argument to enable Distributed Expert Parallelism (EP) for DeepSeek models.
  • Adds --show-hidden-metrics-for-version CLI argument to expose hidden metrics.
  • Adds vllm bench CLI subcommand for benchmarking.
  • Adds pluggable scheduler support in the V1 engine.
  • Adds SupportsV0Only protocol for model definitions to opt out of V1.
  • Supports Structured Outputs in V1 engine.
  • Supports LoRA in V1 engine.
  • Supports ngram speculative decoding in V1 engine.
  • Supports reasoning output (chain-of-thought) via the API, including streaming and outlines engine integration.
  • Supports SSL Key Rotation in the HTTP server.
  • Enables streaming for the Transcription API.
  • Supports Image Embedding as API input.
  • Makes the model parameter optional in API requests.
  • Supports KV cache offloading and disaggregated prefill via LMCache connector, including chunked prefill.
  • Adds FlashMLA integration for DeepSeek MLA, including V1 support and chunked prefill.
  • Adds EP/TP MoE + DP Attention for DeepSeek distributed serving.
  • Adds MTP support for k > n_predict in DeepSeek MTP speculative decoding.
  • Adds streamK for block-quantized CUTLASS kernels (GEMM performance).
  • Adds GPTQAllSpark quantization method.
  • Adds Deepseek GGUF support including a MoE GGUF kernel.
  • Adds support for NVIDIA Blackwell nvfp4 and fp8 CUTLASS GEMM kernels.
  • Adds ModelOpt FP4 checkpoint support for Blackwell.
  • Supports new models: Gemma 3, Mistral Small 3.1, Phi-4-multimodal-instruct, Grok1, QwQ-32B (with tool calling), and Zamba2.
  • Adds LoRA support for TransformersModel and Gemma3ForConditionalGeneration.
  • Enables prefix caching by default on TPU.
  • Adds tensor parallel support via Ray on TPU.
  • Adds start_profile/stop_profile support in TPU worker.
  • Adds TPU multimodal model support for ragged attention.
  • Adds Neuron device communicator for vLLM V1.
  • Supports FP8 KV cache in the CPU backend.
  • Adds CPU inference with VXE ISA for s390x architecture.
  • vLLM now defaults generation_config from the model for chat template and sampling parameters such as temperature.
  • Updates PyTorch to 2.6.0, CUDA default to 12.4, and Ray to 2.43.
└──▷ BREAKING ON UPGRADE
  • !The default value of seed is now None (previously a fixed integer); explicitly set seed for reproducibility.
  • !The kv_cache and attn_metadata arguments for a model's forward method have been removed; access them via forward_context on the attention backend instead.
  • !vLLM now defaults generation_config from the model for chat template and sampling parameters (e.g. temperature); existing overrides may behave differently.
  • !The metrics vllm:time_in_queue_requests, vllm:model_forward_time_milliseconds, and vllm:model_execute_time_milliseconds are deprecated and subject to removal.
Was this useful?
◆  AI Model & Data Infrastructure

Microsoft ONNX Runtime

Sources Release notes → v1.21.0 NOTES

ONNX Runtime v1.21.0 adds chat mode, TensorRT 10.8, QNN shared memory, OpenVINO weights sharing, and expanded tokenizer support.

└──▷ GET THIS VERSION
$ git clone --branch v1.21.0 https://github.com/microsoft/onnxruntime.git
# already have the repo? check out this version:
$ git checkout v1.21.0
└──▷ TRY IT
Build ONNX Runtime with the WebGPU EP using an external Dawn source and Vulkan backend enabled.
$ cmake .. \
  -Donnxruntime_USE_EXTERNAL_DAWN=ON \
  -Donnxruntime_CUSTOM_DAWN_SRC_PATH=/path/to/dawn \
  -Donnxruntime_ENABLE_DAWN_BACKEND_VULKAN=ON \
  -Donnxruntime_BUILD_DAWN_MONOLITHIC_LIBRARY=ON
  • Introduces trt_op_types_to_exclude option to exclude specific ops from TensorRT assignment, giving fine-grained control over TensorRT EP graph partitioning.
  • Adds preload_dlls Python API for the CUDA EP to coexist with PyTorch without DLL conflicts.
  • Adds CMake option onnxruntime_BUILD_QNN_EP_STATIC_LIB for building QNN EP as a static library; QNN EP is now built as a shared library/DLL by default (use --use_qnn static_lib to retain old behavior).
  • Adds CMake options onnxruntime_USE_EXTERNAL_DAWN, onnxruntime_CUSTOM_DAWN_SRC_PATH, onnxruntime_BUILD_DAWN_MONOLITHIC_LIBRARY, onnxruntime_ENABLE_PIX_FOR_WEBGPU_EP, onnxruntime_ENABLE_DAWN_BACKEND_VULKAN, and onnxruntime_ENABLE_DAWN_BACKEND_D3D12 for WebGPU EP build configuration.
  • Enables onnxruntime_USE_CUDA_NHWC_OPS by default for CUDA builds.
+19 moreshow less
  • Adds support for TensorRT 10.8, including default assignment of DDS ops NMS, RoiAlign, and NonZero to TensorRT.
  • Adds chat mode support for CPU, GPU, and WebGPU execution.
  • Adds support for decoder model pipelines.
  • Adds Java API support for MultiLoRA.
  • Introduces QNN shared memory support for the QNN EP.
  • Adds support for QAIRT/QNN SDK 2.31 and a Python 3.13 package for QNN EP.
  • Introduces OpenVINO EP Weights Sharing feature.
  • Adds contrib op support in OpenVINO EP: SkipLayerNormalization, MatMulNBits, FusedGemm, FusedConv, EmbedLayerNormalization, BiasGelu, Attention, DynamicQuantizeMatMul, FusedMatMul, QuickGelu, SkipSimplifiedLayerNormalization.
  • Adds support for caching generated CoreML models.
  • Expands tokenizer support to include ChatGLM, Baichuan2, and Phi-4 models.
  • Adds full Phi-4 pre/post-processing support for text, vision, and audio.
  • Introduces RegEx pattern loading from tokenizer.json.
  • Adds support for loading tokenizer data from a memory blob in the C API.
  • Introduces a new tokenizer op schema to unify the tokenizer codebase.
  • Adds support for WASM64 (build from source).
  • Increases minimum required CMake version from 3.26 to 3.28 and adds support for CMake 4.0.
  • Increases minimum required Python version from 3.8 to 3.10 for building ONNX Runtime from source.
  • Removes the onnxruntime_USE_PREINSTALLED_EIGEN CMake option.
  • Upgrades Gradle from 7.x to 8.x and JDK from 11 to 17 for Android builds.
└──▷ BREAKING ON UPGRADE
  • !Chat mode introduces breaking API changes — see the migration guide at https://onnxruntime.ai/docs/genai/howto/migrate.html.
  • !QNN EP is now built as a shared library/DLL by default; builds that previously relied on static linking must add --use_qnn static_lib.
  • !All prebuilt Windows packages now require VC++ Runtime >= 14.40 (previously 14.38); lower versions will cause a crash on initialization.
  • !Minimum iOS SDK requirement raised to >= 15.1.
  • !Minimum Android API requirement raised to >= 24 (Android 7).
  • !All macOS packages now require macOS >= 13.3.
  • !Minimum CMake version increased from 3.26 to 3.28.
  • !Minimum Python version for building from source increased from 3.8 to 3.10.
  • !The onnxruntime_USE_PREINSTALLED_EIGEN CMake option has been removed.
  • !TVM EP has been removed from the source tree.
  • !NNAPI EP is marked for deprecation following Google's deprecation of NNAPI.
Was this useful?

Ollama

Sources Release notes → v0.6.3 4 RELEASES · 2025-03-11 → 2025-03-22 NOTES STABLE

Get up and running with Kimi-K2.6, GLM-5.2, MiniMax, DeepSeek, gpt-oss, Qwen, Gemma and other models.

Ollama v0.6.3 adds sliding window attention optimizations for Gemma 3 and smarter ollama create for safetensors imports.

└──▷ GET THIS VERSION
$ git clone --branch v0.6.3 https://github.com/ollama/ollama.git
# already have the repo? check out this version:
$ git checkout v0.6.3
  • Adds sliding window attention optimizations for Gemma 3, improving inference speed and memory efficiency for long context windows.
  • ollama create now reports the name of unsupported architectures instead of failing silently.
3 more releases in this issue · 2025-03-11 → 2025-03-22
v0.6.2 NOTES STABLE

Ollama v0.6.2 adds multi-image support for Gemma 3 and AMD Strix Halo GPU support.

└──▷ GET THIS VERSION
$ git clone --branch v0.6.2 https://github.com/ollama/ollama.git
# already have the repo? check out this version:
$ git checkout v0.6.2
  • Supports multiple images in a single Gemma 3 prompt, enabling multimodal workflows.
  • Adds support for AMD Strix Halo GPUs.
  • ollama create --quantize now works when converting Gemma 3 models from safetensors format.
v0.6.1 NOTES STABLE

Ollama v0.6.1 adds Command A model support, verbose model inspection, and new CLI hotkeys.

└──▷ GET THIS VERSION
$ git clone --branch v0.6.1 https://github.com/ollama/ollama.git
# already have the repo? check out this version:
$ git checkout v0.6.1
└──▷ TRY IT
Inspect full model metadata and configuration details — useful when debugging model behavior or confirming quantization and parameters.
$ ollama show --verbose llama3
Pull and run the new Command A enterprise model for high-quality reasoning tasks.
$ ollama run command-a
  • Adds Command A, a 111B-parameter enterprise-grade model, to the Ollama library.
  • New ollama show --verbose / ollama show -v flag prints additional model data beyond the default output.
  • Adds Ctrl+P and Ctrl+N hotkeys for navigating history in ollama run interactive sessions.
v0.6.0 NOTES STABLE

Ollama v0.6.0 adds support for Google Gemma 3 in 1B, 4B, 12B, and 27B parameter sizes.

└──▷ GET THIS VERSION
$ git clone --branch v0.6.0 https://github.com/ollama/ollama.git
# already have the repo? check out this version:
$ git checkout v0.6.0
└──▷ TRY IT
Run the Gemma 3 27B model locally for a large-context reasoning task.
$ ollama run gemma3:27b
  • Supports Google Gemma 3 multimodal model in 1B, 4B, 12B, and 27B parameter sizes via ollama run gemma3.
Was this useful?
Other / Uncategorized
◆  AI OBSERVABILITY

Arize Phoenix

Sources Release notes → arize-phoenix-v8.19.0 12 RELEASES · 2025-03-01 → 2025-03-25 NOTES STABLE

Arize Phoenix v8.19.0 adds a Config tab to the tracing UI.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v8.19.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v8.19.0
  • Adds a Config tab to the tracing UI, giving practitioners a dedicated view for tracing configuration settings.
11 more releases in this issue · 2025-03-01 → 2025-03-25
arize-phoenix-otel-v0.9.0 NOTES STABLE

Arize Phoenix OTel v0.9.0 adds a warning when SimpleSpanProcessor is detected.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-otel-v0.9.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-otel-v0.9.0
  • Adds a runtime warning when SimpleSpanProcessor is used, alerting practitioners to the performance implications of synchronous span export.
arize-phoenix-v8.17.0 NOTES STABLE

Arize Phoenix 8.17.0 adds an environment variable to auto-provision admin users at startup.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v8.17.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v8.17.0
  • Adds an environment variable to automatically insert admin users when the Phoenix server starts, enabling headless/automated deployment without manual user setup.
arize-phoenix-v8.16.0 NOTES STABLE

Phoenix 8.16.0 adds experiment deletion from the action menu and date format explanations in the UI.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v8.16.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v8.16.0
  • Adds a 'Delete Experiment' option to the experiment action menu in the UI.
  • Shows the expected date format as an explanation in date input fields in the UI.
arize-phoenix-v8.14.0 NOTES STABLE

Phoenix 8.14.0 adds resizable Span/Trace/Session tables and a tabbed Settings page.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v8.14.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v8.14.0
  • Splits the Settings page into tabs for easier navigation.
  • Adds column-resize capability to the Span, Trace, and Session tables in the UI.
arize-phoenix-v8.13.0 NOTES STABLE

Phoenix v8.13.0 adds CSV export for experiment runs and annotations, and makes the spans table the default tab.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v8.13.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v8.13.0
  • Download experiment runs and annotations as CSV from the UI.
  • Makes the spans table the default tab for faster trace navigation.
arize-phoenix-v8.12.0 NOTES STABLE

Arize Phoenix 8.12.0 adds a high-contrast UI mode.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v8.12.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v8.12.0
  • Adds a high-contrast UI mode for improved accessibility and readability.
arize-phoenix-client-v1.1.0 NOTES STABLE

Arize Phoenix client v1.1.0 adds Anthropic thinking config parameter support to the Python client.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-client-v1.1.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-client-v1.1.0
  • Adds thinking config parameter for Anthropic models to the Python client, enabling extended thinking support in Phoenix-instrumented calls.
arize-phoenix-v8.11.0 NOTES STABLE

Phoenix 8.11.0 adds a specialized UI for the thinking budget parameter and migrates the slider to react-aria.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v8.11.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v8.11.0
  • Adds specialized UI for the thinking budget parameter, giving practitioners a dedicated control surface when configuring model reasoning limits.
  • Ports the slider component to react-aria, improving accessibility and interaction consistency across parameter controls.
arize-phoenix-v8.10.0 NOTES STABLE

Arize Phoenix 8.10.0 adds DB usage visibility in the admin panel and bulk trace deletion from the UI.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v8.10.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v8.10.0
  • Admin panel now shows percent of database storage used, giving operators visibility into DB capacity.
  • Enables deletion of selected traces in bulk from the traces UI.
arize-phoenix-v8.9.0 NOTES STABLE

Phoenix 8.9.0 adds Anthropic thinking config and budget params, a DB storage env var, and experiment JSON downloads.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v8.9.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v8.9.0
└──▷ TRY IT
Cap Phoenix database storage at a fixed size when running in a memory-constrained environment.
$ export PHOENIX_DB_ALLOCATED_STORAGE_CAPACITY_GIB=20
phoenix serve
  • Adds PHOENIX_DB_ALLOCATED_STORAGE_CAPACITY_GIB environment variable to configure allocated database storage capacity in gibibytes.
  • Adds Anthropic thinking config parameter support to the Python client for extended thinking mode.
  • Adds thinking_budget as an invocation parameter for controlling Anthropic extended thinking token budget.
  • Adds JSON download support for experiment results in the UI.
arize-phoenix-v8.8.0 NOTES STABLE

Arize Phoenix 8.8.0 adds quick filtering from metadata cells in the trace table.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v8.8.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v8.8.0
  • Adds quick filtering support for metadata cells in the trace table, letting users instantly filter traces by clicking metadata values.
Was this useful?

Langfuse

Sources Release notes → v3.46.0 14 RELEASES · 2025-03-04 → 2025-03-31 NOTES STABLE

Langfuse v3.46.0 adds tool call support in the playground, GCS bucket support, and evaluator deletion via UI.

└──▷ GET THIS VERSION
$ git clone --branch v3.46.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v3.46.0
  • Adds GCS bucket support for blob storage.
  • Adds tool call support in the playground.
  • Enables deletion of evaluators directly via the UI.
  • Allows adding custom values to the tags filter in evaluations.
13 more releases in this issue · 2025-03-04 → 2025-03-31
v3.45.0 NOTES STABLE

Langfuse v3.45.0 adds blob storage integration and evaluation item count preview.

└──▷ GET THIS VERSION
$ git clone --branch v3.45.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v3.45.0
  • Adds blob storage integration for external storage backends.
  • Shows a preview of the number of historic items to be evaluated when configuring evaluators, helping users gauge evaluation scope before running.
v3.44.0 NOTES STABLE

Langfuse v3.44.0 adds Atla LLM adapter, peek view on traces table, Pydantic/OTel I/O parsing, and top-level metadata extraction.

└──▷ GET THIS VERSION
$ git clone --branch v3.44.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v3.44.0
  • Adds Atla adapter under LLM connections, expanding the set of supported model providers for LLM-based evaluations.
  • Extracts top-level metadata from langfuse.metadata in OTel-ingested traces, enabling structured metadata fields to surface automatically.
  • Adds additional input/output parsing for Pydantic models via OTel, improving trace fidelity for Python applications using Pydantic schemas.
  • New peek view on the traces table lets users inspect trace details inline without leaving the table.
  • Caches LLM models in Redis to reduce database load and improve response times for model lookups.
+1 moreshow less
  • Shows a status page menu item in the UI during active incidents (cloud).
v3.43.0 NOTES STABLE

Langfuse v3.43.0 adds environment tags on trace/observation detail views and external S3 endpoint support for batch exports.

└──▷ GET THIS VERSION
$ git clone --branch v3.43.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v3.43.0
  • Supports external S3 endpoints for batch exports, enabling self-hosted or third-party S3-compatible storage as an export destination.
  • Adds environment tag display on trace and observation detail views for at-a-glance environment context.
v3.42.1 NOTES STABLE

Langfuse v3.42.1 adds OpenAI Responses API usage schema support for cost tracking.

└──▷ GET THIS VERSION
$ git clone --branch v3.42.1 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v3.42.1
  • Supports OpenAIResponseUsageSchema for cost tracking, enabling accurate token-cost attribution for the OpenAI Responses API.
v3.42.0 NOTES STABLE

Langfuse v3.42.0 adds an API for annotation queues and CSV/JSON export for the scores table.

└──▷ GET THIS VERSION
$ git clone --branch v3.42.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v3.42.0
  • New API endpoints for annotation queues, enabling programmatic management of annotation workflows.
  • Adds CSV and JSON export for the scores table in the UI.
v3.41.1 NOTES STABLE

Langfuse v3.41.1 adds extra HTTP header support for Azure LLM connections.

└──▷ GET THIS VERSION
$ git clone --branch v3.41.1 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v3.41.1
  • Adds extraHeaders support to Azure LLM connections, enabling custom HTTP headers to be passed when connecting to Azure-hosted models.
v3.41.0 NOTES STABLE

Langfuse v3.41.0 adds prompt composability and extracts logfire.msg as span and trace names.

└──▷ GET THIS VERSION
$ git clone --branch v3.41.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v3.41.0
  • Extracts logfire.msg as the span and trace name when ingesting Logfire telemetry.
  • Adds prompt composability, enabling prompts to be built from reusable component prompts.
└──▷ BREAKING ON UPGRADE
  • !Batch exports rename the table column/entity from 'generation' to 'observation' following generalization of the exports table — any downstream automation referencing 'generation' in batch export output may need updating.
v3.40.0 NOTES STABLE

Langfuse v3.40.0 adds score deletion in the UI and displays run names on the dataset run items table.

└──▷ GET THIS VERSION
$ git clone --branch v3.40.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v3.40.0
  • Adds score deletion capability directly in the UI.
  • Shows dataset run name on the run items table for easier identification.
v3.39.0 NOTES STABLE

Langfuse v3.39.0 adds trace delete API endpoints and API key actions to the audit log.

└──▷ GET THIS VERSION
$ git clone --branch v3.39.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v3.39.0
  • Adds trace delete API endpoints, enabling programmatic deletion of traces.
  • Adds API key actions to the audit log table, giving operators visibility into key-related events.
v3.38.0 NOTES STABLE

Langfuse v3.38.0 raises batch-export row limit to 1.5M, adds environment filtering, and new SSO claim env vars.

└──▷ GET THIS VERSION
$ git clone --branch v3.38.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v3.38.0
└──▷ TRY IT
Map custom JWT claim fields from your SSO provider so Langfuse correctly identifies users by email, name, and subject.
$ CUSTOM_EMAIL_CLAIM=preferred_username
CUSTOM_NAME_CLAIM=display_name
CUSTOM_SUB_CLAIM=user_id
  • Adds CUSTOM_EMAIL_CLAIM, CUSTOM_NAME_CLAIM, and CUSTOM_SUB_CLAIM environment variables for customizing SSO/OIDC JWT claim mappings.
  • Raises the batch-export row limit to 1.5 million rows, unlocking larger data extractions.
  • Adds an environment filter to data views, enabling scoped lookups by deployment environment.
  • Adds an environment column to UI tables for at-a-glance environment visibility.
  • Adds multi-delete support for the dataset runs table, allowing bulk removal of runs.
v3.37.0 NOTES STABLE

Langfuse v3.37.0 adds S3 concurrency controls and WorkOS org/connection env vars for self-hosted deployments.

└──▷ GET THIS VERSION
$ git clone --branch v3.37.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v3.37.0
└──▷ TRY IT
Increase S3 read and write parallelism on a high-throughput self-hosted deployment to reduce ingestion latency.
$ S3_CONCURRENT_READS=20 S3_CONCURRENT_WRITES=20
Lock WorkOS SSO to a specific organization and connection so only users in that org can authenticate.
$ AUTH_WORKOS_ORGANIZATION_ID=org_abc123
AUTH_WORKOS_CONNECTION_ID=conn_xyz789
  • Adds S3_CONCURRENT_READS and S3_CONCURRENT_WRITES environment variables to tune S3 parallelism for self-hosted instances.
  • Adds AUTH_WORKOS_ORGANIZATION_ID and AUTH_WORKOS_CONNECTION_ID environment variables to configure WorkOS SSO at the organization and connection level.
v3.36.0 NOTES STABLE

Langfuse v3.36.0 adds WorkOS as a supported identity provider for authentication.

└──▷ GET THIS VERSION
$ git clone --branch v3.36.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v3.36.0
  • Adds WorkOS as a supported identity provider (IdP) for enterprise authentication.
v3.35.0 NOTES STABLE

Langfuse v3.35.0 adds dataset item deletion via UI and API, multi-dataset support, Pydantic Logfire ingestion, and a redesigned trace view.

└──▷ GET THIS VERSION
$ git clone --branch v3.35.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v3.35.0
  • Adds deletion of dataset items via the public API and UI.
  • Adds deletion of dataset runs via the API.
  • Adds environment properties on API routes.
  • Supports adding dataset items to multiple datasets at once.
  • Supports copying items between datasets.
+5 moreshow less
  • Adds archive/unarchive functionality for dataset items on the single item view.
  • Adds a dedicated LLM connections settings page, separate from API keys.
  • Maps Pydantic Logfire events to the Langfuse data model, enabling Logfire ingestion.
  • Redesigns the single trace UI.
  • Adds settings deep links to the cmd+k command palette.
Was this useful?

Weights & Biases Weave

Sources Release notes → v0.51.39 4 RELEASES · 2025-03-06 → 2025-03-24 NOTES STABLE

Weave v0.51.39 adds a CrewAI integration and inline serializers for custom type handling.

└──▷ GET THIS VERSION
$ git clone --branch v0.51.39 https://github.com/wandb/weave.git
# already have the repo? check out this version:
$ git checkout v0.51.39
  • Adds inline serializers, enabling custom serialization logic to be defined directly alongside type definitions.
  • Adds a CrewAI integration for tracing and observability of CrewAI agent workflows.
  • Improves dataset download performance by fetching rows containing images in parallel.
3 more releases in this issue · 2025-03-06 → 2025-03-24
v0.51.38 NOTES STABLE

Weave v0.51.38 adds OpenAI Agents SDK integration, a new trace navigation system, latency/status sorting, and W&B Run display in the calls grid.

└──▷ GET THIS VERSION
$ git clone --branch v0.51.38 https://github.com/wandb/weave.git
# already have the repo? check out this version:
$ git checkout v0.51.38
  • Adds OpenAI Agents SDK integration for tracing agent workflows.
  • Adds basic support for OpenAI Responses API.
  • Enables sorting and filtering in the trace table by latency, status, and trace_name.
  • Adds a new trace navigation system, replacing the previous trace tree UI.
  • Allows displaying W&B Run information as columns in the calls grid.
+2 moreshow less
  • Improves WebP image support in trace views.
  • Adds a Providers overview page to the UI.
v0.51.37 NOTES STABLE

Weave v0.51.37 adds CSV dataset upload support in the UI.

└──▷ GET THIS VERSION
$ git clone --branch v0.51.37 https://github.com/wandb/weave.git
# already have the repo? check out this version:
$ git checkout v0.51.37
  • Adds the ability to upload a dataset directly from a CSV file via the UI.
v0.51.36 NOTES STABLE

Weave v0.51.36 adds non-SaaS BYOB support, client.finish, user-configurable retry settings, and gpt-4.5-preview/deepseek in the playground.

└──▷ GET THIS VERSION
$ git clone --branch v0.51.36 https://github.com/wandb/weave.git
# already have the repo? check out this version:
$ git checkout v0.51.36
└──▷ USE IT
Explicitly finish a Weave client session after all traces are logged, ensuring the queue is flushed before the process exits.
python
import weave

client = weave.init('my-project')
# ... your traced code ...
client.finish()
  • Adds client.finish method to explicitly flush and finalize the Weave client, replacing repeated flush calls.
  • Adds minimal setup for non-SaaS Bring Your Own Backend (BYOB) deployments.
  • Adds gpt-4.5-preview and deepseek as selectable models in the Weave playground.
  • Enables user-configurable retry settings for the trace client.
  • Makes the internal queue size configurable via server settings.
Was this useful?
◆  MCP TOOLING

Composio

Sources Release notes → v0.7.12 5 RELEASES · 2025-03-05 → 2025-03-27 NOTES STABLE

Composio v0.7.12 adds a game builder integration powered by Gemini.

└──▷ GET THIS VERSION
$ git clone --branch v0.7.12 https://github.com/ComposioHQ/composio.git
# already have the repo? check out this version:
$ git checkout v0.7.12
  • Adds a game builder capability using Gemini as the underlying agent.
4 more releases in this issue · 2025-03-05 → 2025-03-27
v0.7.11 NOTES STABLE

Composio v0.7.11 adds Cursor MCP setup, S3 URL support, Slack computer-use, and a new current-user API endpoint.

└──▷ GET THIS VERSION
$ git clone --branch v0.7.11 https://github.com/ComposioHQ/composio.git
# already have the repo? check out this version:
$ git checkout v0.7.11
  • Adds cursor setup command to the MCP CLI for configuring Cursor editor integration.
  • Adds get_current_user_endpoint to the apps API endpoint for retrieving the authenticated user.
  • Adds S3 URL support for file/asset handling.
  • Adds computer-use capability with Slack integration.
  • Bumps MCP CLI to version 0.4.0.
v0.7.8 NOTES STABLE

Composio v0.7.8 adds OpenAI Agents integration, MCP CLI package, auth scheme filtering, and Node 10 support.

└──▷ GET THIS VERSION
$ git clone --branch v0.7.8 https://github.com/ComposioHQ/composio.git
# already have the repo? check out this version:
$ git checkout v0.7.8
  • Adds auth scheme support to the app list, enabling filtering of apps by authentication scheme.
  • Adds Composio OpenAI Agents integration as a new plugin.
  • Creates a separate package for the MCP CLI with CommonJS support for Node 10 compatibility.
  • Enhances schema optimization by removing unnecessary keys from tool schemas.
v0.7.7 NOTES STABLE

Composio v0.7.7 adds a Together AI plugin for the Python SDK and launches MCP Server support.

└──▷ GET THIS VERSION
$ git clone --branch v0.7.7 https://github.com/ComposioHQ/composio.git
# already have the repo? check out this version:
$ git checkout v0.7.7
  • Adds Together AI plugin to the Python SDK, enabling Together AI as an integrated provider.
  • Launches Composio MCP Servers support with accompanying documentation.
  • Creates a new Axios instance per Composio instance in the JavaScript SDK, improving isolation between concurrent clients.
v0.7.5 NOTES STABLE

Composio v0.7.5 adds MCP command support for Claude/Windsurf, session-aware tracing, and a silent logging level.

└──▷ GET THIS VERSION
$ git clone --branch v0.7.5 https://github.com/ComposioHQ/composio.git
# already have the repo? check out this version:
$ git checkout v0.7.5
  • Adds mcp command for Claude and Windsurf integrations.
  • Adds allow_tracing parameter to toolset-level configuration to control tracing per toolset.
  • Adds global-level tracing support, allowing tracing to retrieve log and session IDs.
  • Adds session information to tracing output.
  • Adds props for controlling tracing behavior.
+1 moreshow less
  • Adds silent logging level for suppressing log output.
Was this useful?
◆  VECTOR DB RAG

LanceDB

Sources Release notes → v0.19.0-beta.0 13 RELEASES · 2025-03-06 → 2025-03-30 NOTES STABLE

LanceDB v0.19.0-beta.0 adds analyze_plan API and changes default read_consistency_interval to 5 seconds.

└──▷ GET THIS VERSION
$ git clone --branch v0.19.0-beta.0 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout v0.19.0-beta.0
  • Adds analyze_plan API for query plan analysis.
  • Changes default read_consistency_interval from its previous value to 5s.
└──▷ BREAKING ON UPGRADE
  • !The default read_consistency_interval is now 5s; any setup relying on the previous default will now read with a 5-second consistency window instead.
12 more releases in this issue · 2025-03-06 → 2025-03-30
python-v0.22.0-beta.0 NOTES STABLE

LanceDB python-v0.22.0-beta.0 adds analyze_plan API and changes default read_consistency_interval to 5 seconds.

└──▷ GET THIS VERSION
$ git clone --branch python-v0.22.0-beta.0 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout python-v0.22.0-beta.0
  • Adds analyze_plan API for query plan analysis.
  • Changes default read_consistency_interval to 5s (previously unset/0), enabling automatic consistency checks for remote tables by default.
└──▷ BREAKING ON UPGRADE
  • !The default read_consistency_interval is changed to 5s; remote table reads that previously returned immediately without a consistency check will now incur a consistency poll on every read unless explicitly overridden.
python-v0.21.3-beta.0 NOTES STABLE

LanceDB python-v0.21.3-beta.0 adds explain-plan and restore remote APIs plus PyArrow schema column support.

└──▷ GET THIS VERSION
$ git clone --branch python-v0.21.3-beta.0 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout python-v0.21.3-beta.0
  • Adds an explain plan remote API for inspecting query execution plans on remote tables.
  • Adds a restore remote API for reverting remote tables to a previous state.
  • Supports adding columns to a table using a PyArrow schema definition.
v0.18.3-beta.0 NOTES STABLE

LanceDB v0.18.3-beta.0 adds explain-plan and restore remote APIs plus PyArrow schema support for adding columns.

└──▷ GET THIS VERSION
$ git clone --branch v0.18.3-beta.0 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout v0.18.3-beta.0
  • Adds a remote API for explain plan, enabling inspection of query execution plans against remote LanceDB tables.
  • Adds a remote API for restore, enabling programmatic rollback of remote LanceDB tables to previous versions.
  • Supports adding columns to a table using a PyArrow schema definition.
v0.18.2 NOTES STABLE

LanceDB v0.18.2 adds binary vector and IVF_FLAT support in TypeScript, catalog URL connections in Rust, and a fork warning in Python.

└──▷ GET THIS VERSION
$ git clone --branch v0.18.2 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout v0.18.2
  • Adds connect_catalog method in Rust to connect to a catalog via URL.
  • Supports parsing Arrow types in alterColumns() in the Node.js client.
  • Adds get_dataset method on NativeTable to retrieve the underlying dataset.
  • Adds to_query_object method for converting queries to a serializable object.
  • Supports binary vector and IVF_FLAT index type in TypeScript.
+1 moreshow less
  • Emits a warning in Python when the process is forked, to help catch unsafe multiprocessing patterns.
python-v0.21.2 NOTES STABLE

LanceDB v0.21.2 adds catalog URL connections, binary vector support in TypeScript, and fork warnings for Python.

└──▷ GET THIS VERSION
$ git clone --branch python-v0.21.2 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout python-v0.21.2
  • Adds connect_catalog method (Rust) to connect to a catalog via URL.
  • Adds alterColumns() support in Node.js for parsing Arrow types directly.
  • Adds to_query_object method to convert query state to a serializable object.
  • Adds get_dataset method on NativeTable to retrieve the underlying Lance dataset.
  • Supports binary vector type and IVF_FLAT index in the TypeScript client.
+1 moreshow less
  • Warns when a Python process forks while a LanceDB connection is open, preventing silent data corruption.
v0.18.2-beta.1 NOTES STABLE

LanceDB v0.18.2-beta.1 adds a fork-safety warning for Python users.

└──▷ GET THIS VERSION
$ git clone --branch v0.18.2-beta.1 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout v0.18.2-beta.1
  • Adds a warning when the LanceDB Python client detects a forked process, helping practitioners avoid data-corruption or connection issues in multiprocessing workloads.
python-v0.21.2-beta.1 NOTES STABLE

LanceDB Python v0.21.2-beta.1 adds a fork-safety warning to catch multiprocessing pitfalls early.

└──▷ GET THIS VERSION
$ git clone --branch python-v0.21.2-beta.1 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout python-v0.21.2-beta.1
  • Adds a warning when the LanceDB Python client detects it is running in a forked process, helping surface multiprocessing safety issues at runtime.
python-v0.21.2-beta.0 NOTES STABLE

LanceDB python-v0.21.2-beta.0 adds catalog URL connections, binary vector support in TypeScript, and a new to_query_object method.

└──▷ GET THIS VERSION
$ git clone --branch python-v0.21.2-beta.0 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout python-v0.21.2-beta.0
  • Adds connect_catalog method to connect to a catalog via URL (Rust backend).
  • Adds to_query_object method to convert queries to a serializable object representation.
  • Adds get_dataset method on NativeTable to retrieve the underlying dataset directly.
  • Supports parsing Arrow types in alterColumns() for the Node.js client.
  • Supports binary vector type and IVF_FLAT index in the TypeScript client.
v0.18.2-beta.0 NOTES STABLE

LanceDB v0.18.2-beta.0 adds catalog URL connections, binary vector + IVF_FLAT in TypeScript, and new query/dataset methods.

└──▷ GET THIS VERSION
$ git clone --branch v0.18.2-beta.0 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout v0.18.2-beta.0
  • Adds connect_catalog method in Rust to connect to a catalog via URL.
  • Adds alterColumns() in Node.js now parses Arrow types directly, enabling schema alterations with Arrow type objects.
  • Adds get_dataset method on NativeTable to retrieve the underlying dataset.
  • Adds to_query_object method for converting queries to a serializable object representation.
  • Supports binary vector indexing and IVF_FLAT index type in the TypeScript client.
+1 moreshow less
  • Upgrades bundled Lance to v0.25.0-beta.5, bringing upstream engine improvements.
python-v0.21.0 NOTES STABLE

LanceDB python-v0.21.0 adds streaming create_table input, field metadata editing, and makes pylance an optional dependency.

└──▷ GET THIS VERSION
$ git clone --branch python-v0.21.0 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout python-v0.21.0
└──▷ USE IT
Ingest a large generator of record batches into a new table without loading everything into memory first.
python
import lancedb
import pyarrow as pa

def batch_generator():
    for i in range(10):
        yield pa.record_batch({"vec": [[float(i)] * 128], "id": [i]},
                              schema=pa.schema([pa.field("vec", pa.list_(pa.float32(), 128)),
                                                pa.field("id", pa.int64())]))

db = lancedb.connect("./mydb")
table = db.create_table("embeddings", data=batch_generator())
  • Adds support for modifying field metadata in the Python API via feat: support modifying field metadata in lancedb python.
  • Adds streaming input support to create_table, enabling large or lazy iterables to be ingested without materializing them first.
  • Drops the hard dependency on pylance; it is now optional, reducing mandatory install footprint.
  • Reverts query scan limit to unbounded by default — scans no longer apply an implicit row limit.
  • Records the server version for remote table connections, surfacing version metadata for LanceDB Cloud clients.
+1 moreshow less
  • Respects DataFusion's configured batch size when LanceDB runs as a DataFusion table provider.
└──▷ BREAKING ON UPGRADE
  • !Query scans are now unbounded by default (no implicit row limit); any code that relied on the previous default limit to cap result size will now return all matching rows.
v0.18.0 NOTES STABLE

LanceDB v0.18.0 adds a Catalog trait, field metadata editing, streaming table creation, and drops the hard pylance dependency.

└──▷ GET THIS VERSION
$ git clone --branch v0.18.0 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout v0.18.0
└──▷ USE IT
Update field-level metadata on an existing table column without altering the underlying data.
python
import lancedb

db = lancedb.connect("./mydb")
tbl = db.open_table("my_table")

tbl.alter_columns({"path": "embedding", "metadata": {"model": "text-embedding-3-small", "dim": "1536"}})
  • Introduces Catalog trait and ListingCatalog implementation in the Rust crate, providing a structured abstraction for catalog operations.
  • Adds support for modifying field metadata on existing tables in the Python API.
  • Adds streaming input support to create_table, enabling table creation from streaming data sources without buffering the full dataset.
  • Drops the hard dependency on pylance in the Python package, making it an optional dependency.
  • Respects DataFusion's batch size configuration when LanceDB runs as a DataFusion table provider.
+2 moreshow less
  • Records the server version for remote tables, surfacing version metadata for remote connections.
  • Reverts query limit to be unbounded for scans, removing the previously imposed default row limit on full-table scans.
└──▷ BREAKING ON UPGRADE
  • !Query limit is now unbounded for scans by default — full-table scans that previously returned a capped number of rows will now return all rows, which may significantly increase memory usage and query time for callers that relied on the implicit limit.
python-v0.21.0-beta.1 NOTES STABLE

LanceDB python-v0.21.0-beta.1 drops the hard pylance dependency and adds field-metadata modification support.

└──▷ GET THIS VERSION
$ git clone --branch python-v0.21.0-beta.1 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout python-v0.21.0-beta.1
  • Drops the hard dependency on pylance, making the Python package installable without it.
  • Records the server version for remote table connections, enabling version-aware client behaviour.
  • Introduces a Catalog trait in the Rust layer with a ListingCatalog implementation, laying groundwork for multi-catalog support.
Was this useful?

Milvus

Sources Release notes → v2.5.7 NOTES

Milvus 2.5.7 introduces JSON Path Index for inverted indexes on dynamic and JSON columns to boost query performance.

└──▷ GET THIS VERSION
$ git clone --branch v2.5.7 https://github.com/milvus-io/milvus.git
# already have the repo? check out this version:
$ git checkout v2.5.7
  • Adds JSON Path Index, enabling inverted indexes on dynamic columns and specific JSON paths to bypass slower JSON load processes and significantly improve query performance.
  • Adds more config options for interimindex to support refined modes.
  • Makes segment prune config refreshable at runtime.
  • Supports retrieving segment binlogs via the new GetSegmentsInfo interface.
  • Adds a channel seal policy based on blocking L0.
+3 moreshow less
  • Improves import error messages for better usability.
  • Reorders sub-expressions for conjunct expressions to improve query execution.
  • Removes unnecessary collection and partition labels from metrics to reduce cardinality.
Was this useful?

Qdrant

Sources Release notes → v1.13.6 2 RELEASES · 2025-03-21 → 2025-03-31 NOTES STABLE

Qdrant v1.13.6 cuts query API network overhead and speeds up resharding transfers on constrained hardware.

└──▷ GET THIS VERSION
$ git clone --branch v1.13.6 https://github.com/qdrant/qdrant.git
# already have the repo? check out this version:
$ git checkout v1.13.6
  • Query API now reads vectors and payloads once at the shard level instead of per-segment, meaningfully improving search performance on collections with many segments.
  • Query API defers vector and payload reads so large data is no longer sent over the internal network during distributed queries, reducing latency in multi-node deployments.
  • Resharding transfers now complete faster under slow-disk or high-memory-pressure conditions.
1 more release in this issue · 2025-03-21 → 2025-03-31
v1.13.5 NOTES STABLE

Qdrant v1.13.5 brings CPU/IO budget splitting, shard-level undersampling, and faster payload index filtering for large deployments.

└──▷ GET THIS VERSION
$ git clone --branch v1.13.5 https://github.com/qdrant/qdrant.git
# already have the repo? check out this version:
$ git checkout v1.13.5
  • Splits the CPU budget into separate CPU and IO budgets to better saturate resources during segment optimization.
  • Applies undersampling at the shard level, significantly improving query performance on large deployments with large search limits.
  • Enhances payload indices to handle IsEmpty and IsNull filter conditions much more efficiently.
  • Optimizes the ID tracker in immutable segments by compressing point mappings and versions, reducing memory footprint.
  • Significantly improves performance of point delete propagation during resharding on large deployments.
+2 moreshow less
  • Uses approximate point counts at the start of shard transfers to make transfers start quicker.
  • Emits a log message when hardware reporting is enabled.
Was this useful?
my-toolchain — 0 tools
paste an install list to detect your tools

A brew list, a Brewfile, requirements.txt, a Dockerfile — or just the product names, free-form. Nothing leaves your browser.

    browse all tools →