Cloudflare Products
- AI20 releases
- Analytics23 releases
- Application Performance13 releases
- Application Security30 releases
- Cloudflare One27 releases
- Consumer Services7 releases
- Core Platform30 releases
- Developer Platform44 releases
- Docs Collections13 releases
- Media7 releases
- Network Security11 releases
- Storage16 releases
All Cloudflare Release Notes
- Dec 22, 2025
- Parsed from source:Dec 22, 2025
- Detected by Releasebot:Dec 22, 2025
Developer Platform by Cloudflare
Agents SDK v0.3.0, workers-ai-provider v3.0.0, and ai-gateway-provider v3.0.0 with AI SDK v6 support
Agents SDK v0.3.0 ships with AI SDK v6 compatibility, unified tool pattern, dynamic tool approval, and improved React hooks and streaming. It strengthens tool support, error handling, and human‑in‑the‑loop workflows, plus a smooth migration from v5. Providers updated to v3.0.0 for Cloudflare AI models and AI Gateway.
Agents SDK v0.3.0 release
We've shipped a new release for the Agents SDK ↗ Agents SDK v0.3.0 bringing full compatibility with AI SDK v6 ↗ AI SDK v6 and introducing the unified tool pattern, dynamic tool approval, and enhanced React hooks with improved tool handling.
This release includes improved streaming and tool support, dynamic tool approval (for "human in the loop" systems), enhanced React hooks with onToolCall callback, improved error handling for streaming responses, and seamless migration from v5 patterns.
This makes it ideal for building production AI chat interfaces with Cloudflare Workers AI models, agent workflows, human-in-the-loop systems, or any application requiring reliable tool execution and approval workflows.
Additionally, we've updated workers-ai-provider v3.0.0, the official provider for Cloudflare Workers AI models, and ai-gateway-provider v3.0.0, the provider for Cloudflare AI Gateway, to be compatible with AI SDK v6.
Original source Report a problem - Dec 22, 2025
- Parsed from source:Dec 22, 2025
- Detected by Releasebot:Dec 23, 2025
AI by Cloudflare
Agents SDK v0.3.0, workers-ai-provider v3.0.0, and ai-gateway-provider v3.0.0 with AI SDK v6 support
New release: Agents SDK v0.3.0 adds AI SDK v6 compatibility, unified tool pattern, dynamic tool approval, and enhanced React hooks. It improves streaming and error handling and eases v5 migration for production AI chat with human-in-the-loop apps. Providers updated to v3.0.0 for AI SDK v6 alignment.
v0.3.0
We've shipped a new release for the Agents SDK v0.3.0 bringing full compatibility with AI SDK v6 and introducing the unified tool pattern, dynamic tool approval, and enhanced React hooks with improved tool handling.
This release includes improved streaming and tool support, dynamic tool approval (for "human in the loop" systems), enhanced React hooks with onToolCall callback, improved error handling for streaming responses, and seamless migration from v5 patterns.
This makes it ideal for building production AI chat interfaces with Cloudflare Workers AI models, agent workflows, human-in-the-loop systems, or any application requiring reliable tool execution and approval workflows.
Additionally, we've updated workers-ai-provider v3.0.0, the official provider for Cloudflare Workers AI models, and ai-gateway-provider v3.0.0, the provider for Cloudflare AI Gateway, to be compatible with AI SDK v6.
Original source Report a problem - Dec 19, 2025
- Parsed from source:Dec 19, 2025
- Detected by Releasebot:Dec 19, 2025
- Modified by Releasebot:Dec 27, 2025
Developer Platform by Cloudflare
Static prerendering support for TanStack Start
TanStack Start apps can now prerender routes to static HTML at build time with access to build time environment variables and bindings, and serve them as static assets. To enable prerendering, configure the prerender option of the TanStack Start plugin in your Vite config.
Original source Report a problem - Dec 18, 2025
- Parsed from source:Dec 18, 2025
- Detected by Releasebot:Dec 18, 2025
Developer Platform by Cloudflare
Build image policies for Workers Builds and Cloudflare Pages
Cloudflare publishes build image policies for Workers Builds and Pages, outlining how minor updates happen, major version bumps with notice, and deprecation timelines. It confirms automatic migration to v3 and options to override versions.
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.
- Major version updates: Before preinstalled software reaches end-of-life, we update to the next stable LTS version with 3 months’ notice.
- Build image version deprecation (Pages only): We provide 6 months’ notice before deprecation. Projects on v1 or v2 will be automatically moved to v3 on their specified deprecation dates.
To prepare for updates, monitor the Cloudflare Changelog ↗, dashboard notifications, and email. You can also override default versions to maintain specific versions.
Original source Report a problem - Dec 18, 2025
- Parsed from source:Dec 18, 2025
- Detected by Releasebot:Dec 19, 2025
AI by Cloudflare
New AI Crawl Control Overview tab
AI Crawl Control gets a default Overview view with a new executive summary, operator grouping, and customizable filters. The Crawlers tab remains for individual crawler controls, enabling rapid monitoring of AI traffic across major operators.
The Overview tab is now the default view in AI Crawl Control. The previous default view with controls for individual AI crawlers is available in the Crawlers tab.
What's new
- Executive summary — Monitor total requests, volume change, most common status code, most popular path, and high-volume activity
- Operator grouping — Track crawlers by their operating companies (OpenAI, Microsoft, Google, ByteDance, Anthropic, Meta)
- Customizable filters — Filter your snapshot by date range, crawler, operator, hostname, or path
Get started
- Log in to the Cloudflare dashboard and select your account and domain.
- Go to AI Crawl Control, where the Overview tab opens by default with your activity snapshot.
- Use filters to customize your view by date range, crawler, operator, hostname, or path.
- Navigate to the Crawlers tab to manage controls for individual crawlers.
Learn more about analyzing AI traffic and managing AI crawlers.
Original source Report a problem - Dec 18, 2025
- Parsed from source:Dec 18, 2025
- Detected by Releasebot:Dec 19, 2025
R2 Data Catalog now supports automatic snapshot expiration
R2 Data Catalog adds automatic Iceberg snapshot expiration to keep tables fast and cheap. Old snapshots are pruned by age and count, boosting performance and reducing storage, with guards to keep recent history. This pairs with automatic compaction for low maintenance upkeep.
R2 Data Catalog now supports automatic snapshot expiration for Apache Iceberg tables
In Apache Iceberg, a snapshot is metadata that represents the state of a table at a given point in time. Every mutation creates a new snapshot which enable powerful features like time travel queries and rollback capabilities but will accumulate over time.
Without regular cleanup, these accumulated snapshots can lead to:
- Metadata overhead
- Slower table operations
- Increased storage costs.
Snapshot expiration in R2 Data Catalog automatically removes old table snapshots based on your configured retention policy, improving performance and storage costs.
Snapshot expiration uses two parameters to determine which snapshots to remove:
- --older-than-days: age threshold in days
- --retain-last: minimum snapshot count to retain
Both conditions must be met before a snapshot is expired, ensuring you always retain recent snapshots even if they exceed the age threshold.
This feature complements automatic compaction, which optimizes query performance by combining small data files into larger ones. Together, these automatic maintenance operations keep your Iceberg tables performant and cost-efficient without manual intervention.
To learn more about snapshot expiration and how to configure it, visit our table maintenance documentation or see how to manage catalogs.
Original source Report a problem - Dec 18, 2025
- Parsed from source:Dec 18, 2025
- Detected by Releasebot:Dec 19, 2025
Developer Platform by Cloudflare
Workers for Platforms - Dashboard Improvements
Cloudflare's Workers for Platforms now offers in-dashboard UI features: namespace management, dispatch worker templates, tag management, and binding visibility. A one-click deploy of the Vibe Coding Platform starter kit accelerates multi-tenant AI deployments.
Workers for Platforms
Workers for Platforms lets you build multi-tenant platforms on Cloudflare Workers, allowing your end users to deploy and run their own code on your platform. It's designed for anyone building an AI vibe coding platform, e-commerce platform, website builder, or any product that needs to securely execute user-generated code at scale.
Previously, setting up Workers for Platforms required using the API. Now, the Workers for Platforms UI supports namespace creation, dispatch worker templates, and tag management, making it easier for Workers for Platforms customers to build and manage multi-tenant platforms directly from the Cloudflare dashboard.
Key improvements:
Namespace Management: You can now create and configure dispatch namespaces directly within the dashboard to start a new platform setup.
Dispatch Worker Templates: New Dispatch Worker templates allow you to quickly define how traffic is routed to individual Workers within your namespace. Refer to the Dynamic Dispatch documentation for more examples.
Tag Management: You can now set and update tags on User Workers, making it easier to group and manage your Workers.
Binding Visibility: Bindings attached to User Workers are now visible directly within the User Worker view.
Deploy Vibe Coding Platform in one-click: Deploy a reference implementation of an AI vibe coding platform directly from the dashboard. Powered by the Cloudflare's VibeSDK, this starter kit integrates with Workers for Platforms to handle the deployment of AI-generated projects at scale.
To get started, go to Workers for Platforms under Compute & AI in the Cloudflare dashboard.
Original source Report a problem - Dec 18, 2025
- Parsed from source:Dec 18, 2025
- Detected by Releasebot:Dec 19, 2025
Developer Platform by Cloudflare
R2 Data Catalog now supports automatic snapshot expiration
R2 Data Catalog adds automatic snapshot expiration for Apache Iceberg, trimming old table snapshots to boost performance and cut storage costs. Users set aging and retention rules (--older-than-days and --retain-last) to keep recent history while preserving stability. Complements automatic compaction for faster queries.
Snapshot expiration
R2 Data Catalog now supports automatic snapshot expiration for Apache Iceberg tables.
In Apache Iceberg, a snapshot is metadata that represents the state of a table at a given point in time. Every mutation creates a new snapshot which enable powerful features like time travel queries and rollback capabilities but will accumulate over time.
Without regular cleanup, these accumulated snapshots can lead to:
- Metadata overhead
- Slower table operations
- Increased storage costs.
Snapshot expiration in R2 Data Catalog automatically removes old table snapshots based on your configured retention policy, improving performance and storage costs.
Snapshot expiration uses two parameters to determine which snapshots to remove:
- --older-than-days: age threshold in days
- --retain-last: minimum snapshot count to retain
Both conditions must be met before a snapshot is expired, ensuring you always retain recent snapshots even if they exceed the age threshold.
This feature complements automatic compaction, which optimizes query performance by combining small data files into larger ones. Together, these automatic maintenance operations keep your Iceberg tables performant and cost-efficient without manual intervention.
To learn more about snapshot expiration and how to configure it, visit our table maintenance documentation or see how to manage catalogs.
Original source Report a problem - Dec 18, 2025
- Parsed from source:Dec 18, 2025
- Detected by Releasebot:Dec 18, 2025
Application Security by Cloudflare
WAF Release - 2025-12-18
This week's release focuses on improvements to existing detections to enhance coverage.
Key Findings
Existing rule enhancements have been deployed to improve detection resilience against broad classes of web attacks and strengthen behavioral coverage.
Original source Report a problem - Dec 18, 2025
- Parsed from source:Dec 18, 2025
- Detected by Releasebot:Dec 20, 2025
New AI Crawl Control Overview tab
AI Crawl Control shifts to a default Overview view with quick insights and enhanced filters. Monitor requests, status codes, popular paths, and activity by operator groups; switch to the Crawlers tab for per-crawler controls.
The Overview tab is now the default view in AI Crawl Control. The previous default view with controls for individual AI crawlers is available in the Crawlers tab.
What's new
- Executive summary — Monitor total requests, volume change, most common status code, most popular path, and high-volume activity
- Operator grouping — Track crawlers by their operating companies (OpenAI, Microsoft, Google, ByteDance, Anthropic, Meta)
- Customizable filters — Filter your snapshot by date range, crawler, operator, hostname, or path
Get started
- Log in to the Cloudflare dashboard and select your account and domain.
- Go to AI Crawl Control, where the Overview tab opens by default with your activity snapshot.
- Use filters to customize your view by date range, crawler, operator, hostname, or path.
- Navigate to the Crawlers tab to manage controls for individual crawlers.
Learn more about analyzing AI traffic and managing AI crawlers.
Original source Report a problem