v0.5.73: ci, helm updates, kb, ui fixes. note block enhancements#3017
Merged
waleedlatif1 merged 18 commits intomainfrom Jan 27, 2026
Merged
v0.5.73: ci, helm updates, kb, ui fixes. note block enhancements#3017waleedlatif1 merged 18 commits intomainfrom
waleedlatif1 merged 18 commits intomainfrom
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 <noreply@anthropic.com> * 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 <noreply@anthropic.com>
…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 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
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
|
* 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.
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.
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.