v0.6.21: concurrency FF, blog theme#3904
Conversation
waleedlatif1
commented
Apr 2, 2026
- fix(blog): use landing theme variables in MDX components (fix(blog): use landing theme variables in MDX components #3900)
- fix(bullmq): restore CONCURRENCY_CONTROL_ENABLED flag guard (fix(bullmq): restore CONCURRENCY_CONTROL_ENABLED flag guard #3903)
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
PR SummaryMedium Risk Overview Aligns blog MDX styling with landing theme variables. Updates paragraph/list text colors and inline Written by Cursor Bugbot for commit 727bb1c. Configure here. |
Greptile SummaryThis PR bundles two focused bug fixes: (1) aligns blog MDX components to use landing-page theme CSS variables (
Confidence Score: 5/5Safe to merge — changes are minimal, targeted, and correct with no regressions introduced. No P0 or P1 issues found. All three files make precise, low-risk changes: CSS variable renames in a presentational file, a feature-flag guard restore, and a matching env var declaration. Logic and types are consistent throughout. No files require special attention. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Request arrives] --> B{isBullMQEnabled?}
B -- "CONCURRENCY_CONTROL_ENABLED=true AND REDIS_URL set" --> C[BullMQ / Concurrency Queue]
B -- "CONCURRENCY_CONTROL_ENABLED=false OR REDIS_URL missing" --> D[Inline Execution]
C --> E[Worker processes job]
D --> F[Direct execution]
E --> G[Response]
F --> G
Reviews (1): Last reviewed commit: "fix(bullmq): restore CONCURRENCY_CONTROL..." | Re-trigger Greptile |