Skip to content

Commit 9fa1e4a

Browse files
committed
docs: changelog for wrangler dev multi config cross command support
1 parent e1c9e23 commit 9fa1e4a

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: Wrangler dev with multiple config files now supports worker bindings across dev commands
3+
description: Workers running with wrangler dev using multiple config files can now communicate with Workers running in separate dev commands.
4+
products:
5+
- workers
6+
date: 2025-08-22
7+
---
8+
9+
Workers using `wrangler dev` with multiple config files can now communicate with Workers running in separate dev commands using service bindings and tail consumers.
10+
11+
Previously, cross-command communication only worked when using a single config file. Now it works with multiple configs:
12+
13+
```sh
14+
# Terminal 1
15+
wrangler dev
16+
17+
# Terminal 2
18+
wrangler dev --config ./api/wrangler.jsonc --config ./app/wrangler.jsonc
19+
```
20+
21+
This means Workers can now communicate with each other across separate dev commands, regardless of your development setup.
22+
23+
Check out the [Developing with multiple Workers](/workers/development-testing/multi-workers) guide to learn more about the different approaches and when to use each one.

0 commit comments

Comments
 (0)