-
Notifications
You must be signed in to change notification settings - Fork 3.3k
v0.5.73: ci, helm updates, kb, ui fixes. note block enhancements #3017
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
Conversation
* fix(codegen): function prologue resolution edge cases * remove hacky fallback * case insensitive lookup * fix python nan and inf resolution * remove template literal check * fix tests * consolidate literal gen
…ce (#3007) * fix(docs): separate local and blob asset resolution for quick-reference ActionImage now uses local paths directly for PNGs while ActionVideo uses blob storage with proper path normalization (strips static/ prefix). Co-Authored-By: Claude Opus 4.5 <[email protected]> * refactor(docs): simplify asset resolution by using correct paths directly Remove path normalization logic from action-media component. Instead, use the appropriate paths in MDX: - PNGs: /static/quick-reference/... (local) - MP4s: quick-reference/... (blob via getAssetUrl) --------- Co-authored-by: Claude Opus 4.5 <[email protected]>
…igurations (#3013) * improvement(preview): consolidate block rendering and fix handle configurations * refactor(preview): extract SubflowContainerProps interface
…d minor styling inconsistencies between themes (#3014) * improvement(docs): updated logo, added lightbox to action media, fixed minor styling inconsistencies between themes * updated og image * ack comments
* fix(kb): workspace id required for creation * fix tests
* fix(max-tokens): anthropic models streaming vs non-streaming * default max inc * update the docs
…#3016) * feat(note-block): expand media embed support with tuned aspect ratios * fix(note-block): add artist parameter to Bandcamp embed URLs Include the artist subdomain in Bandcamp track and album embed URLs to ensure proper embed resolution. * fix(note-block): add required src attribute to track elements HTML spec requires track elements to have a src attribute. * fix(note-block): address embed URL matching issues - Fix YouTube regex to handle v= anywhere in query params - Fix Twitch channel match to exclude /clip/ URLs - Remove Mux support (HLS not supported in most browsers) - Remove Bandcamp support (requires numeric IDs, not slugs) Co-Authored-By: Claude Opus 4.5 <[email protected]> --------- Co-authored-by: Claude Opus 4.5 <[email protected]>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Greptile OverviewGreptile SummaryThis PR consolidates 11 separate feature/fix PRs into a single release (v0.5.73), covering CI automation, Helm deployment, knowledge base fixes, UI improvements, and provider enhancements. Key Changes:
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant User
participant CI as GitHub CI
participant App as Sim App
participant Provider as LLM Provider
participant Executor as Code Executor
participant KB as Knowledge Base
participant Helm as Helm Chart
Note over User,Helm: v0.5.73 Release Flow
User->>CI: Push version commit to main
CI->>CI: Run tests and build
CI->>CI: Create GHCR manifests
CI->>CI: Detect version from commit
CI->>CI: Create GitHub release
Note over User,App: Knowledge Base Creation
User->>App: Create knowledge base
App->>KB: createKnowledgeBase(data)
KB->>KB: Validate workspaceId (required)
KB->>KB: Check user permissions
KB->>KB: Create KB with workspaceId
KB-->>App: Return KB details
Note over User,Provider: LLM Request Flow
User->>App: Execute workflow with LLM block
App->>Provider: Generate completion request
Provider->>Provider: getMaxOutputTokensForModel(model, streaming)
alt Streaming Request
Provider->>Provider: Use max: 64000 tokens
else Non-Streaming Request
Provider->>Provider: Use default: 8192 tokens (prevent timeout)
end
Provider->>Provider: Execute LLM request
Provider-->>App: Return completion
Note over User,Executor: Function Block Code Generation
User->>App: Reference block output in function
App->>Executor: Resolve variable reference
Executor->>Executor: formatLiteralForCode(value, language)
alt Python Function
Executor->>Executor: Convert to Python literals (None, True, False, float('nan'))
else JavaScript Function
Executor->>Executor: Convert to JS literals (null, true, false, NaN)
end
Executor-->>App: Return formatted code
Note over User,App: Copilot Diff Zoom
User->>App: Apply copilot diff
App->>App: Detect changed blocks
App->>App: Wait for node dimensions
App->>App: fitViewToBounds(changedNodes)
App-->>User: Zoom to changed blocks
Note over User,Helm: Helm Branding Deployment
User->>Helm: Deploy with branding.enabled=true
Helm->>Helm: Create branding ConfigMap
Helm->>Helm: Mount ConfigMap to deployment
Helm-->>User: Deploy with custom assets
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No files reviewed, no comments
* improvement(switch): dark styling * improvement(settings): change deployed MCPs to MCPs servers * improvement(preview): added error paths, loop logic * improvement(preview): nested workflows preview * feat(preview): lightweight param * improvement(preview): staging changes integrated
* feat(code): undo-redo state * address greptile * address bugbot comments * fix debounce flush * inc debounce time * fix wand case * address comments
...orkspaceId]/logs/components/log-details/components/execution-snapshot/execution-snapshot.tsx
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.
Uh oh!
There was an error while loading. Please reload this page.