docs: bump migration guide install snippets to 0.7.0#582
Conversation
Closes #574. docs/how-to/migration.md install instructions referenced uselesskey 0.6.0 even though v0.7.0 is on crates.io. Update each install snippet to 0.7.0 while keeping legitimate "from 0.6.0" historical references intact.
|
Warning You have reached your daily quota limit. Please wait up to 24 hours and I will start processing your requests again! |
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
|
Warning Rate limit exceeded
You’ve run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: ASSERTIVE Plan: Pro Run ID: 📒 Files selected for processing (1)
✨ Finishing Touches🧪 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 |
Why
docs/how-to/migration.mdinstall snippets still pointed atuselesskey 0.6.0even though v0.7.0 is published on crates.io. New users following the migration guide were pinning an outdated minor. Closes #574.What
Bumped 9 install/version references in
docs/how-to/migration.mdfrom0.6.0to0.7.0:# Migrating to+ "uselesskey" +0.6.0->0.7.0using+ "uselesskey" +**0.6.0**->**0.7.0**uselesskey = { version = "0.6.0", ... features = ["rsa", "jwk"] }->"0.7.0"uselesskey = { version = "0.6.0", ... features = ["token"] }->"0.7.0"uselesskey = { version = "0.6.0", ... features = ["x509"] }->"0.7.0"uselesskey-rustls = { version = "0.6.0" }->"0.7.0"uselesskey = { version = "0.6.0", ... features = ["rsa", "hmac", "jwk"] }->"0.7.0"uselesskey-jsonwebtoken = { version = "0.6.0" }->"0.7.0"uselesskey-jose-openid = { version = "0.6.0" }->"0.7.0"Add+ "uselesskey" +0.6.0 to [dev-dependencies]->0.7.0Preserved
No "from 0.6.0" historical references existed in this file, so nothing to preserve there. Out-of-scope (intentionally untouched) per issue #574:
CHANGELOG.md,docs/explanation/roadmap.md,docs/release/v0.7.0-category-notes.md,docs/release/evidence-matrix-v0.7.0.md,docs/explanation/roadmap-followups-0251.md— all legitimate historical / baseline references.Test plan
grep -n "0\.6\.0" docs/how-to/migration.md-> no matchescargo xtask docs-sync --check-> exit 0 (migration.md is not part of docs-sync inventory)cargo xtask typos-> exit 0git diff --check-> clean