-
Notifications
You must be signed in to change notification settings - Fork 3.3k
v0.5.72: azure connection string, supabase improvement, multitrigger resolution, docs quick reference #3003
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(docs): update requirements to be more accurate for deploying the app * updated kb to support 1536 dimension vectors for models other than text embedding 3 small * fix(storage): support Azure connection string for presigned URLs * fix(kb): update test for embedding dimensions parameter * fix(storage): align credential source ordering for consistency
* fix(supabase): storage upload + add basic mode version * fix subblock update * remove redundant check in a2a * add check consistently for baseline diff
* fix(multi-trigger): resolution paths for triggers * fix trigger input format version * fix output condition logic * update type guard: * fix
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Greptile OverviewGreptile SummaryThis release consolidates three important fixes across storage handling, Supabase integration, and multi-trigger resolution: Azure Storage Enhancement
Supabase Storage Upload Improvement
Multi-Trigger Resolution Fix
Additional Improvements
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant User
participant SupabaseBlock
participant StorageUploadAPI
participant FileUtils
participant SupabaseStorage
participant AzureClient
participant AzureSAS
Note over User,SupabaseStorage: Supabase Storage Upload Flow
User->>SupabaseBlock: Upload file (basic/advanced mode)
SupabaseBlock->>StorageUploadAPI: POST /api/tools/supabase/storage-upload
alt File object (basic mode)
StorageUploadAPI->>FileUtils: processSingleFileToUserFile()
FileUtils-->>StorageUploadAPI: UserFile
StorageUploadAPI->>FileUtils: downloadFileFromStorage()
FileUtils-->>StorageUploadAPI: Buffer
else String input (advanced mode)
alt Data URL format
StorageUploadAPI->>StorageUploadAPI: Extract MIME + base64
end
alt Base64 detected
StorageUploadAPI->>StorageUploadAPI: Decode base64 + verify
else Plain text
StorageUploadAPI->>StorageUploadAPI: Convert to Buffer
end
end
StorageUploadAPI->>SupabaseStorage: POST with buffer + headers
SupabaseStorage-->>StorageUploadAPI: Upload result
StorageUploadAPI-->>User: Success with publicUrl
Note over User,AzureSAS: Azure Presigned URL Flow
User->>AzureClient: Request presigned URL
alt Connection string provided
AzureClient->>AzureClient: parseConnectionString()
AzureClient->>AzureClient: Extract accountName + accountKey
else Account credentials provided
AzureClient->>AzureClient: Use accountName + accountKey
end
AzureClient->>AzureSAS: generateBlobSASQueryParameters()
AzureSAS-->>AzureClient: SAS token
AzureClient-->>User: Presigned URL with SAS
Note over User,SupabaseBlock: Multi-Trigger Resolution Flow
User->>SupabaseBlock: Execute workflow with trigger
SupabaseBlock->>SupabaseBlock: buildIntegrationTriggerOutput()
SupabaseBlock->>SupabaseBlock: Merge structuredInput fields
SupabaseBlock->>SupabaseBlock: Merge workflowInput (preserve non-null)
SupabaseBlock->>SupabaseBlock: getBlockSchema() - tool outputs first
SupabaseBlock-->>User: Resolved trigger output
|
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.
1 file reviewed, 1 comment
* improvement(docs): added images and videos to quick references * moved mp4s to blob, completed quick reference guide
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.
Summary
fix(storage): support Azure connection string for presigned URLs; align credential source ordering; update KB embedding dimensions tests; update deploy docs requirements (#2997)
fix(supabase): storage upload + add basic mode version; subblock update fixes; cleanup redundant checks (#2996)
fix(multi-trigger): resolution paths for triggers; fix trigger input format version; fix output condition logic; update type guard (#3002)