fix: update current version, remove auto dispatch from workflows, update langflow version#1544
Conversation
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
💤 Files with no reviewable changes (2)
WalkthroughThis PR updates package versions across the root and SDK packages (root to 0.5.0, Python SDK to 0.4.0, MCP SDK to 0.3.0, TypeScript SDK to 0.4.0) and reconfigures GitHub Actions workflows to control publishing behavior through manual dispatch triggers instead of automatic push-based triggers. ChangesRelease Configuration
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Suggested reviewers
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
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. Comment |
There was a problem hiding this comment.
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (1)
sdks/mcp/pyproject.toml (1)
24-26:⚠️ Potential issue | 🟠 Major | ⚡ Quick winUpdate MCP dependency to match SDK version.
The
openrag-sdkdependency is pinned to0.3.0rc1while this PR bumps the SDK to0.4.0. Update the dependency to prevent publishing an MCP package that depends on an older prerelease version.Suggested fix
dependencies = [ "mcp>=1.0.0", "httpx>=0.28.0", - "openrag-sdk==0.3.0rc1", + "openrag-sdk==0.4.0", ]🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@sdks/mcp/pyproject.toml` around lines 24 - 26, Update the pinned openrag-sdk dependency in pyproject.toml to match the SDK bump: replace the existing "openrag-sdk==0.3.0rc1" entry with the new SDK version (e.g., "openrag-sdk==0.4.0") so the MCP package depends on the correct SDK release; locate the dependency line in sdks/mcp/pyproject.toml and update the version string accordingly.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Outside diff comments:
In `@sdks/mcp/pyproject.toml`:
- Around line 24-26: Update the pinned openrag-sdk dependency in pyproject.toml
to match the SDK bump: replace the existing "openrag-sdk==0.3.0rc1" entry with
the new SDK version (e.g., "openrag-sdk==0.4.0") so the MCP package depends on
the correct SDK release; locate the dependency line in sdks/mcp/pyproject.toml
and update the version string accordingly.
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
Run ID: de210bca-bfa6-4705-bdaf-34523a27b31a
⛔ Files ignored due to path filters (4)
sdks/mcp/uv.lockis excluded by!**/*.locksdks/python/uv.lockis excluded by!**/*.locksdks/typescript/package-lock.jsonis excluded by!**/package-lock.jsonuv.lockis excluded by!**/*.lock
📒 Files selected for processing (11)
.github/workflows/build-multiarch.yml.github/workflows/publish-mcp.yml.github/workflows/publish-sdk-python.yml.github/workflows/publish-sdk-typescript.ymlDockerfile.langflowpyproject.tomlsdks/mcp/pyproject.tomlsdks/mcp/src/openrag_mcp/__init__.pysdks/python/openrag_sdk/__init__.pysdks/python/pyproject.tomlsdks/typescript/package.json
💤 Files with no reviewable changes (4)
- .github/workflows/publish-sdk-python.yml
- .github/workflows/build-multiarch.yml
- .github/workflows/publish-sdk-typescript.yml
- .github/workflows/publish-mcp.yml
This pull request updates version numbers across the OpenRAG project and makes changes to GitHub Actions workflows. The most significant updates are version bumps for the main project and all SDKs, an update to the
langflowDocker image, and simplification of workflow triggers to only allow manual runs.Version updates:
pyproject.tomlfrom0.3.2to0.5.0.sdks/mcp/pyproject.tomlandsdks/mcp/src/openrag_mcp/__init__.pyfrom0.3.0rc4/0.2.2to0.4.0. [1] [2]sdks/python/pyproject.tomlandsdks/python/openrag_sdk/__init__.pyfrom0.3.1/0.2.2to0.4.0. [1] [2]sdks/typescript/package.jsonandpackage-lock.jsonfrom0.3.1/0.2.2to0.4.0. [1] [2]Workflow updates:
pushfor all main workflows (build-multiarch.yml,publish-mcp.yml,publish-sdk-python.yml,publish-sdk-typescript.yml), making them only runnable manually viaworkflow_dispatch. [1] [2] [3] [4]Dependency updates:
Dockerfile.langflowfromlangflowai/langflow:1.9.0to1.9.2.Summary by CodeRabbit