Skip to content

Commit 713172d

Browse files
committed
Merge main and resolve conflicts
2 parents 38ed929 + b9eec1d commit 713172d

File tree

90 files changed

+5550
-767
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+5550
-767
lines changed

.changeset/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ The changelog uses h3 for section headers, so any headers in changeset content m
9191

9292
For new features or significant changes, consider including a brief usage example. Examples can be helpful for users to understand new functionality, but they are not mandatory—use your judgment based on how self-explanatory the change is.
9393

94+
When showing Wrangler configuration examples, use `wrangler.json` (with JSONC syntax for comments) rather than `wrangler.toml`.
95+
9496
## Multiple Changesets
9597

9698
If your PR makes multiple distinct user-facing changes, create separate changesets so each gets its own changelog entry. Don't lump unrelated changes together, and don't mix different types of changes (e.g., bug fix + new feature) in a single changeset.

.changeset/brown-schools-fry.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
"wrangler": patch
3+
---
4+
5+
Remove `--use-remote` option from `wrangler hyperdrive create` command
6+
7+
Hyperdrive does not support remote bindings during local development - it requires a `localConnectionString` to connect to a local database. This change removes the confusing "remote resource" prompt that was shown when creating a Hyperdrive config.
8+
9+
Fixes #11674

.changeset/clever-cloths-push.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/custom-inspector-ip.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
"wrangler": minor
3+
"miniflare": minor
4+
"@cloudflare/workers-utils": minor
5+
---
6+
7+
Add support for customising the inspector IP address
8+
9+
Adds a new `--inspector-ip` CLI flag and `dev.inspector_ip` configuration option to allow customising the IP address that the inspector server listens on. Previously, the inspector was hardcoded to listen only on `127.0.0.1`.
10+
11+
Example usage:
12+
13+
```bash
14+
# CLI flag
15+
wrangler dev --inspector-ip 0.0.0.0
16+
```
17+
18+
```jsonc
19+
// wrangler.json
20+
{
21+
"dev": {
22+
"inspector_ip": "0.0.0.0",
23+
},
24+
}
25+
```
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ The following dependency versions have been updated:
99

1010
| Dependency | From | To |
1111
| ---------- | ------------ | ------------ |
12-
| workerd | 1.20260116.0 | 1.20260120.0 |
12+
| workerd | 1.20260120.0 | 1.20260122.0 |

.changeset/eight-teeth-smoke.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"wrangler": patch
3+
---
4+
5+
Fix `wrangler secret list` to error when the Worker is not found
6+
7+
Previously, running `wrangler secret list` against a non-existent Worker would silently return an empty array, making it difficult to diagnose issues like being logged into the wrong account. It now returns an error with suggestions for common causes.

.changeset/hip-spies-wash.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/polite-years-exist.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
"@cloudflare/vite-plugin": minor
3+
"@cloudflare/workers-utils": minor
4+
"miniflare": minor
5+
"wrangler": minor
6+
---
7+
8+
Add a no-op local explorer worker, which is gated by the experimental flag `X_LOCAL_EXPLORER`.

.changeset/rare-seals-exist.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

.changeset/salty-ways-call.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)