Pipelines, Workers - Pipeline binding configuration field renamed to stream
1mo ago
Source
CloudflarePipelines, Workers - Pipeline binding configuration field renamed to streamcloudflare.comThe pipeline field inside the pipelines binding configuration in your Wrangler configuration file has been renamed to stream . The old field is deprecated but still accepted. Update your configuration to use stream to avoid the deprecation warning. Before (deprecated): wrangler.jsonc { " $schema " : "./node_modules/wrangler/config-schema.json" , " pipelines " : [ { " binding " : "MY_PIPELINE" , " pipeline " : "" } ] } wrangler.toml [[ pipelines ]] binding = "MY_PIPELINE" pipeline = "" After: wrangler.jsonc { " $schema " : "./node_modules/wrangler/config-schema.json" , " pipelines " : [ { " binding " : "MY_PIPELINE" , " stream " : "" } ] } wrangler.toml [[ pipelines ]] binding = "MY_PIPELINE" stream = "" No other changes are required. The binding name, TypeScript types, and runtime API ( env.MY_PIPELINE.send(...) ) remain the same. For more information on configuring pipeline bindings, refer to Writing to streams .
You might also wanna read
Cloudflare expands AI bot management tools with granular traffic controls for all customers
Cloudflare is celebrating the second "Content Independence Day" by expanding AI traffic management options for all website owners. Building
Workers - Simpler runtime types with @cloudflare/workers-types v5
Cloudflare·1d ago
AI Search - Manage AI Search sync jobs with Wrangler CLI
Cloudflare·2d ago
Cache - Cache multiple versions of a URL with Vary
Cloudflare·2d ago
Cloudflare One - Hostname routing for Cloudflare Mesh
Cloudflare·2d ago
Workers - Work across multiple accounts with Wrangler auth profiles
Cloudflare·2d ago

Comments
Sign in to join the conversation.
No comments yet. Be the first.