---
title: Pipeline binding configuration field renamed to stream
description: The pipeline field in Wrangler pipeline binding configuration has been renamed to stream. The old field is deprecated but still accepted.
image: https://developers.cloudflare.com/changelog-preview.png
---

> Documentation Index  
> Fetch the complete documentation index at: https://developers.cloudflare.com/changelog/llms.txt  
> Use this file to discover all available pages before exploring further. 

[Skip to content](#%5Ftop) 

# Changelog

New updates and improvements at Cloudflare.

[ Subscribe to RSS ](https://developers.cloudflare.com/changelog/rss/index.xml) [ View RSS feeds ](https://developers.cloudflare.com/fundamentals/new-features/available-rss-feeds/) 

![hero image](https://developers.cloudflare.com/_astro/hero.CVYJHPAd_26AMqX.svg) 

[ ← Back to all posts ](https://developers.cloudflare.com/changelog/) 

## Pipeline binding configuration field renamed to stream

Jun 04, 2026 

[ Pipelines ](https://developers.cloudflare.com/pipelines/)[ Workers ](https://developers.cloudflare.com/workers/) 

The `pipeline` field inside the `pipelines` binding configuration in your [Wrangler configuration file](https://developers.cloudflare.com/workers/wrangler/configuration/) 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 ](#tab-panel-2575)
* [  wrangler.toml ](#tab-panel-2576)

JSONC

```
{  "$schema": "./node_modules/wrangler/config-schema.json",  "pipelines": [    {      "binding": "MY_PIPELINE",      "pipeline": "<STREAM_ID>"    }  ]}
```

TOML

```
[[pipelines]]binding = "MY_PIPELINE"pipeline = "<STREAM_ID>"
```

**After:**

* [  wrangler.jsonc ](#tab-panel-2577)
* [  wrangler.toml ](#tab-panel-2578)

JSONC

```
{  "$schema": "./node_modules/wrangler/config-schema.json",  "pipelines": [    {      "binding": "MY_PIPELINE",      "stream": "<STREAM_ID>"    }  ]}
```

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](https://developers.cloudflare.com/pipelines/streams/writing-to-streams/#configure-pipeline-binding).

```json
{"@context":"https://schema.org","@type":"BlogPosting","@id":"https://developers.cloudflare.com/changelog/post/2026-05-27-pipeline-binding-stream-field/#page","headline":"Pipeline binding configuration field renamed to stream · Changelog","description":"The pipeline field in Wrangler pipeline binding configuration has been renamed to stream. The old field is deprecated but still accepted.","url":"https://developers.cloudflare.com/changelog/post/2026-05-27-pipeline-binding-stream-field/","inLanguage":"en","image":"https://developers.cloudflare.com/changelog-preview.png","dateModified":"2026-06-04","datePublished":"2026-06-04","publisher":{"@type":"Organization","name":"Cloudflare","url":"https://www.cloudflare.com/"},"isPartOf":{"@type":"WebSite","@id":"https://developers.cloudflare.com/#website","name":"Cloudflare Docs","url":"https://developers.cloudflare.com/"}}
```
