releases.shpreview
Home/Collections/Application Platforms/Week of June 29, 2026

Cloudflare Workers Types gets a major simplification

June 29 – July 5, 2026

Cloudflare shipped a major version bump for `@cloudflare/workers-types` that strips away years of compatibility baggage, while Vercel expanded its Sandbox with FUSE support and Turborepo added interactive task selection in the TUI.

A cleaner foundation for Cloudflare Workers

The headline this week is Cloudflare's @cloudflare/workers-types v5, a significant cleanup that removes all dated entrypoints like @cloudflare/workers-types/2022-11-30. The package now exposes only the latest runtime types through two entrypoints: @cloudflare/workers-types for the current compatibility date, and @cloudflare/workers-types/experimental for experimental APIs. For teams that need types matching a specific compatibility date, Cloudflare continues to recommend generating them with wrangler types. This simplification reduces maintenance burden and makes it clearer which types are current.

On the billing side, Cloudflare's Images binding now charges per unique transformation per calendar month, aligning with the model already used for URL-based transformations. Repeat requests for the same image and parameters count only once, and calls to .info() are no longer billed at all. This is a meaningful cost improvement for applications that transform images frequently.

Vercel's platform expands

Vercel shipped several notable enhancements. Vercel Sandbox now supports FUSE-based filesystems, letting you mount remote storage like S3 buckets or custom filesystems inside a running Sandbox. This opens up workflows for streaming large datasets directly from object storage or sharing state across Sandboxes through a common filesystem, without copying data into the Sandbox first.

Agent Runs, Vercel's observability feature for eve agent traces, are now inspectable through the Vercel MCP and CLI. The MCP exposes list_agent_run_projects, list_agent_runs, and get_agent_run_trace tools, while the CLI provides vercel agent-runs subcommands for listing, inspecting, and tracing runs. All subcommands support --json output, and traces render as markdown when piped for agent-driven debugging. This makes it significantly easier to debug agent behavior in production.

Turborepo's TUI gets clickable

Turborepo v2.10.3 and its canary follow-up bring the TUI to life with interactive task selection — you can now click rows to select tasks and automatically copy selections to clipboard on mouse release. A toggle between TUI and streamed logs is also available. The release also adds support for nub and aube package managers, and fixes several bugs including watch mode recovery from slow initial hashes and Bun scoped package dependency resolution.

AI SDK fixes and connections

The AI SDK shipped a targeted fix across two packages: AI SDK Anthropic v3.0.93 and @ai-sdk/anthropic@4.0.8 both now correctly forward thinking: { type: 'disabled' } to the Anthropic API. Previously, this option was silently dropped, leaving thinking enabled on models that default it on and potentially consuming the entire max_tokens budget. Separately, AI SDK Gateway v4.0.12 added support for Alibaba's Wan2.7 text-to-video and reference-to-video models, and AI SDK React v4.0.15 introduced experimental streaming transcription support for OpenAI's gpt-realtime-whisper and xAI WebSocket STT.

On the platform side, Vercel Connect v0.3.2 now surfaces human-readable connector display names through authorization challenges, so users see "Salesforce" instead of a title-cased file name. And Vercel CLI 54.19.0 introduced vercel vcr commands for managing the Vercel Container Registry, plus install as an alias for vercel integration add.

Quick hits

Railway added static outbound IPs and IPv6 support in the CLI, making it easier to whitelist traffic from Railway deployments. The Vercel CLI 54.20.1 cleanup patch added several missing commands to the root vercel --help listing, including ai-gateway, sandbox, and tokens. Finally, a batch of 30+ AI SDK dependency updates rolled out across the Vue, Svelte, RSC, and workflow packages, all bumping the core ai package to either v7.0.13 or v5.0.210 depending on the release line.

Releases covered