[wrangler] Add hostname and IP validation for VPC services#12700
Open
RiscadoA wants to merge 1 commit intocloudflare:mainfrom
Open
[wrangler] Add hostname and IP validation for VPC services#12700RiscadoA wants to merge 1 commit intocloudflare:mainfrom
RiscadoA wants to merge 1 commit intocloudflare:mainfrom
Conversation
🦋 Changeset detectedLatest commit: 49f4ee3 The changes in this PR will be included in the next version bump. Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
90745d1 to
bff4947
Compare
emily-shen
reviewed
Mar 2, 2026
create-cloudflare
@cloudflare/kv-asset-handler
miniflare
@cloudflare/pages-shared
@cloudflare/unenv-preset
@cloudflare/vite-plugin
@cloudflare/vitest-pool-workers
@cloudflare/workers-editor-shared
@cloudflare/workers-utils
wrangler
commit: |
bff4947 to
d0372c2
Compare
d0372c2 to
c3ef35a
Compare
Contributor
|
Codeowners approval required for this PR:
Show detailed file reviewers
|
50f94a8 to
84f865f
Compare
Contributor
|
Codeowners approval required for this PR:
Show detailed file reviewers
|
36c50eb to
49f4ee3
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes N/A (internal tracking).
Add RFC 1123 hostname validation to
wrangler vpc service create/update. Previously any string was accepted as--hostnamewith no client-side checks.Also validates that the configured ipv4/ipv6 addresses are valid ip addresses using
net.Changes
validateHostname()invalidation.ts: rejects URL schemes, paths, ports, bare IPs (v4/v6), invalid characters, empty/long labels, leading/trailing hyphens, total length >253validateRequest()— throwsUserErrorwith clear messagesvpc.test.ts(13 unit + 2 CLI integration)