v0.5.98: change detection improvements, rate limit and code execution fixes, removed retired models, hex integration#3294
Merged
waleedlatif1 merged 6 commits intomainfrom Feb 22, 2026
Merged
Conversation
…#3287) * fix(workflow-changes): change detection logic divergence * use shared helper
…ing Redis outages (#3289)
* feat(oauth): add CIMD support for client metadata discovery * fix(oauth): add response size limit, redirect_uri and logo_uri validation to CIMD - Add maxResponseBytes (256KB) to prevent oversized responses - Validate redirect_uri schemes (https/http only) and reject commas - Validate logo_uri requires HTTPS, silently drop invalid logos * fix(oauth): add explicit userId null for CIMD client insert * fix(oauth): fix redirect_uri error handling, skip upsert on cache hit - Move scheme check outside try/catch so specific error isn't swallowed - Return fromCache flag from resolveClientMetadata to skip redundant DB writes * fix(oauth): evict CIMD cache on upsert failure to allow retry
* feat(tools): added hex * update tool names
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
Contributor
Greptile SummaryThis release combines reliability improvements for Redis handling and code execution with new OAuth CIMD support, Hex integration, and retired model cleanup. Key Changes:
Confidence Score: 5/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Rate Limiter Request] --> B{Storage Method?}
B -->|Redis| C[Get Redis Client]
B -->|DB| D[Use PostgreSQL]
C --> E{Redis Available?}
E -->|Yes| F[Use RedisTokenBucket]
E -->|No| G[Fallback to PostgreSQL]
F --> H{Storage Error?}
G --> H
D --> H
H -->|Error| I[Fail Open - Allow Request]
H -->|Success| J[Apply Rate Limit]
K[Redis Health Monitor] -->|PING every 30s| L{PING Success?}
L -->|Success| M[Reset Failure Count]
L -->|Fail| N[Increment Failure Count]
N --> O{3+ Failures?}
O -->|Yes| P[Force Reconnect]
O -->|No| K
P --> Q[Notify Listeners]
Q --> R[Reset Cached Adapter]
R --> S[Exponential Backoff + Jitter]
S --> C
Last reviewed commit: c52f78c |
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 2 potential issues.
Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.
...workspaceId]/w/[workflowId]/components/panel/components/deploy/hooks/use-change-detection.ts
Show resolved
Hide resolved
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.
Uh oh!
There was an error while loading. Please reload this page.