Freeze subscription credits during payment recovery#957
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (5)
📝 WalkthroughWalkthroughThe PR adds atomic Redis transitions for delinquency credit freezes and paid-cycle bucket resets, integrates them into Stripe subscription webhooks with event timestamps and outcome logging, and expands unit and integration coverage for idempotency, stale events, and failure handling. ChangesBilling credit transitions
Estimated code review effort: 4 (Complex) | ~45 minutes Sequence Diagram(s)sequenceDiagram
participant Stripe
participant Webhook
participant RateLimit
participant Redis
participant PostHog
Stripe->>Webhook: invoice.payment_failed
Webhook->>RateLimit: freezeRateLimitBucketForDelinquency
RateLimit->>Redis: execute delinquency freeze script
Redis-->>RateLimit: transition outcome
Webhook->>PostHog: log processed or stale outcome
Possibly related PRs
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Comment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
past_dueinvoice.paid; leave the webhook unprocessed when Redis cannot persist the transition so Stripe retriesRevenue behavior
Validation
corepack pnpm jest --runInBand(296 suites, 2,933 tests)corepack pnpm typecheckcorepack pnpm lint(passes with 5 existing frontend warnings)corepack pnpm exec prettier --check app/api/subscription/webhook/route.ts app/api/subscription/webhook/__tests__/route.test.ts lib/rate-limit/token-bucket.ts lib/rate-limit/index.ts lib/rate-limit/__tests__/token-bucket.integration.test.tscorepack pnpm exec next build --webpackManual verification
invoice.paiddoes not refill it again.Summary by CodeRabbit
New Features
Bug Fixes