chore: dependabot + PHP 8.4/8.5 CI matrix + PHPUnit 13 allowance#5
chore: dependabot + PHP 8.4/8.5 CI matrix + PHPUnit 13 allowance#5karlwaldman wants to merge 2 commits into
Conversation
- Add .github/dependabot.yml (composer + github-actions, monthly) - Extend CI matrix with PHP 8.4 and 8.5 (SDK has zero runtime deps; full suite passes locally on PHP 8.5.8) - Allow phpunit ^13.0 in require-dev - verified locally: 16 tests / 80 assertions pass on PHPUnit 13.2.4; composer still resolves 10.x on PHP 8.1 runners composer validate --strict passes. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
|
Warning Review limit reached
Next review available in: 46 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (4)
✨ 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 |
The OILPRICEAPI_TEST_KEY secret now gets HTTP 402 on /v1/prices/past_week (historical data became a paid entitlement), which broke the smoke step on every matrix job - including on main, unrelated to this PR's changes. Historical access is a plan property, not an SDK feature: latest() above already proves auth + transport + parsing. Treat 402/403 on the past_week leg as a documented skip; any other error still fails. Verified locally against the live API with the same test key: - 402-plan key: exits 0 with 'past_week skipped' notice - full-access key: exits 0 with 'latest + past_week' Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
|
CI note: the initial run failed on all 5 matrix jobs at the live-smoke step, not the unit tests — the |
What
^10.5 || ^11.0 || ^12.0 || ^13.0so newer PHP runners get the current majorVerification (local)
vendor/bin/phpunit→ OK (16 tests, 80 assertions)composer validate --strictpassesNo runtime code touched — the SDK has zero runtime dependencies (ext-curl/ext-json only).
🤖 Generated with Claude Code