fix: remove remote option from hyperdrive create command#12006
Merged
fix: remove remote option from hyperdrive create command#12006
Conversation
🦋 Changeset detectedLatest commit: 6e7c910 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 |
b6d2185 to
7a13762
Compare
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: |
Hyperdrive does not support remote bindings during local development. This removes the confusing --use-remote flag and 'remote resource' prompt. Fixes #11674
7a13762 to
e899ae3
Compare
edmundhung
reviewed
Jan 22, 2026
Comment on lines
103
to
+134
| @@ -125,3 +127,8 @@ Run `pnpm check` before submitting changes to ensure all quality gates pass. | |||
| ## Changesets | |||
|
|
|||
| Every change to package code requires a changeset or it will not trigger a release. Read `.changeset/README.md` before creating changesets. | |||
|
|
|||
| **Changeset Format:** | |||
|
|
|||
| - Do not use conventional commit prefixes (e.g., `fix:`, `feat:`) in changeset descriptions | |||
| - Start with a capital letter and describe the change directly (e.g., "Remove unused option" not "fix: remove unused option") | |||
Member
There was a problem hiding this comment.
Is the changes here intentional?
Contributor
Author
There was a problem hiding this comment.
Yeah, these are mistakes opencode made when writing the PR, so I thought I'd add some more detail
edmundhung
approved these changes
Jan 22, 2026
NuroDev
reviewed
Jan 22, 2026
NuroDev
approved these changes
Jan 22, 2026
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 #11674.
Removes the
--use-remoteCLI flag fromwrangler hyperdrive createand explicitly passesuseRemote: falseto prevent the interactive "remote resource" prompt from appearing.Hyperdrive does not support remote bindings during local development - it requires a
localConnectionStringto connect to a local database. The prompt was confusing users into thinking they could use remote Hyperdrive during local dev.