-
Notifications
You must be signed in to change notification settings - Fork 3k
v0.5.38: snap to grid, copilot ux improvements, billing line items #2505
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
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
Collaborator
waleedlatif1
commented
Dec 21, 2025
- improvement(queries): add workspaceId to execution logs, added missing indexes based on query insights (improvement(queries): add workspaceId to execution logs, added missing indexes based on query insights #2471)
- feat(copilot): show inline prompt to increase usage limit or upgrade plan (feat(copilot): show inline prompt to increase usage limit or upgrade plan #2465)
- fix(migrations): remove duplicate indexes (fix(migrations): remove duplicate indexes #2501)
- feat(audit): added audit log for billing line items (feat(audit): added audit log for billing line items #2500)
- fix(code): cmd-z after refocus should not clear subblock (fix(code): cmd-z after refocus should not clear subblock #2503)
- feat(settings): added snap to grid slider to settings (feat(settings): added snap to grid slider to settings #2504)
…g indexes based on query insights (#2471) * improvement(queries): added missing indexes * add workspaceId to execution logs * remove migration to prep merge * regen migration --------- Co-authored-by: Vikhyath Mondreti <vikhyath@simstudio.ai>
…plan (#2465) * Add limit v1 * fix ui for copilot upgrade limit inline * open settings modal * Upgrade plan button * Remove comments * Ishosted check * Fix hardcoded bumps --------- Co-authored-by: Vikhyath Mondreti <vikhyathvikku@gmail.com> Co-authored-by: Waleed <walif6@gmail.com> Co-authored-by: Vikhyath Mondreti <vikhyath@simstudio.ai>
* feat(audit): added audit log for billing line items * remove migration * reran migrations after resolving merge conflict * ack PR comment
* feat(settings): added snap to grid slider to settings * ack PR comments * ack PR comment
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
Contributor
Greptile SummaryThis release combines multiple features and performance improvements across the platform:
All database migrations follow safe patterns with proper backfilling and indexing. The changes maintain backward compatibility and include appropriate error handling. Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant User
participant Frontend
participant API
participant DB
participant Billing
Note over User,Billing: Copilot Usage Limit Flow
User->>Frontend: Use copilot
Frontend->>API: POST /api/billing/update-cost
API->>DB: Update user_stats
API->>DB: Insert usage_log entry
API->>Billing: checkAndBillOverageThreshold()
alt Usage limit exceeded
API-->>Frontend: 402 Payment Required
Frontend->>User: Show usage limit actions
User->>Frontend: Click $50 / $100 / Upgrade
Frontend->>API: Update usage limit
API->>DB: Update limit
Frontend->>API: Retry original request
end
Note over User,DB: Workflow Execution with Logging
User->>Frontend: Execute workflow
Frontend->>API: POST /api/workflows/{id}/execute
API->>DB: Start execution (with workspaceId)
API->>DB: Create execution log entry
Note over DB: workspaceId enables direct filtering
API->>Billing: Update costs & log usage
Billing->>DB: Batch insert usage_log entries
API-->>Frontend: Execution complete
Note over User,DB: Snap to Grid Feature
User->>Frontend: Open settings
Frontend->>API: GET /api/users/me/settings
API->>DB: Fetch settings
DB-->>Frontend: snapToGridSize: 0-50
User->>Frontend: Adjust slider
Frontend->>API: PATCH settings
API->>DB: Update snap_to_grid_size
Frontend->>Frontend: Apply to canvas
|
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.