The 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": "<STREAM_ID>"}]}wrangler.toml
[[pipelines]]binding = "MY_PIPELINE"pipeline = "<STREAM_ID>"
After:
wrangler.jsonc
{"$schema": "./node_modules/wrangler/config-schema.json","pipelines": [{"binding": "MY_PIPELINE","stream": "<STREAM_ID>"}]}wrangler.toml
[[pipelines]]binding = "MY_PIPELINE"stream = "<STREAM_ID>"
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.
Source: Cloudflare
Latest Posts
- MC1452771: Dynamics 365 Project Operations Adds Subscription Billing Support via Project Fee Journals

- Cloudflare Tunnel, Cloudflare Tunnel for SASE, Cloudflare Mesh, Gateway, Cloudflare One – Hostname routing is now generally available, with a new public IP range for initial resolved IPs

- langcache-embed-v3-small, Mellum2-12B-A2.5B-Thinking, and LightOnOCR-2-1B models now available on Amazon SageMaker JumpStart

- Amazon EC2 High Memory U7i instances now available in AWS South America (São Paulo) region







