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 -372, November 30, 2024

THE AI TOOLCHAIN NO. -372
Tail
THE DAILY RELEASE FIREHOSE
PUBLISHED NOVEMBER 30, 2024 · 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   # 35 tools matched
AI & LLM Tooling
◆  AI Coding Agents

Aider

Sources Release notes → v0.65.0 5 RELEASES · 2024-11-01 → 2024-11-26 NOTES STABLE

Aider v0.65.0 adds custom model aliases, URL-scraping control, Dart RepoMap support, and an improved /editor command.

└──▷ GET THIS VERSION
$ git clone --branch v0.65.0 https://github.com/Aider-AI/aider.git
# already have the repo? check out this version:
$ git checkout v0.65.0
└──▷ TRY IT
Prevent aider from prompting you to scrape URLs that appear in the chat, reducing interruptions during automated or scripted sessions.
$ aider --no-detect-urls
  • Adds --alias config option to define custom model aliases for frequently used models.
  • Adds --[no-]detect-urls flag to enable or disable automatic detection and scraping of URLs found in chat.
  • Adds RepoMap support for the Dart language, enabling code-map navigation in Dart repositories.
  • Ollama models now default to an 8k context window.
  • The /editor command now returns and prefills file content into the prompt, enabling composed messages that begin with slash commands.
4 more releases in this issue · 2024-11-01 → 2024-11-26
v0.64.0 NOTES STABLE

Aider v0.64.0 adds /editor command, multiline input tags, global extra_params, and GPT-4o/o1 streaming support.

└──▷ GET THIS VERSION
$ git clone --branch v0.64.0 https://github.com/Aider-AI/aider.git
# already have the repo? check out this version:
$ git checkout v0.64.0
└──▷ TRY IT
Suppress the release notes pop-up in automated or CI environments where aider is invoked non-interactively.
$ aider --show-release-notes=false <file>
Pass model-specific parameters (e.g. temperature) globally to litellm for every completion call without per-model config.
yaml
# In ~/.aider.model.settings.yml
- name: aider/extra_params
  extra_params:
    temperature: 0.2
    max_tokens: 4096
  • Adds /editor command to open the system editor for composing prompts without leaving the chat.
  • Adds support for optional multiline input tags with matching closing tags for structured multi-line chat messages.
  • Adds --show-release-notes flag to control whether release notes are displayed on first run of a new version.
  • Supports global extra_params in model settings configuration, passed directly to litellm.completion().
  • Architect mode now automatically prompts to add files suggested by the LLM.
+4 moreshow less
  • Enables streaming for o1 models by default.
  • Adds full support for gpt-4o-2024-11-20.
  • Allows recursive directory loading via --read.
  • Adds exponential backoff retry when writing files to handle editor file locks.
v0.63.0 NOTES STABLE

Aider v0.63.0 adds Qwen 2.5 Coder 32B support and a quieter /web command that appends pages without triggering LLM responses.

└──▷ GET THIS VERSION
$ git clone --branch v0.63.0 https://github.com/Aider-AI/aider.git
# already have the repo? check out this version:
$ git checkout v0.63.0
└──▷ TRY IT
Fetch a reference page (e.g., an API doc) into context without immediately prompting the LLM — useful when you want to stage multiple sources before asking a question.
$ /web https://example.com/api-reference
  • Supports Qwen 2.5 Coder 32B as a model option.
  • The /web command now adds a page to the chat context silently, without triggering an LLM response.
  • Improved prompting for the user's preferred chat language.
v0.62.0 NOTES STABLE

Aider v0.62.0 adds Claude 3.5 Haiku support and a new --apply-clipboard-edits flag to apply LLM edits from web apps.

└──▷ GET THIS VERSION
$ git clone --branch v0.62.0 https://github.com/Aider-AI/aider.git
# already have the repo? check out this version:
$ git checkout v0.62.0
└──▷ TRY IT
Use Claude 3.5 Haiku as a cost-effective alternative to Sonnet for code editing sessions.
$ aider --haiku
Apply LLM-generated edits copied from a web app (e.g. ChatGPT or Claude.ai) directly to a local file without re-entering the prompt in Aider.
$ aider --apply-clipboard-edits file-to-edit.js
  • Adds --haiku flag to launch Aider using Claude 3.5 Haiku (75% on the code editing leaderboard, lower cost than Sonnet).
  • New --apply-clipboard-edits flag applies file changes copied from ChatGPT, Claude, or other web app LLM responses directly to local files.
v0.61.0 NOTES STABLE

Aider v0.61.0 adds saveable chat context files, opt-in analytics, and new launch/input flags.

└──▷ GET THIS VERSION
$ git clone --branch v0.61.0 https://github.com/Aider-AI/aider.git
# already have the repo? check out this version:
$ git checkout v0.61.0
└──▷ TRY IT
Snapshot your current file context so you can restore it in a future session or share it with a teammate.
$ aider> /save context.aider
# later or in another session:
aider> /load context.aider
Pre-load a standard set of project files and slash-commands before the interactive session starts — useful for CI-style automation.
$ aider --load project_context.aider --model gpt-4o
Run aider in environments where prompt toolkit causes display issues, disabling fancy input while keeping output formatting.
$ aider --no-fancy-input
  • New /save <fname> command exports current chat file context as a replayable file of /add and /read-only commands.
  • New /load <fname> command replays any set of slash-commands from a file, enabling scripted chat workflows.
  • New --load <fname> flag runs a command file at launch, before interactive chat begins.
  • Adds anonymous, opt-in analytics with no personal data sharing.
  • Enables image support for models dynamically by following litellm's supports_vision attribute.
+4 moreshow less
  • New --no-fancy-input switch disables prompt toolkit input while keeping other UI features active.
  • New --no-browser / --no-gui flags override browser/GUI config at launch.
  • Offers to open documentation URLs automatically when errors occur.
  • Adds full support for all o1 models regardless of provider.
Was this useful?

Continue

Sources Release notes → v0.8.56-vscode NOTES

Adds a timestamp attribute to the file autocomplete.jsonl autocomplete log format.

└──▷ GET THIS VERSION
$ git clone --branch v0.8.56-vscode https://github.com/continuedev/continue.git
# already have the repo? check out this version:
$ git checkout v0.8.56-vscode
  • Adds a timestamp attribute to entries in the file autocomplete.jsonl autocomplete log file.
Was this useful?

Block Goose

Sources Release notes → v0.9.9 NOTES

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

Goose v0.9.9 adds a browser toolkit, tracing support, a license checker, and defaults to the synopsis toolkit.

└──▷ GET THIS VERSION
$ git clone --branch v0.9.9 https://github.com/block/goose.git
# already have the repo? check out this version:
$ git checkout v0.9.9
  • Adds a browser toolkit, enabling Goose to interact with web browsers as a tool.
  • Adds tracing option to the run command, grouping traces under the session name for observability.
  • Adds a license checker for auditing dependency licenses.
  • Defaults Goose to the synopsis toolkit out of the box.
  • Adds support for optional parameters in JSON schema conversion in exchange, broadening tool-call compatibility.
+2 moreshow less
  • Adds a list moderators capability.
  • Includes the new Anthropic model in recommended config.
Was this useful?

All Hands AI OpenHands

Sources Release notes → 0.14.3 6 RELEASES · 2024-11-04 → 2024-11-26 NOTES STABLE

OpenHands: AI-Driven Development

OpenHands 0.14.3 adds a Push & Create PR button and the commit0 benchmark.

└──▷ GET THIS VERSION
$ git clone --branch 0.14.3 https://github.com/All-Hands-AI/OpenHands.git
# already have the repo? check out this version:
$ git checkout 0.14.3
└──▷ HOW TO FIND IT
After an agent completes its work, push the branch and open a PR without leaving the UI.
📍In the OpenHands UI, after a session completes, click the Push & Create PR button to push the current branch and create a pull request in your connected repository.
  • New Push & Create PR UI button lets users push changes and open a pull request directly from the OpenHands interface.
  • Adds the commit0 benchmark for evaluating agent performance.
  • Server process now runs at highest system priority, improving responsiveness under load.
5 more releases in this issue · 2024-11-04 → 2024-11-26
0.14.1 NOTES STABLE

OpenHands 0.14.1 adds a push-to-GitHub button directly in the chat interface.

└──▷ GET THIS VERSION
$ git clone --branch 0.14.1 https://github.com/All-Hands-AI/OpenHands.git
# already have the repo? check out this version:
$ git checkout 0.14.1
└──▷ HOW TO FIND IT
After completing a coding task in a session, push your changes to GitHub without leaving the chat interface.
📍In the chat interface, click the 'Push to GitHub' button to push your current changes to the configured GitHub repository.
  • Adds a 'Push to GitHub' action button in the chat interface for pushing changes directly from a session.
0.14.0 NOTES STABLE

OpenHands 0.14.0 adds an embedded VSCode editor, GitHub issue resolver integration, and universal function-calling shim for non-native LLMs.

└──▷ GET THIS VERSION
$ git clone --branch 0.14.0 https://github.com/All-Hands-AI/OpenHands.git
# already have the repo? check out this version:
$ git checkout 0.14.0
└──▷ HOW TO FIND IT
Open the embedded VSCode editor from within the OpenHands UI to inspect and edit agent-modified files without leaving the interface.
📍In the OpenHands UI, open an active session and click the VSCode panel to launch the integrated editor against the running runtime.
  • Adds a full VSCode editor directly inside the OpenHands runtime and UI, giving agents and users an integrated code editing experience.
  • Integrates the OpenHands resolver into the main repository, enabling automated GitHub issue resolution workflows natively.
  • Adds a utility that automatically converts function-calling LLM requests to non-function-calling format, broadening compatible model support.
0.13.1 NOTES STABLE

OpenHands 0.13.1 adds workspace media previews and improved GitHub push support.

└──▷ GET THIS VERSION
$ git clone --branch 0.13.1 https://github.com/All-Hands-AI/OpenHands.git
# already have the repo? check out this version:
$ git checkout 0.13.1
  • Supports displaying images, videos, and PDFs directly in the workspace UI.
  • Improves pushing changes to GitHub from within a session.
0.13.0 NOTES STABLE

OpenHands 0.13.0 adds drag-and-drop image input to chat and a loading indicator for ZIP downloads.

└──▷ GET THIS VERSION
$ git clone --branch 0.13.0 https://github.com/All-Hands-AI/OpenHands.git
# already have the repo? check out this version:
$ git checkout 0.13.0
  • Supports dragging images directly into the chat input for multimodal interactions.
  • Shows a loading indicator when downloading a workspace ZIP file.
  • New empty-state design for the chat interface.
0.12.2 NOTES STABLE

OpenHands 0.12.2 gives CodeAct native web browsing, adds PostHog analytics, and integrates DiscoveryBench.

└──▷ GET THIS VERSION
$ git clone --branch 0.12.2 https://github.com/All-Hands-AI/OpenHands.git
# already have the repo? check out this version:
$ git checkout 0.12.2
  • Adds PostHog analytics integration for tracking usage and agent behavior.
  • Enables CodeAct agent to perform web browsing natively — no longer delegates to a separate BrowsingAgent.
  • Adds DiscoveryBench integration for benchmarking OpenHands agents on data-discovery tasks.
Was this useful?

Zed

Sources Release notes → v0.163.2 4 RELEASES · 2024-11-06 → 2024-11-27 NOTES STABLE

Zed v0.163.2 adds vim git permalinks, pytest discovery, file-finder width control, and assistant inline hints.

└──▷ GET THIS VERSION
$ git clone --branch v0.163.2 https://github.com/zed-industries/zed.git
# already have the repo? check out this version:
$ git checkout v0.163.2
└──▷ USE IT
Set the file finder modal to a specific width so it takes up less screen real estate during file search.
json
{
  "file_finder": {
    "modal_width": "medium"
  }
}
Disable the new inline assistant hints if you already know the keybindings and want a cleaner editor surface.
json
{
  "assistant": {
    "show_hints": false
  }
}
  • Adds file_finder.modal_width setting (values: e.g. 'medium') to control the width of the file finder modal.
  • Adds assistant.show_hints setting (set to false to disable) to toggle inline hints that guide users on invoking the inline assistant and opening the assistant panel.
  • Adds vim command :<range>cpplink to copy a permanent git permalink for the highlighted range to the clipboard.
  • Adds Python pytest-based test discovery and runnables, with a configurable TASK_RUNNER task setting (values: 'pytest' (default) or 'unittest') to switch between pytest and unittest.
  • Adds editor: open docs action to open documentation links via rust-analyzer.
+12 moreshow less
  • Adds Python function.call and function.decorator syntax highlight tags, plus improved differentiation of function/method calls, class calls, and class definitions.
  • Adds support for % in Vim mode to jump between pairs of matching tags.
  • Adds support for ctrl-o in Vim insert mode to enter temporary normal mode.
  • Adds Sublime Keymap editor::SelectAllMatches bind (find_all_under): ctrl-cmd-g on Mac, alt-f3 on Linux.
  • Enables snippet parsing with choices, showing a completion menu when tabbing to a snippet variable with multiple choices.
  • Adds visual strikethrough on tab titles for files deleted outside of Zed, with improved handling (auto-save disabled, save-conflict detection for multibuffers, restore confirmation for single buffers).
  • Adds HTML injections for Markdown syntax highlighting.
  • Linux: Adds support for Back/Forward multimedia keys.
  • Tab bar height now respects the ui-density setting.
  • Improves .env.* file detection as Shell Scripts by default.
  • Updates Copilot underlying version to Copilot.vim 1.41.0.
  • Python tasks now use the active toolchain to run, with improved Conda and Poetry environment detection.
└──▷ BREAKING ON UPGRADE
  • !The low_speed_timeout setting has been removed from LLM provider settings; any config referencing it will silently ignore it or may cause an error on upgrade.
3 more releases in this issue · 2024-11-06 → 2024-11-27
v0.162.3 NOTES STABLE

Zed v0.162.3 adds REPL kernel picker, inline-completion scope controls, FreeBSD support, and a new project_panel::RemoveFromProject action.

└──▷ GET THIS VERSION
$ git clone --branch v0.162.3 https://github.com/zed-industries/zed.git
# already have the repo? check out this version:
$ git checkout v0.162.3
└──▷ USE IT
Disable inline completions inside comments and strings in Go files to prevent noisy suggestions while writing docs.
json
{"languages": {"Go": {"inline_completions_disabled_in": ["comment", "string"]}}}
Set a custom root font size for Tailwind CSS IntelliSense when your project uses a non-16px base.
json
{"lsp": {"tailwindcss-language-server": {"settings": {"rootFontSize": 20}}}}
  • Adds inline_completions_disabled_in to per-language settings to suppress inline completions inside named scopes (e.g. comment, string) — example: {"languages": {"Go": {"inline_completions_disabled_in": ["comment", "string"]}}}.
  • Adds rootFontSize configuration key for tailwindcss-language-server via lsp settings — example: {"lsp": {"tailwindcss-language-server": {"settings": {"rootFontSize": 50}}}}.
  • Adds project_panel::RemoveFromProject action, enabling users to bind a custom key to remove a folder from the project.
  • REPL: Adds a kernel picker UI for selecting Jupyter kernels directly from the editor.
  • Adds support for kernelspecs based on Python virtual environments in the REPL.
+9 moreshow less
  • Adds a setting to display error and warning diagnostic indicators on project panel file/folder items.
  • Adds initial support for FreeBSD.
  • Adds support for look-around (lookahead/lookbehind) in project search.
  • Python: Adds python-lsp-server as a secondary built-in language server.
  • Adds an initial set of default Emacs keybindings.
  • Adds open settings and revert selected hunks shortcuts to the JetBrains keymap.
  • Adds macOS key equivalents to cmd-shift-p debug: Open Key Context View.
  • Zig: Switches tree-sitter grammar to the official Zig grammar.
  • SSH Remoting: Improves Zed remote server compilation support for riscv64.
└──▷ BREAKING ON UPGRADE
  • !All builtin shortcuts bound to alt-[a-z] have been rebound: alt-balt-right, alt-dalt-delete, alt-falt-left, alt-shift-fctrl-shift-f, alt-halt-backspace, alt-mctrl-shift-m, alt-qcmd-k q/ctrl-k q, alt-tcmd-shift-r/ctrl-shift-r, alt-shift-talt-cmd-r/ctrl-alt-r, alt-vctrl-shift-v, alt-zcmd-k z/ctrl-k z. Restore old bindings manually in your keymap file if needed.
  • !macOS: Keyboard shortcuts are now automatically localized for non-US keyboard layouts (e.g. on QWERTZ, cmd-[ becomes cmd-ö and cmd-] becomes cmd-ä), which may change existing shortcut behavior.
  • !macOS: All keyboard shortcuts now trigger based on the command layout for non-Latin keyboards, affecting Cyrillic, Japanese IME, and similar input methods.
  • !macOS: Key repeat is now always enabled in the Terminal, permanently disabling the macOS character picker when holding a key.
  • !Linux: editor::AcceptPartialInlineCompletion default binding changed from cmd-right to ctrl-right.
v0.161.1 NOTES STABLE

Zed v0.161.1 adds new task-spawning actions, auto_indent_on_paste setting, git worktree support, and expanded Vim mode capabilities.

└──▷ GET THIS VERSION
$ git clone --branch v0.161.1 https://github.com/zed-industries/zed.git
# already have the repo? check out this version:
$ git checkout v0.161.1
└──▷ USE IT
Spawn the nearest runnable task from the cursor without stealing focus — useful in a split-pane workflow where you want to keep editing while watching test output.
json
{
  "context": "EmptyPane || SharedScreen || vim_mode == normal",
  "bindings": {
    ", r t": ["editor::SpawnNearestTask", { "reveal": "no_focus" }]
  }
}
Force comment characters to the left margin (column 0) instead of matching the line's indentation — handy for C preprocessor directives or assembly-style comments.
json
{
  "context": "Editor",
  "bindings": {
    "ctrl-/": ["editor::ToggleComments", { "ignore_indent": true }]
  }
}
  • Adds auto_indent_on_paste setting (configurable per-language) to control whether indentation is adjusted on paste; enabled by default for all languages except YAML and Markdown.
  • Adds "no_focus" as a new reveal option for tasks: opens the terminal panel without stealing focus.
  • Adds editor::SpawnNearestTask action to spawn the task nearest to the cursor, supporting a reveal strategy parameter.
  • Adds ignore_indent parameter to editor::ToggleComments to place comment characters at the left margin instead of matching indentation.
  • Adds debug: Open Key Context View action to the command palette to help debug custom key bindings.
+24 moreshow less
  • Adds debug: open theme preview action to the command palette to preview the current theme's styles.
  • Moves text selection context into a /selection slash command in the assistant panel.
  • Changes /tab and /file slash commands in the Assistant Panel so diagnostics are no longer automatically attached; use /diagnostics explicitly to include them.
  • Adds support for git worktrees, including correct git status handling.
  • Adds ctrl-v/ctrl-q Vim keybinds to insert any Unicode code point by value (e.g. ctrl-v u 1 0 E 2 inserts ტ).
  • Adds ctrl-shift-v as a paste alias in Vim mode on Linux.
  • Adds Vim :noh[lsearch] command to clear search highlighting.
  • Adds r and a as Vim surround aliases for [ and < text objects (mirroring vim-surround).
  • Extends Vim ctrl-w to work in non-editor contexts such as Markdown Preview and screen shares.
  • Adds Go go generate runnables and tasks.
  • Adds autoclosing of {} braces and '' single quotes in Shell Scripts.
  • Adds \u2028 and \u2029 as distinct invisible characters (previously treated as \n).
  • Adds scrollbar to outline panel.
  • Adds scrollbar to info popovers in the editor.
  • Adds auto-scrolling to the project panel when dragging an entry to a vertical edge.
  • Adds option to dim inactive panes.
  • Adds option to highlight the active pane with a border.
  • Adds file path to breadcrumbs toolbar in the Image Viewer.
  • Adds copy-code-block button to Markdown Preview.
  • Adds external-change detection to Markdown Preview so it updates when the file is modified outside the editor.
  • Updates settings schema to accept null as a valid value for optional settings without emitting a warning.
  • Improves workspace::SendKeystrokes to support re-binding keys (e.g. binding x in Vim normal mode to discard to the black-hole register).
  • Improves Go go test ./... and go generate ./... to run in the Go module directory rather than the current package directory.
  • Disables REPL buttons and actions for remote projects and collaboration sessions.
└──▷ BREAKING ON UPGRADE
  • !Diagnostics are no longer automatically attached as context to /tab and /file slash commands in the Assistant Panel; you must now use /diagnostics explicitly to include them.
v0.160.7 NOTES STABLE

Zed v0.160.7 adds SSH URL support, new Copilot models, invisible characters display, and a 'Suggest Edit' AI button.

└──▷ GET THIS VERSION
$ git clone --branch v0.160.7 https://github.com/zed-industries/zed.git
# already have the repo? check out this version:
$ git checkout v0.160.7
└──▷ USE IT
Enable the experimental 'Suggest Edit' AI button in the assistant panel.
json
{
  "assistant": {
    "enable_experimental_live_diffs": true
  }
}
  • Adds zed://ssh/<connection>/<path> URL scheme for opening remote files directly via SSH.
  • Adds "enable_experimental_live_diffs": true in the "assistant" section of settings.json to surface a new 'Suggest Edit' button in the assistant panel, replacing the previous /workflow command.
  • The /diagnostics slash command now provides explicit control over including diagnostics as context in the Assistant Panel (diagnostics are no longer auto-attached to /tab and /file commands).
  • Adds support for OpenAI o1-mini, o1-preview, and Anthropic Claude 3.5 Sonnet models in GitHub Copilot Chat.
  • Adds support for showing invisible characters in the editor.
+4 moreshow less
  • Adds support for self-hosted GitLab instances when generating Git permalinks (host must include 'gitlab' in the URL).
  • Adds commit summary display as part of inline Git blame.
  • Adds support for Doxygen-style doc comments starting with /// or //! in C++.
  • Improves syntax highlighting for type hints in Python.
└──▷ BREAKING ON UPGRADE
  • !Diagnostics are no longer automatically attached as context to /tab and /file slash commands in the Assistant Panel; use /diagnostics explicitly to include them.
Was this useful?
◆  AI Agent Frameworks

AutoGPT

Sources Release notes → autogpt-platform-beta-v0.3.3 5 RELEASES · 2024-11-08 → 2024-11-20 NOTES STABLE

AutoGPT Platform beta v0.3.3 adds Agent Output visibility on the Monitor page and Runner Output UI updates.

└──▷ GET THIS VERSION
$ git clone --branch autogpt-platform-beta-v0.3.3 https://github.com/Significant-Gravitas/AutoGPT.git
# already have the repo? check out this version:
$ git checkout autogpt-platform-beta-v0.3.3
  • Displays agent output directly on the Monitor page, giving operators visibility into live agent results without leaving the monitoring view.
  • Updates to the Runner Output UI improve how execution results are presented during agent runs.
4 more releases in this issue · 2024-11-08 → 2024-11-20
autogpt-platform-beta-v0.3.2 NOTES STABLE

AutoGPT Platform v0.3.2 adds Open Router integration with expanded model selection and typed JSON parsing support.

└──▷ GET THIS VERSION
$ git clone --branch autogpt-platform-beta-v0.3.2 https://github.com/Significant-Gravitas/AutoGPT.git
# already have the repo? check out this version:
$ git checkout autogpt-platform-beta-v0.3.2
  • Adds Open Router integration block, giving agents access to a large selection of new models via the Open Router service.
  • Enables JSON parsing with typing and type conversion support in the backend, allowing blocks to handle strongly-typed JSON data.
autogpt-platform-beta-v0.3.1 NOTES STABLE

AutoGPT Platform v0.3.1 adds Agent Execution Block, scheduling, AI image/music generation, and multi-language YouTube support.

└──▷ GET THIS VERSION
$ git clone --branch autogpt-platform-beta-v0.3.1 https://github.com/Significant-Gravitas/AutoGPT.git
# already have the repo? check out this version:
$ git checkout autogpt-platform-beta-v0.3.1
  • Adds AIImageGeneratorBlock — a unified block for generating images via multiple AI models inside AutoGPT workflows.
  • Introduces the Agent Execution Block, enabling agents to be used as composable blocks within other agents for modular, complex pipeline construction.
  • Introduces Scheduling Agent Runner, letting users schedule agents to run at specific times and monitor them from a dedicated monitor page in the UI.
  • Adds the AI Music Generator Block powered by Meta Music Gen, enabling audio generation directly within workflows.
  • Expands the YouTube Video Block to support additional languages beyond the previous default.
+2 moreshow less
  • Adds authentication checks to the frontend, preventing unauthorized users from triggering agent runs.
  • Default credentials are now mapped to actual provider names (e.g., anthropic), and hidden credentials for default system keys are no longer visible in the user profile.
autogpt-platform-beta-v0.2.2 NOTES STABLE

AutoGPT Platform v0.2.2 adds Pinecone integration blocks and an API key database table.

└──▷ GET THIS VERSION
$ git clone --branch autogpt-platform-beta-v0.2.2 https://github.com/Significant-Gravitas/AutoGPT.git
# already have the repo? check out this version:
$ git checkout autogpt-platform-beta-v0.2.2
  • Introduces a dedicated API key database table for managing credential storage.
  • Adds Pinecone integration blocks, enabling vector database operations within AutoGPT workflows.
  • Adds default credentials support for Jina blocks, simplifying Jina AI service configuration.
autogpt-platform-beta-v0.2.1 NOTES STABLE

AutoGPT Platform v0.2.1 adds secret detection in pre-commit hooks and UI error toasts for graph creation failures.

└──▷ GET THIS VERSION
$ git clone --branch autogpt-platform-beta-v0.2.1 https://github.com/Significant-Gravitas/AutoGPT.git
# already have the repo? check out this version:
$ git checkout autogpt-platform-beta-v0.2.1
  • Adds secret detection to pre-commit hooks to catch leaked credentials before they reach the repository.
  • Adds toast notifications for graph creation errors in the build page UI, surfacing failures inline instead of silently.
  • Reduces the number of services required to run local mode, simplifying self-hosted deployments.
└──▷ BREAKING ON UPGRADE
  • !Subgraph functionality has been removed; GraphMeta and Graph are merged into a single model — workflows relying on subgraphs will break on upgrade.
Was this useful?

CrewAI

Sources Release notes → v0.83.0 2 RELEASES · 2024-11-10 → 2024-11-25 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 v0.83.0 adds crew lifecycle callbacks, agent knowledge pre-seeding, and Mem0 memory/preference retrieval.

└──▷ GET THIS VERSION
$ git clone --branch v0.83.0 https://github.com/crewAIInc/crewAI.git
# already have the repo? check out this version:
$ git checkout v0.83.0
└──▷ USE IT
Run setup or teardown logic around a crew execution using the new lifecycle hooks.
python
@crew
def my_crew(self) -> Crew:
    return Crew(
        agents=self.agents,
        tasks=self.tasks,
        before_kickoff=self.before_kickoff,
        after_kickoff=self.after_kickoff,
    )
  • Adds before_kickoff and after_kickoff crew callbacks for hooking into crew lifecycle events.
  • Supports pre-seeding agents with Knowledge so agents start with domain context before execution begins.
  • Adds Mem0 integration for retrieving user preferences and memories during agent runs.
1 more release in this issue · 2024-11-10 → 2024-11-25
0.79.0 NOTES STABLE

CrewAI 0.79.0 adds flow inputs, IBM Watson memory integration, and broader log storage data type support.

└──▷ GET THIS VERSION
$ git clone --branch 0.79.0 https://github.com/crewAIInc/crewAI.git
# already have the repo? check out this version:
$ git checkout 0.79.0
└──▷ USE IT
Build a custom tool using the now top-level BaseTool import rather than reaching into submodules.
python
from crewai import BaseTool

class MyScanner(BaseTool):
    name: str = "Port Scanner"
    description: str = "Scans open ports on a given host."

    def _run(self, host: str) -> str:
        # tool logic here
        return f"Scanning {host}"
  • Adds inputs parameter support to flows, enabling dynamic data to be passed into flow execution.
  • Enhances log storage to support a wider range of data types beyond strings.
  • Moves BaseTool to the main package and centralizes tool description generation, simplifying custom tool authoring.
  • Raises an explicit error when an LLM returns no response, making silent failures visible.
Was this useful?

Stanford NLP DSPy

Sources Release notes → 2.5.41 11 RELEASES · 2024-11-03 → 2024-11-29 NOTES STABLE

DSPy 2.5.41 adds Signature docstring context to ReAct and a new MATH reasoning dataset with metric and tutorial.

└──▷ GET THIS VERSION
$ git clone --branch 2.5.41 https://github.com/stanfordnlp/dspy.git
# already have the repo? check out this version:
$ git checkout 2.5.41
  • Includes the Signature __doc__ string in the system message for the ReAct module, giving the LLM richer task context from inline documentation.
  • Adds a MATH reasoning dataset, accompanying metric, and tutorial for benchmarking and optimizing mathematical reasoning programs.
10 more releases in this issue · 2024-11-03 → 2024-11-29
2.5.40 NOTES STABLE

DSPy 2.5.40 lets ReAct tools wrap class methods and serializes datetimes/enums via pydantic adapters.

└──▷ GET THIS VERSION
$ git clone --branch 2.5.40 https://github.com/stanfordnlp/dspy.git
# already have the repo? check out this version:
$ git checkout 2.5.40
└──▷ USE IT
Register a class method as a ReAct tool so stateful or object-oriented tooling can be used directly in a ReAct pipeline.
python
import dspy

class MySearch:
    def __init__(self, index):
        self.index = index

    def search(self, query: str) -> str:
        """Search the index for a query."""
        return self.index.get(query, 'not found')

searcher = MySearch(index={'dspy': 'A framework for programming LMs'})
tool = dspy.react.Tool(searcher.search)

react = dspy.ReAct('question -> answer', tools=[tool])
print(react(question='What is dspy?'))
  • Allows react.Tool to wrap class methods (not just standalone functions), expanding the surfaces that can be registered as ReAct tools.
  • Adapters now support JSON serialization of arbitrary pydantic-compatible types — including datetimes, enums, and other complex types — via pydantic's serialization layer.
  • Switches DSPy settings storage from a contextvar to thread-local storage, improving compatibility with Colab and multi-threaded environments.
2.5.36 NOTES STABLE

DSPy 2.5.36 converts settings to a ContextVar and allows user-launched threads to inherit DSPy context safely.

└──▷ GET THIS VERSION
$ git clone --branch 2.5.36 https://github.com/stanfordnlp/dspy.git
# already have the repo? check out this version:
$ git checkout 2.5.36
  • Converts dspy.settings to a ContextVar, enabling per-thread/per-context isolation of DSPy configuration.
  • Extends ParallelExecutor to isolate context even when running with a single thread.
  • Permits user-launched threads to carry DSPy settings context, enabling safe concurrent use outside of DSPy-managed execution.
2.5.35 NOTES STABLE

DSPy 2.5.35 raises the default cache limit to 30 GB.

└──▷ GET THIS VERSION
$ git clone --branch 2.5.35 https://github.com/stanfordnlp/dspy.git
# already have the repo? check out this version:
$ git checkout 2.5.35
  • Expands the default cache limit from its previous size to 30 GB, enabling larger-scale LM call caching without manual configuration.
2.5.34 NOTES STABLE

DSPy 2.5.34 adds a thread-safe faiss kNN retriever, a grounded completeness metric, and an Unbatchify utility.

└──▷ GET THIS VERSION
$ git clone --branch 2.5.34 https://github.com/stanfordnlp/dspy.git
# already have the repo? check out this version:
$ git checkout 2.5.34
  • Adds dspy.retrievers.Embeddings — a thread-safe, memory-friendly faiss k-nearest-neighbour retrieval index.
  • Introduces CompleteAndGrounded metric for evaluating whether generated outputs are both complete and grounded in source context.
  • Introduces Unbatchify utility for converting batched outputs back into individual items.
2.5.33 NOTES STABLE

DSPy 2.5.33 adds a teacher module to MIPROv2 and improves its logging.

└──▷ GET THIS VERSION
$ git clone --branch 2.5.33 https://github.com/stanfordnlp/dspy.git
# already have the repo? check out this version:
$ git checkout 2.5.33
  • Adds a teacher module to MIPROv2, enabling separate teacher-student optimization configurations.
  • Improves MIPROv2 logging output for better visibility into optimization runs.
2.5.30 NOTES STABLE

DSPy 2.5.30 adds dspy.asyncify for async module wrapping and native parallel execution support.

└──▷ GET THIS VERSION
$ git clone --branch 2.5.30 https://github.com/stanfordnlp/dspy.git
# already have the repo? check out this version:
$ git checkout 2.5.30
└──▷ USE IT
Wrap a synchronous DSPy module to run asynchronously in an async context, avoiding blocking the event loop.
python
import dspy

predict = dspy.Predict('question -> answer')
async_predict = dspy.asyncify(predict)

result = await async_predict(question='What is the capital of France?')
  • Adds dspy.asyncify to wrap synchronous DSPy modules for asynchronous execution.
  • Adds native parallel execution support via ParallelExecutor for running DSPy programs concurrently.
2.5.29 NOTES STABLE

DSPy 2.5.29 adds a Databricks finetuning integration.

└──▷ GET THIS VERSION
$ git clone --branch 2.5.29 https://github.com/stanfordnlp/dspy.git
# already have the repo? check out this version:
$ git checkout 2.5.29
  • Adds Databricks finetuning integration, enabling DSPy programs to leverage Databricks-hosted model finetuning workflows.
2.5.28 NOTES STABLE

DSPy 2.5.28 revamps BootstrapFinetune, merges BetterTogether optimizer, and adds a flag to suppress LiteLLM logs in dspy.LM.

└──▷ GET THIS VERSION
$ git clone --branch 2.5.28 https://github.com/stanfordnlp/dspy.git
# already have the repo? check out this version:
$ git checkout 2.5.28
  • Adds a flag to dspy.LM to suppress LiteLLM log output, reducing noise when running DSPy programs.
  • Revamps BootstrapFinetune and promotes the BetterTogether optimizer from experimental to main, making combined few-shot and fine-tuning optimization available in the standard release.
2.5.26 NOTES STABLE

DSPy 2.5.26 adds exponential backoff retries for LM calls and drops the structlog dependency.

└──▷ GET THIS VERSION
$ git clone --branch 2.5.26 https://github.com/stanfordnlp/dspy.git
# already have the repo? check out this version:
$ git checkout 2.5.26
  • Removes the structlog dependency, reducing the library's install footprint.
  • Adds automatic retry with exponential backoff for LM calls on a limited set of error codes.
2.5.23 NOTES STABLE

DSPy 2.5.23 adds image support and chainable loading for Predict modules.

└──▷ GET THIS VERSION
$ git clone --branch 2.5.23 https://github.com/stanfordnlp/dspy.git
# already have the repo? check out this version:
$ git checkout 2.5.23
  • Adds chainable loading for Predict modules, enabling fluent module initialization patterns.
  • Adds image support to DSPy programs.
Was this useful?

deepset Haystack

Sources Release notes → v2.7.0 NOTES

Haystack v2.7.0 adds LoggingTracer, StringJoiner, DOCX table extraction, and a reworked Pipeline.run() with better cycle support.

└──▷ GET THIS VERSION
$ git clone --branch v2.7.0 https://github.com/deepset-ai/haystack.git
# already have the repo? check out this version:
$ git checkout v2.7.0
└──▷ USE IT
Inspect every input and output flowing through a pipeline in real time during experimentation, without adding an external tracer.
python
import logging
from haystack import tracing
from haystack.tracing.logging_tracer import LoggingTracer

logging.basicConfig(format="%(levelname)s - %(name)s -  %(message)s", level=logging.WARNING)
logging.getLogger("haystack").setLevel(logging.DEBUG)
tracing.tracer.is_content_tracing_enabled = True
tracing.enable_tracing(LoggingTracer())

# Now run your pipeline — all spans appear in the log output
pipeline.run({"text_embedder": {"text": "What is RAG?"}})
  • Introduces LoggingTracer (importable from haystack.tracing.logging_tracer) that sends all pipeline traces to Python's logging system in real time; enable content tracing via tracing.tracer.is_content_tracing_enabled = True and activate with tracing.enable_tracing(LoggingTracer()).
  • Adds additional_mimetypes parameter to FileTypeRouter component, allowing users to supply extra MIME type mappings for correct file classification in environments like AWS Lambda.
  • Adds streaming_callback run-time parameter to HuggingFaceAPIGenerator and HuggingFaceLocalGenerator for per-chunk response callbacks.
  • Adds validate_output_type parameter to ConditionalRouter; setting it to True enables runtime type-checking of route outputs, raising ValueError on mismatch.
  • Adds config_kwargs parameter to SentenceTransformersDocumentEmbedder and SentenceTransformersTextEmbedder for passing additional options when loading model configuration.
+6 moreshow less
  • Adds meta parameter to FileTypeRouter.run(), automatically converting sources to ByteStream objects with attached metadata for preprocessing/indexing pipelines.
  • Adds new StringJoiner component to join strings from multiple components into a list of strings.
  • Enhances DOCX converter to extract table content in addition to paragraphs, supporting both CSV and Markdown output formats.
  • Reworks Pipeline.run() internal logic for more reliable cycle handling and deterministic component execution order.
  • Makes window_size a run-time parameter on SentenceWindowRetriever, overriding the constructor value per run.
  • Attaches each component tracing span to its parent pipeline run span, enabling concurrent multi-run tracing.
└──▷ BREAKING ON UPGRADE
  • !The debug_path init argument has been removed from Pipeline.
  • !The max_loops_allowed init argument has been removed from Pipeline; use max_runs_per_component instead.
  • !The PipelineMaxLoops exception has been removed; use PipelineMaxComponentRuns instead.
  • !The haystack.components.converters.pypdf.DefaultConverter class has been removed; pipeline YAMLs using it must be updated to reference haystack.components.converters.pdf.PDFToTextConverter with converter: null.
  • !Pipeline.connect() now raises PipelineConnectError when sender and receiver are the same component.
Was this useful?

LangChain

Sources Release notes → langchain==0.3.9 10 RELEASES · 2024-11-01 → 2024-11-27 NOTES STABLE

LangChain 0.3.9 adds init_embeddings and provider-in-model-string support for init_chat_model.

└──▷ GET THIS VERSION
$ git clone --branch langchain==0.3.9 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain==0.3.9
└──▷ USE IT
Initialize an embedding model by name without manually importing the provider class.
python
from langchain.embeddings import init_embeddings

embeddings = init_embeddings('openai/text-embedding-3-small')
Specify both provider and model in a single string when initializing a chat model, useful for dynamic model selection in config-driven pipelines.
python
from langchain.chat_models import init_chat_model

model = init_chat_model('openai/gpt-4o')
  • Adds init_embeddings function to initialize embedding models by name, mirroring the init_chat_model pattern.
  • Extends init_chat_model to accept the provider directly inside the model string (e.g. openai/gpt-4o), removing the need to pass provider as a separate argument.
  • Adds numpy 2 support, enabling use with environments that have upgraded to numpy 2.x.
9 more releases in this issue · 2024-11-01 → 2024-11-27
langchain-ollama==0.2.2rc1 NOTES STABLE

langchain-ollama 0.2.2rc1 adds Ollama 0.4 support, token-level streaming with bound tools, and kwargs passthrough in requests.

└──▷ GET THIS VERSION
$ git clone --branch langchain-ollama==0.2.2rc1 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-ollama==0.2.2rc1
  • Supports Ollama 0.4 in langchain-ollama.
  • Enables token-level streaming when using bind_tools with ChatOllama, allowing real-time output during tool-augmented calls.
  • Passes additional kwargs through to Ollama API requests, giving callers direct control over request parameters.
langchain-community==0.3.8 NOTES STABLE

langchain-community 0.3.8 adds Outlines, Reka, and SambaNova integrations plus SambaNova tool calling and structured output.

└──▷ GET THIS VERSION
$ git clone --branch langchain-community==0.3.8 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-community==0.3.8
  • New Outlines integration adds the Outlines LLM/model backend to langchain-community for structured text generation.
  • New Reka chat model integration adds reka as a supported chat model provider.
  • New SambaNova Cloud LLM integration adds sambanovacloud as a supported LLM backend.
  • Adds tool calling and structured output support to the SambaNova Cloud integration.
  • Adds deprecation warning for the GigaChat integration in langchain-community, signaling future removal.
langchain-core==0.3.20 NOTES STABLE

langchain-core 0.3.20 adds final AIMessage support in tool_example_to_messages and expands sys_info with LangGraph packages.

└──▷ GET THIS VERSION
$ git clone --branch langchain-core==0.3.20 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-core==0.3.20
  • Adds support for final AIMessage responses in tool_example_to_messages, enabling tool-use examples that include a concluding assistant message.
  • Adds other LangGraph packages to sys_info output for more complete environment diagnostics.
langchain-core==0.3.18 NOTES STABLE

langchain-core 0.3.18 adds DeleteResponse to the module and a new xAI chat integration.

└──▷ GET THIS VERSION
$ git clone --branch langchain-core==0.3.18 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-core==0.3.18
  • Adds DeleteResponse to the langchain-core module.
  • Adds xAI chat integration via the partners package.
langchain-anthropic==0.3.0 NOTES STABLE

langchain-anthropic 0.3.0 adds Python 3.13 support and migrates token counting to Anthropic's beta messages API.

└──▷ GET THIS VERSION
$ git clone --branch langchain-anthropic==0.3.0 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-anthropic==0.3.0
└──▷ USE IT
Count tokens for a set of messages including tool definitions before sending to the model.
python
from langchain_anthropic import ChatAnthropic
from langchain_core.messages import HumanMessage

llm = ChatAnthropic(model='claude-3-5-sonnet-20241022')
tools = [my_tool]
token_count = llm.get_num_tokens_from_messages(
    [HumanMessage(content='What is the weather in Paris?')],
    tools=tools
)
print(token_count)
  • Adds ChatAnthropic.get_num_tokens_from_messages backed by the client.beta.messages.count_tokens() API, replacing the removed client.count_tokens method.
  • Adds an optional tools parameter to ChatAnthropic.get_num_tokens_from_messages to include tool definitions in token counts.
  • Supports Python 3.13.
└──▷ BREAKING ON UPGRADE
  • !Token counting via the legacy client.count_tokens method on the Anthropic LLM is removed; use ChatAnthropic.get_num_tokens_from_messages instead.
langchain-core==0.3.17 NOTES STABLE

langchain-core 0.3.17 adds optional tools parameter to BaseLanguageModel.get_num_tokens_from_messages

└──▷ GET THIS VERSION
$ git clone --branch langchain-core==0.3.17 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-core==0.3.17
└──▷ USE IT
Count tokens for a message list that includes tool definitions, so you can accurately budget context before sending a request.
python
model.get_num_tokens_from_messages(messages, tools=tools)
  • Adds tools as an optional parameter to BaseLanguageModel.get_num_tokens_from_messages, enabling token counting that accounts for tool definitions passed alongside messages.
langchain-community==0.3.6 NOTES STABLE

langchain-community 0.3.6 adds Google Books API tool, Cloudflare Workers AI chat model, ZeroxPDF loader, Memcached LLM cache, and more new integrations.

└──▷ GET THIS VERSION
$ git clone --branch langchain-community==0.3.6 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-community==0.3.6
  • Adds bytes as a valid source input to AzureAIDocumentIntelligenceLoader, enabling in-memory document processing without writing to disk.
  • Adds ZeroxPDFLoader for PDF loading via the Zerox engine.
  • Adds ChatModels wrapper for Cloudflare Workers AI, enabling LLM inference through Cloudflare's edge AI platform.
  • Adds Memcached LLM cache integration for distributed caching of LLM responses.
  • Adds InfinityRerank reranker integration.
+7 moreshow less
  • Adds Google Books API tool for retrieving book data within LangChain agent workflows.
  • Adds Document.id support to the OpenSearch vector store.
  • Adds OVHcloud batch embedding support via updated OVHcloud integration.
  • Allows non-default parsers in SharePointLoader and OneDriveLoader.
  • Updates Vectara integration with latest API changes.
  • Adds type hinting to OpenSearch clients for improved IDE and static-analysis support.
  • Reads function calls from tool_calls field for Qianfan chat models, expanding tool-use compatibility.
langchain-core==0.3.16 NOTES STABLE

langchain-core 0.3.16 adds file_type option to mermaid graph output and friendlier duplicate-node names.

└──▷ GET THIS VERSION
$ git clone --branch langchain-core==0.3.16 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-core==0.3.16
  • Adds file_type option to mermaid graph rendering, defaulting to png.
  • Uses friendlier names for duplicated nodes in mermaid diagram output.
  • Makes OpenAI tool description optional.
langchain-community==0.3.5 NOTES STABLE

LangChain Community 0.3.5 adds AzureOpenAIWhisperParser and batch embedding support for text-embedding-v3.

└──▷ GET THIS VERSION
$ git clone --branch langchain-community==0.3.5 https://github.com/langchain-ai/langchain.git
# already have the repo? check out this version:
$ git checkout langchain-community==0.3.5
  • Adds AzureOpenAIWhisperParser for transcribing audio via Azure OpenAI's Whisper model.
  • Adds batch request support for the text-embedding-v3 model, enabling higher-throughput embedding workflows.
  • Updates the Polygon.io API integration with the latest API changes.
Was this useful?

LangChain LangGraph

Sources Release notes → cli==0.1.61 24 RELEASES · 2024-11-02 → 2024-11-28 NOTES STABLE

Build resilient agents.

LangGraph CLI adds --wait-for-client flag for blocking debug startup and isolates store config into LANGGRAPH_STORE.

└──▷ GET THIS VERSION
$ git clone --branch cli==0.1.61 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout cli==0.1.61
└──▷ TRY IT
Pause the dev server at startup until your IDE debugger attaches, so you can set breakpoints before any graph code runs.
$ langgraph dev --debug-port 5678 --wait-for-client
  • Adds --wait-for-client flag to the dev command that, combined with --debug-port, pauses server startup until a debugger client connects.
  • Introduces dedicated LANGGRAPH_STORE environment variable for store configuration in Docker environments, replacing the previous embedding inside LANGGRAPH_CONFIG.
└──▷ BREAKING ON UPGRADE
  • !Store configuration in Docker environments is now passed via LANGGRAPH_STORE instead of LANGGRAPH_CONFIG; any tooling or scripts that read store config from LANGGRAPH_CONFIG will no longer receive it there.
23 more releases in this issue · 2024-11-02 → 2024-11-28
checkpointpostgres==2.0.5 NOTES STABLE

langgraph-checkpoint-postgres 2.0.5 adds pgvector-powered semantic search to PostgreSQL-backed LangGraph stores.

└──▷ GET THIS VERSION
$ git clone --branch checkpointpostgres==2.0.5 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout checkpointpostgres==2.0.5
  • Adds PostgresIndexConfig class to configure pgvector-backed vector search with configurable dimensions, distance metrics (l2, inner_product, cosine), and vector types (vector, halfvec).
  • Enables vector similarity search and embedding-based document indexing and retrieval in BasePostgresStore.
  • Adds async embedding and vector search support to AsyncPostgresStore for non-blocking document indexing and retrieval.
  • Introduces _row_to_search_item to surface similarity scores as float values alongside search results.
cli==0.1.60 NOTES STABLE

LangGraph CLI 0.1.60 adds vector store configuration with embedding specs, enabling semantic search in LangGraph projects.

└──▷ GET THIS VERSION
$ git clone --branch cli==0.1.60 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout cli==0.1.60
└──▷ USE IT
Configure a vector store with an embedding model in your LangGraph project config to enable semantic search over stored data.
python
from langgraph_cli.config import IndexConfig, StoreConfig

store = StoreConfig(
    index=IndexConfig(
        dims=1536,
        embed="openai:text-embedding-3-small",
        fields=["text", "description"],
    )
)
  • Adds IndexConfig and StoreConfig configuration types to specify vector embedding dimensions (dims), model selection (embed), and custom field extraction (fields) for semantic search.
  • Enables the dev command to pass store configuration from config.json to the LangGraph server at runtime.
  • Supports store settings in Docker container deployments via environment variable pass-through.
  • Adds python-dotenv as an optional dependency for environment variable management.
sdk==0.1.40 NOTES STABLE

LangGraph SDK 0.1.40 adds natural language search to the store with relevance scoring and fine-grained index control.

└──▷ GET THIS VERSION
$ git clone --branch sdk==0.1.40 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout sdk==0.1.40
└──▷ USE IT
Run a natural language query against the store and inspect relevance scores to surface the most pertinent items.
python
results = await client.store.search_items(namespace, query="latest customer complaints about billing")
for item in results.items:
    print(item.score, item.key, item.value)
Store an item while limiting indexing to specific fields, reducing noise in semantic search results.
python
await client.store.put_item(namespace, key="user-42", value={"name": "Alice", "notes": "VIP customer", "internal_id": 99}, index=["name", "notes"])
Exclude a sensitive item from search indexing entirely so it cannot be surfaced via natural language queries.
python
await client.store.put_item(namespace, key="secret-config", value={"api_key": "s3cr3t"}, index=False)
  • Adds query parameter to search_items (sync and async) enabling natural language search over stored items.
  • Introduces SearchItem class extending Item with an optional score field, so callers can rank results by relevance.
  • Updates SearchItemsResponse to return list[SearchItem] instead of list[Item], surfacing relevance scores in all search results.
  • Adds index parameter to put_item (sync and async) to control per-item indexing: None for default, False to skip indexing, or a list[str] of field paths to index selectively.
└──▷ BREAKING ON UPGRADE
  • !SearchItemsResponse now returns list[SearchItem] instead of list[Item]; code that type-checks or pattern-matches on Item from search results will need updating.
checkpoint==2.0.7 NOTES STABLE

LangGraph checkpoint 2.0.7 adds vector/semantic search to stores, richer query filters, and embedding utilities.

└──▷ GET THIS VERSION
$ git clone --branch checkpoint==2.0.7 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout checkpoint==2.0.7
└──▷ USE IT
Enable semantic search on an in-memory store so an agent can retrieve memories by meaning rather than exact key.
python
from langgraph.store.memory import InMemoryStore
from langgraph.store.base import IndexConfig
from langchain_openai import OpenAIEmbeddings

store = InMemoryStore(
    index=IndexConfig(
        dims=1536,
        embed=OpenAIEmbeddings(model="text-embedding-3-small"),
        fields=["text", "summary"],
    )
)

# Store an item (indexed by default)
await store.aput(("users", "alice"), "mem-1", {"text": "Alice prefers dark mode."})

# Retrieve semantically similar items
results = await store.asearch(("users", "alice"), query="UI preferences", limit=5)
for item in results:
    print(item.key, item.score, item.value)
Wrap a custom embedding function (e.g. a local model) into LangChain's interface so it works with IndexConfig.
python
from langgraph.store.base.embed import ensure_embeddings
import numpy as np

def my_embed(texts: list[str]) -> list[list[float]]:
    # Replace with your local model call
    return [np.random.rand(768).tolist() for _ in texts]

embeddings = ensure_embeddings(my_embed)

from langgraph.store.base import IndexConfig
config = IndexConfig(dims=768, embed=embeddings)
Use comparison-operator filters alongside a semantic query to narrow store search results to recent, high-relevance items.
python
results = await store.asearch(
    ("projects", "sec-team"),
    query="privilege escalation techniques",
    filter={"severity": {"$gt": 7}, "status": {"$eq": "open"}},
    limit=10,
)
for item in results:
    print(item.key, item.score, item.value["severity"])
  • Adds semantic similarity search to BaseStore via an updated search/asearch interface that returns ranked SearchItem instances with a score field.
  • Introduces IndexConfig class to configure vector search settings — embedding dimensions, embedding function, and which fields to index — per store.
  • Adds index parameter to put/aput (and PutOp) to control per-item vector indexing: use default indexing, disable with False, or specify custom field paths.
  • Adds query parameter to SearchOp for natural-language semantic search alongside existing namespace/filter queries.
  • Enhances query filtering in SearchOp with comparison operators ($eq, $gt, $lt, and others) including support for nested fields and array path expressions.
+3 moreshow less
  • Adds ensure_embeddings utility to wrap any sync or async embedding function into LangChain's Embeddings interface, plus EmbeddingsFunc/AEmbeddingsFunc type definitions.
  • Adds get_text_at_path and tokenize_path utilities for extracting text from nested objects using path expressions with support for wildcards, array indexing, and multi-field selection.
  • Rewrites InMemoryStore with full vector search support and optional NumPy acceleration for vector operations.
└──▷ BREAKING ON UPGRADE
  • !NameSpacePath is renamed to NamespacePath; code importing or referencing NameSpacePath will break.
  • !search and asearch on BaseStore now return SearchItem instances instead of plain Item instances; code that expects Item objects from these methods may break.
checkpointpostgres==2.0.4 NOTES STABLE

langgraph-checkpoint-postgres 2.0.4 adds connection pooling, pipeline optimization, and last-write-wins deduplication for Postgres stores.

└──▷ GET THIS VERSION
$ git clone --branch checkpointpostgres==2.0.4 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout checkpointpostgres==2.0.4
  • New PoolConfig TypedDict in langgraph.store.postgres.base lets you configure min/max connections and extra connection parameters for PostgreSQL connection pools.
  • Adds connection pooling support to both PostgresStore and AsyncPostgresStore for improved throughput under high concurrency.
  • Adds pipelined database operations to PostgresStore and AsyncPostgresStore, batching queries for higher throughput.
  • Adds last-write-wins deduplication semantics for concurrent operations on the same key in PostgresStore.
  • Adds thread locking (PostgresStore) and async locks (AsyncPostgresStore) for safe concurrent access.
+1 moreshow less
  • Improves inheritance support in PostgresSaver and AsyncPostgresSaver by using cls instead of hardcoded class names, enabling reliable subclassing.
checkpoint==2.0.6 NOTES STABLE

LangGraph checkpoint 2.0.6 adds async namespace listing and batch operation deduplication to AsyncBatchedBaseStore.

└──▷ GET THIS VERSION
$ git clone --branch checkpoint==2.0.6 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout checkpoint==2.0.6
└──▷ USE IT
Discover which namespaces exist in your store, filtered by prefix and bounded by depth — useful for auditing or scoping operations in multi-tenant graphs.
python
namespaces = await store.alist_namespaces(prefix=("user", "alice"), depth=3, limit=50)
  • Adds alist_namespaces method to AsyncBatchedBaseStore for querying namespaces with filtering by prefix, suffix, depth, and pagination.
  • Improves batch performance in AsyncBatchedBaseStore via a new _dedupe_ops function that deduplicates identical get/search operations and consolidates multiple puts to the same key.
  • Extends CheckpointMetadata.source to accept "fork" as a valid value, identifying checkpoints created as copies of other checkpoints.
cli==0.1.59 NOTES STABLE

LangGraph CLI dev command now auto-loads config-file dependencies onto Python's path

└──▷ GET THIS VERSION
$ git clone --branch cli==0.1.59 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout cli==0.1.59
  • Enables the dev command to read the dependencies field from the config file and add those directories to Python's path automatically.
  • Automatically adds the current working directory to Python's path when running the dev command, allowing seamless local module imports.
cli==0.1.58 NOTES STABLE

LangGraph CLI 0.1.58 adds env parameter to pass environment variables from config file to the dev server.

└──▷ GET THIS VERSION
$ git clone --branch cli==0.1.58 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout cli==0.1.58
└──▷ USE IT
Set environment variables in your LangGraph config so they are automatically available when running the dev server — no need to export them separately in your shell.
yaml
env:
  OPENAI_API_KEY: "sk-..."
  MY_CUSTOM_VAR: "value"
  • Supports passing environment variables from the configuration file to the development server via a new env parameter.
cli==0.1.56 NOTES STABLE

LangGraph CLI 0.1.56 adds Python 3.13 support and Node.js/package.json compatibility validation.

└──▷ GET THIS VERSION
$ git clone --branch cli==0.1.56 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout cli==0.1.56
└──▷ USE IT
Programmatically load and validate a langgraph config file (replaces separate load + validate calls).
python
from langgraph_cli.config import validate_config_file

config = validate_config_file("langgraph.json")
  • Supports Python 3.13 as a valid runtime in langgraph-cli config.
  • Adds validate_config_file() function that loads and validates config files in a single call.
  • Validates Node.js version compatibility against package.json when present in a project.
  • Introduces MIN_NODE_VERSION and MIN_PYTHON_VERSION constants for centralized version requirement enforcement.
cli==0.1.55 NOTES STABLE

LangGraph CLI gains a langgraph dev command for running the API server in development mode with hot reloading.

└──▷ GET THIS VERSION
$ git clone --branch cli==0.1.55 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout cli==0.1.55
└──▷ TRY IT
Spin up a hot-reloading local LangGraph API server during development without launching a browser, binding to a custom port.
$ langgraph dev --port 8123 --no-browser --config langgraph.json
Install the CLI with in-memory API support to run langgraph dev without a full backend dependency.
$ pip install "langgraph-cli[inmem]"
  • New langgraph dev command runs the LangGraph API server in development mode with hot reloading and options for --host, --port, --no-reload, --config, --n-jobs-per-worker, --no-browser, and --debug-port.
  • New inmem extras entry enables lightweight in-memory API support via pip install "langgraph-cli[inmem]".
0.2.51 NOTES STABLE

LangGraph 0.2.51 adds checkpoint forking to Pregel via a new __copy__ node.

└──▷ GET THIS VERSION
$ git clone --branch 0.2.51 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout 0.2.51
  • Adds checkpoint forking in Pregel via a new __copy__ special node: when as_node="__copy__" and values=None, creates a copy of the checkpoint with a "fork" source marker and preserved parent metadata.
checkpoint==2.0.5 NOTES STABLE

LangGraph checkpoint 2.0.5 adds disk-persistent checkpoints via PersistentDict and a configurable MemorySaver storage backend.

└──▷ GET THIS VERSION
$ git clone --branch checkpoint==2.0.5 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout checkpoint==2.0.5
└──▷ USE IT
Persist agent checkpoints to disk across process restarts instead of losing state when the process exits.
python
from langgraph.checkpoint.memory import MemorySaver, PersistentDict

with MemorySaver(factory=lambda: PersistentDict("/tmp/checkpoints.pkl")) as saver:
    # compile and run your graph with `saver` as the checkpointer
    graph = my_graph.compile(checkpointer=saver)
    graph.invoke({"messages": []}, config={"configurable": {"thread_id": "session-1"}})
  • New PersistentDict class provides dictionary-like checkpoint storage backed by disk, using atomic writes for data safety.
  • Adds a factory parameter to MemorySaver to swap in custom storage backends, including the new PersistentDict.
0.2.50 NOTES STABLE

LangGraph 0.2.50 adds the ability to create snapshot checkpoints without modifying graph state.

└──▷ GET THIS VERSION
$ git clone --branch 0.2.50 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout 0.2.50
└──▷ USE IT
Capture a mid-execution snapshot of a running graph without altering its state, useful for audit trails or rollback points.
python
await graph.aupdate_state(config, values=None, as_node=None)
  • Enables creating checkpoint snapshots mid-execution via aupdate_state without applying any state changes (pass values=None, as_node=None).
0.2.49 NOTES STABLE

LangGraph 0.2.49 adds checkpoint copying and a debug parameter to graph execution loops.

└──▷ GET THIS VERSION
$ git clone --branch 0.2.49 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout 0.2.49
└──▷ USE IT
Snapshot the current graph checkpoint without modifying state — useful before a risky branch of execution.
python
graph.update_state(config, values=None, as_node=None)
  • Supports copying the current checkpoint by calling update_state with both values=None and as_node=None.
  • Adds a debug parameter to loop creation in Pregel for improved visibility into graph execution.
cli==0.1.54 NOTES STABLE

LangGraph CLI gains a new project scaffolding command, Docker Compose generation, and five built-in agent templates.

└──▷ GET THIS VERSION
$ git clone --branch cli==0.1.54 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout cli==0.1.54
└──▷ TRY IT
Bootstrap a new ReAct-style agent project without writing boilerplate — pick a template interactively and start coding immediately.
$ langgraph new my-agent-project
Generate a full local-dev stack (Dockerfile + docker-compose.yml + .env + .dockerignore) in one shot so you can docker compose up right away.
$ langgraph dockerfile --add-docker-compose langgraph.json
  • Adds new command to scaffold LangGraph projects interactively from five built-in templates (minimal chatbot, ReAct Agent, Memory Agent, Retrieval Agent, Data-enrichment Agent).
  • Adds --add-docker-compose flag to the dockerfile command, generating a docker-compose.yml, .env, and .dockerignore alongside the Dockerfile.
  • Adds --version flag to display the installed CLI version.
checkpoint==2.0.4 NOTES STABLE

langgraph-checkpoint 2.0.4 adds INTERRUPT and RESUME constants to support graph execution interruption and resumption.

└──▷ GET THIS VERSION
$ git clone --branch checkpoint==2.0.4 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout checkpoint==2.0.4
└──▷ USE IT
Reference the new constants when inspecting or filtering checkpoint writes for interrupt/resume events.
python
from langgraph.checkpoint.serde.types import INTERRUPT, RESUME

# Check whether a checkpoint write corresponds to an interrupt or resume
def is_interrupt_write(write):
    return write.channel in (INTERRUPT, RESUME)
  • Adds INTERRUPT and RESUME constants to langgraph.checkpoint.serde.types, enabling interrupt and resume operations in graph execution checkpointing.
  • Reserves checkpoint write index values -3 and -4 for interrupt and resume operation types in WRITES_IDX_MAP.
└──▷ BREAKING ON UPGRADE
  • !The CommandProtocol class has been removed from langgraph.checkpoint.serde.types and its serialization handling dropped from JsonPlusSerializer; any code referencing CommandProtocol will break on upgrade.
sdk==0.1.36 NOTES STABLE

LangGraph SDK 0.1.36 adds Command-based graph control, rollback cancellation, and a new messages-tuple stream mode.

└──▷ GET THIS VERSION
$ git clone --branch sdk==0.1.36 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout sdk==0.1.36
└──▷ USE IT
Resume a paused run at a specific node or inject a value mid-graph without supplying new top-level input.
python
async for chunk in client.runs.stream(
    thread_id,
    assistant_id,
    command={"resume": "user_approved"},
    stream_mode="messages-tuple",
):
    print(chunk)
Roll back all side-effects of a run when cancelling, rather than just interrupting it in place.
python
await client.runs.cancel(thread_id, run_id, action="rollback")
  • Adds command parameter to stream(), create(), and wait() run methods, enabling direct node interaction and state manipulation without requiring input.
  • Adds new Command type with send, update, and resume operations for fine-grained graph execution control.
  • Adds Send typed dictionary to support direct node targeting during runs.
  • Enhances cancel() with a new action parameter supporting "interrupt" (default) or "rollback" modes to control cancellation behavior.
  • Adds CancelAction type to the schema to back the new cancellation modes.
+1 moreshow less
  • Adds "messages-tuple" as a new StreamMode literal option.
└──▷ BREAKING ON UPGRADE
  • !"running" has been removed from RunStatus literals, which will break any code that checks for or matches against that status value.
0.2.47 NOTES STABLE

LangGraph 0.2.47 adds resumable interrupts via a new interrupt() function and Command(resume=…) parameter.

└──▷ GET THIS VERSION
$ git clone --branch 0.2.47 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout 0.2.47
└──▷ USE IT
Pause a node mid-graph for human-in-the-loop approval, then resume it with the reviewer's decision.
python
from langgraph.types import interrupt, Command

def review_node(state):
    # Pause execution and surface data to the caller
    decision = interrupt({"payload": state["draft"], "prompt": "Approve this draft?"})
    # Execution resumes here once Command(resume=...) is issued
    return {"approved": decision}

# From outside the graph, resume after the interrupt:
graph.invoke(Command(resume=True), config=config)
  • Adds interrupt() function in langgraph.types enabling nodes to pause and later resume with specific values, with namespace tracking for accurate resumption.
  • Adds a resume parameter to the Command class to control resumption of graph execution after an interrupt.
  • Adds RESUME constant in langgraph.constants to identify values used to resume a node after an interrupt.
  • Adds NULL_TASK_ID constant in langgraph.constants to handle writes not associated with any specific task, enabling global writes independent of task execution.
  • Supports pushing new tasks during graph execution, improving dynamic task scheduling.
0.2.46 NOTES STABLE

LangGraph 0.2.46 adds add_sequence for linear node chains, GraphCommand class, and explicit checkpointing opt-out.

└──▷ GET THIS VERSION
$ git clone --branch 0.2.46 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout 0.2.46
└──▷ USE IT
Chain several processing nodes in order without manually adding edges between each pair.
python
graph = StateGraph(MyState)
graph.add_sequence([
    ("ingest", ingest_node),
    ("analyze", analyze_node),
    ("summarize", summarize_node),
])
app = graph.compile()
Compile a subgraph with checkpointing explicitly disabled so it inherits no checkpointer from the parent.
python
subgraph = StateGraph(SubState)
subgraph.add_node("step", step_node)
subgraph.set_entry_point("step")
compiled_sub = subgraph.compile(checkpointer=False)
Use GraphCommand with goto to conditionally redirect graph execution to a named node.
python
from langgraph.graph.state import GraphCommand

def router_node(state):
    if state["needs_review"]:
        return GraphCommand(goto="human_review", update={"routed": True})
    return GraphCommand(goto="auto_approve")
  • Adds add_sequence() method to StateGraph for declaratively building a linear chain of nodes with edges auto-wired between them.
  • Introduces GraphCommand class (replacing deprecated Control) with a goto parameter for directing graph flow and updating state.
  • Supports passing False to StateGraph.compile(checkpointer=False) to explicitly disable checkpointing in a graph or subgraph.
checkpoint==2.0.3 NOTES STABLE

LangGraph Checkpoint 2.0.3 adds CommandProtocol serialization support in JSON and MessagePack formats.

└──▷ GET THIS VERSION
$ git clone --branch checkpoint==2.0.3 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout checkpoint==2.0.3
  • New CommandProtocol interface in langgraph.checkpoint.serde.types enables serialization of command objects (including update and send operations) that mirror the Command type from LangGraph.
  • Extends JsonPlusSerializer to serialize CommandProtocol objects in both JSON and MessagePack formats by encoding their attributes.
0.2.45 NOTES STABLE

LangGraph 0.2.45 adds a Control class so node functions can steer graph flow and send values to destination nodes directly.

└──▷ GET THIS VERSION
$ git clone --branch 0.2.45 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout 0.2.45
└──▷ USE IT
Route to different nodes from within a single node function based on runtime state, without wiring separate conditional edges.
python
from langgraph.types import Control

def router_node(state: dict) -> Control:
    if state["score"] > 0.9:
        return Control(goto="high_confidence_node", update={"routed": True})
    else:
        return Control(goto="low_confidence_node", update={"routed": True})
  • New Control class lets node functions simultaneously update state and direct graph flow — including triggering specific next nodes or sending values to them.
  • Nodes can now declare their potential destination nodes via type annotations on their return type, enabling static graph validation of routing paths.
  • New SELF constant represents the implicit branch created to handle Control return values.
  • Metadata is now preserved across update_state / aupdate_state calls, so checkpoint metadata survives incremental updates.
cli==0.1.53 NOTES STABLE

LangGraph CLI 0.1.53 adds JavaScript/TypeScript project templates and arbitrary Docker build argument passthrough.

└──▷ GET THIS VERSION
$ git clone --branch cli==0.1.53 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout cli==0.1.53
  • Adds a JavaScript/TypeScript project template for scaffolding LangGraph.js applications, including TypeScript config, ESLint, Jest, and sample StateAnnotation-based graph.
  • Enables passing arbitrary Docker build arguments directly to the Docker build process in the build command.
  • Adds automatic Node.js package manager detection (npm, yarn, pnpm) based on lock files, selecting the correct install and build commands automatically.
└──▷ BREAKING ON UPGRADE
  • !The --platform option has been removed from the build command; use Docker's native passthrough parameters instead.
  • !The deprecated test command has been removed; use the run command instead.
0.2.44 NOTES STABLE

LangGraph 0.2.44 adds chat history validation for ReAct agents and messages-tuple stream mode for remote graphs.

└──▷ GET THIS VERSION
$ git clone --branch 0.2.44 https://github.com/langchain-ai/langgraph.git
# already have the repo? check out this version:
$ git checkout 0.2.44
└──▷ USE IT
Catch incomplete ReAct chat histories early — the agent now raises INVALID_CHAT_HISTORY if any AIMessage tool call lacks a matching ToolMessage, surfacing the bad call before it hits the LLM.
python
from langgraph.errors import ErrorCode

# The validation runs automatically inside create_react_agent;
# catch it explicitly to handle incomplete histories gracefully.
try:
    result = agent.invoke({"messages": chat_history})
except ValueError as e:
    if ErrorCode.INVALID_CHAT_HISTORY in str(e):
        print("Chat history has unmatched tool calls:", e)
Stream a remote LangGraph deployment using the messages-tuple format, now transparently supported by RemoteGraph.
python
from langgraph.pregel.remote import RemoteGraph

remote = RemoteGraph(graph_id="my-graph", url="https://my-deployment.example.com")
for chunk in remote.stream({"messages": []}, stream_mode="messages-tuple"):
    print(chunk)
  • Adds INVALID_CHAT_HISTORY error code and _validate_chat_history function to catch mismatched tool call / tool response pairs in chat history before they reach the LLM.
  • Supports messages-tuple stream mode format for RemoteGraph, automatically mapping it to the messages mode.
  • Improves RemoteGraph visualization by resolving meaningful node names from node data instead of falling back to an empty string.
Was this useful?

Letta (formerly MemGPT)

Sources Release notes → 0.5.4 3 RELEASES · 2024-11-07 → 2024-11-21 NOTES STABLE

Letta 0.5.4 adds tag support to client.create_agent() for labeling agents at creation time.

└──▷ GET THIS VERSION
$ git clone --branch 0.5.4 https://github.com/letta-ai/letta.git
# already have the repo? check out this version:
$ git checkout 0.5.4
└──▷ USE IT
Label a new agent with environment and role tags so it can be filtered or grouped later.
python
agent = client.create_agent(tags=["production", "customer-support"])
  • Adds tags parameter to client.create_agent(tags=[..]) to attach labels to agents at creation time.
2 more releases in this issue · 2024-11-07 → 2024-11-21
0.5.3 NOTES STABLE

Letta 0.5.3 adds a CLI token counter, Together AI support, and password-protected server endpoints.

└──▷ GET THIS VERSION
$ git clone --branch 0.5.3 https://github.com/letta-ai/letta.git
# already have the repo? check out this version:
$ git checkout 0.5.3
└──▷ TRY IT
Lock down a self-hosted Letta server so unauthenticated clients cannot reach its endpoints.
$ letta server --secure
Check current token usage mid-session in the Letta CLI to avoid context-window overflows before sending a large request.
$ /tokens
  • Adds letta server --secure flag to password-protect Letta server endpoints.
  • Adds /tokens command to the Letta CLI to display a token counter for the current context.
  • Adds support for Together AI endpoints via the /completions API.
  • Migrates the Letta Docker image to the letta/letta Dockerhub repository.
└──▷ BREAKING ON UPGRADE
  • !The Letta Docker image has moved from its previous Dockerhub repository to letta/letta — any pipelines or compose files referencing the old image name will need to be updated.
0.5.2 NOTES STABLE

Letta 0.5.2 adds agent tags for user association, tool rules to constrain agent execution order, and agent listing by name.

└──▷ GET THIS VERSION
$ git clone --branch 0.5.2 https://github.com/letta-ai/letta.git
# already have the repo? check out this version:
$ git checkout 0.5.2
└──▷ USE IT
Associate an agent with a specific end user at creation time and retrieve all agents for that user later.
python
# Create an agent tagged with a user ID
agent = client.create_agent(tags=["user_abc123"])

# Retrieve all agents for that user
agents = client.get_agents(tags=["user_abc123"])
  • Adds AgentState.tags field plus tags parameter to client.create_agent() and client.get_agents() for associating agents with end users or other identifiers.
  • Introduces TerminalToolRule(tool_name=...), InitToolRule(tool_name=...), and ToolRule(tool_name=..., children=[...]) tool rule classes, passed via tool_rules in client.create_agent(), to enforce required call order and termination conditions per agent.
  • Adds ability to list agents by name via the REST API and Python SDK.
  • Adds ability to disable the initial message sequence during agent creation.
  • Moves docker run letta/letta to run on port 8283 (previously 8083).
+2 moreshow less
  • Adds HTML rendering of messages into LettaResponse.
  • Adds endpoint to add base tools to an organization.
└──▷ BREAKING ON UPGRADE
  • !Block.name is deprecated in favor of Block.template_name (only required for templated blocks).
  • !docker run letta/letta now binds to port 8283 instead of the previous 8083, requiring updates to any firewall rules, reverse proxies, or client configurations that referenced port 8083.
Was this useful?

LlamaIndex

Sources Release notes → v0.12.0 NOTES

LlamaIndex v0.12.0 adds VLM support for NVIDIA, LlamaCloud file/ID APIs, Vectara custom prompts, and more.

└──▷ GET THIS VERSION
$ git clone --branch v0.12.0 https://github.com/run-llama/llama_index.git
# already have the repo? check out this version:
$ git checkout v0.12.0
  • Adds VLM (vision-language model) support to llama-index-multi-modal-llms-nvidia.
  • Adds ID support for LlamaCloudIndex and new files endpoints in llama-index-indices-managed-llama-cloud.
  • Adds option to skip waiting for ingestion when uploading files in llama-index-indices-managed-llama-cloud.
  • Adds custom prompt parameter support to llama-index-indices-managed-vectara.
  • Adds base URL extraction method to GithubRepositoryReader in llama-index-readers-github.
+3 moreshow less
  • Allows passing additional kwargs to the Weaviate vector store in llama-index-vector-stores-weaviate.
  • Allows passing custom params to the Confluence client in llama-index-readers-confluence.
  • Adds dynamic triplet retrieval limit for KG/PG queries in llama-index-core.
└──▷ BREAKING ON UPGRADE
  • !Python 3.8 is no longer supported; upgrading to v0.12.0 requires Python 3.9 or later.
  • !Every llama-index-* package requires a version bump alongside llama-index-core 0.12.0 — mismatched package versions will break existing installs.
Was this useful?

PydanticAI

Sources Release notes → v0.0.6 2 RELEASES · 2024-11-19 → 2024-11-25 NOTES STABLE

PydanticAI v0.0.6 adds Vertex AI and Groq provider support, plus a slim install option.

└──▷ GET THIS VERSION
$ git clone --branch v0.0.6 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v0.0.6
  • Adds VertexAI model support, including recognition of Vertex AI models in infer_model.
  • Adds Groq client support as a new LLM provider.
  • Introduces pydantic-ai-slim as a minimal install target via uv workspaces, with OpenAI now an optional dependency.
1 more release in this issue · 2024-11-19 → 2024-11-25
v0.0.3 NOTES STABLE

PydanticAI v0.0.3 adds streamed responses, dependency override support, and expanded Gemini model coverage.

└──▷ GET THIS VERSION
$ git clone --branch v0.0.3 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v0.0.3
  • Adds streamed response support, enabling agents to consume model output incrementally as it arrives.
  • Allows overriding dependencies at runtime (e.g. in testing) via the new dependency override mechanism.
  • Changes Agent initialization to accept a deps type rather than a deps instance, decoupling agent definition from runtime dependencies.
  • Expands Gemini model coverage with additional test and integration support.
  • Adds a chat application example with streaming support to the examples library.
└──▷ BREAKING ON UPGRADE
  • !The Agent constructor now takes a deps type instead of a deps instance — existing code passing a deps object directly will need to be updated.
  • !ToolCall has been renamed to Structured in most places — code referencing ToolCall by name will break.
Was this useful?

Microsoft Semantic Kernel

Sources Release notes → dotnet-1.31.0 8 RELEASES · 2024-11-05 → 2024-11-27 NOTES STABLE

Semantic Kernel .NET 1.31.0 promotes Filters out of experimental and adds implicit JsonElement-to-primitive conversion for SLM function calling.

└──▷ GET THIS VERSION
$ git clone --branch dotnet-1.31.0 https://github.com/microsoft/semantic-kernel.git
# already have the repo? check out this version:
$ git checkout dotnet-1.31.0
  • Adds implicit conversion from JsonElement string values to primitives, enabling function calling with small language models (SLMs) that return string-typed JSON arguments.
  • Removes experimental flags from the Filters API, making IFunctionFilter, IPromptFilter, and related filter interfaces stable for production use.
  • Adds Azure OpenAI API version 2024-09-01-preview as a supported preview version.
7 more releases in this issue · 2024-11-05 → 2024-11-27
python-1.16.0 NOTES STABLE

Semantic Kernel Python 1.16.0 adds Azure AI Inference tracing and promotes the OpenAPI plugin to preview.

└──▷ GET THIS VERSION
$ git clone --branch python-1.16.0 https://github.com/microsoft/semantic-kernel.git
# already have the repo? check out this version:
$ git checkout python-1.16.0
  • Adds Azure AI Inference tracing SDK integration for observability into Azure AI Inference calls.
  • Promotes the OpenAPI plugin to preview status, signaling increased stability for production use.
dotnet-1.30.0 NOTES STABLE

Semantic Kernel .NET 1.30.0 adds Map Step for Processes, AdditionalMessages and IAutoFunctionInvocationFilter for OpenAIAssistantAgent, and Copilot Agent Plugin support.

└──▷ GET THIS VERSION
$ git clone --branch dotnet-1.30.0 https://github.com/microsoft/semantic-kernel.git
# already have the repo? check out this version:
$ git checkout dotnet-1.30.0
  • Adds IAutoFunctionInvocationFilter support for OpenAIAssistantAgent, enabling auto-function invocation filtering in agent workflows.
  • Adds AdditionalMessages support for OpenAIAssistantAgent to pass extra messages when invoking an assistant run.
  • Adds incomplete status to the termination check for OpenAIAssistantAgent, so runs that end with an incomplete status are handled correctly.
  • Introduces Map Step feature for .NET Processes, enabling fan-out/fan-in parallel step execution within a process.
  • Adds support for Copilot Agent Plugins in .NET, allowing plugins authored for Microsoft Copilot to be imported and used.
+7 moreshow less
  • Adds a document-transformation mechanism for OpenAPI (part 2), enabling programmatic modification of OpenAPI documents before plugin import.
  • Makes OpenAPI model collection properties modifiable after construction, giving callers runtime control over OpenAPI model state.
  • Promotes the Microsoft.SemanticKernel.Plugins.OpenApi package from experimental to preview status.
  • Removes the experimental flag from FunctionResult.RenderedPrompt, making the rendered-prompt property stable API.
  • Adds logging improvements in OpenAPI plugins for better observability of plugin HTTP interactions.
  • Simplifies Process framework step implementation and function-event resolution for steps with a single function.
  • Adds OnFunctionError event support in the .NET Processes framework for structured error handling within steps.
└──▷ BREAKING ON UPGRADE
  • !Kernel events have been removed from .NET (Kernel events API is no longer available).
python-1.15.0 NOTES STABLE

Semantic Kernel Python 1.15.0 adds audio I/O, Azure Cosmos DB NoSQL vector store, Google Search, and vector search across Weaviate, Redis, CosmosDB, and Qdrant.

└──▷ GET THIS VERSION
$ git clone --branch python-1.15.0 https://github.com/microsoft/semantic-kernel.git
# already have the repo? check out this version:
$ git checkout python-1.15.0
  • Adds Azure Cosmos DB NoSQL Vector Store and Collection implementation, enabling vector storage and retrieval against CosmosDB NoSQL.
  • Adds vector search to CosmosDB NoSQL Collections, Weaviate (including support for unnamed vectors), Redis collections, and Qdrant Collection.
  • Introduces Google Search as a Text Search implementation.
  • Adds audio-to-text capability for speech transcription workflows.
  • Adds text-to-audio capability for speech synthesis workflows.
+1 moreshow less
  • Adds the Dapr Runtime for Processes, enabling Dapr-backed process orchestration.
dotnet-1.29.0 NOTES STABLE

Semantic Kernel .NET 1.29.0 promotes Liquid templates, adds Ollama function calling, and stabilizes VectorStore and agent serialization APIs.

└──▷ GET THIS VERSION
$ git clone --branch dotnet-1.29.0 https://github.com/microsoft/semantic-kernel.git
# already have the repo? check out this version:
$ git checkout dotnet-1.29.0
  • Promotes Liquid prompt template support from experimental to preview status.
  • Adds function calling support to the MS AI Ollama connector.
  • Removes the experimental flag from VectorStore implementations, marking them stable.
  • Removes the experimental attribute from the new function calling model classes, marking them stable.
  • Adds AgentChat serialization support for persisting and restoring agent chat state.
+4 moreshow less
  • Moves OpenAPI extensions to the SemanticKernel namespace.
  • Introduces part 1 of an OpenAPI parameter resolution mechanism.
  • Updates the MS AI Azure Inference connector.
  • Adds an example of OpenAI Realtime API usage.
└──▷ BREAKING ON UPGRADE
  • !Obsolete filter classes have been removed; code referencing them will fail to compile after upgrading.
dotnet-1.28.0 NOTES STABLE

Semantic Kernel 1.28.0 adds OpenAI image detail level support, OpenAPI security scheme access, multi-server parsing, and Dapr complex-type serialization.

└──▷ GET THIS VERSION
$ git clone --branch dotnet-1.28.0 https://github.com/microsoft/semantic-kernel.git
# already have the repo? check out this version:
$ git checkout dotnet-1.28.0
  • Adds support for the OpenAI image detail level property in image content.
  • Exposes the security scheme and requirement for OpenAPI functions, giving callers access to auth metadata on imported API operations.
  • Supports parsing multiple servers from an OpenAPI document.
  • Adds complex type serialization support for Dapr events and messages in the Process Framework.
  • Simplifies event emission in Process Framework steps.
└──▷ BREAKING ON UPGRADE
  • !OpenAPI model classes are renamed (see commit #9595) — existing code referencing the old class names will break on upgrade.
  • !OpenAPI model classes are now marked experimental — code that was previously using them without suppressing experimental warnings may now produce build errors or warnings under strict configurations.
python-1.14.0 NOTES STABLE

Semantic Kernel Python 1.14.0 adds vector and text search plus in-memory vector search support.

└──▷ GET THIS VERSION
$ git clone --branch python-1.14.0 https://github.com/microsoft/semantic-kernel.git
# already have the repo? check out this version:
$ git checkout python-1.14.0
  • Adds vector and text search capability to the Semantic Kernel Python library, with Azure AI Search hotel concept samples demonstrating implementation.
  • Adds vector search support to the In Memory collection, enabling local in-process similarity search without an external vector store.
dotnet-1.27.0 NOTES STABLE

Semantic Kernel 1.27.0 adds audio timestamp granularities, process-level error handling, and richer KernelFunction metadata.

└──▷ GET THIS VERSION
$ git clone --branch dotnet-1.27.0 https://github.com/microsoft/semantic-kernel.git
# already have the repo? check out this version:
$ git checkout dotnet-1.27.0
└──▷ USE IT
Retrieve word- and segment-level timestamps from an audio transcription when using Gemini, useful for building subtitle generators or spoken-word search indexes.
csharp
var settings = new GeminiPromptExecutionSettings
{
    AudioTimestamp = true
};
var result = await kernel.InvokeAsync(audioToTextFunction, new KernelArguments(settings));
  • Adds AudioTimestamp property to GeminiPromptExecutionSettings to control audio timestamp output for Gemini models.
  • Adds Audio-to-Text Timestamp Granularities support for OpenAI and AzureOpenAI audio transcription.
  • Exposes the REST API operation and operation path in KernelFunction.Metadata, giving plugins richer introspection over the underlying HTTP surface.
  • Adds process-level error handler support in SK Processes (Processes State Management Part 2), enabling structured error recovery in multi-step process graphs.
  • Improves logging for the function calls processor and KernelFunction, making agent execution traces more observable.
Was this useful?

browser-use

Sources Release notes → 0.1.12 3 RELEASES · 2024-11-15 → 2024-11-28 NOTES STABLE

browser-use 0.1.12 adds save-and-replay of browser sessions so recorded tasks run without an LLM.

└──▷ GET THIS VERSION
$ git clone --branch 0.1.12 https://github.com/browser-use/browser-use.git
# already have the repo? check out this version:
$ git checkout 0.1.12
  • Adds save and reload of browser history, enabling a task recorded once with an LLM to be replayed repeatedly without LLM involvement.
  • Improves agent rerun capabilities to reliably re-execute workflows even when the DOM tree changes, using screen-based element matching.
2 more releases in this issue · 2024-11-15 → 2024-11-28
0.1.7 NOTES STABLE

browser-use 0.1.7 migrates to Playwright and goes fully async from agent to DOM

└──▷ GET THIS VERSION
$ git clone --branch 0.1.7 https://github.com/browser-use/browser-use.git
# already have the repo? check out this version:
$ git checkout 0.1.7
  • Switches the entire stack from agent to DOM to async, enabling non-blocking browser automation throughout the library.
  • Replaces the previous browser backend with Playwright, improving speed and reliability for browser-driven workflows.
  • Supports both async and sync registered functions, letting callers mix execution models when extending the agent.
0.1.1 NOTES STABLE

browser-use 0.1.1 adds custom agent function calls, action history, and token cost approximations

└──▷ GET THIS VERSION
$ git clone --branch 0.1.1 https://github.com/browser-use/browser-use.git
# already have the repo? check out this version:
$ git checkout 0.1.1
  • Supports custom function calls registered alongside the agent's built-in browser functions, enabling practitioners to extend agent behavior with their own actions.
  • Adds a history of all agent actions, giving practitioners a full audit trail of what the agent did during a session.
  • Adds token cost approximations so practitioners can estimate LLM spend per agent run.
  • Improves HTML processing and XPath extraction for more reliable element targeting.
  • Highlights clickable elements with rounded overlays on screenshots for clearer visual feedback.
+1 moreshow less
  • Introduces a testing library to support automated validation of agent workflows.
Was this useful?

camel-ai

Sources Release notes → v0.2.10 2 RELEASES · 2024-11-10 → 2024-11-28 NOTES STABLE

CAMEL v0.2.10 adds Persona Hub, Runtime tool execution, video reading, DeepSeek/Cohere/Gemini model support, and OpenAI structured output.

└──▷ GET THIS VERSION
$ git clone --branch v0.2.10 https://github.com/camel-ai/camel.git
# already have the repo? check out this version:
$ git checkout v0.2.10
  • Adds support for OpenAI structured output via camel, enabling agents to receive typed, schema-conforming responses.
  • Adds Runtime abstraction for tool calling, providing a dedicated execution layer for agent tool invocations.
  • Adds HumanToolkit for human-in-the-loop interaction with agents.
  • Supports setting default model and platform from environment variables, removing the need to hardcode model configuration.
  • Integrates Persona Hub techniques for enhanced agent diversity when generating synthetic agent personas.
+10 moreshow less
  • Adds ShareGPT conversation format conversion for exporting agent dialogues.
  • Supports Text to BaseModel parsing, converting raw text output into structured Pydantic BaseModel instances.
  • Adds OpenAI-compatible embedding support.
  • Integrates video reading capability for agents to process video content.
  • Integrates Cohere models as a supported model platform.
  • Adds support for DeepSeek models.
  • Adds support for Gemini-Exp-1114 model and updates Gemini implementation with OpenAI compatibility.
  • Adds qwq model and additional Qwen models to supported model list.
  • Wolfram Alpha toolkit now records SBSHintStep info in step-by-step results.
  • Synthesizes execution of tool calling to provide unified tool-call handling across agent workflows.
1 more release in this issue · 2024-11-10 → 2024-11-28
v0.2.7 NOTES STABLE

camel-ai v0.2.7 adds Notion, Apify, Tavily, GitHub, and Data Commons toolkits plus 01 and Qwen model platform support.

└──▷ GET THIS VERSION
$ git clone --branch v0.2.7 https://github.com/camel-ai/camel.git
# already have the repo? check out this version:
$ git checkout v0.2.7
└──▷ USE IT
Pass custom metadata or payload fields through the vector retrieval pipeline using the new extra_payload parameter.
python
retriever.process(content="https://example.com/doc", extra_payload={"source": "internal", "priority": 1})
  • Adds extra_payload parameter to VectorRetriever.process() for passing additional data through the retrieval pipeline.
  • Adds author assignment support to the Google Scholar toolkit.
  • New Notion toolkit integration for reading and writing Notion content from agents.
  • New Apify toolkit integration for running Apify actors from agent workflows.
  • New Tavily search toolkit integration for web search inside agents.
+7 moreshow less
  • New GitHub toolkit with GitHub functions for interacting with repositories from agents.
  • New Data Commons toolkit for querying the Google Data Commons knowledge graph.
  • Adds support for the 01 model platform.
  • Adds support for the Qwen model platform.
  • Adds OpenAI tool schema generation capability.
  • Qdrant vector store enhancements.
  • WolframAlpha toolkit now returns more detailed output.
Was this useful?

holmesgpt

Sources Release notes → 0.6.0 NOTES

SRE Agent - CNCF Sandbox Project

HolmesGPT 0.6.0 adds runbook URL support, custom LLM backends, kubectl top, and a new conversation API

└──▷ GET THIS VERSION
$ git clone --branch 0.6.0 https://github.com/HolmesGPT/holmesgpt.git
# already have the repo? check out this version:
$ git checkout 0.6.0
  • Adds support for passing runbook URLs to the issue investigator, letting Holmes pull context from your own runbooks during investigations.
  • Supports custom LLM implementations, enabling teams to plug in their own LLM backends beyond the built-in providers.
  • Supports removing the Bedrock prefix from model name tokens for AWS Bedrock LLM configurations.
  • Adds a kubectl top action to the toolset, giving the AI agent access to live resource-usage metrics during investigations.
  • Adds a new conversation functionality, enabling multi-turn interactions with the investigator.
+1 moreshow less
  • Adds an RDS single-instance lookup command to the AWS toolset for more targeted cloud investigations.
Was this useful?
◆  Local LLM Runtimes

Jan AI Jan

Sources Release notes → v0.5.9 2 RELEASES · 2024-11-13 → 2024-11-22 NOTES STABLE

Jan v0.5.9 adds HTTP proxy and HuggingFace token configuration, cortex.cpp engine variants, and a new code-block UI with mid-stream copy.

└──▷ GET THIS VERSION
$ git clone --branch v0.5.9 https://github.com/janhq/jan.git
# already have the repo? check out this version:
$ git checkout v0.5.9
  • Adds HTTP proxy configuration via cortex.cpp, enabling Jan to route model traffic through a proxy.
  • Adds HuggingFace API token configuration via cortex.cpp for authenticated model access.
  • Supports cortex.cpp engine variants, allowing selection among different backend engine builds.
  • New code-block UI with the ability to copy code blocks or plain text mid-stream during model responses.
  • Enhances the local server page UX.
1 more release in this issue · 2024-11-13 → 2024-11-22
v0.5.8 NOTES STABLE

Jan v0.5.8 integrates Cortex.cpp as a backend provider and adds a new nightly app channel.

└──▷ GET THIS VERSION
$ git clone --branch v0.5.8 https://github.com/janhq/jan.git
# already have the repo? check out this version:
$ git checkout v0.5.8
  • Integrates Cortex.cpp as a backend provider, with Jan APIs proxied to Cortex.cpp.
  • Adds a new nightly app release channel for early access builds.
  • Displays model ID on the local API server page.
  • Expands clickable areas in the ribbon panel for easier navigation.
  • Adds Qwen2.5-Coder 14B and 32B models to the model hub.
Was this useful?

KoboldCpp

Sources Release notes → v1.79.1 3 RELEASES · 2024-11-01 → 2024-11-30 NOTES STABLE

KoboldCpp v1.79.1 adds multiplayer sessions, Ollama/ComfyUI API emulation, speculative decoding, and new tokenizer endpoints.

└──▷ GET THIS VERSION
$ git clone --branch v1.79.1 https://github.com/LostRuins/koboldcpp.git
# already have the repo? check out this version:
$ git checkout v1.79.1
└──▷ TRY IT
Host a shared AI storytelling session so multiple users on your network can join and co-author in real time.
$ koboldcpp.exe --model mymodel.gguf --multiplayer
Convert a list of token IDs back to a string — useful for debugging tokenization in prompts or outputs.
$ curl -X POST http://localhost:5001/api/extra/detokenize -H 'Content-Type: application/json' -d '{"ids": [1, 4103, 338, 263, 1243]}'
  • Adds --multiplayer flag (also available in the GUI launcher Network tab) to enable real-time multiplayer sessions, exposing /api/extra/multiplayer/status, /api/extra/multiplayer/getstory, and /api/extra/multiplayer/setstory endpoints for live story sync across multiple users and devices.
  • Adds Ollama-compatible endpoints /api/chat and /api/generate for basic Ollama API emulation, letting third-party tools that only speak Ollama point to KoboldCpp at http://localhost:5001 (or port 11434 for stricter tools); streaming is not supported.
  • Adds ComfyUI emulation via a new /prompt endpoint, supporting txt2img for tools that require ComfyUI API but lack A1111 API support.
  • Adds /api/extra/detokenize endpoint, which converts an array of token IDs into a detokenized string.
  • Adds /props endpoint exposing instruction and chat template data from the loaded model.
+5 moreshow less
  • Adds speculative decoding (drafting) support via a second lightweight draft model with the same vocabulary, offering inference speedups at low temperatures; not well supported on Vulkan.
  • Adds a 'Dice Action' toggle in Kobold Lite Adventure mode, allowing the AI to roll a dice to determine action outcomes.
  • Adds ability to disable sentence trimming in all Kobold Lite modes.
  • Adds GGUF format text encoder support (clip/t5) for Flux and SD3.5 image models.
  • Adds chunked encoding support.
2 more releases in this issue · 2024-11-01 → 2024-11-30
v1.78 NOTES STABLE

KoboldCpp v1.78 adds Flux and SD 3.5 image generation, new --nofastforward flag, and a /.well-known/serviceinfo identity provider endpoint.

└──▷ GET THIS VERSION
$ git clone --branch v1.78 https://github.com/LostRuins/koboldcpp.git
# already have the repo? check out this version:
$ git checkout v1.78
└──▷ TRY IT
Load SD 3.5 with individual component files for T5XXL, CLIP-L, and CLIP-G instead of a bundled model.
$ koboldcpp.exe --model sd35-medium.safetensors --sdt5xxl t5xxl.safetensors --sdclipl clip_l.safetensors --sdclipg clip_g.safetensors
Force full prompt reprocessing on every request for reproducible outputs during automated or evaluation workloads.
$ koboldcpp.exe --model mymodel.gguf --nofastforward
  • Adds --sdt5xxl, --sdclipl, and --sdclipg CLI flags to load individual T5XXL, CLIP-L, and CLIP-G components for Flux and SD 3.5 image generation (supports URL resources).
  • Adds --nofastforward flag to force full prompt reprocessing on every request, enabling more repeatable and consistent inference results.
  • Adds /.well-known/serviceinfo common identity provider endpoint, aligning with AI-Horde, Aphrodite, and TabbyAPI interoperability standards.
  • Supports Flux and Stable Diffusion 3.5 model architectures for image generation, accepting fp16 or fp8 safetensor models and GGUF models, including all-in-one bundled models.
  • Adds VAE tiling for more consistent large image handling, enabling stable 1024x1024 generation with SDXL and Flux models.
+4 moreshow less
  • Adds support for custom CSS styles in Kobold Lite UI.
  • Adds 'BigSquare' option in Kobold Lite image gen settings to generate larger images.
  • Adds Clip Skip support for local image generation in Kobold Lite.
  • Debug mode now prints XTC penalties for inspection during inference.
└──▷ BREAKING ON UPGRADE
  • !CLBlast GPU offload now requires a duplicate copy of model layers in RAM (piggybacks off the CPU backend), increasing memory usage for existing CLBlast setups.
v1.77 NOTES STABLE

KoboldCpp v1.77 adds token probability (logprobs) API endpoints, ComfyUI image-gen backend support, and in-chat image generation from instruct mode.

└──▷ GET THIS VERSION
$ git clone --branch v1.77 https://github.com/LostRuins/koboldcpp.git
# already have the repo? check out this version:
$ git checkout v1.77
└──▷ TRY IT
Retrieve per-token log-probabilities after a completion to analyze model confidence on each token.
$ curl http://localhost:5001/api/extra/last_logprobs
  • Adds logprobs support over the sync API and a new dedicated /api/extra/last_logprobs endpoint for retrieving token probabilities after both streaming and non-streaming responses.
  • Response fields prompt_tokens, completion_tokens, and total_tokens now return accurate counts instead of placeholder values.
  • Adds experimental ComfyUI image generation backend support in KoboldAI Lite — requires ComfyUI launched with --listen --enable-cors-header '*'; no workflow customization needed.
  • Enables image generation from instruct mode via natural language (e.g. 'Please generate an image of a bag of sand'); on by default when an image model is loaded, regex-driven, and toggleable in settings.
  • Adds a Token Probability Viewer in KoboldAI Lite (disabled by default, enable in advanced settings) showing a table of alternative token probabilities per response.
+4 moreshow less
  • Adds a new 'Interactive Storywriter' scenario in KoboldAI Lite — story-writing mode with support for hidden instruction prompts to steer the narrative.
  • Adds support for Tavern 'V3' (Risu-augmented V2) character cards in KoboldAI Lite; metadata chunks are ignored but base V2 card functionality is fully operational.
  • Enables CUDA graphs for the koboldcpp_cu12.exe (CUDA 12) build, improving performance on supported Nvidia GPUs.
  • Clarifies the A1111/Forge/KoboldCpp image generation backend selector in KoboldAI Lite to reflect compatibility with all three backends.
Was this useful?

LocalAI

Sources Release notes → v2.23.0 NOTES

LocalAI v2.23.0 adds vLLM load_format exposure, TTS response_format, multi-LoRA diffusers, Flux single-file support, and a disableable /metrics endpoint.

└──▷ GET THIS VERSION
$ git clone --branch v2.23.0 https://github.com/mudler/LocalAI.git
# already have the repo? check out this version:
$ git checkout v2.23.0
  • Exposes load_format backend config key for the vLLM backend, allowing operators to control how model weights are loaded.
  • Implements response_format parameter on the TTS endpoint, letting callers specify the desired audio output format.
  • Allows disabling the /metrics endpoint for local stats collection via configuration.
  • Supports multiple LoRA adapters simultaneously in the diffusers backend.
  • Adds Flux single-file support to the diffusers backend.
+1 moreshow less
  • Moves model detailed info to a modal in the UI, reducing clutter on the model list view.
└──▷ BREAKING ON UPGRADE
  • !Multimodal message templates now use a single unified template; existing per-role multimodal templates will need to be migrated to the new single-template format.
Was this useful?

SGLang

Sources Release notes → v0.3.6 NOTES

SGLang v0.3.6 adds cache-aware load balancing, xgrammar backend, Prometheus metrics, graceful termination, and a Rust-based router.

└──▷ GET THIS VERSION
$ git clone --branch v0.3.6 https://github.com/sgl-project/sglang.git
# already have the repo? check out this version:
$ git checkout v0.3.6
└──▷ TRY IT
Scrape Prometheus metrics from a running SGLang server for real-time throughput and latency monitoring.
$ curl http://localhost:30000/metrics
  • Adds a cache-aware load balancer delivering 4x higher cache hit rate across multi-server deployments.
  • Adds xgrammar backend for grammar-guided (constrained) decoding, joinable with the existing outlines backend.
  • Adds Prometheus metrics support for observability and monitoring.
  • Adds graceful termination: server drains in-flight requests before exit on SIGTERM.
  • Adds a watchdog thread to detect and surface server hangs.
+11 moreshow less
  • Adds a Rust-based router with radix-tree cache-aware load balancing.
  • Supports data parallelism for attention and MLA, yielding 1.5x higher decoding throughput.
  • Enables the overlap scheduler by default, delivering 1.1x higher throughput with reduced CPU overhead.
  • Adds torch-native tensor parallelism support.
  • Supports PyTorch 2.5.1.
  • Adds support for new models: Phi3-small, Gemma-2 reward model, and GPT-2.
  • Adds notebook-style (.ipynb) documentation at https://sgl-project.github.io/.
  • Adds an offline benchmark script.
  • Adds get memory pool size API endpoint.
  • Allows token IDs to be passed directly in engine.generate.
  • Makes decode log interval configurable.
Was this useful?

vLLM

Sources Release notes → v0.6.4 NOTES

vLLM v0.6.4 adds Intel Gaudi backend, V1 engine progress, torch.compile support, new LLMs/VLMs, and chat-based embeddings API.

└──▷ GET THIS VERSION
$ git clone --branch v0.6.4 https://github.com/vllm-project/vllm.git
# already have the repo? check out this version:
$ git checkout v0.6.4
└──▷ TRY IT
Run a model that supports both generation and embedding in embedding mode explicitly, avoiding ambiguity when a model supports multiple tasks.
$ vllm serve <model> --task embed
  • Adds user-configurable --task parameter for models that support both generation and embedding tasks.
  • Adds Intel Gaudi (HPU) inference backend for running vLLM on Gaudi hardware.
  • Adds Exllama as a backend for compressed-tensors quantization.
  • Adds Triton implementation scaled_mm_triton supporting fp8 and int8 SmoothQuant symmetric quantization.
  • Adds goodput metric support to the engine.
+21 moreshow less
  • Adds stateless process group for easier integration with RLHF and disaggregated prefill workflows.
  • Adds tool calling parser support for Granite 3.0, Jamba, and granite-20b-functioncalling models.
  • Adds new LLMs and VLMs: Idefics3, H2OVL-Mississippi, Qwen2-Audio, Pixtral (HF Transformers format), FalconMamba, and Florence-2 language backbone.
  • Adds new encoder-only embedding models: BERT (BERTModel), RoBERTa, and XLM-RoBERTa.
  • Expands embedding task support to Llama, Qwen2, Qwen2-VL, VLM2Vec (Phi-3-Vision), and E5-V (LLaVA-NeXT).
  • Adds Math-Shepherd (Mistral reward modeling) and Qwen2 classification task support.
  • Adds Chat-based Embeddings API.
  • Adds LoRA support for Granite 3.0 MoE, Idefics3, Llama embeddings, Qwen, and Qwen2-VL.
  • Adds BNB quantization support for Idefics3, Mllama, Qwen2, and MiniCPMV.
  • Adds embedding model support for the CPU backend.
  • Enables combining chunked prefill with speculative decoding.
  • Adds ability to override HF config.json values via CLI.
  • Adds unified multi-modal processor for VLMs.
  • Adds CUDA Time Layerwise Profiler.
  • Adds env variable to force FlashInfer backend to enable tensor cores.
  • Adds LoRA request metrics tracking.
  • Expands torch.compile support with TorchInductor across many models.
  • Significant progress on V1 engine core refactor.
  • Benchmark throughput tool now supports image input.
  • Adds fused_moe performance improvements.
  • Supports sliding window in the Flash Attention backend.
└──▷ BREAKING ON UPGRADE
  • !Python 3.8 is no longer supported.
  • !Block manager v1 is deprecated and block manager v2 is now the default.
Was this useful?
◆  AI Model & Data Infrastructure

Microsoft ONNX Runtime

Sources Release notes → v1.20.1 2 RELEASES · 2024-11-01 → 2024-11-21 NOTES STABLE

ONNX Runtime v1.20.1 adds get_qdq_config() helper, QNN SDK v2.28.2 support, and reworked native library packaging.

└──▷ GET THIS VERSION
$ git clone --branch v1.20.1 https://github.com/microsoft/onnxruntime.git
# already have the repo? check out this version:
$ git checkout v1.20.1
└──▷ USE IT
Retrieve a ready-made QDQ configuration with a reduced quantization range to improve compatibility on narrow-range hardware.
python
from onnxruntime.quantization import get_qdq_config

qdq_config = get_qdq_config(model_input='model.onnx', reduce_range=True)
print(qdq_config)
  • Introduces get_qdq_config() helper function in the Python Quantization Tool to retrieve QDQ configurations programmatically.
  • Adds reduce_range option to get_qdq_config() for finer control over quantization range in QDQ workflows.
  • Adds support for QNN SDK v2.28.2 in the QNN Execution Provider.
  • Reworks native library loading so a pre-built ORT native package can be consumed without modification.
  • Updates QDQ operator handling for Pad, Slice, and Softmax nodes in the Python Quantization Tool.
+1 moreshow less
  • Excludes DDS ops from running on the TensorRT Execution Provider.
1 more release in this issue · 2024-11-01 → 2024-11-21
v1.20.0 NOTES STABLE

ONNX Runtime v1.20 adds MultiLoRA, INT4 embedding, cuDNN Flash Attention, QNN weight sharing, and WebGPU on mobile.

└──▷ GET THIS VERSION
$ git clone --branch v1.20.0 https://github.com/microsoft/onnxruntime.git
# already have the repo? check out this version:
$ git checkout v1.20.0
  • Adds ability to serialize pre-packed weights to avoid memory growth on model load.
  • Adds bfloat16 and float8 data type support in the Python I/O binding API.
  • Adds INT4 quantized embedding support on CPU and CUDA execution providers.
  • Adds FP16 support for MatMulNbits, Clip, and LayerNormalization ops on the CPU EP.
  • Adds cuDNN frontend integration for convolution operators on the CUDA EP.
+24 moreshow less
  • Adds cuDNN Flash Attention and Lean Attention support in the MultiHeadAttention op on the CUDA EP.
  • Adds TensorRT 10.4 and 10.5 support in the TensorRT EP.
  • Adds QNN HTP weight sharing across multiple ORT inference sessions in the QNN EP.
  • Adds support for QNN SDK 2.27.
  • Adds support up to OpenVINO 2024.4.1 in the OpenVINO EP.
  • Adds remote tensors for direct memory access during NPU inferencing in the OpenVINO EP.
  • Adds DirectML 1.15.2 support.
  • Adds FP16 support for ML Program models with the CoreML EP on mobile.
  • Adds FP16 XNNPACK kernels as a CoreML fallback option on mobile.
  • Adds initial support for the native WebGPU EP on Android and iOS.
  • Adds on-demand weight loading for Web/Wasm32, enabling 8B-parameter LLMs by offloading the Wasm32 heap.
  • Adds Opset-21 support (Reshape, Shape, Gelu) for the Web target.
  • Adds quantized embedding support for Web.
  • Adds MultiLoRA support in Core and GenAI.
  • Adds support for mid-loop generation termination in GenAI.
  • Adds logit soft capping support in Group Query Attention (GQA) for GenAI.
  • Adds model support for Phi-3.5 Vision Multi-Frame, ChatGLM3, and Nemotron-Mini in GenAI.
  • Adds GenAI Python package for Mac and Mac/iOS NuGet packages.
  • Adds Unigram tokenization model support in Extensions.
  • Adds support for the latest Hugging Face tokenization JSON format (transformers>=4.45) in Extensions.
  • Adds Olive CLI for executing well-defined workflows without manual config creation or editing.
  • Adds YAML-based workflow config support in Olive.
  • Adds Python 3.13 support in PyPI packages.
  • Adds experimental vcpkg support for the CPU EP.
└──▷ BREAKING ON UPGRADE
  • !All ONNX Runtime Training packages are deprecated and will no longer be published: onnxruntime-training (PyPI), onnxruntime-training-cpu (PyPI), Microsoft.ML.OnnxRuntime.Training (NuGet), onnxruntime-training-c (CocoaPods), onnxruntime-training-objc (CocoaPods), and onnxruntime-training-android (Maven Central). ORT 1.19.2 was the last release to include them.
  • !Python 3.8 and Python 3.9 are no longer supported in ORT packages. Users on those versions must stay on ORT 1.19.2 or earlier.
  • !CUDA packages now require additional shared libraries that were not needed in 1.19: libcudnn_adv.so.9, libcudnn_cnn.so.9, libcudnn_engines_precompiled.so.9, libcudnn_engines_runtime_compiled.so.9, libcudnn_graph.so.9, libcudnn_heuristic.so.9, libcudnn_ops.so.9, libnvrtc.so.12, and libz.so.1.
Was this useful?

Ollama

Sources Release notes → v0.4.6 5 RELEASES · 2024-11-15 → 2024-11-28 NOTES STABLE

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

Ollama v0.4.6 adds QwQ reasoning model, streaming tool calls, and SVG input validation.

└──▷ GET THIS VERSION
$ git clone --branch v0.4.6 https://github.com/ollama/ollama.git
# already have the repo? check out this version:
$ git checkout v0.4.6
└──▷ TRY IT
Run the new QwQ reasoning model interactively to leverage its advanced chain-of-thought capabilities.
$ ollama run qwq
  • Adds QwQ, an experimental AI reasoning model from the Qwen team, available via ollama pull qwq.
  • Tool calls are now included in streaming responses, enabling real-time agentic workflows without waiting for full completion.
  • Ollama now returns an explicit error when an SVG image is submitted, surfacing unsupported input early.
4 more releases in this issue · 2024-11-15 → 2024-11-28
v0.4.5 NOTES STABLE

Ollama v0.4.5 lets ollama push print the uploaded model URL and accepts X-Stainless-Retry-Count from OpenAI clients.

└──▷ GET THIS VERSION
$ git clone --branch v0.4.5 https://github.com/ollama/ollama.git
# already have the repo? check out this version:
$ git checkout v0.4.5
  • Accepts X-Stainless-Retry-Count header used by many OpenAI API clients, improving compatibility.
  • ollama push now prints the uploaded model URL on ollama.com after a successful push.
v0.4.4 NOTES STABLE

Ollama v0.4.4 adds Marco-o1 reasoning model and clean file-redirect output.

└──▷ GET THIS VERSION
$ git clone --branch v0.4.4 https://github.com/ollama/ollama.git
# already have the repo? check out this version:
$ git checkout v0.4.4
└──▷ TRY IT
Run the new Marco-o1 reasoning model for complex problem-solving tasks.
$ ollama run marco-o1
Capture clean model output to a file without progress bar noise polluting the log.
$ ollama run marco-o1 'Explain the steps to perform a SQL injection attack and how to defend against it' > output.txt
  • Adds Marco-o1, Alibaba AIDC-AI's open large reasoning model, to the Ollama library.
  • Redirecting CLI output to a file now suppresses progress bars and spinners, enabling clean log capture.
v0.4.3 NOTES STABLE

Ollama v0.4.3 adds Tülu 3 and an updated Mistral Large with improved long context and function calling.

└──▷ GET THIS VERSION
$ git clone --branch v0.4.3 https://github.com/ollama/ollama.git
# already have the repo? check out this version:
$ git checkout v0.4.3
  • Adds Tülu 3, a fully open-source instruction-following model family from the Allen Institute for AI, available via ollama pull tulu3.
  • Adds updated Mistral Large with improved long context, function calling, and system prompt support, available via ollama pull mistral-large.
v0.4.2 NOTES STABLE

Ollama v0.4.2 adds NVIDIA Jetson support, three new models, and improved Modelfile error reporting.

└──▷ GET THIS VERSION
$ git clone --branch v0.4.2 https://github.com/ollama/ollama.git
# already have the repo? check out this version:
$ git checkout v0.4.2
└──▷ TRY IT
Install Ollama on an NVIDIA Jetson device using the standard one-liner.
$ curl -fsSL https://ollama.com/install.sh | sh
  • Supports NVIDIA Jetson devices via the standard install script.
  • Adds Qwen 2.5 Coder in six sizes (0.5B–32B) for code generation tasks.
  • Adds OpenCoder (1.5B and 8B) with English and Chinese chat support.
  • Adds Athene V2 (72B) optimised for code completion, mathematics, and log extraction.
  • ollama create now reports line numbers for Modelfile errors, speeding up authoring.
Was this useful?

NVIDIA Triton Inference Server

Sources Release notes → v2.52.0 NOTES

Triton v2.52.0 adds a 'Request to First Response Time' histogram metric for decoupled models and per-model histogram bucket overrides.

└──▷ GET THIS VERSION
$ git clone --branch v2.52.0 https://github.com/triton-inference-server/server.git
# already have the repo? check out this version:
$ git checkout v2.52.0
└──▷ TRY IT
Enable per-request latency histograms for decoupled models to observe time-to-first-response distribution in Triton metrics.
$ tritonserver --model-repository=/models --metrics-config histogram_latencies=true
  • Adds --metrics-config histogram_latencies=true flag to enable a new 'Request to First Response Time' histogram metric for decoupled models.
  • Adds new model_metrics model configuration field to override default buckets for histogram metric families on a per-model basis.
  • Adds a comprehensive tutorial on Semantic Caching optimization for LLM workloads to the Conceptual Guides.
Was this useful?
Other / Uncategorized
◆  AI OBSERVABILITY

Arize Phoenix

Sources Release notes → arize-phoenix-v5.12.0 6 RELEASES · 2024-11-06 → 2024-11-25 NOTES STABLE

Phoenix Playground gains a 'Move Output' button and a None template formatter option for messages.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v5.12.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v5.12.0
  • Adds None as a selectable template formatter option for messages in the Playground, allowing messages to be sent without any template formatting applied.
  • Adds a 'Move Output' button on the Playground Output panel to relocate output to other parts of the interface.
5 more releases in this issue · 2024-11-06 → 2024-11-25
arize-phoenix-v5.11.0 NOTES STABLE

Phoenix v5.11.0 adds an environment variable for setting the default admin password and blocks playground navigation during active runs.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v5.11.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v5.11.0
  • Adds an environment variable to configure the default admin initial password at startup.
  • Playground now blocks navigation when runs are in progress, preventing accidental loss of in-flight completions.
arize-phoenix-v5.10.0 NOTES STABLE

Phoenix v5.10.0 adds Anthropic tool message support and playground chat completion error display.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v5.10.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v5.10.0
  • Supports 'tool' message role for Anthropic in the playground, enabling tool-use conversation flows with Claude models.
  • Displays chat completion errors inline within the playground output card for faster diagnosis of failed LLM calls.
arize-phoenix-v5.9.0 NOTES STABLE

Phoenix 5.9.0 adds Google AI Studio/Gemini support and major Playground dataset-run capabilities.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v5.9.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v5.9.0
  • Adds a GraphQL mutation for chat completion over a dataset, enabling batch prompt runs against dataset examples from the Playground.
  • Adds Google AI Studio support for Gemini models (API-key-based) as a new LLM provider in the Playground.
  • Adds a dataset example slideover in the Playground to inspect individual dataset examples and their template application.
  • Adds streaming output display for Playground runs executed against datasets.
  • Adds an example run slideover in the Playground for reviewing per-example run results.
+3 moreshow less
  • Adds pre-emptive display of dataset example template application errors in the Playground dataset table before runs are submitted.
  • Adds support for unknown tool and tool call formats in the Playground.
  • Adds a rendered input field for JSON invocation parameters in the Playground.
arize-phoenix-v5.8.0 NOTES STABLE

Phoenix Playground gains dataset integration, Anthropic tool calls, response format control, and env-var-driven gRPC interceptor extensions.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v5.8.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v5.8.0
  • Adds env var configuration for gRPC interceptor extensions, enabling customization of the gRPC layer without code changes.
  • Adds a non-streaming mode toggle to the Playground UI, letting users switch between streaming and non-streaming LLM calls.
  • Adds a dataset selector and dataset examples table to the Playground, allowing prompt runs against existing datasets directly in the UI.
  • Supports Anthropic tool calls in the Playground, expanding provider coverage for structured tool-use workflows.
  • Supports Response Format configuration in the Playground, enabling structured output control (e.g. JSON mode) from the UI.
+3 moreshow less
  • Adds rate limiters to Playground LLM clients to prevent API quota exhaustion during batch prompt runs.
  • The default landing route now goes to the Projects page instead of a previous default, surfacing project-level observability immediately on load.
  • Adds empty-state messaging and helper tooltips in the Playground when required provider client libraries are not installed.
arize-phoenix-v5.7.0 NOTES STABLE

Phoenix 5.7.0 adds a chat completion mutation, cross-provider tool-call schema conversion, and streaming dataset runs in the Playground.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v5.7.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v5.7.0
  • Adds response_format invocation parameter to the Playground, enabling structured-output control per LLM call.
  • Adds a chatCompletion GraphQL mutation for programmatic chat completion requests.
  • Supports converting tool call schemas between providers, enabling cross-provider prompt portability.
  • Playground now streams chat completions over a full dataset, letting users batch-test prompts at scale.
  • Playground persists model config (model name, parameters) per provider in user preferences.
+4 moreshow less
  • Parses invocation parameters from a Span and populates them into the Playground page store when replaying a trace.
  • Adds environment configuration support for FastAPI and GraphQL extensions.
  • Detects WebSocket availability at runtime and passes the result to the client for adaptive transport.
  • Playground UI surfaces only LLM providers whose SDK dependencies are installed.
Was this useful?

Langfuse

Sources Release notes → v2.93.0 7 RELEASES · 2024-11-03 → 2024-11-26 NOTES STABLE

Langfuse v2.93.0 adds UI-triggered experiments, Azure blob storage, and expanded ClickHouse-backed API endpoints.

└──▷ GET THIS VERSION
$ git clone --branch v2.93.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v2.93.0
  • Adds Azure storage provider support for blob/media storage via the LANGFUSE_S3_* / storage provider configuration.
  • Serves observations and scores list endpoints directly from ClickHouse, enabling those APIs to scale to larger deployments.
  • Exposes all BullMQ queues through the internal BullMQ GET API endpoint.
  • Adds all scores to dataset run items in the UI, giving evaluators full score visibility per run.
  • Enables triggering experiments directly from the UI without requiring SDK or API calls.
+1 moreshow less
  • Adds update support to evaluators, allowing existing evaluator configurations to be modified.
6 more releases in this issue · 2024-11-03 → 2024-11-26
v2.92.0 NOTES STABLE

Langfuse v2.92.0 adds server-side LLM invocation tracing, single-trace API via ClickHouse, and an SDK API for observations by ID.

└──▷ GET THIS VERSION
$ git clone --branch v2.92.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v2.92.0
  • Adds SDK API endpoint to fetch observations by ID.
  • Adds API endpoint to fetch a single trace via ClickHouse.
  • Adds a service endpoint for failed BullMQ events.
  • Adds server-side tracing of LLM invocations at the core level.
v2.91.0 NOTES STABLE

Langfuse v2.91.0 adds evals on dataset runs, media UI support, ClickHouse-backed datasets/sessions/scores, and a dataset run peek view.

└──▷ GET THIS VERSION
$ git clone --branch v2.91.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v2.91.0
  • Adds a configure to read from ClickHouse only mode, serving traces, dataset features, dataset results, and scores entirely from ClickHouse — unlocking higher-scale query paths for traces, sessions, and public API score/session lookups.
  • Enables LLM evaluations triggered directly via dataset runs (evals-on-datasets feature flag removed, now generally available).
  • Adds UI support for media in traces and observations.
  • Adds a peek view on the dataset run compare table, with a header, so users can inspect individual run items inline without leaving the comparison view.
  • Shows linked evaluators directly on the dataset page so teams can see which eval configs are associated with a dataset at a glance.
+1 moreshow less
  • Improves prompt metrics performance by migrating the underlying query path.
v2.90.0 NOTES STABLE

Langfuse v2.90.0 adds multimodal media upload/download endpoints and generation metrics for the prompts table.

└──▷ GET THIS VERSION
$ git clone --branch v2.90.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v2.90.0
  • Adds media upload and download endpoints for multimodal support.
  • Adds generation count and metrics (e.g. cost, latency) to the prompts table.
  • Adds a query parameter to the healthcheck endpoint that enables failure responses when the database is unavailable.
  • Moves hobby plan usage information to the sidebar in the cloud UI.
v2.89.0 NOTES STABLE

Langfuse v2.89.0 expands ClickHouse-backed queries to sessions, scores, and latency dashboards, and adds trace deletion from the UI.

└──▷ GET THIS VERSION
$ git clone --branch v2.89.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v2.89.0
  • Enables deleting traces directly from the UI when using ClickHouse as the backend.
  • Adds table search support for ClickHouse-backed trace and generation tables.
  • Adds user charts showing per-user consumption metrics powered by ClickHouse queries.
  • Adds scores-over-time chart to the dashboard, queried from ClickHouse.
  • Brings the Sessions API onto ClickHouse reads, covering session listing and detail queries.
+3 moreshow less
  • Adds a notification card in the sidebar for in-product announcements.
  • Adds an experimentation setup for steering reads between ClickHouse and Postgres for traces, generations, sessions, and scores table APIs.
  • Reads latency tables and model-latency dashboard data from ClickHouse, unlocking faster latency analytics at scale.
v2.88.0 NOTES STABLE

Langfuse v2.88.0 adds dataset run comparison view, metadata filters across all UI tables, and Claude Haiku 3.5 model support.

└──▷ GET THIS VERSION
$ git clone --branch v2.88.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v2.88.0
  • Adds metadata filter across all UI tables, enabling filtering by metadata fields in every table view.
  • Adds a dataset run comparison view to compare results across different dataset runs side by side.
  • Adds support for Claude Haiku 3.5 in model tracking and cost calculation.
  • Expands dashboard coverage with additional charts powered by ClickHouse, including distinct model queries and a scores table.
v2.87.0 NOTES STABLE

Langfuse v2.87.0 adds a new sidebar/nav, flexible cost tracking, ClickHouse-backed traces and generations, eval template creation from config forms, and cloud event usage metering.

└──▷ GET THIS VERSION
$ git clone --branch v2.87.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v2.87.0
  • Adds is_deleted field to ClickHouse traces and observations, enabling soft-delete tracking in the analytics backend.
  • Extends ClickHouse support to the traces filter options endpoint, traces.countAll API, traces detail view, and generations table — broadening the set of queries that run against ClickHouse instead of Postgres.
  • Makes cost tracking flexible, allowing custom or overridden pricing models beyond built-in defaults.
  • Adds a new sidebar and main navigation UI, replacing the previous navigation structure.
  • Adds an option to update referenced eval configs when creating a new eval template version.
+3 moreshow less
  • Enables creating an eval template directly from the eval config form in the UI.
  • Adds event usage metering for cloud deployments.
  • Adds additional filter support to the traces table.
Was this useful?

Weights & Biases Weave

Sources Release notes → v0.51.22 4 RELEASES · 2024-11-01 → 2024-11-21 NOTES STABLE

Weave v0.51.22 adds object comparison in the UI and introduces simple prompt classes.

└──▷ GET THIS VERSION
$ git clone --branch v0.51.22 https://github.com/wandb/weave.git
# already have the repo? check out this version:
$ git checkout v0.51.22
  • Adds simple prompt classes for structured prompt management.
  • Adds object comparison view in the UI for side-by-side inspection of Weave objects.
3 more releases in this issue · 2024-11-01 → 2024-11-21
v0.51.20 NOTES STABLE

Weave v0.51.20 adds Dataset iteration, OpenAI beta parse API tracking, up/down call navigation, and a number-parsing string op.

└──▷ GET THIS VERSION
$ git clone --branch v0.51.20 https://github.com/wandb/weave.git
# already have the repo? check out this version:
$ git checkout v0.51.20
└──▷ USE IT
Iterate directly over a published Weave Dataset to feed rows into an eval pipeline without manual index access.
python
import weave

weave.init('my-project')
dataset = weave.ref('my-dataset:latest').get()

for row in dataset:
    print(row)
Track structured outputs from the OpenAI beta parse API so parsed responses appear as typed calls in Weave.
python
import weave
import openai

weave.init('my-project')
client = openai.OpenAI()

completion = client.beta.chat.completions.parse(
    model='gpt-4o-mini',
    messages=[{'role': 'user', 'content': 'Extract: John is 30 years old.'}],
    response_format=MySchema,
)
  • Adds tracking support for the OpenAI beta parse API via the openai integration.
  • Adds a weave_call_id field to LLM completions, plus an option to disable tracking for individual LLM completion calls.
  • Makes Dataset iterable, enabling direct Python iteration over Weave datasets in user code.
  • Adds a new string op to weave_query that parses numbers containing thousands and decimal separators.
  • Adds a feedback replace endpoint that performs a purge and create in a single step.
+5 moreshow less
  • Adds backend support for on-demand LLM Judges (Online Evals Part 1).
  • Adds ActionSpec as a known registered type (previously ActionDefinition).
  • Adds a hidden Scorers page to the UI for managing scorer configurations.
  • Enables up/down keyboard navigation across calls from the peek drawer on the calls page.
  • Adds a playground page with call stats, LLM dropdown, chat input, stop-sequence editor, function editor, response editor, and settings drawer with sliders.
v0.51.19 NOTES STABLE

Weave v0.51.19 adds project-level leaderboards, single-call retrieval from the TS client, and dict serialization of inputs/outputs.

└──▷ GET THIS VERSION
$ git clone --branch v0.51.19 https://github.com/wandb/weave.git
# already have the repo? check out this version:
$ git checkout v0.51.19
  • Adds option to retrieve a single call by ID from the TypeScript client (weave_ts).
  • Enables dictify serialization of call inputs and outputs, making them accessible as plain dictionaries.
  • Adds project-level leaderboards for comparing model/evaluation performance across a project.
v0.51.18 NOTES STABLE

Weave v0.51.18 adds an initial scorer suite, a JS SDK, a completions endpoint, leaderboard support, and trace page charts.

└──▷ GET THIS VERSION
$ git clone --branch v0.51.18 https://github.com/wandb/weave.git
# already have the repo? check out this version:
$ git checkout v0.51.18
  • Adds completions/create endpoint to the Weave backend, enabling programmatic LLM completion requests through the Weave API.
  • Adds an initial JS SDK (weave_ts) for instrumenting JavaScript/TypeScript applications with Weave tracing.
  • Adds JS SDK code options to the 'Use' tab in the UI, surfacing JavaScript examples alongside existing language options.
  • Adds an initial suite of scorers and refactors weave/flow, providing built-in evaluation scorers for LLM outputs.
  • Adds client and backend support for Leaderboards, enabling ranking and comparison of model evaluation results.
+3 moreshow less
  • Adds charts to the traces page for visual performance and usage analysis of traced calls.
  • Adds byte usage display to the summary tab and object page, surfacing storage consumption metrics in the UI.
  • Adds simple language detection for the code browser, automatically identifying code language in the UI.
Was this useful?
◆  MCP TOOLING

Composio

Sources Release notes → v0.5.50 10 RELEASES · 2024-11-04 → 2024-11-28 NOTES STABLE

Composio v0.5.50 adds a trigger list CLI command and app connector listing in the API reference.

└──▷ GET THIS VERSION
$ git clone --branch v0.5.50 https://github.com/ComposioHQ/composio.git
# already have the repo? check out this version:
$ git checkout v0.5.50
  • Adds trigger list command to the CLI for listing available triggers.
  • Adds app connector listing in the API reference documentation.
  • Adds more detailed error message information for missing or invalid enum values.
9 more releases in this issue · 2024-11-04 → 2024-11-28
v0.5.49 NOTES STABLE

Composio v0.5.49 adds advanced use case search capability.

└──▷ GET THIS VERSION
$ git clone --branch v0.5.49 https://github.com/ComposioHQ/composio.git
# already have the repo? check out this version:
$ git checkout v0.5.49
  • Adds advanced use case search for discovering integrations and actions by use case.
v0.5.47 NOTES STABLE

Composio v0.5.47 adds request executor injection for runtime tools and case-insensitive trigger filtering.

└──▷ GET THIS VERSION
$ git clone --branch v0.5.47 https://github.com/ComposioHQ/composio.git
# already have the repo? check out this version:
$ git checkout v0.5.47
  • Supports injecting a custom request executor into the runtime tool, enabling custom HTTP handling at execution time.
  • Makes trigger filter matching case-insensitive, so trigger names no longer need to match exact casing.
v0.5.46 NOTES STABLE

Composio v0.5.46 adds proxy support for custom actions and auto-creates integrations when no ID is provided.

└──▷ GET THIS VERSION
$ git clone --branch v0.5.46 https://github.com/ComposioHQ/composio.git
# already have the repo? check out this version:
$ git checkout v0.5.46
  • Adds proxy support for executing custom actions, enabling custom actions to route through a configured proxy.
  • Auto-creates a new integration when no integrationId is provided, removing the requirement to pre-provision an integration before connecting.
v0.5.45 NOTES STABLE

Composio v0.5.45 auto-creates integrations on initiate_connection when none exists

└──▷ GET THIS VERSION
$ git clone --branch v0.5.45 https://github.com/ComposioHQ/composio.git
# already have the repo? check out this version:
$ git checkout v0.5.45
  • Adds auto-initiation of a new integration when none exists on initiate_connection, removing the need to manually pre-create integrations before starting a connection flow.
v0.5.44 NOTES STABLE

Composio v0.5.44 adds execute_request method and friendlier trigger-not-enabled errors.

└──▷ GET THIS VERSION
$ git clone --branch v0.5.44 https://github.com/ComposioHQ/composio.git
# already have the repo? check out this version:
$ git checkout v0.5.44
  • Adds execute_request method for direct HTTP request execution.
  • Shows a friendly error message when a trigger is not enabled on your account, replacing opaque failures.
v0.5.43 NOTES STABLE

Composio v0.5.43 defaults action execution to the 'primary' account label and adds improved callback filter error messages.

└──▷ GET THIS VERSION
$ git clone --branch v0.5.43 https://github.com/ComposioHQ/composio.git
# already have the repo? check out this version:
$ git checkout v0.5.43
  • Automatically executes actions against the account labelled primary when no account is explicitly specified.
  • Adds improved error messages for wrong callback filters, helping developers diagnose misconfigured trigger callbacks faster.
  • Improves developer experience for the code analysis tool.
  • Adds exclude functionality to the file tool.
v0.5.42 NOTES STABLE

Composio v0.5.42 adds support for disconnecting and reconnecting trigger subscriptions.

└──▷ GET THIS VERSION
$ git clone --branch v0.5.42 https://github.com/ComposioHQ/composio.git
# already have the repo? check out this version:
$ git checkout v0.5.42
  • Adds support for disconnecting and reconnecting trigger subscriptions, enabling more dynamic lifecycle management of event listeners.
v0.5.39 NOTES STABLE

Composio v0.5.39 adds Anthropic computer use tools and refactored SWE-agent support for LangGraph and CrewAI.

└──▷ GET THIS VERSION
$ git clone --branch v0.5.39 https://github.com/ComposioHQ/composio.git
# already have the repo? check out this version:
$ git checkout v0.5.39
  • Adds Anthropic computer use tools integration.
  • Adds working SWE-agent in LangGraph and CrewAI, plus a PR-review agent in LangGraph, via SWEKit refactoring.
v0.5.38 NOTES STABLE

Composio v0.5.38 adds toolset.get_connected_accounts(), streamWait for OpenAI, and auto-update for failed remote apps.

└──▷ GET THIS VERSION
$ git clone --branch v0.5.38 https://github.com/ComposioHQ/composio.git
# already have the repo? check out this version:
$ git checkout v0.5.38
└──▷ USE IT
List all connected accounts in your toolset to audit which integrations are active.
python
connected_accounts = toolset.get_connected_accounts()
  • Adds toolset.get_connected_accounts() method to retrieve all connected accounts from a toolset.
  • Adds streamWait method to the OpenAI integration and moves getExpectedParamsForUser in the JS SDK.
  • Renames getAction to getTools in the JS SDK.
  • Adds suggestion text and a documentation link to connection-not-found errors to help users self-serve.
  • Auto-updates apps when a remote app or action fails to load, reducing manual intervention on stale definitions.
+3 moreshow less
  • Adds a SWE agent scaffold for software-engineering agent workflows.
  • Adds a Git custom tool integration.
  • Bumps the JS SDK to version 0.2.5 and updates the Cloudflare JS version.
└──▷ BREAKING ON UPGRADE
  • !Deprecated methods removed in this release — any code calling the previously deprecated methods will break on upgrade.
Was this useful?

Model Context Protocol Servers

Sources Release notes → 0.5.0 2 RELEASES · 2024-11-21 → 2024-11-25 NOTES STABLE

MCP Servers 0.5.0 adds a Sentry integration server.

└──▷ GET THIS VERSION
$ git clone --branch 0.5.0 https://github.com/modelcontextprotocol/servers.git
# already have the repo? check out this version:
$ git checkout 0.5.0
  • Adds a new Sentry MCP server, enabling MCP-based integration with Sentry for error and issue tracking.
1 more release in this issue · 2024-11-21 → 2024-11-25
0.2.0 NOTES STABLE

MCP Servers 0.2.0 adds Google Maps, GitHub, Brave Search, DuckDuckGo, Filesystem, and SQLite MCP server integrations.

└──▷ GET THIS VERSION
$ git clone --branch 0.2.0 https://github.com/modelcontextprotocol/servers.git
# already have the repo? check out this version:
$ git checkout 0.2.0
└──▷ TRY IT
Set up all MCP servers at once after cloning the repository, instead of linking each server individually.
$ npm run link-all
  • Adds npm run link-all script to set up all servers in a single step.
  • New Google Maps MCP server integration.
  • New GitHub MCP server integration.
  • New Brave Search MCP server integration.
  • New DuckDuckGo MCP server integration.
+7 moreshow less
  • New Filesystem MCP server for filesystem management.
  • New SQLite Notes To Do MCP server backed by SQLite.
  • New Claude memory MCP server for persistent memory across sessions.
  • Updated Postgres MCP server.
  • Updated Slack MCP server.
  • Updated Puppeteer MCP server.
  • Major update to the Git MCP server, updated to the most recent MCP SDK.
Was this useful?
◆  VECTOR DB RAG

LanceDB

Sources Release notes → v0.14.0-beta.1 10 RELEASES · 2024-11-05 → 2024-11-29 NOTES STABLE

LanceDB v0.14.0-beta.1 adds overwrite/exist_ok modes for remote table creation and remote connection options support.

└──▷ GET THIS VERSION
$ git clone --branch v0.14.0-beta.1 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout v0.14.0-beta.1
  • Supports overwrite and exist_ok modes for remote create_table, letting callers control behavior when a table already exists on a remote LanceDB connection.
  • Supports remote options for remote LanceDB connections, enabling configuration of connection-level settings when using the remote client.
9 more releases in this issue · 2024-11-05 → 2024-11-29
python-v0.17.0-beta.1 NOTES STABLE

LanceDB python-v0.17.0-beta.1 adds overwrite/exist_ok modes for remote table creation and remote connection options support.

└──▷ GET THIS VERSION
$ git clone --branch python-v0.17.0-beta.1 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout python-v0.17.0-beta.1
  • Adds overwrite and exist_ok mode parameters to create_table for remote LanceDB connections, giving callers control over table collision behavior.
  • Adds support for remote options when establishing a remote LanceDB connection.
v0.13.1-beta.0 NOTES STABLE

LanceDB v0.13.1-beta.0 adds rustls support, ef search param, list_versions, and checkout APIs across SDKs.

└──▷ GET THIS VERSION
$ git clone --branch v0.13.1-beta.0 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout v0.13.1-beta.0
  • Adds ef search parameter support for HNSW index queries, giving callers fine-grained control over recall vs. latency trade-offs.
  • Adds list_versions to the TypeScript, Rust, and remote Python SDKs for programmatic version enumeration.
  • Adds checkout and checkout_latest to remote SDKs for switching between dataset versions.
  • Adds rustls as a TLS backend option for the Rust SDK, enabling use without OpenSSL dependencies.
python-v0.16.1-beta.0 NOTES STABLE

LanceDB python-v0.16.1-beta.0 adds ef HNSW search param, list_versions, checkout, and checkout_latest across remote SDKs.

└──▷ GET THIS VERSION
$ git clone --branch python-v0.16.1-beta.0 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout python-v0.16.1-beta.0
  • Adds ef search parameter support for HNSW index queries, letting callers tune recall/speed trade-offs at query time.
  • Adds list_versions to the TypeScript, Rust, and remote Python SDKs for enumerating table versions.
  • Adds checkout and checkout_latest to the remote SDKs for switching a table to a specific or latest version.
  • Adds rustls TLS backend support in the Rust SDK as an alternative to the native TLS stack.
v0.13.0 NOTES STABLE

LanceDB v0.13.0 adds fast_search, multi-vector queries, VoyageAI and Amazon Bedrock embeddings, and post-filter on FTS.

└──▷ GET THIS VERSION
$ git clone --branch v0.13.0 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout v0.13.0
└──▷ USE IT
Run a fast approximate vector search to trade recall for speed in latency-sensitive pipelines.
python
results = await table.search([0.1, 0.2, 0.3]).fast_search().limit(10).to_list()
Batch multiple query vectors into a single call to reduce round-trips when scoring several embeddings at once.
python
results = await table.search([[0.1, 0.2], [0.3, 0.4]]).limit(5).to_list()
Include internal row IDs in FTS results to correlate matches back to raw storage positions.
python
results = await table.search('malware signature').with_row_id(True).limit(20).to_list()
  • Adds fast_search option in Python and Node for faster approximate index searches.
  • Adds with_row_id support in Python and remote SDK to include internal row IDs in query results.
  • Adds post-filter support on full-text search (FTS) queries in Python.
  • Adds optimize_indices support in the synchronous API.
  • Supports searching multiple query vectors as a single batch query in Python and Node.
+6 moreshow less
  • Adds VoyageAI embedding function integration.
  • Adds Amazon Bedrock embedding function integration.
  • Adds flexible null handling and insert subschemas support in Python.
  • Supports remote empty queries.
  • Transitions the Python remote SDK to use the Rust implementation, improving consistency with other language clients.
  • Upgrades to lance 0.19.2-beta.3 as the underlying storage layer.
└──▷ BREAKING ON UPGRADE
  • !The Python remote SDK now uses the Rust implementation instead of the previous Python implementation — existing code relying on internal Python remote SDK behavior may break on upgrade.
  • !In the Node package, openai and huggingface are now optional dependencies and must be installed separately if used.
python-v0.16.0 NOTES STABLE

LanceDB v0.16.0 adds fast_search, multi-vector queries, VoyageAI/Bedrock embeddings, and FTS post-filtering.

└──▷ GET THIS VERSION
$ git clone --branch python-v0.16.0 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout python-v0.16.0
└──▷ USE IT
Run a fast approximate nearest-neighbor search to reduce query latency in high-throughput pipelines.
python
results = table.search(query_vector).fast_search().to_list()
Search multiple query vectors in a single batched call to reduce round-trips.
python
results = table.search([vec1, vec2, vec3]).to_list()
Apply a post-filter to full-text search results to narrow down matches after FTS retrieval.
python
results = table.search('threat actor', query_type='fts').where("severity = 'high'").to_list()
  • Adds fast_search parameter to vector search in Python and Node for approximate, lower-latency ANN queries.
  • Adds with_row_id support in Python and remote queries, exposing internal row identifiers in search results.
  • Adds support for post-filtering on full-text search (FTS) results in Python.
  • Adds optimize_indices to the synchronous Python API, enabling index optimization without async context.
  • Supports searching multiple query vectors as a single batched query in one call.
+5 moreshow less
  • Adds remote empty query support, allowing full-table scans via the remote SDK.
  • Adds VoyageAI embedding function integration for generating embeddings.
  • Adds Amazon Bedrock embedding function integration.
  • Transitions the Python remote SDK to use the Rust implementation, improving performance and consistency.
  • Adds flexible null handling and insert subschemas support in Python for more permissive data ingestion.
└──▷ BREAKING ON UPGRADE
  • !The Python remote SDK now uses the Rust implementation; behavior of remote operations (delete, update, query, FTS, open_table) may differ from the previous Python implementation.
v0.13.0-beta.2 NOTES STABLE

LanceDB v0.13.0-beta.2 adds VoyageAI embeddings, multi-vector search, sync index optimization, and remote empty query support.

└──▷ GET THIS VERSION
$ git clone --branch v0.13.0-beta.2 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout v0.13.0-beta.2
  • Adds optimize_indices to the synchronous API, allowing index optimization without async wrappers.
  • Supports searching multiple query vectors as a single query, enabling batch nearest-neighbor lookups in one call.
  • Adds VoyageAI as a supported embedding provider for automatic vector generation.
  • Supports remote empty queries, enabling table scans over remote LanceDB connections without a vector or filter predicate.
  • Publishes win32-arm64-msvc builds to npm, extending native library support to ARM64 Windows environments.
└──▷ BREAKING ON UPGRADE
  • !Remote empty query behavior has changed: the support remote empty query change may alter how existing remote query code handles empty/null query inputs on upgrade.
python-v0.16.0-beta.1 NOTES STABLE

LanceDB python-v0.16.0-beta.1 adds multi-vector search, VoyageAI embeddings, sync index optimization, and remote empty query support.

└──▷ GET THIS VERSION
$ git clone --branch python-v0.16.0-beta.1 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout python-v0.16.0-beta.1
  • Adds optimize_index to the synchronous API, enabling index optimization without async context.
  • Supports searching multiple query vectors as a single query, enabling batch nearest-neighbor lookups in one call.
  • Adds VoyageAI as a supported embedding provider integration.
  • Supports remote empty query, allowing queries against remote tables with no filter or vector specified.
└──▷ BREAKING ON UPGRADE
  • !Remote empty query behavior has changed: queries against remote tables that previously required a vector or filter may now behave differently on upgrade.
v0.13.0-beta.0 NOTES STABLE

LanceDB v0.13.0-beta.0 adds fast_search, post-filter on FTS, and with_row_id support in Python and Node.

└──▷ GET THIS VERSION
$ git clone --branch v0.13.0-beta.0 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout v0.13.0-beta.0
  • Adds fast_search option to vector search in Python and Node for faster approximate query execution.
  • Adds post-filter support on full-text search (FTS) queries in Python.
  • Adds with_row_id support in Python and remote environments, enabling row-level result identification.
  • Transitions the Python remote SDK to use the Rust implementation, improving performance and consistency with other language clients.
python-v0.16.0-beta.0 NOTES STABLE

LanceDB python-v0.16.0-beta.0 adds fast_search, FTS post-filtering, and with_row_id support for Python and remote clients.

└──▷ GET THIS VERSION
$ git clone --branch python-v0.16.0-beta.0 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout python-v0.16.0-beta.0
  • Adds fast_search option to vector search in Python and Node SDKs for lower-latency approximate queries.
  • Adds post-filter support on full-text search (FTS) queries in the Python SDK.
  • Adds with_row_id support in the Python SDK and remote client, exposing internal row IDs in query results.
  • Transitions the Python remote SDK to use the Rust implementation, backed by lance 0.19.2-beta.3.
Was this useful?

Milvus

Sources Release notes → v2.5.0-beta NOTES

Milvus 2.5.0-beta adds full-text BM25 search, clustering compaction, bitmap indexes, nullable fields, CSV bulk import, and a cluster management WebUI.

└──▷ GET THIS VERSION
$ git clone --branch v2.5.0-beta https://github.com/milvus-io/milvus.git
# already have the repo? check out this version:
$ git checkout v2.5.0-beta
└──▷ USE IT
Define a collection schema with nullable scalar fields and default values so partial records can be inserted without errors.
python
from pymilvus import MilvusClient, DataType

client = MilvusClient(uri='http://localhost:19530')
schema = client.create_schema()
schema.add_field('id', DataType.INT64, is_primary=True)
schema.add_field('embedding', DataType.FLOAT_VECTOR, dim=128)
schema.add_field('category', DataType.VARCHAR, max_length=64, nullable=True, default_value='unknown')
client.create_collection('my_collection', schema=schema)
  • Adds nullable=True property and default value support for scalar fields, letting inserters omit fields without errors.
  • Supports CSV format for bulk import alongside the existing JSON and Parquet formats.
  • Introduces expression templates to accelerate query expression parsing, especially for complex expressions.
  • Introduces full-text search via built-in Sparse-BM25 tokenization and sparse vector extraction, accepting raw text input directly through the API instead of requiring pre-generated vectors.
  • Adds a new BitMap index for low-cardinality scalar fields, using a bit-array equal in length to the row count to accelerate filtered searches.
+9 moreshow less
  • Introduces Clustering Compaction (Beta), allowing a scalar field to be designated as a clustering key so data is redistributed by range for faster query pruning.
  • Adds Text Match capability using Tantivy analyzers and indexing for precise term-based natural language filtering.
  • Introduces a built-in Cluster Management WebUI (Beta) for visualizing runtime environment details including segments, channels, node health, tasks, and slow queries.
  • Migrates HNSW support from hnswlib to Faiss and adds SQ, PQ, and PRQ quantization methods on HNSW indexes.
  • Adds a Streaming Node component (Beta, disabled by default) providing Write-Ahead Logging (WAL) services for consensus before and after channel reads/writes.
  • Adds IPv6 support for expanded network connectivity.
  • GroupBy search now supports a customizable group size (number of entries returned per group) and hybrid GroupBy search across multiple vector columns.
  • QueryIterator gains MVCC support so iterators are unaffected by concurrent inserts/deletions, plus a persistent cursor enabling resumption from the last position after a restart.
  • Introduces Local Storage V2, a new local file format improving scalar data loading and query efficiency while reducing memory overhead.
└──▷ BREAKING ON UPGRADE
  • !The upgrade to Pulsar 3.0.7 LTS is not compatible with previous Pulsar 2.x versions.
Was this useful?

Qdrant

Sources Release notes → v1.12.3 2 RELEASES · 2024-11-08 → 2024-11-12 NOTES STABLE

Qdrant v1.12.3 exposes async scorer usage in telemetry data.

└──▷ GET THIS VERSION
$ git clone --branch v1.12.3 https://github.com/qdrant/qdrant.git
# already have the repo? check out this version:
$ git checkout v1.12.3
  • Exposes async scorer usage in telemetry, making it observable whether the async scorer is active for a given collection or request.
1 more release in this issue · 2024-11-08 → 2024-11-12
v1.12.2 NOTES STABLE

Qdrant v1.12.2 adds memory usage metrics, CPU endianness telemetry, and quantized-data-in-RAM default alongside broad performance improvements.

└──▷ GET THIS VERSION
$ git clone --branch v1.12.2 https://github.com/qdrant/qdrant.git
# already have the repo? check out this version:
$ git checkout v1.12.2
  • Reports memory usage in metrics and telemetry, giving operators visibility into runtime memory consumption.
  • Reports storage bytes estimate for each segment in telemetry, enabling finer-grained capacity planning.
  • Reports CPU endianness in telemetry output, surfacing hardware context alongside other node metadata.
  • Adds support for reinitializing consensus with new peer URLs, easing cluster reconfiguration without a full restart.
  • Uses streaming creation of snapshots during shard snapshot transfer, reducing peak memory pressure during transfers.
+5 moreshow less
  • Enables Jemalloc in RocksDB and its background thread for gradual release of unused memory, lowering the long-term RSS footprint.
  • Improves matrix API performance across multiple code paths.
  • Improves HNSW search performance by tweaking the visited list.
  • Improves resilience by not killing replicas eagerly when a node is out of sync.
  • Adds a log message when shard transfer is aborted, aiding operational debugging.
Was this useful?

Weaviate

Sources Release notes → v1.27.5 7 RELEASES · 2024-11-08 → 2024-11-21 NOTES STABLE

Weaviate v1.27.5 adds the multi2vec-jinaai multimodal embedding module.

└──▷ GET THIS VERSION
$ git clone --branch v1.27.5 https://github.com/weaviate/weaviate.git
# already have the repo? check out this version:
$ git checkout v1.27.5
  • Adds multi2vec-jinaai module for multimodal vectorization using Jina AI embeddings.
6 more releases in this issue · 2024-11-08 → 2024-11-21
v1.26.11 NOTES STABLE

Weaviate v1.26.11 adds the multi2vec-jinaai multimodal embedding module.

└──▷ GET THIS VERSION
$ git clone --branch v1.26.11 https://github.com/weaviate/weaviate.git
# already have the repo? check out this version:
$ git checkout v1.26.11
  • Adds the multi2vec-jinaai module, enabling multimodal vectorization via Jina AI's multi2vec models.
v1.25.26 NOTES STABLE

Weaviate v1.25.26 adds the multi2vec-jinaai multimodal embedding module.

└──▷ GET THIS VERSION
$ git clone --branch v1.25.26 https://github.com/weaviate/weaviate.git
# already have the repo? check out this version:
$ git checkout v1.25.26
  • Adds multi2vec-jinaai module, enabling multimodal vectorization via Jina AI's embedding models.
v1.25.25 NOTES STABLE

Weaviate v1.25.25 adds the multi2vec-cohere multimodal vectorizer module and extends the Slow Log with richer query diagnostics.

└──▷ GET THIS VERSION
$ git clone --branch v1.25.25 https://github.com/weaviate/weaviate.git
# already have the repo? check out this version:
$ git checkout v1.25.25
  • Introduces the multi2vec-cohere module, adding Cohere-backed multimodal vectorization support to Weaviate.
  • Extends the Slow Log with additional information to help determine why a query is slow.
v1.27.3 NOTES STABLE

Weaviate v1.27.3 adds multi2vec-cohere to default modules and extends the Slow Log with richer query diagnostics.

└──▷ GET THIS VERSION
$ git clone --branch v1.27.3 https://github.com/weaviate/weaviate.git
# already have the repo? check out this version:
$ git checkout v1.27.3
  • Adds multi2vec-cohere to the default modules list, enabling multimodal Cohere embeddings without manual module configuration.
  • Extends the Slow Log with additional information to help determine why a query is slow.
v1.26.9 NOTES STABLE

Weaviate v1.26.9 adds the multi2vec-cohere multimodal vectorizer module.

└──▷ GET THIS VERSION
$ git clone --branch v1.26.9 https://github.com/weaviate/weaviate.git
# already have the repo? check out this version:
$ git checkout v1.26.9
  • Introduces the multi2vec-cohere module for multimodal vectorization using Cohere.
v1.27.2 NOTES STABLE

Weaviate v1.27.2 adds dynamic backup locations and a new multi2vec-cohere multimodal vectorizer module.

└──▷ GET THIS VERSION
$ git clone --branch v1.27.2 https://github.com/weaviate/weaviate.git
# already have the repo? check out this version:
$ git checkout v1.27.2
  • Introduces the multi2vec-cohere module, enabling multimodal vectorization via Cohere's API.
  • Adds dynamic backup locations, allowing backup destinations to be configured at backup time rather than only at startup.
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 →