Langflow release notes
This page summarizes significant changes to Langflow in each release. For all changes, see the Changelog.
Due to strict SemVer requirements, Langflow Desktop can have different patch versions than the core Langflow OSS Python package, but the major and minor versions are aligned.
Prepare to upgrade
Whenever possible, the Langflow team recommends installing new Langflow versions in a new virtual environment or VM before upgrading your primary installation. This allows you to import flows from your existing installation and test them in the new version without disrupting your existing installation. In the event of breaking changes or bugs, your existing installation is preserved in a stable state. If you are upgrading Windows Desktop to 1.6.0, don't auto-upgrade with the in-app Update button. Instead, follow the instructions in Known issue: Don't auto-upgrade Windows Desktop.
To avoid the impact of potential breaking changes and test new versions, the Langflow team recommends the following upgrade process:
-
Recommended: Export your projects to create backups of your flows:
_10curl -X GET \_10"$LANGFLOW_SERVER_URL/api/v1/projects/download/$PROJECT_ID" \_10-H "accept: application/json" \_10-H "x-api-key: $LANGFLOW_API_KEY"To export flows from the visual editor, see Import and export flows.
-
Install the new version:
- Langflow OSS Python package: Install the new version in a new virtual environment. For instructions, see Install and run the Langflow OSS Python package.
- Langflow Docker image: Run the new image in a separate container.
- Langflow Desktop: To upgrade in place, open Langflow Desktop, and then click Upgrade Available in the Langflow header. If you want to isolate the new version, you must install Langflow Desktop on a separate physical or virtual machine, and then import your flows to the new installation.
-
Import your flows to test them in the new version, upgrading components as needed.
When upgrading components, you can use the Create backup flow before updating option if you didn't previously export your flows.
-
If you installed the new version in isolation, upgrade your primary installation after testing the new version.
If you made changes to your flows in the isolated installation, you might want to export and import those flows back to your upgraded primary installation so you don't have to repeat the component upgrade process.
1.6.0
Highlights of this release include the following changes. For all changes, see the Changelog.
Known issue: Don't auto-upgrade Windows Desktop
Windows users of Langflow Desktop should not use the in-app update feature to upgrade to Langflow version 1.6.0. Only Windows Desktop users upgrading to Langflow version 1.6.0 are affected.
The Update button in Langflow Desktop will not work for Windows users, and may result in data loss.
Instead, download a fresh installation from the Langflow website when a new version is available.
Follow the instructions below to minimize the risk of losing flows.
These instructions assume the default path for the Langflow database of C:\Users\YOUR_USERNAME\AppData\Roaming\com.langflow\data\database.db
or C:\Users\%YOUR_USERNAME%\AppData\Roaming\com.langflow\data\database.db
. Replace YOUR_USERNAME
with your Windows username.
- Ensure you have Administrator privileges.
- Ensure you have enough disk space for a second installation of Langflow.
- Close Langflow, and ensure no Langflow process is running in Task Manager.
- The Langflow 1.6.0 installer automatically performs a database backup in a later step, but an additional manual backup provides additional redundancy and is recommended.
To manually back up your Langflow database file, do the following:
- In Windows Explorer, navigate to
C:\Users\YOUR_USERNAME\AppData\Roaming\com.langflow\data\
. ReplaceYOUR_USERNAME
with your Windows username. - Copy the
database.db
at this location, and paste it to a safe location.
- In Windows Explorer, navigate to
- Download the Windows installer from the Langflow website.
- Run the Windows installer as an Administrator. To run the installer as an Administrator, right-click the executable and select Run as administrator.
- Follow the Windows installer's guided steps. The Langflow 1.6.0 installer automatically performs a database backup. These steps install Langflow from scratch, and result in two Langflow installations: the previously installed version, and version 1.6.0. This is expected behavior.
- Start version 1.6.0 of Langflow, and confirm your flows behave as expected.
- If flows are missing, restore your flows from your manual backup by doing the following:
- Close Langflow.
- Navigate to your backup location, and copy the
database.db
file. - Replace the database file in the new installation's
data
directory. - Start Langflow, and confirm your flows behave as expected.
- After confirmation, uninstall the previous version of Langflow, and keep version 1.6.0.
Breaking changes
-
Authentication enforced for Langflow API requests by default
In Langflow version 1.6,
LANGFLOW_AUTO_LOGIN=True
andLANGFLOW_SKIP_AUTH_AUTO_LOGIN=False
by default. This enforces authentication for Langflow API requests while still automatically authenticating all users as superusers in the visual editor.This is a breaking change from 1.5 where both of these environment variables were
true
by default, bypassing all authentication.For temporary backwards compatibility, you can revert to the earlier unauthenticated behavior by setting both variables to
true
. However, a future release will setLANGFLOW_AUTO_LOGIN=False
and removeLANGFLOW_SKIP_AUTH_AUTO_LOGIN
. At that point, Langflow will strictly enforce API key authentication for API requests, and you can manually disable authentication for some features, like the visual editor, by settingLANGFLOW_AUTO_LOGIN=True
.For more information, see the documentation for
LANGFLOW_AUTO_LOGIN
.
New features and enhancements
-
OpenAI Responses API compatibility
Langflow now includes an endpoint that is compatible with the OpenAI Responses API at
POST /api/v1/responses
. This allows you to use existing OpenAI client libraries with minimal code changes by replacing themodel
name with yourflow_id
. The endpoint supports streaming responses, conversation continuity, tool call results, and global variable passing through headers. For more information, see OpenAI Responses API. -
Advanced document parsing with built-in Docling support
The File component supports advanced parsing with the Docling library.
To make it easier to use the Docling components and the File component's new advanced parsing feature, the Docling dependency is now included with Langflow for all operating systems except macOS Intel (x86_64).
For more information, see Advanced parsing.
-
Reorganized component menus and visual editor controls
- The workspace sidebar is divided into separate sections for Search, Core components, MCP servers, Bundles, and Add Note.
- Lock/unlock controls moved to flow details in Projects.
- Zoom and help controls moved to the lower-right corner of the workspace.
- Vector store components moved to provider-specific Bundles
- Serper Google Search API component moved to the Serper bundle
-
Increased the default maximum file upload size from
100 MB
to1024 MB
. -
New integrations and bundles:
Deprecations
- The Local DB component is now in legacy status. Replace this component with the Chroma DB component.
1.5.0
Highlights of this release include the following changes. For all changes, see the Changelog.
New features and enhancements
-
Langflow API requests can require authentication
To enhance security and ensure proper authentication for automatic login features, Langflow API endpoints now require authentication with a Langflow API key, even when
LANGFLOW_AUTO_LOGIN=True
. This change will be enforced in a future release. For temporary backwards compatibility, this release adds theLANGFLOW_SKIP_AUTH_AUTO_LOGIN
environment variable. The default value istrue
, which disables API authentication enforcement. To enforce API authentication, setLANGFLOW_SKIP_AUTH_AUTO_LOGIN=False
. For more information, see the documentation forLANGFLOW_AUTO_LOGIN
. -
Centralized Language Model and Embedding Model components
The Language Model component and Embedding Model component are now core components for your LLM and embeddings flows. They support multiple models and model providers, and allow you to experiment with different models without swapping out single-provider components. Find them in the visual editor in the Models category.
The single-provider components moved to the Bundles section. You can use them to replace the Language Model and Embedding Model core components, or connect them to the Agent component with the Connect other models provider option.
-
MCP server one-click installation
On your Langflow project's MCP server page, click Auto install to install your Langflow MCP server to MCP clients with just one click. The option to install with a JSON configuration file is available for macOS, Windows, and WSL. For more information, see Use Langflow as an MCP server.
-
MCP server management
You can now add, remove, and edit your MCP servers in the MCP Tools components and through your Langflow Settings page. For more information, see Use Langflow as an MCP client.
-
Input schema replaces temporary overrides
The Input schema pane replaces the need to manage tweak values in the API access pane. When you enable a parameter in the Input schema pane, the parameter is automatically added to your flow's code snippets, providing ready-to-use templates for making requests in your preferred programming language.
-
Tools components are redistributed
All components in the Tools category were moved to other component categories, such as Helpers and Bundles, or marked as legacy.
The MCP Tools component is now under the Agents category.
Tools that performed the same function were combined into single components that support multiple providers, such as the Web Search component and the News Search component.
For more information, see Tools components.
-
Stability improvements
General stability improvements and bug fixes for enhanced reliability. See an issue? Raise it on GitHub.
-
New integrations and bundles
1.4.2
Highlights of this release include the following changes. For all changes, see the Changelog.
New features and enhancements
- Enhanced file and flow management system with improved bulk capabilities.
- Added the BigQuery component
- Added the Twelve Labs bundle
- Added the NVIDIA System-Assist component
Deprecations
- Deprecated the Combine Text component.
1.4.1
Highlights of this release include the following changes. For all changes, see the Changelog.
New features and enhancements
- Added an enhanced Breaking Changes feature to help update components without breaking flows after updating Langflow.
1.4.0
Highlights of this release include the following changes. For all changes, see the Changelog.
New features and enhancements
- Introduced MCP server functionality to serve Langflow tools to MCP-compatible clients.
- Renamed Folders to Projects in the visual editor.
- The
/folders
endpoints now redirect to/projects
.
Deprecations
- Deprecated the Gmail, Google Drive, and Google Search components. For alternatives, see the Google bundle.
Earlier releases
See the Changelog.