-
Notifications
You must be signed in to change notification settings - Fork 9.7k
docs: add blog links for 1.11 #14207
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -69,9 +69,11 @@ For all changes, see the [Changelog](https://github.com/langflow-ai/langflow/rel | |
| The legacy value `langflow` is not allowed, even if `LANGFLOW_AUTO_LOGIN=True`. | ||
|
|
||
| ```bash | ||
| export LANGFLOW_SUPERUSER_PASSWORD='your-strong-password' | ||
| export LANGFLOW_SUPERUSER_PASSWORD=SUPERUSER_PASSWORD | ||
| ``` | ||
|
|
||
| Replace `SUPERUSER_PASSWORD` with a strong password for the Langflow superuser. | ||
|
Comment on lines
+72
to
+75
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔒 Security & Privacy | 🟡 Minor | ⚡ Quick win 🧩 Analysis chain🏁 Script executed: #!/bin/bash
set -euo pipefail
for f in \
docs/docs/Support/release-notes.mdx \
docs/docs/Deployment/deployment-docker.mdx \
docs/versioned_docs/version-1.11.0/Support/release-notes.mdx \
docs/versioned_docs/version-1.11.0/Deployment/deployment-docker.mdx
do
echo "===== $f ====="
nl -ba "$f" | sed -n '1,140p' | sed -n '1,120p'
echo
doneRepository: langflow-ai/langflow Length of output: 247 🏁 Script executed: #!/bin/bash
set -euo pipefail
python3 - <<'PY'
from pathlib import Path
paths = [
Path("docs/docs/Support/release-notes.mdx"),
Path("docs/docs/Deployment/deployment-docker.mdx"),
Path("docs/versioned_docs/version-1.11.0/Support/release-notes.mdx"),
Path("docs/versioned_docs/version-1.11.0/Deployment/deployment-docker.mdx"),
]
targets = {
"LANGFLOW_SUPERUSER_PASSWORD=SUPERUSER_PASSWORD",
"export LANGFLOW_SUPERUSER_PASSWORD=SUPERUSER_PASSWORD",
"-e LANGFLOW_SUPERUSER_PASSWORD=SUPERUSER_PASSWORD \\",
}
for path in paths:
print(f"===== {path} =====")
lines = path.read_text().splitlines()
for i, line in enumerate(lines, 1):
if any(t in line for t in targets):
start = max(1, i - 4)
end = min(len(lines), i + 4)
for j in range(start, end + 1):
print(f"{j:4d}: {lines[j-1]}")
print()
PYRepository: langflow-ai/langflow Length of output: 5092 🏁 Script executed: #!/bin/bash
set -euo pipefail
python3 - <<'PY'
from pathlib import Path
checks = [
("docs/docs/Support/release-notes.mdx", [72, 75, 89, 94]),
("docs/docs/Deployment/deployment-docker.mdx", [28, 397]),
("docs/versioned_docs/version-1.11.0/Support/release-notes.mdx", [63, 66, 80, 85]),
("docs/versioned_docs/version-1.11.0/Deployment/deployment-docker.mdx", [28, 397]),
]
for p, nums in checks:
lines = Path(p).read_text().splitlines()
print(f"===== {p} =====")
for n in nums:
if 1 <= n <= len(lines):
print(f"{n:4d}: {lines[n-1]}")
print()
PYRepository: langflow-ai/langflow Length of output: 1282 Quote the password examples. The 📍 Affects 4 files
🤖 Prompt for AI AgentsSource: Coding guidelines |
||
|
|
||
| If `LANGFLOW_AUTO_LOGIN=true`, setting `LANGFLOW_SUPERUSER_PASSWORD` is optional. If you omit it, Langflow generates a random bootstrap password for the auto-login account. | ||
|
|
||
| If you're running Langflow with Docker and `LANGFLOW_AUTO_LOGIN=false`, pass the password at startup: | ||
|
|
@@ -84,11 +86,13 @@ For all changes, see the [Changelog](https://github.com/langflow-ai/langflow/rel | |
| -e LANGFLOW_HOST=0.0.0.0 \ | ||
| -e LANGFLOW_PORT=7860 \ | ||
| -e LANGFLOW_AUTO_LOGIN=false \ | ||
| -e LANGFLOW_SUPERUSER_PASSWORD \ | ||
| -e LANGFLOW_SUPERUSER_PASSWORD=SUPERUSER_PASSWORD \ | ||
| -v langflow-data:/app/langflow \ | ||
| ${IMAGE} | ||
| ``` | ||
|
|
||
| Replace `SUPERUSER_PASSWORD` with a strong password for the Langflow superuser. | ||
|
|
||
| - Docker images disable auto-login by default | ||
|
|
||
| Official Langflow Docker images set `LANGFLOW_AUTO_LOGIN=false`. | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
Repository: langflow-ai/langflow
Length of output: 249
🌐 Web query:
Langflow 1.11 release blog canonical URL human in the loop 404💡 Result:
As of July 22, 2026, Langflow 1.11 has not been officially released; documentation for it is listed as unreleased/next [1] and development work (including integration of human-in-the-loop features) is ongoing [2][3]. There is no official "1.11 release blog" yet, which is the primary reason for a 404 error if you are attempting to access such a URL [4]. The "human-in-the-loop" (HITL) capability has been a highly requested feature [5][6][7][8] and is currently being integrated into the codebase under development branches for the upcoming 1.11 release [3]. Recent technical work includes establishing a durable background execution substrate to allow workflows to suspend for human input and resume without losing state [3]. If you are encountering 404 errors related to Langflow documentation or blog posts, it is frequently due to the dynamic nature of their documentation (which uses paths like /next/ for upcoming features) [1] or outdated links in their UI components, which the team has historically addressed as they arise [9][10]. To stay updated on the official release of 1.11 and the HITL feature, you should monitor the official Langflow GitHub releases page [11] or the Langflow blog [4].
Citations:
🏁 Script executed:
Repository: langflow-ai/langflow
Length of output: 786
🏁 Script executed:
Repository: langflow-ai/langflow
Length of output: 3195
🏁 Script executed:
Repository: langflow-ai/langflow
Length of output: 730
Replace the Langflow 1.11 example link on all HITL pages
The link currently 404s on both current and versioned docs. Update the current and versioned component/flow pages to a live release post or video URL and keep them in sync.
docs/docs/Components/human-input.mdx#L51-L53docs/docs/Flows/human-in-the-loop.mdx#L24-L26docs/versioned_docs/version-1.11.0/Components/human-input.mdx#L51-L53docs/versioned_docs/version-1.11.0/Flows/human-in-the-loop.mdx#L24-L26📍 Affects 4 files
docs/docs/Components/human-input.mdx#L51-L53(this comment)docs/docs/Flows/human-in-the-loop.mdx#L24-L26docs/versioned_docs/version-1.11.0/Components/human-input.mdx#L51-L53docs/versioned_docs/version-1.11.0/Flows/human-in-the-loop.mdx#L24-L26🤖 Prompt for AI Agents
Source: MCP tools