chore(release): bump to v1.1.1#251
Conversation
Cuts a release that includes the apply_changes strategy-forwarding fix merged in #250. v1.1.0 silently dropped per-call ``loader``/ ``chunker``/``extractor``/``resolver`` overrides at the apply_changes boundary; v1.1.1 forwards them through to the inner ingest/update calls. Default behaviour is unchanged. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (3)
📝 WalkthroughWalkthroughVersion 1.1.1 release bumps the package version in ChangesRelease v1.1.1
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Poem
🚥 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 |
Summary
Cuts v1.1.1 to ship the
apply_changesstrategy-forwarding fix from #250.v1.1.0 silently dropped per-call
loader/chunker/extractor/resolveroverrides at theapply_changesboundary; downstream CI orchestrators usingapply_changesas their single entrypoint were getting SDK defaults regardless of what they passed. #250 closes the gap by forwarding the four kwargs through to the inneringest()andupdate()calls; this PR releases that fix.Default behaviour is unchanged —
apply_changescallers that don't pass strategies still get SDK defaults.Changes
pyproject.toml:version = "1.1.0"→"1.1.1"__init__.py:__version__ = "1.1.0"→"1.1.1"CHANGELOG.md: new[1.1.1] - 2026-05-13section documenting the forwarded kwargsAfter merge
v1.1.1frommain==1.1.0→==1.1.1to start using the new kwargsTest plan
test_facade.py— 114 passed)pip install graphrag-sdk==1.1.1 && python -c "import graphrag_sdk; assert graphrag_sdk.__version__ == '1.1.1'"🤖 Generated with Claude Code
Summary by CodeRabbit
apply_changesconvenience wrappers to properly forward configuration parameters into inner operations. Default behavior remains unchanged when overrides are not specified.