Merged
Conversation
added 4 commits
July 4, 2025 13:06
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
1 Skipped Deployment
|
Contributor
There was a problem hiding this comment.
PR Summary
Added missing migration for auto_pan feature and modernized several components with ES2022 features.
- Added
apps/sim/db/migrations/0050_big_mattie_franklin.sqlto introduce auto_pan boolean column with default true in settings table - Updated TypeScript target to ES2022 in
apps/sim/tsconfig.jsonenabling newer features likeObject.hasOwn() - Modified
apps/sim/executor/resolver.tsto exposeaccessibleBlocksMapproperty publicly - Added parallel execution support in
apps/sim/app/api/__test-utils__/utils.tswith new sampleWorkflowState structure
7 files reviewed, 1 comment
Edit PR Review Bot Settings | Greptile
Comment on lines
694
to
699
| if (this.workflowInput && typeof this.workflowInput === 'object') { | ||
| // Check if this is a chat workflow input (has both input and conversationId) | ||
| if ( | ||
| Object.prototype.hasOwnProperty.call(this.workflowInput, 'input') && | ||
| Object.prototype.hasOwnProperty.call(this.workflowInput, 'conversationId') | ||
| Object.hasOwn(this.workflowInput, 'input') && | ||
| Object.hasOwn(this.workflowInput, 'conversationId') | ||
| ) { |
Contributor
There was a problem hiding this comment.
style: This duplicate code block could be extracted into a helper function to avoid repetition of the property checking logic
|
✅ No security or compliance issues detected. Reviewed everything up to 74d536a. Security Overview
Detected Code ChangesThe diff is too large to display a summary of code changes. Reply to this PR with |
icecrasher321
added a commit
that referenced
this pull request
Jul 4, 2025
* add autopan migration * fix lint * fix linter * fix tests --------- Co-authored-by: Vikhyath Mondreti <vikhyathmondreti@vikhyaths-air.lan>
icecrasher321
added a commit
that referenced
this pull request
Jul 4, 2025
* feat(logging): add additional logs for proxy routes * fix(blocks): workflow handler not working outside gui (#609) * fix: key to call api internally for workflow block * feat: use jwt for internal auth to avoid a static key * chore: formatter * fix(sidebar): added loop & parallel subblcoks to sidebar search * merged improvement/connection into staging (#604) * merged improvement/connection into staging * fix: merge conflicts and improved block path calculation * fix: removed migration * fix: removed duplicate call * fix: resolver and merge conflicts * fix: knowledge base folder * fix: settings modal * fix: typeform block * fix: parallel handler * fix: stores index * fix: tests * fix: tag-dropdown * improvement: start block input and tag dropdown * fix block id resolution + missing bracket * fix lint * fix test * works * fix * fix lint * Revert "fix lint" This reverts commit 433e2f9. --------- Co-authored-by: Vikhyath Mondreti <vikhyathvikku@gmail.com> Co-authored-by: Vikhyath Mondreti <vikhyathmondreti@Vikhyaths-MacBook-Air.local> * fix(autopan): migration missing (#614) * add autopan migration * fix lint * fix linter * fix tests --------- Co-authored-by: Vikhyath Mondreti <vikhyathmondreti@vikhyaths-air.lan> --------- Co-authored-by: Waleed Latif <walif6@gmail.com> Co-authored-by: Aditya Tripathi <aditya@climactic.co> Co-authored-by: Emir Karabeg <78010029+emir-karabeg@users.noreply.github.com> Co-authored-by: Vikhyath Mondreti <vikhyathmondreti@Vikhyaths-MacBook-Air.local> Co-authored-by: Vikhyath Mondreti <vikhyathmondreti@vikhyaths-air.lan>
waleedlatif1
pushed a commit
that referenced
this pull request
Jul 7, 2025
* add autopan migration * fix lint * fix linter * fix tests --------- Co-authored-by: Vikhyath Mondreti <vikhyathmondreti@vikhyaths-air.lan>
waleedlatif1
pushed a commit
that referenced
this pull request
Jul 7, 2025
* add autopan migration * fix lint * fix linter * fix tests --------- Co-authored-by: Vikhyath Mondreti <vikhyathmondreti@vikhyaths-air.lan>
arenadeveloper02
pushed a commit
to arenadeveloper02/p2-sim
that referenced
this pull request
Sep 19, 2025
* feat(logging): add additional logs for proxy routes * fix(blocks): workflow handler not working outside gui (simstudioai#609) * fix: key to call api internally for workflow block * feat: use jwt for internal auth to avoid a static key * chore: formatter * fix(sidebar): added loop & parallel subblcoks to sidebar search * merged improvement/connection into staging (simstudioai#604) * merged improvement/connection into staging * fix: merge conflicts and improved block path calculation * fix: removed migration * fix: removed duplicate call * fix: resolver and merge conflicts * fix: knowledge base folder * fix: settings modal * fix: typeform block * fix: parallel handler * fix: stores index * fix: tests * fix: tag-dropdown * improvement: start block input and tag dropdown * fix block id resolution + missing bracket * fix lint * fix test * works * fix * fix lint * Revert "fix lint" This reverts commit 433e2f9. --------- Co-authored-by: Vikhyath Mondreti <vikhyathvikku@gmail.com> Co-authored-by: Vikhyath Mondreti <vikhyathmondreti@Vikhyaths-MacBook-Air.local> * fix(autopan): migration missing (simstudioai#614) * add autopan migration * fix lint * fix linter * fix tests --------- Co-authored-by: Vikhyath Mondreti <vikhyathmondreti@vikhyaths-air.lan> --------- Co-authored-by: Waleed Latif <walif6@gmail.com> Co-authored-by: Aditya Tripathi <aditya@climactic.co> Co-authored-by: Emir Karabeg <78010029+emir-karabeg@users.noreply.github.com> Co-authored-by: Vikhyath Mondreti <vikhyathmondreti@Vikhyaths-MacBook-Air.local> Co-authored-by: Vikhyath Mondreti <vikhyathmondreti@vikhyaths-air.lan>
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.
Description
Type of change
Checklist:
bun run test)Security Considerations: