v0.5.72: azure connection string, supabase improvement, multitrigger resolution, docs quick reference#3003
Merged
icecrasher321 merged 4 commits intomainfrom Jan 26, 2026
Merged
v0.5.72: azure connection string, supabase improvement, multitrigger resolution, docs quick reference#3003icecrasher321 merged 4 commits intomainfrom
icecrasher321 merged 4 commits intomainfrom
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.
|
Contributor
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
|
* improvement(docs): added images and videos to quick references * moved mp4s to blob, completed quick reference guide
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.
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)