Original text is not available for public display.
Workers - Faster Workers Builds with Build Caching and Watch Paths
Cloudflare Developer Platform Changelog · 2024-12-29
Related items
Workers - Build image policies for Workers Builds and Cloudflare Pages
We've published build image policies for Workers Builds and Cloudflare Pages , which establish: Minor version updates : We typically update preinstalled software to the latest available minor version without notice. For tools that don't follow semantic versioning (e.g., Bun or Hugo), we provide 3 months’ notice. Maj...
Agents, Workers - Build MCP servers with the Agents SDK
The Agents SDK now includes built-in support for building remote MCP (Model Context Protocol) servers directly as part of your Agent. This allows you to easily create and manage MCP servers, without the need for additional infrastructure or configuration. The SDK includes a new MCPAgent class that extends the Agent...
Agents, Workers, Workflows - Build AI Agents with Example Prompts
We've added an example prompt to help you get started with building AI agents and applications on Cloudflare Workers , including Workflows , Durable Objects , and Workers KV . You can use this prompt with your favorite AI model, including Claude 3.5 Sonnet, OpenAI's o3-mini, Gemini 2.0 Flash, or Llama 3.3 on Workers...
Workers - Built with Cloudflare button
We've updated our "Built with Cloudflare" button to make it easier to share that you're building on Cloudflare with the world. Embed it in your project's README, blog post, or wherever you want to let people know. Check out the documentation for usage information.
Workers, Pages - Retry Pages & Workers Builds Directly from GitHub
You can now retry your Cloudflare Pages and Workers builds directly from GitHub. No need to switch to the Cloudflare Dashboard for a simple retry! Let\u2019s say you push a commit, but your build fails due to a spurious error like a network timeout. Instead of going to the Cloudflare Dashboard to manually retry, you...
Workers - Bypass caching for subrequests made from Cloudflare Workers, with Request.cache
You can now use the cache property of the Request interface to bypass Cloudflare's cache when making subrequests from Cloudflare Workers , by setting its value to no-store . JavaScript export default { async fetch ( req , env , ctx ) { const request = new Request ( "https://cloudflare.com" , { cache : "no-store" , }...