fix: Use private blob store access in agents app#11811
Merged
anthonyshew merged 2 commits intomainfrom Feb 12, 2026
Merged
Conversation
The Vercel Blob store is configured as private but all SDK calls used access: 'public', causing the server to reject every put() call. Update @vercel/blob to a snapshot with private store support, switch all blob operations to access: 'private', replace raw fetch() reads with the new authenticated get() function, and add an API proxy route for browser downloads.
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
1 Skipped Deployment
|
github-actions Bot
added a commit
that referenced
this pull request
Feb 12, 2026
## Release v2.8.8-canary.1 Versioned docs: https://v2-8-8-canary-1.turborepo.dev ### Changes - feat: Add dashboard with run tracking and live logs for agent sandboxes (#11802) (`63bc6f8`) - ci: Make check-examples conditional and cacheable via Turborepo (#11801) (`1bb3575`) - release(turborepo): 2.8.7-canary.3 (#11803) (`1c2b0e2`) - fix: Normalize bare LF to CRLF in TUI output to prevent garbled logs (#11804) (`21152cf`) - release(turborepo): 2.8.7 (#11806) (`30eab47`) - fix: Use private blob store access in agents app (#11811) (`679ae35`) - fix: Pass non-empty body when initializing blob log files (#11812) (`2c09b6c`) - docs: Geistdocs update (#11807) (`91d0e7b`) - fix: Allow overwriting existing blobs in run updates and log appends (#11813) (`d37d549`) - docs: Geistdocs update 2 (#11814) (`a738db8`) - fix: Set 5-hour timeout on security audit sandbox (#11815) (`dc6c27b`) - fix: Resolve Windows TUI hang caused by portable-pty 0.9.0 ConPTY changes (#11816) (`2b8c061`) Co-authored-by: Turbobot <turbobot@vercel.com>
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
Using private blob stores.