chore: bump langflow version#9402
Conversation
feat: add NVIDIA Remix starter template Introduced a new JSON configuration file for the NVIDIA Remix starter project, defining nodes and edges for chat input, output, and agent interactions. This setup enhances the integration of the NVIDIA RTX Remix Toolkit REST API, providing a structured approach for building chat-based applications. Co-authored-by: Gabriel Luiz Freitas Almeida <gabriel@langflow.org>
feat: add NVIDIA Remix starter template Introduced a new JSON configuration file for the NVIDIA Remix starter project, defining nodes and edges for chat input, output, and agent interactions. This setup enhances the integration of the NVIDIA RTX Remix Toolkit REST API, providing a structured approach for building chat-based applications. Co-authored-by: Gabriel Luiz Freitas Almeida <gabriel@langflow.org>
Updated the langflow-base package version in pyproject.toml and uv.lock to 0.5.0.post2 for release or deployment purposes.
WalkthroughBumped project version metadata in two pyproject.toml files: root project from 1.5.0.post1 to 1.5.0.post2, and src/backend/base project from 0.5.0.post1 to 0.5.0.post2. No other changes. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Possibly related PRs
Suggested labels
Suggested reviewers
Tip 🔌 Remote MCP (Model Context Protocol) integration is now available!Pro plan users can now connect to remote MCP servers from the Integrations page. Connect with popular remote MCPs such as Notion and Linear to add more context to your reviews and chats. ✨ Finishing Touches🧪 Generate unit tests
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
Status, Documentation and Community
|
|
There was a problem hiding this comment.
Actionable comments posted: 1
📜 Review details
Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
💡 Knowledge Base configuration:
- MCP integration is disabled by default for public repositories
- Jira integration is disabled by default for public repositories
- Linear integration is disabled by default for public repositories
You can enable these settings in your CodeRabbit configuration.
⛔ Files ignored due to path filters (1)
uv.lockis excluded by!**/*.lock
📒 Files selected for processing (2)
pyproject.toml(1 hunks)src/backend/base/pyproject.toml(1 hunks)
🔇 Additional comments (1)
src/backend/base/pyproject.toml (1)
3-3: Approve: langflow-base 0.5.0.post2 bump verified — no action requiredChecks performed — findings:
- src/backend/base/pyproject.toml:3 — version = "0.5.0.post2"
- pyproject.toml:3 — version = "1.5.0.post2" (root package version; separate)
- pyproject.toml:20 — dependency "langflow-base~=0.5.0" (permits post releases)
- No references to 1.5.0.post1 or 0.5.0.post1 remain
Conclusion: metadata-only bump is compatible with the root dependency pin; no changes needed.
| [project] | ||
| name = "langflow" | ||
| version = "1.5.0.post1" | ||
| version = "1.5.0.post2" |
There was a problem hiding this comment.
💡 Verification agent
🧩 Analysis chain
Root project version bumped to 1.5.0.post2 — LGTM.
Matches the base bump; dependency constraint on langflow-base "~=0.5.0" remains compatible with 0.5.0.post2.
Optionally verify consistency across the repo and absence of stale tags:
🏁 Script executed:
#!/bin/bash
set -euo pipefail
echo "Show updated root version:"
rg -n --glob 'pyproject.toml' $'^version\\s*=\\s*"1\\.5\\.0\\.post2"$' -n
echo
echo "Ensure no references to 1.5.0.post1 remain (expect no output):"
rg -n '1\.5\.0\.post1' || true
echo
echo "Ensure no references to 0.5.0.post1 remain (expect no output):"
rg -n '0\.5\.0\.post1' || trueLength of output: 1471
🏁 Script executed:
#!/bin/bash
set -euo pipefail
echo "Search for 'langflow-base' occurrences:"
rg -n "langflow-base" || true
echo
echo "Show pyproject.toml (first 240 lines):"
sed -n '1,240p' pyproject.toml || true
echo
echo "List files that still reference 1.5.0.post1:"
rg -n '1\.5\.0\.post1' || trueLength of output: 11198
Root version bumped to 1.5.0.post2 — stale references to 1.5.0.post1 found
pyproject.toml is updated and langflow-base ~=0.5.0 remains compatible, but the repo still contains references to 1.5.0.post1 that should be updated or confirmed intentional:
- docs/openapi.json — "version": "1.5.0.post1" (line 5)
- src/backend/base/langflow/initial_setup/starter_projects/Knowledge Retrieval.json — "lf_version" (lines 109, 226), "last_tested_version" (line 706)
- src/backend/base/langflow/initial_setup/starter_projects/Knowledge Ingestion.json — "lf_version" (lines 89, 340), "last_tested_version" (line 1049)
- src/backend/base/langflow/initial_setup/starter_projects/Instagram Copywriter.json — "last_tested_version" (line 3119)
Action: replace 1.5.0.post1 → 1.5.0.post2 in these files (or confirm they should remain), and regenerate docs/openapi.json if it’s auto-generated.
* bug: re-add NVIDIA Remix starter template (#8994) feat: add NVIDIA Remix starter template Introduced a new JSON configuration file for the NVIDIA Remix starter project, defining nodes and edges for chat input, output, and agent interactions. This setup enhances the integration of the NVIDIA RTX Remix Toolkit REST API, providing a structured approach for building chat-based applications. Co-authored-by: Gabriel Luiz Freitas Almeida <gabriel@langflow.org> * chore(release): bump to 1.5.0.post2 * bug: re-add NVIDIA Remix starter template (#8994) feat: add NVIDIA Remix starter template Introduced a new JSON configuration file for the NVIDIA Remix starter project, defining nodes and edges for chat input, output, and agent interactions. This setup enhances the integration of the NVIDIA RTX Remix Toolkit REST API, providing a structured approach for building chat-based applications. Co-authored-by: Gabriel Luiz Freitas Almeida <gabriel@langflow.org> * Bump langflow-base version to 0.5.0.post2 Updated the langflow-base package version in pyproject.toml and uv.lock to 0.5.0.post2 for release or deployment purposes. --------- Co-authored-by: Sebastián Estévez <estevezsebastian@gmail.com> Co-authored-by: Gabriel Luiz Freitas Almeida <gabriel@langflow.org>
* bug: re-add NVIDIA Remix starter template (#8994) feat: add NVIDIA Remix starter template Introduced a new JSON configuration file for the NVIDIA Remix starter project, defining nodes and edges for chat input, output, and agent interactions. This setup enhances the integration of the NVIDIA RTX Remix Toolkit REST API, providing a structured approach for building chat-based applications. Co-authored-by: Gabriel Luiz Freitas Almeida <gabriel@langflow.org> * chore(release): bump to 1.5.0.post2 * bug: re-add NVIDIA Remix starter template (#8994) feat: add NVIDIA Remix starter template Introduced a new JSON configuration file for the NVIDIA Remix starter project, defining nodes and edges for chat input, output, and agent interactions. This setup enhances the integration of the NVIDIA RTX Remix Toolkit REST API, providing a structured approach for building chat-based applications. Co-authored-by: Gabriel Luiz Freitas Almeida <gabriel@langflow.org> * Bump langflow-base version to 0.5.0.post2 Updated the langflow-base package version in pyproject.toml and uv.lock to 0.5.0.post2 for release or deployment purposes. --------- Co-authored-by: Sebastián Estévez <estevezsebastian@gmail.com> Co-authored-by: Gabriel Luiz Freitas Almeida <gabriel@langflow.org>



This pull request includes minor version bumps for both the main
langflowpackage and itslangflow-basedependency. These changes update the package versions to reflect new releases.langflowpackage version from1.5.0.post1to1.5.0.post2inpyproject.toml.langflow-basepackage version from0.5.0.post1to0.5.0.post2insrc/backend/base/pyproject.toml.Summary by CodeRabbit