mirror of
https://github.com/hwchase17/langchain.git
synced 2026-03-17 18:45:44 +00:00
## Summary - Changes Dependabot schedule from `weekly` to `monthly` across all 4 update entries to reduce PR noise while keeping dependencies current - Adds `update-types` split (major vs minor+patch) to all dependency groups so breaking changes arrive in separate PRs from safe updates ## Why Weekly cadence generates excessive PRs in a monorepo this size. Monthly is the recommended cadence for non-security version updates (security updates are handled separately by GitHub). The update-type split ensures major (breaking) bumps don't get mixed with safe minor/patch updates, making review easier and safer. ## Test plan - [x] Verify Dependabot parses the updated config without errors (check Settings > Code security > Dependabot) - [x] Confirm next scheduled run produces grouped PRs split by update type --- > This PR was generated with assistance from an AI coding agent as part of a repository posture check. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
96 lines
2.2 KiB
YAML
96 lines
2.2 KiB
YAML
# Please see the documentation for all configuration options:
|
|
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
|
# and
|
|
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
|
|
|
|
version: 2
|
|
updates:
|
|
- package-ecosystem: "github-actions"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "monthly"
|
|
groups:
|
|
minor-and-patch:
|
|
patterns:
|
|
- "*"
|
|
update-types:
|
|
- "minor"
|
|
- "patch"
|
|
major:
|
|
patterns:
|
|
- "*"
|
|
update-types:
|
|
- "major"
|
|
|
|
- package-ecosystem: "uv"
|
|
directories:
|
|
- "/libs/core/"
|
|
- "/libs/langchain/"
|
|
- "/libs/langchain_v1/"
|
|
schedule:
|
|
interval: "monthly"
|
|
groups:
|
|
minor-and-patch:
|
|
patterns:
|
|
- "*"
|
|
update-types:
|
|
- "minor"
|
|
- "patch"
|
|
major:
|
|
patterns:
|
|
- "*"
|
|
update-types:
|
|
- "major"
|
|
|
|
- package-ecosystem: "uv"
|
|
directories:
|
|
- "/libs/partners/anthropic/"
|
|
- "/libs/partners/chroma/"
|
|
- "/libs/partners/deepseek/"
|
|
- "/libs/partners/exa/"
|
|
- "/libs/partners/fireworks/"
|
|
- "/libs/partners/groq/"
|
|
- "/libs/partners/huggingface/"
|
|
- "/libs/partners/mistralai/"
|
|
- "/libs/partners/nomic/"
|
|
- "/libs/partners/ollama/"
|
|
- "/libs/partners/openai/"
|
|
- "/libs/partners/openrouter/"
|
|
- "/libs/partners/perplexity/"
|
|
- "/libs/partners/qdrant/"
|
|
- "/libs/partners/xai/"
|
|
schedule:
|
|
interval: "monthly"
|
|
groups:
|
|
minor-and-patch:
|
|
patterns:
|
|
- "*"
|
|
update-types:
|
|
- "minor"
|
|
- "patch"
|
|
major:
|
|
patterns:
|
|
- "*"
|
|
update-types:
|
|
- "major"
|
|
|
|
- package-ecosystem: "uv"
|
|
directories:
|
|
- "/libs/text-splitters/"
|
|
- "/libs/standard-tests/"
|
|
- "/libs/model-profiles/"
|
|
schedule:
|
|
interval: "monthly"
|
|
groups:
|
|
minor-and-patch:
|
|
patterns:
|
|
- "*"
|
|
update-types:
|
|
- "minor"
|
|
- "patch"
|
|
major:
|
|
patterns:
|
|
- "*"
|
|
update-types:
|
|
- "major"
|